:root {
  --cream: #f4eadf;
  --paper: #fbf8f3;
  --sage: #40584b;
  --sage-deep: #293d34;
  --blue: #72949d;
  --gold: #dca63a;
  --rust: #b26927;
  --ink: #20332a;
  --muted: #6f756f;
  --line: rgba(32, 51, 42, 0.16);
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(30, 46, 38, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  margin-bottom: 24px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 { font-size: clamp(3.5rem, 7.7vw, 7.7rem); }
h2 { font-size: clamp(2.7rem, 5vw, 5.4rem); }
h3 { margin-bottom: 12px; font-size: 1.45rem; line-height: 1.2; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: 82px;
  padding: 10px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(41, 61, 52, .96);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }

.brand-logo {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-name { white-space: nowrap; font-family: "Fraunces", Georgia, serif; font-size: 1.25rem; }

nav { display: flex; min-width: 0; justify-content: center; gap: 0; }
nav a { display: inline-flex; align-items: center; font-size: .94rem; font-weight: 600; opacity: .86; }
nav a + a::before {
  margin: 0 clamp(12px, 1.6vw, 24px);
  color: rgba(255,253,248,.48);
  content: "|";
  font-weight: 500;
  opacity: .8;
}
nav a:hover, nav a:focus-visible { opacity: 1; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid var(--sage);
  border-radius: 999px;
  background: var(--sage);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--sage-deep); }
.button span { font-size: 1.1em; }
.button span[aria-hidden="true"], .text-link span[aria-hidden="true"], .nav-arrow {
  font-family: "DM Sans", Arial, sans-serif;
  font-variant-emoji: text;
  line-height: 1;
}
.nav-cta { min-height: 46px; border-color: var(--gold); background: var(--gold); color: var(--sage-deep); }
.nav-cta:hover { background: var(--cream); color: var(--sage-deep); }
.button-light { border-color: var(--white); background: var(--white); color: var(--sage-deep); }
.button-light:hover { background: var(--gold); color: var(--sage-deep); }
.button-gold { border-color: var(--gold); background: var(--gold); color: var(--sage-deep); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.light-link { color: var(--white); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--rust);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow span { display: inline-block; width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--cream); }
.lead { font-size: clamp(1.13rem, 1.65vw, 1.45rem); line-height: 1.5; }
.large-copy { font-size: clamp(1.45rem, 2vw, 2rem); line-height: 1.35; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.home-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  background: #17251e;
  color: var(--white);
}

.hero-image, .hero-shade { position: absolute; inset: 0; }
.hero-image { background: url("/static/images/micromart-office.jpg") center / cover no-repeat; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(26, 41, 34, .9) 0%, rgba(26, 41, 34, .69) 38%, rgba(26, 41, 34, .12) 70%),
    linear-gradient(0deg, rgba(26, 41, 34, .34), transparent 45%);
}

.home-hero .hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 88%);
  padding: clamp(110px, 14vh, 170px) 0 130px clamp(24px, 7vw, 112px);
}

.home-hero h1 { max-width: 760px; }
.home-hero .lead { max-width: 650px; margin-bottom: 38px; color: rgba(255,255,255,.88); }

.hero-note {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 5vw, 72px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(32,51,42,.52);
  font-size: .85rem;
  backdrop-filter: blur(10px);
}

.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(220,166,58,.18); }

.video-showcase {
  padding: clamp(24px, 4vw, 58px);
  background: var(--sage-deep);
}

.showcase-video {
  display: block;
  width: min(1500px, 100%);
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 22px;
  background: var(--sage-deep);
  box-shadow: var(--shadow);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.trust-strip p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 110px;
  margin: 0;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.trust-strip p:last-child { border-right: 0; }
.trust-strip strong { color: var(--rust); font-family: "Fraunces", Georgia, serif; font-size: 2.5rem; }
.trust-strip span { font-size: 1.05rem; font-weight: 700; }

.section { padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px); }
.section-intro { max-width: 920px; margin-bottom: 64px; }
.section-intro h2 { margin-bottom: 0; }
.row-intro { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 80px; max-width: none; }
.row-intro > p { margin-bottom: 10px; color: var(--muted); font-size: 1.08rem; }
.centered-intro { margin-right: auto; margin-left: auto; text-align: center; }
.centered-intro .eyebrow { justify-content: center; }

