/* ==========================================================================
   V Best Nail Art — Berkeley, CA
   Design system: warm cream canvas, wine accent, editorial serif display
   ========================================================================== */

:root {
  --ink:        #1B1416;
  --ink-soft:   #443A3E;
  --muted:      #7A6C71;
  --wine:       #6E1F32;
  --wine-deep:  #4A1322;
  --rose:       #C4788A;
  --blush:      #F7E6E7;
  --cream:      #FCF9F6;
  --sand:       #F1E8DF;
  --line:       #E4D8CE;
  --gold:       #B08D57;
  --white:      #FFFFFF;

  --serif: "Cormorant Garamond", "Hoefler Text", Georgia, "Songti SC", serif;
  --sans:  "Jost", "Helvetica Neue", Helvetica, Arial, "PingFang SC", sans-serif;

  --shadow-sm: 0 2px 10px rgba(27, 20, 22, .06);
  --shadow-md: 0 14px 40px rgba(27, 20, 22, .10);
  --shadow-lg: 0 28px 70px rgba(27, 20, 22, .16);

  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 76px;
}

/* --------------------------------------------------------------- Reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wine); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--rose); }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 500; line-height: 1.15; margin: 0 0 .6em; letter-spacing: .005em; }
h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.12rem; }
p  { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; }
li { margin-bottom: .35em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

/* ------------------------------------------------------------ Utilities -- */
.container { width: min(1220px, 100% - 3rem); margin-inline: auto; }
.narrow    { width: min(820px, 100% - 3rem); margin-inline: auto; }
.section   { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.bg-sand   { background: var(--sand); }
.bg-white  { background: var(--white); }
.bg-ink    { background: var(--ink); color: rgba(255,255,255,.78); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--white); }
.center    { text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1rem;
}
.bg-ink .eyebrow { color: var(--rose); }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }
.center .lede { margin-inline: auto; }

.rule {
  width: 54px; height: 1px; background: var(--gold);
  margin: 0 0 1.6rem; border: 0;
}
.center .rule { margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 2rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--wine); border-radius: var(--radius);
  background: var(--wine); color: var(--white);
  cursor: pointer; transition: all .3s var(--ease);
}
.btn:hover { background: var(--wine-deep); border-color: var(--wine-deep); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--wine); }
.btn--ghost:hover { background: var(--wine); color: var(--white); }
.btn--light { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn--light:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.center .btn-row { justify-content: center; }

/* --------------------------------------------------------------- Header -- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 249, 246, .94);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: var(--header-h);
}

.logo a { display: flex; align-items: center; gap: .7rem; color: var(--ink); }
.logo a:hover { opacity: .78; color: var(--ink); }
.logo-mark {
  width: 40px; height: 40px; flex: none;
  border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.28rem; font-weight: 600;
  color: var(--wine); background: var(--white);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  letter-spacing: .04em; color: var(--ink);
}
.logo-sub {
  font-size: .58rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); margin-top: .28rem;
}

.main-nav { display: flex; align-items: center; gap: 1.9rem; }
.main-nav a {
  position: relative;
  font-size: .8rem; font-weight: 400; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink-soft); white-space: nowrap;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--wine); transition: width .3s var(--ease);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--wine); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  font-size: .84rem; letter-spacing: .06em; color: var(--ink);
  white-space: nowrap; font-weight: 400;
}
.header-cta .btn { padding: .72rem 1.4rem; font-size: .7rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; padding: 0;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px; margin: 5px auto;
  background: var(--ink); transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ----------------------------------------------------------------- Hero -- */
.hero { position: relative; background: var(--cream); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 8% 0%, var(--blush) 0%, rgba(247,230,231,0) 58%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}
.hero-copy h1 { margin-bottom: .35em; }
.hero-copy h1 em { font-style: italic; color: var(--wine); }
.hero-copy .lede { font-size: 1.16rem; margin-bottom: 2rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  font-size: .82rem; letter-spacing: .04em; color: var(--muted);
}
.hero-meta strong { display: block; color: var(--ink); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; font-size: .68rem; margin-bottom: .25rem; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute; left: -1.5rem; bottom: 2.2rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md); min-width: 236px;
}
.hero-badge span { display: block; font-family: var(--serif); font-size: 1.6rem; color: var(--wine); line-height: 1; }
.hero-badge small { font-size: .68rem; letter-spacing: .1em; white-space: nowrap; text-transform: uppercase; color: var(--muted); }

