/* =========================================================
   Very Boutiquey — shared styles
   Palette sampled from storefront photo (Galt location sign,
   navy awning, stucco facade, Adirondack chairs). Swap the
   CSS variables below once real brand files are available.
   ========================================================= */

:root {
  /* Core brand */
  --turquoise: #22d3dd;
  --turquoise-dark: #14a3ac;
  --navy: #16324d;
  --navy-deep: #0e2234;
  --cream: #dad4c8;
  --cream-light: #f6f3ec;
  --white: #ffffff;

  /* Accent pops (from the Adirondack chairs) */
  --lime: #a7c93a;
  --plum: #5c4a63;
  --teal: #1e9c93;
  --mint: #8fd8ce;

  /* Text */
  --ink: #22303c;
  --ink-soft: #52626e;

  /* Type */
  --font-script: "Yellowtail", cursive;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(22, 50, 77, 0.12);
  --shadow-soft: 0 4px 14px rgba(22, 50, 77, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0 0 0.5em;
  color: var(--navy-deep);
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark, var(--turquoise-dark));
  margin-bottom: 0.6em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--turquoise);
  color: var(--navy-deep);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: var(--turquoise-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(22, 50, 77, 0.08);
}

.announce-bar {
  background: var(--navy);
  color: var(--cream-light);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 8px 16px;
}

.announce-bar strong {
  color: var(--turquoise);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-family: var(--font-script);
  font-size: 2.3rem;
  line-height: 1;
  color: var(--turquoise-dark);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-shadow: 0 0 18px rgba(34, 211, 221, 0.25);
}

.logo .dot {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.logo-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: -6px;
}

.main-nav ul {
  display: flex;
  gap: 34px;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--turquoise-dark);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--turquoise);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 211, 221, 0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(92, 74, 99, 0.18), transparent 45%),
    linear-gradient(160deg, var(--navy-deep), var(--navy) 60%, var(--teal) 140%);
  color: var(--white);
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-storefront {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(14, 34, 52, 0.55), rgba(14, 34, 52, 0.75)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 64px);
  z-index: 1;
}

.hero-content .eyebrow {
  color: var(--turquoise);
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 0.3em;
}

.hero-content p {
  color: rgba(246, 243, 236, 0.85);
  font-size: 1.05rem;
  max-width: 46ch;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-chairs {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.chair-chip {
  width: 34px;
  height: 46px;
  border-radius: 8px 8px 4px 4px;
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 28px;
}

.hero-panel .storefront-frame {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background:
    linear-gradient(0deg, var(--navy-deep) 0 32%, var(--cream) 32% 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 0 14px 14px;
}

.hero-panel .storefront-frame .sign {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--turquoise);
  text-shadow: 0 0 12px rgba(34, 211, 221, 0.8);
  white-space: nowrap;
}

.hero-panel .storefront-frame .mini-chair {
  width: 22px;
  height: 34px;
  border-radius: 6px 6px 3px 3px;
  margin-bottom: 8px;
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  gap: 12px;
}

.hero-stats div {
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--turquoise);
}

.hero-stats span {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.75);
}

/* ---------- Sections ---------- */
section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.section-head p {
  margin: 0 auto;
}

.bg-cream {
  background: var(--cream-light);
}

.bg-white {
  background: var(--white);
}

.bg-navy {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.bg-navy h2, .bg-navy h3 {
  color: var(--white);
}

.bg-navy p {
  color: rgba(246, 243, 236, 0.8);
}

/* ---------- Category / product cards ---------- */
.grid {
  display: grid;
  gap: 26px;
}

.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.category-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-art {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  position: relative;
}

.category-art.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.category-card .card-body {
  padding: 18px 20px 22px;
}

.category-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.category-card span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.product-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-art {
  aspect-ratio: 1/1;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}

.product-art.has-photo {
  padding: 0;
}

.product-art.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f4f1ea;
}

.feature-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.product-card .card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card h4 {
  font-size: 0.95rem;
  margin: 0;
}

.product-price {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--turquoise-dark);
}

.product-card .btn {
  margin-top: auto;
  padding: 10px 18px;
  font-size: 0.82rem;
}

/* ---------- Testimonials ---------- */
.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.testimonial .stars {
  color: var(--turquoise-dark);
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.testimonial p {
  font-style: italic;
  color: var(--ink);
}

.testimonial .who {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  font-style: normal;
}

/* ---------- Locations ---------- */
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.location-map {
  aspect-ratio: 16/7;
  background:
    linear-gradient(135deg, var(--mint), var(--turquoise));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.35) 1px, transparent 1px);
  background-size: 34px 34px;
}

.location-map .pin {
  position: relative;
  z-index: 2;
  font-size: 2.2rem;
}

.location-body {
  padding: 26px 28px 30px;
}

.location-body h3 {
  margin-bottom: 6px;
}

.location-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 18px 0;
}

.location-meta div span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.location-meta div strong {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 0.95rem;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid #e0dbd0;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream-light);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--turquoise);
  outline-offset: 1px;
  background: var(--white);
}

.form-note {
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-top: 14px;
  text-align: center;
}

.form-success {
  display: none;
  background: rgba(34, 211, 221, 0.12);
  border: 1px solid var(--turquoise);
  color: var(--navy-deep);
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.form-success.visible {
  display: block;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--turquoise-dark), var(--teal));
  color: var(--white);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 4px;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(246, 243, 236, 0.85);
  padding: 60px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-grid .logo {
  color: var(--turquoise);
  font-size: 2rem;
}

.footer-grid p {
  color: rgba(246, 243, 236, 0.65);
  font-size: 0.9rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(246, 243, 236, 0.75);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--turquoise);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.8rem;
  color: rgba(246, 243, 236, 0.55);
  flex-wrap: wrap;
  gap: 10px;
}

.social-dots {
  display: flex;
  gap: 10px;
}

.social-dots a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.social-dots a:hover {
  background: var(--turquoise);
  color: var(--navy-deep);
}

/* ---------- Page header (interior pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 60px 0 70px;
  text-align: center;
}

.page-hero .eyebrow {
  color: var(--turquoise);
}

.page-hero h1 {
  color: var(--white);
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.breadcrumbs {
  font-size: 0.82rem;
  color: rgba(246,243,236,0.7);
  margin-bottom: 14px;
}

.breadcrumbs a {
  color: var(--turquoise);
}

/* ---------- Utility ---------- */
.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.tag-pill {
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid #e0dbd0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.15s ease;
}

.tag-pill.active,
.tag-pill:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.stat-strip {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 36px 0;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-strip strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--turquoise-dark);
}

.stat-strip span {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.divider-chairs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 8px 0 0;
}

.divider-chairs span {
  width: 26px;
  height: 34px;
  border-radius: 6px 6px 3px 3px;
}

/* ---------- Mobile ---------- */
@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .testimonial-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 20px 24px;
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr 1fr; }
  .location-meta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .hero-stats { flex-wrap: wrap; }
}