.story-section { background: var(--paper); }
.story-section .section-intro {
  max-width: 65rem;
  margin-right: auto;
  margin-left: auto;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(18rem, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  max-width: 82rem;
  margin: 0 auto;
}
.story-copy { max-width: 35rem; }
.story-copy > p:not(.large-copy) { margin: 26px 0 32px; color: var(--muted); }
.image-card {
  position: relative;
  min-height: clamp(28rem, 44vw, 32.5rem);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-card-tall { min-height: clamp(36rem, 52vw, 41.25rem); }
.image-card.apartment-feature { min-height: 0; aspect-ratio: 16 / 10; }
.apartment-feature img { object-position: center; }
.image-card figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255,253,248,.9);
  font-size: .8rem;
  font-weight: 700;
}

.locations-section { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.location-card {
  min-height: clamp(20rem, 32vw, 26rem);
  border-radius: var(--radius);
  overflow: hidden;
}
.visual-location { position: relative; color: var(--white); }
.visual-location::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(28,45,36,.9), rgba(28,45,36,.08) 72%); }
.visual-location img { transition: transform .5s ease; }
.visual-location:hover img { transform: scale(1.025); }
.visual-location > div { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 30px; }
.visual-location p:last-child { margin-bottom: 0; color: rgba(255,255,255,.82); }
.card-number { margin-bottom: 12px; font-size: .75rem; font-weight: 700; letter-spacing: .15em; }

.process-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
  background: var(--sage-deep);
  color: var(--white);
}

.process-heading { align-self: center; }
.process-heading > p:not(.eyebrow) { max-width: 440px; margin: 26px 0 34px; color: rgba(255,255,255,.7); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.process-list li:first-child { border-top: 1px solid rgba(255,255,255,.16); }
.process-list li > span { color: var(--gold); font-weight: 700; }
.process-list h3 { margin-bottom: 6px; font-family: "Fraunces", Georgia, serif; font-size: 1.75rem; }
.process-list p { margin: 0; color: rgba(255,255,255,.66); }

.why-section { background: var(--paper); }
.why-panel { padding: clamp(45px, 7vw, 92px); border-radius: 42px; background: var(--cream); }
.why-panel > h2 { max-width: 900px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 70px; border-top: 1px solid var(--line); }
.benefit-grid article { padding: 36px 38px 0 0; border-right: 1px solid var(--line); }
.benefit-grid article + article { padding-left: 38px; }
.benefit-grid article:last-child { border-right: 0; }
.benefit-grid strong { display: block; margin-bottom: 42px; color: var(--rust); }
.benefit-grid p { margin-bottom: 0; color: var(--muted); }

.cta-section {
  padding: clamp(90px, 13vw, 180px) 24px;
  background: var(--rust);
  color: var(--white);
  text-align: center;
}
.cta-section .eyebrow { justify-content: center; }
.cta-section h2 { max-width: 900px; margin-right: auto; margin-left: auto; }
.cta-section > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 34px; color: rgba(255,255,255,.82); font-size: 1.12rem; }
.cream-cta { background: var(--cream); color: var(--ink); }
.cream-cta > p:not(.eyebrow) { color: var(--muted); }