/* -------------------------------------------------------------- Marquee -- */
.marquee { overflow: hidden; padding: 1.4rem 0; background: var(--ink); }
.marquee-track {
  display: flex; gap: 3.2rem; width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family: var(--serif); font-size: 1.35rem; font-style: italic;
  color: rgba(255,255,255,.72); white-space: nowrap;
  display: flex; align-items: center; gap: 3.2rem;
}
.marquee-track span::after { content: "◆"; font-size: .5rem; color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* --------------------------------------------------------- Intro / split -- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.split-media--wide img { aspect-ratio: 4 / 3; }
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2.4rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.stat-row div { text-align: left; }
.stat-row strong { display: block; font-family: var(--serif); font-size: 2rem; color: var(--wine); line-height: 1; }
.stat-row small { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---------------------------------------------------------------- Cards -- */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1.8rem;
}
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 1.5rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .4rem; }
.card-body p { font-size: .95rem; color: var(--muted); margin-bottom: 1.1rem; }
.card-price {
  margin-top: auto; font-family: var(--serif); font-size: 1.35rem;
  color: var(--wine); letter-spacing: .01em;
}
.card-price small { font-family: var(--sans); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: block; }

/* ---------------------------------------------------------- Feature list -- */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.4rem;
}
.feature { }
.feature-num {
  font-family: var(--serif); font-size: 1rem; color: var(--gold);
  letter-spacing: .2em; display: block; margin-bottom: .8rem;
}
.feature h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.feature p { font-size: .95rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------- Page banner --- */
.page-banner {
  position: relative; background: var(--ink); color: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  text-align: center; overflow: hidden;
}
.page-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--banner-img);
  background-size: cover; background-position: center;
  opacity: .3;
}
.page-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,20,22,.55) 0%, rgba(27,20,22,.85) 100%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: var(--white); margin-bottom: .3em; }
.page-banner p { color: rgba(255,255,255,.8); max-width: 60ch; margin-inline: auto; }
.page-banner .eyebrow { color: var(--rose); }
.breadcrumb {
  margin-top: 1.6rem; font-size: .74rem; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--white); }

/* ----------------------------------------------------------- Price list -- */
.menu-nav {
  position: sticky; top: var(--header-h); z-index: 40;
  background: rgba(252,249,246,.96); border-bottom: 1px solid var(--line);
  padding: .85rem 0;
}
.menu-nav ul {
  display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0;
  overflow-x: auto; scrollbar-width: none;
}
.menu-nav ul::-webkit-scrollbar { display: none; }
.menu-nav a {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap; padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.menu-nav a:hover { color: var(--wine); border-color: var(--wine); }

.menu-block { margin-bottom: 4rem; scroll-margin-top: 140px; }
.menu-block > header { margin-bottom: 2rem; }
.menu-block > header h2 { margin-bottom: .3rem; }
.menu-block > header p { color: var(--muted); font-size: .96rem; margin: 0; max-width: 60ch; }

.price-list { border-top: 1px solid var(--line); }
.price-item {
  display: grid; grid-template-columns: 1fr auto;
  gap: .3rem 1.5rem; align-items: baseline;
  padding: 1.25rem 0; border-bottom: 1px solid var(--line);
}
.price-item h3 {
  font-family: var(--serif); font-size: 1.32rem; font-weight: 500;
  margin: 0; color: var(--ink);
}
.price-item .price {
  font-family: var(--serif); font-size: 1.3rem; color: var(--wine);
  white-space: nowrap; text-align: right;
}
.price-item .price small {
  display: block; font-family: var(--sans); font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.price-item .note {
  grid-column: 1 / -1; margin: .3rem 0 0;
  font-size: .93rem; color: var(--muted);
}
.price-item .includes {
  grid-column: 1 / -1; margin: .55rem 0 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.price-item .includes li {
  margin: 0; font-size: .78rem; letter-spacing: .04em; color: var(--ink-soft);
  background: var(--sand); border-radius: 100px; padding: .28rem .85rem;
}
.price-item .price em {
  font-family: var(--sans); font-style: normal; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}

.callout {
  background: var(--white); border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: 1.6rem 1.8rem;
}
.callout h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.callout ul { margin: 0; padding-left: 1.15rem; font-size: .95rem; color: var(--muted); }
.callout li::marker { color: var(--gold); }

/* -------------------------------------------------------------- Gallery -- */
.gallery-grid { columns: 3; column-gap: 1.1rem; }
.gallery-grid figure { margin: 0 0 1.1rem; break-inside: avoid; }
.gallery-grid button {
  display: block; width: 100%; padding: 0; border: 0; background: none;
  cursor: zoom-in; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-grid img {
  width: 100%; transition: transform .5s var(--ease), filter .4s var(--ease);
}
.gallery-grid button:hover img { transform: scale(1.045); filter: brightness(1.04); }
.gallery-grid figcaption {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); padding-top: .6rem;
}

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(20, 14, 16, .93);
  align-items: center; justify-content: center; padding: 4vh 4vw;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 92vh; border-radius: var(--radius-lg); }
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.6rem;
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%; background: none; color: #fff; font-size: 1.3rem;
  cursor: pointer; line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,.14); }