/* Services */
.page-hero {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: clamp(38rem, 62vw, 45rem);
  background: var(--cream);
}
.page-hero > div { align-self: center; padding: 90px clamp(32px, 7vw, 112px); }
.page-hero h1 { font-size: clamp(3.5rem, 6.4vw, 6.7rem); }
.page-hero .lead { max-width: 650px; margin-bottom: 34px; color: var(--muted); }
.page-hero-image { min-height: clamp(38rem, 62vw, 45rem); margin: 0; overflow: hidden; }
.solution-overview { background: var(--paper); }
.solution-list { border-top: 1px solid var(--line); }
.solution-list article { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 28px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.solution-list h3 { font-family: "Fraunces", serif; font-size: 2rem; }
.solution-list p { max-width: 690px; margin-bottom: 0; color: var(--muted); }
.solution-number { color: var(--rust); font-weight: 700; }
.solution-tag { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; font-weight: 700; }
.feature-split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(55px, 9vw, 130px); background: var(--cream); }
.feature-split .image-card { min-height: clamp(36rem, 58vw, 43.75rem); }
.feature-split > div > p.large-copy { margin-bottom: 42px; }
.smart-design-section { display: block; }
.feature-split .smart-design-image {
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin: 0 0 clamp(52px, 7vw, 92px);
  border-radius: 38px;
}
.smart-design-image img { object-position: center; }
.smart-design-copy {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: clamp(52px, 8vw, 120px);
}
.smart-design-intro h2 { max-width: 720px; }
.smart-design-intro .large-copy { max-width: 650px; margin-bottom: 0; }
.detail-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.detail-list li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.detail-list li > span { color: var(--rust); font-size: .78rem; font-weight: 700; }
.detail-list strong { font-size: 1.1rem; }
.detail-list p { margin: 5px 0 0; color: var(--muted); }
.how-section {
  padding-top: clamp(64px, 7vw, 100px);
  padding-bottom: clamp(64px, 7vw, 100px);
  background: var(--paper);
}
.how-section .section-intro { margin-bottom: 42px; }
.step-track { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step-track article { min-height: 250px; padding: 30px; border-right: 1px solid var(--line); }
.step-track article:last-child { border-right: 0; }
.step-track span { display: block; margin-bottom: 48px; color: var(--rust); font-weight: 700; }
.step-track h3 { font-family: "Fraunces", serif; font-size: 1.8rem; }
.step-track p { color: var(--muted); }
.host-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; background: var(--sage-deep); color: var(--white); }
.host-details > p { max-width: 700px; color: rgba(255,255,255,.74); font-size: 1.25rem; }
.host-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 42px 0; }
.host-icons p { padding: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; }
.host-icons strong, .host-icons span { display: block; }
.host-icons span { margin-top: 6px; color: rgba(255,255,255,.66); font-size: .88rem; }

/* Stores */
.stores-page-hero {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  min-height: clamp(40rem, 64vw, 47.5rem);
  background: var(--cream);
}

.stores-hero-copy { align-self: center; padding: 90px clamp(32px, 7vw, 112px); }
.stores-hero-copy h1 { font-size: clamp(3.6rem, 6.8vw, 7rem); }
.stores-hero-copy .lead { max-width: 680px; margin-bottom: 36px; color: var(--muted); }
.stores-hero-image { min-height: clamp(40rem, 64vw, 47.5rem); margin: 0; overflow: hidden; }
.stores-hero-image img { object-position: center; }

.stores-overview { background: var(--paper); }
.stores-overview .section-intro { margin-bottom: 54px; }
.stores-overview .section-intro .lead { max-width: 760px; margin: 24px auto 0; color: var(--muted); }
.store-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  overflow: visible;
}
.store-selector a {
  display: grid;
  gap: 7px;
  min-height: clamp(10.5rem, 18vw, 11.875rem);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
  transition: transform .2s ease, box-shadow .2s ease;
}
.store-selector a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.store-selector strong { color: var(--rust); font-size: .78rem; letter-spacing: .14em; }
.store-selector span { align-self: end; font-family: "Fraunces", Georgia, serif; font-size: 2rem; font-weight: 600; }
.store-selector small { color: var(--muted); font-size: .9rem; }

.store-model-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(54px, 9vw, 140px);
  background: var(--paper);
  scroll-margin-top: 110px;
}
.store-model-section.cream-model { background: var(--cream); }
.store-model-section.reverse .store-model-visual { order: 2; }
.store-model-visual {
  min-height: clamp(40rem, 64vw, 47.5rem);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}
.store-model-visual img {
  object-fit: contain;
  object-position: center;
  transform: none;
}
.store-model-copy { max-width: 660px; }
.store-model-copy .large-copy { margin-bottom: 34px; }
.product-label {
  margin-bottom: 12px;
  color: var(--rust);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.store-product-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.store-product-list li { position: relative; padding: 14px 0 14px 20px; border-bottom: 1px solid var(--line); }
.store-product-list li::before { position: absolute; top: 23px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); content: ""; }
.store-fit { margin: 28px 0 0; padding: 20px 22px; border-radius: 18px; background: rgba(220,166,58,.13); color: var(--muted); }
.store-fit strong { color: var(--ink); }

.essentials-section {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(56px, 9vw, 140px);
  background: var(--sage-deep);
  color: var(--white);
}
.essentials-copy .large-copy { max-width: 780px; color: rgba(255,255,255,.76); }
.essentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 38px; }
.essentials-grid article { padding: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.04); }
.essentials-grid strong { color: var(--gold); }
.essentials-grid p { margin: 7px 0 0; color: rgba(255,255,255,.66); font-size: .9rem; }
.availability-note { margin: 24px 0 0; color: rgba(255,255,255,.54); font-size: .82rem; }
.essentials-visual { min-height: clamp(38rem, 58vw, 45rem); margin: 0; overflow: hidden; border-radius: 34px; box-shadow: var(--shadow); }
.essentials-visual img { object-position: center 55%; }

.lineup-section { background: var(--cream); }
.lineup-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lineup-grid article { min-height: 260px; padding: 32px; border-right: 1px solid var(--line); }
.lineup-grid article:last-child { border-right: 0; }
.lineup-grid span { display: block; margin-bottom: 52px; color: var(--rust); font-weight: 700; }
.lineup-grid h3 { font-family: "Fraunces", Georgia, serif; font-size: 1.8rem; }
.lineup-grid p { margin-bottom: 0; color: var(--muted); }