/* ------------------------------------------------------------------ FAQ -- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  width: 100%; padding: 1.4rem 0; background: none; border: 0; cursor: pointer;
  font-family: var(--serif); font-size: 1.25rem; color: var(--ink);
  text-align: left; line-height: 1.35;
}
.faq-q::after {
  content: "+"; flex: none; font-family: var(--sans); font-weight: 300;
  font-size: 1.5rem; color: var(--wine); line-height: 1; transition: transform .3s var(--ease);
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a > div { padding-bottom: 1.4rem; color: var(--muted); font-size: .98rem; }
.faq-a p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------- Contact -- */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); margin: 0; }
.info-list li:first-child { padding-top: 0; }
.info-ico { flex: none; width: 22px; color: var(--wine); font-size: 1rem; line-height: 1.6; }
.info-list strong {
  display: block; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: .18rem;
}
.info-list a { color: var(--ink); }
.info-list a:hover { color: var(--wine); }

.contact-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  display: grid; gap: 1.05rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
.field label {
  display: block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .45rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: .82rem .95rem;
  font-family: var(--sans); font-size: .97rem; font-weight: 300; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--wine); background: var(--white);
}
.contact-form button[type="submit"] { width: 100%; }
.form-note { font-size: .82rem; color: var(--muted); margin: 0; }
/* injected captcha block from /submit-contact?js=1 */
.captcha-row { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }
.captcha-row img, .captcha-row svg { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.captcha-row input { max-width: 160px; }

.map-embed {
  width: 100%; height: 420px; border: 0;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); display: block;
}

/* ------------------------------------------------------------------ CTA -- */
.cta-band {
  position: relative; text-align: center; overflow: hidden;
  background: var(--wine-deep); color: rgba(255,255,255,.82);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 50% 0%, rgba(196,120,138,.35) 0%, rgba(74,19,34,0) 65%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 58ch; margin-inline: auto; }

/* --------------------------------------------------------------- Footer -- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); padding: 4rem 0 2rem; font-size: .93rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer h3 {
  color: var(--white); font-family: var(--sans); font-size: .72rem;
  font-weight: 500; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer-brand .logo-name { color: var(--white); font-size: 1.5rem; }
.footer-brand .logo-sub { color: rgba(255,255,255,.5); }
.footer-brand p { margin-top: 1rem; color: rgba(255,255,255,.6); }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--rose); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-bottom {
  padding-top: 1.8rem; text-align: center;
  font-size: .84rem; color: rgba(255,255,255,.45);
}
.footer-bottom p { margin-bottom: .4rem; }
.footer-partner { margin-top: 1.1rem; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-partner a { color: var(--gold); }
.footer-partner a:hover { color: var(--white); }

/* ------------------------------------------------------------- Reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------- Responsive -- */
@media (max-width: 1080px) {
  .main-nav { gap: 1.35rem; }
  .main-nav a { font-size: .75rem; letter-spacing: .1em; }
  .header-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .gallery-grid { columns: 2; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin-inline: auto; order: -1; }
  .hero-media img { aspect-ratio: 1 / 1; border-radius: 220px 220px var(--radius-lg) var(--radius-lg); }
  .hero-badge { left: auto; right: -.6rem; bottom: 1rem; }
  .split, .contact-layout { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 3 / 2; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(100% - 2.4rem, 1220px); }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem 1.2rem 1.6rem;
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .35s var(--ease), visibility 0s linear .35s;
    box-shadow: var(--shadow-md);
  }
  .main-nav.is-open { max-height: 78vh; overflow-y: auto; visibility: visible; transition: max-height .35s var(--ease), visibility 0s; }
  .main-nav a { padding: .95rem .3rem; border-bottom: 1px solid var(--line); font-size: .82rem; }
  .main-nav a::after { display: none; }
  .header-cta .btn { padding: .62rem 1.05rem; font-size: .66rem; letter-spacing: .12em; }
  .stat-row { grid-template-columns: 1fr; gap: 1.1rem; text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .price-item { grid-template-columns: 1fr; }
  .price-item .price { text-align: left; }
}

@media (max-width: 520px) {
  .gallery-grid { columns: 1; }
  .logo-name { font-size: 1.12rem; }
  .logo-sub { font-size: .52rem; letter-spacing: .22em; }
  .logo-mark { width: 34px; height: 34px; font-size: 1.05rem; }
  .btn { padding: .85rem 1.5rem; }
  .btn-row .btn { width: 100%; }
  .hero-meta { gap: 1.1rem; }
}

/* Price-list companion image tracks the list on wide screens */
@media (min-width: 901px) {
  .menu-block .split-media { position: sticky; top: 148px; }
}