/* Inquiry */
.inquiry-hero { padding: clamp(68px, 8vw, 110px) clamp(24px, 7vw, 112px); background: var(--sage-deep); color: var(--white); }
.inquiry-hero > div { max-width: 1040px; }
.inquiry-hero h1 { margin-bottom: 28px; }
.inquiry-hero > div > p:last-child { max-width: 720px; color: rgba(255,255,255,.72); font-size: 1.25rem; }
.inquiry-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: clamp(50px, 9vw, 140px); background: var(--cream); }
.inquiry-sidebar { position: sticky; top: 115px; }
.inquiry-sidebar ol { margin: 40px 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.inquiry-sidebar li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.inquiry-sidebar li > span { color: var(--rust); font-size: .75rem; font-weight: 700; }
.inquiry-sidebar strong { display: block; margin-bottom: 4px; }
.inquiry-sidebar li p { margin: 0; color: var(--muted); font-size: .9rem; }
.direct-contact { margin-top: 44px; padding: 24px; border-radius: 20px; background: var(--paper); }
.direct-contact a { font-weight: 700; }
.direct-contact p:last-child { margin: 8px 0 0; color: var(--muted); font-size: .86rem; }
.footer-label { margin-bottom: 10px; color: var(--gold); font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.inquiry-form { display: grid; gap: 24px; padding: clamp(28px, 5vw, 58px); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.form-heading { display: flex; justify-content: space-between; align-items: end; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-heading p { margin: 0; font-family: "Fraunces", serif; font-size: 2rem; }
.form-heading span { color: var(--muted); font-size: .8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: grid; gap: 8px; font-size: .85rem; font-weight: 700; }
input, select, textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(64,88,75,.1); }
.form-submit { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-top: 12px; }
.form-submit p { max-width: 380px; margin: 0; color: var(--muted); font-size: .78rem; }
.form-alert { padding: 14px 16px; border: 1px solid rgba(178,105,39,.3); border-radius: 12px; background: #fff4e9; color: #794615; font-weight: 700; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.faq-section { background: var(--paper); }
.faq-list { max-width: 920px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 26px 50px 26px 0; cursor: pointer; font-family: "Fraunces", serif; font-size: 1.35rem; font-weight: 600; list-style: none; }
.faq-list summary::after { position: absolute; right: 4px; content: "+"; color: var(--rust); font-family: "DM Sans", sans-serif; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 760px; margin: 0 0 26px; color: var(--muted); }

.thank-you-section { min-height: 72vh; padding: clamp(100px, 14vw, 180px) 24px; background: var(--cream); text-align: center; }
.thank-you-section .eyebrow { justify-content: center; }
.thank-you-section h1 { max-width: 900px; margin-right: auto; margin-left: auto; }
.thank-you-section > p:not(.eyebrow) { max-width: 620px; margin: 0 auto 36px; color: var(--muted); font-size: 1.15rem; }
.thank-you-section .hero-actions { justify-content: center; }
.thank-you-mark { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 32px; border-radius: 50%; background: var(--gold); color: var(--sage-deep); font-size: 1.8rem; }

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr .7fr 1fr;
  gap: 60px;
  padding: 70px clamp(24px, 7vw, 112px) 28px;
  background: #1e3027;
  color: var(--white);
}
.site-footer .brand-logo { width: 66px; height: 66px; }
.site-footer .brand-name { font-size: 1.45rem; }
.footer-main > p { margin: 18px 0 0; color: rgba(255,255,255,.63); }
.footer-nav { display: grid; align-content: start; gap: 8px; }
.footer-nav a, .footer-nav > p:not(.footer-label) { margin: 0; color: rgba(255,255,255,.7); }
.footer-nav a:hover { color: var(--white); }
.footer-bottom { grid-column: 1 / -1; margin: 38px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: .78rem; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto minmax(0, 1fr); width: 100%; min-width: 0; }
  .site-header nav { order: 3; grid-column: 1 / -1; padding: 8px 0 2px; border-top: 1px solid rgba(255,255,255,.12); }
  .nav-cta { justify-self: end; }
  .home-hero { min-height: 48.75rem; }
  .row-intro, .process-section, .host-section { grid-template-columns: 1fr; gap: 50px; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .step-track { grid-template-columns: 1fr 1fr; }
  .step-track article:nth-child(2) { border-right: 0; }
  .step-track article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stores-page-hero { grid-template-columns: 1fr; }
  .stores-hero-image { min-height: clamp(34rem, 62vw, 38.75rem); }
  .essentials-section { grid-template-columns: 1fr; }
  .essentials-visual { min-height: clamp(34rem, 62vw, 38.75rem); }
}

@media (max-width: 800px) {
  h1 { font-size: clamp(3.1rem, 14vw, 5rem); }
  h2 { font-size: clamp(2.5rem, 11vw, 4rem); }
  .site-header { gap: 12px; padding: 8px 18px; }
  .brand-name { font-size: 1rem; }
  .brand-logo { width: 46px; height: 46px; }
  .nav-cta { min-height: 42px; padding: 11px 15px; font-size: .78rem; }
  nav { justify-content: center; flex-wrap: wrap; overflow: visible; row-gap: 6px; }
  nav a { white-space: nowrap; font-size: clamp(.68rem, 2.5vw, .82rem); }
  nav a + a::before { margin: 0 clamp(6px, 1.8vw, 10px); }
  .home-hero .hero-content { width: 100%; padding: 120px 24px 130px; }
  .home-hero h1 { font-size: clamp(3rem, 12.5vw, 4.4rem); }
  .hero-image { background-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(26,41,34,.9), rgba(26,41,34,.55)); }
  .hero-note { right: 24px; left: 24px; justify-content: center; }
  .showcase-video {
    pointer-events: auto;
    user-select: auto;
  }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip p { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip p:last-child { border-bottom: 0; }
  .story-grid, .feature-split, .page-hero, .inquiry-layout { grid-template-columns: 1fr; }
  .image-card, .image-card-tall, .feature-split .image-card { min-height: clamp(24rem, 70vw, 27.5rem); }
  .feature-split .smart-design-image { min-height: 0; aspect-ratio: 16 / 9; border-radius: 24px; }
  .smart-design-copy { grid-template-columns: 1fr; gap: 42px; }
  .location-grid { grid-template-columns: 1fr; }
  .visual-location { grid-column: auto; min-height: clamp(24rem, 78vw, 27.5rem); }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article, .benefit-grid article + article { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-grid article:last-child { border-bottom: 0; }
  .benefit-grid strong { margin-bottom: 20px; }
  .page-hero > div { padding: 90px 24px; }
  .page-hero-image { min-height: clamp(30rem, 70vw, 33.75rem); }
  .solution-list article { grid-template-columns: 46px 1fr; }
  .solution-tag { grid-column: 2; justify-self: start; }
  .step-track { grid-template-columns: 1fr; }
  .step-track article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .step-track span { margin-bottom: 42px; }
  .host-icons, .form-row { grid-template-columns: 1fr; }
  .store-selector, .store-model-section, .smart-design-copy { grid-template-columns: 1fr; }
  .store-selector { overflow: visible; }
  .store-selector a { min-height: 9.375rem; }
  .store-model-section.reverse .store-model-visual { order: 0; }
  .store-model-visual { min-height: clamp(34rem, 80vw, 38.75rem); }
  .essentials-grid, .lineup-grid { grid-template-columns: 1fr; }
  .essentials-visual { min-height: clamp(30rem, 70vw, 33.75rem); }
  .lineup-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .lineup-grid article:last-child { border-bottom: 0; }
  .lineup-grid span { margin-bottom: 32px; }
  .inquiry-sidebar { position: static; }
  .form-submit { align-items: stretch; flex-direction: column; }
  .form-submit .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { grid-column: auto; }
}

@media (max-width: 520px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto; gap: 8px; padding: 8px 12px; }
  .brand { gap: 8px; min-width: 0; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-name { overflow: hidden; font-size: clamp(.78rem, 3.6vw, .92rem); text-overflow: ellipsis; }
  .site-header nav { padding-top: 7px; }
  .site-header nav a { font-size: clamp(.62rem, 3vw, .74rem); }
  .site-header nav a + a::before { margin: 0 clamp(4px, 1.4vw, 7px); }
  .nav-cta { min-width: 0; min-height: 38px; padding: 9px 11px; font-size: .7rem; }
  .nav-cta .nav-label { font-size: 0; }
  .nav-cta .nav-label::after { content: "Get started"; font-size: .7rem; }
  .nav-cta .nav-arrow { display: inline; }
  .home-hero .eyebrow { font-size: .68rem; letter-spacing: .09em; }
  .section { padding-right: 20px; padding-left: 20px; }
  .home-hero .lead { font-size: 1.05rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; }
  .trust-strip p { flex-direction: column; gap: 2px; text-align: center; }
  .trust-strip strong { font-size: 2.15rem; }
  .trust-strip span { font-size: 1rem; }
  .stores-hero-copy { padding: 76px 20px; }
  .stores-hero-image { min-height: 22.5rem; }
  .store-model-visual { min-height: 31.25rem; border-radius: 24px; }
  .store-model-visual img { transform: none; }
  .store-product-list, .essentials-grid { grid-template-columns: 1fr; }
  .essentials-visual { min-height: 29.375rem; border-radius: 24px; }
  .why-panel { padding: 34px 24px; border-radius: 28px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
