/* =========================================================
   Superior Masonry — Design System
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Color tokens */
  --charcoal: #1A1A1A;
  --charcoal-soft: #2B2B2B;
  --charcoal-line: #3A3A38;
  --cream: #F4EFE7;
  --cream-deep: #EAE2D5;
  --mortar: #8A8579;
  --mortar-dark: #5C594F;
  --rust: #B85C2E;
  --rust-dark: #8E4421;
  --white: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #7A7468;
  --text-on-dark: #F4EFE7;
  --text-on-dark-muted: #B5AE9F;
  --border: #DDD7CC;
  --border-dark: #3A3A38;

  /* Type tokens */
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout tokens */
  --container: 1440px;
  --gutter: 80px;
  --gutter-mobile: 24px;
  --section: 120px;
  --section-mobile: 64px;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-primary);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* =========================================================
   Layout
   ========================================================= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }
.section--cream-deep { background: var(--cream-deep); }
.section--charcoal { background: var(--charcoal); color: var(--text-on-dark); }
.section--charcoal .eyebrow-text { color: var(--rust); }
.section--charcoal h1, .section--charcoal h2, .section--charcoal h3 { color: var(--cream); }
.section--charcoal p { color: var(--text-on-dark-muted); }

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; color: var(--charcoal); }
.h-display { font-size: clamp(48px, 7vw, 96px); line-height: 1.05; letter-spacing: -0.03em; }
.h-hero { font-size: clamp(40px, 5.5vw, 72px); line-height: 1.05; letter-spacing: -0.025em; }
.h-section { font-size: clamp(36px, 4.5vw, 56px); line-height: 1.1; letter-spacing: -0.02em; }
.h-card { font-size: clamp(22px, 2.2vw, 30px); }
.h-small { font-size: clamp(20px, 1.8vw, 26px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.23em;
  color: var(--rust);
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 48px; height: 1px; background: var(--rust); }

.lead { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.6; color: var(--text-secondary); max-width: 70ch; }
.section--charcoal .lead { color: var(--text-on-dark-muted); }

.italic-num { font-family: var(--font-display); font-style: italic; color: var(--rust); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--rust); color: var(--white); }
.btn--primary:hover { background: var(--rust-dark); }
.btn--secondary { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn--secondary:hover { background: var(--cream); color: var(--charcoal); }
.btn--ghost-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--ghost-dark:hover { background: var(--charcoal); color: var(--cream); }
.btn--dark { background: var(--charcoal); color: var(--cream); }
.btn--dark:hover { background: var(--charcoal-soft); }
.arrow { display: inline-block; width: 16px; height: 16px; flex-shrink: 0; }

/* =========================================================
   Top Bar
   ========================================================= */
.topbar {
  background: var(--charcoal);
  color: var(--text-on-dark-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 10px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.topbar__group { display: flex; gap: 24px; align-items: center; }
.topbar__item { display: inline-flex; gap: 6px; align-items: center; }
.topbar__item .icon { color: var(--rust); }

/* =========================================================
   Nav
   ========================================================= */
.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
}
.nav__logo img { height: 44px; width: auto; }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 8px 0;
}
.nav__link.is-active, .nav__link:hover { color: var(--rust); }
.nav__link.is-active::after, .nav__link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rust);
}
.nav__cta { display: flex; gap: 14px; align-items: center; }
.nav__phone {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
}
.nav__phone .icon { color: var(--rust); }
.nav__cta .btn { padding: 14px 24px; font-size: 13px; }
.nav__toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--charcoal); position: relative; }
.nav__toggle span::before, .nav__toggle span::after { content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--charcoal); transition: transform .2s; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 720px;
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--charcoal-soft);
  background-size: cover;
  background-position: center;
}
.hero__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,.75) 0%, rgba(26,26,26,.35) 55%, rgba(26,26,26,.92) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
  min-height: 720px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px var(--gutter) 80px;
}
.hero h1, .hero h2, .hero h3, .hero__title { color: var(--cream); text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.hero .eyebrow { color: var(--cream); text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.hero__sub { color: #CCCCCC; max-width: 680px; font-size: 18px; line-height: 1.6; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page hero (smaller) */
.page-hero {
  background: var(--charcoal);
  color: var(--cream);
  padding: 100px 0 80px;
}
.page-hero__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: flex; flex-direction: column; gap: 24px; }
.page-hero h1 { color: var(--cream); }

.crumb { display: flex; gap: 10px; align-items: center; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-on-dark-muted); }
.crumb a:hover { color: var(--cream); }
.crumb span:last-child { color: var(--cream); }
.crumb .icon { width: 12px; height: 12px; opacity: .7; }

/* =========================================================
   Trust bar
   ========================================================= */
.trust {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust__item { display: inline-flex; gap: 12px; align-items: center; }
.trust__item .num { font-family: var(--font-display); font-style: italic; font-size: 36px; color: var(--rust); line-height: 1; }
.trust__item .icon { color: var(--rust); width: 32px; height: 32px; }
.trust__item dl { display: flex; flex-direction: column; gap: 2px; }
.trust__item dt { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); }
.trust__item dd { font-size: 13px; color: var(--text-secondary); }

/* =========================================================
   Section header
   ========================================================= */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section-head__l { max-width: 760px; display: flex; flex-direction: column; gap: 18px; }

/* =========================================================
   Services grid (cards)
   ========================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.svc-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(26,26,26,.18); }
.svc-card__img { width: 100%; aspect-ratio: 4/3; background: var(--mortar); background-size: cover; background-position: center; }
.svc-card__body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.svc-card__num { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; color: var(--rust); }
.svc-card__title { font-size: 30px; font-weight: 600; line-height: 1.15; color: var(--charcoal); }
.svc-card__desc { font-size: 14px; line-height: 1.6; color: var(--text-secondary); }
.svc-card__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.svc-card__link .arrow { color: var(--rust); transition: transform .2s; }
.svc-card:hover .svc-card__link .arrow { transform: translateX(4px); }

/* =========================================================
   Project tile grid
   ========================================================= */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 32px; row-gap: 48px; }
.proj-tile { display: flex; flex-direction: column; gap: 14px; }
.proj-tile__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--mortar-dark);
  background-size: cover;
  background-position: center;
  transition: transform .35s ease;
}
.proj-tile:hover .proj-tile__img { transform: scale(1.02); }
.proj-tile__meta { display: flex; justify-content: space-between; gap: 16px; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.proj-tile__cat { color: var(--rust); }
.proj-tile__loc { color: var(--text-muted); font-weight: 500; }
.proj-tile__title { font-family: var(--font-display); font-size: 22px; font-weight: 500; line-height: 1.25; color: var(--charcoal); }

/* =========================================================
   Why list
   ========================================================= */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
.why-list { display: flex; flex-direction: column; }
.why-item { display: flex; gap: 32px; padding: 28px 0; border-top: 1px solid var(--border); align-items: flex-start; }
.why-item:last-child { border-bottom: 1px solid var(--border); }
.why-item__num { font-family: var(--font-display); font-style: italic; font-size: 24px; color: var(--rust); }
.why-item__body h3 { font-size: 26px; line-height: 1.25; margin-bottom: 8px; }
.why-item__body p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); }

/* =========================================================
   Process
   ========================================================= */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.process__step { padding: 0 16px; display: flex; flex-direction: column; gap: 18px; }
.process__step + .process__step { border-left: 1px solid var(--border); }
.process__num-row { display: inline-flex; gap: 14px; align-items: center; }
.process__dot { width: 14px; height: 14px; border-radius: 50%; background: var(--rust); display: inline-block; }
.process__num { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--charcoal); }
.process__step h3 { font-size: 26px; }
.process__step p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); }

/* =========================================================
   Service Area
   ========================================================= */
.area-grid { display: grid; grid-template-columns: 480px 1fr; gap: 96px; align-items: start; }
.area-map {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--charcoal-soft);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-muted);
  font-size: 13px;
  letter-spacing: 0.18em;
}
.area-cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 32px; }
.area-cities__col { display: flex; flex-direction: column; gap: 14px; }
.area-cities li { font-family: var(--font-display); font-size: 18px; color: var(--cream); }
.area-cities h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--rust); margin-bottom: 4px; font-family: var(--font-body); }

/* =========================================================
   Reviews
   ========================================================= */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: start; }
.review {
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review__stars { display: flex; gap: 4px; color: var(--rust); }
.review__quote { font-family: var(--font-display); font-style: italic; font-size: 20px; line-height: 1.45; color: var(--charcoal); }
.review__name { font-weight: 600; font-size: 14px; color: var(--charcoal); }
.review__city { font-size: 13px; color: var(--text-muted); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); padding: 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 28px 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}
.faq-q__l { display: flex; gap: 32px; align-items: flex-start; flex: 1; }
.faq-q__num { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--rust); line-height: 1.25; padding-top: 4px; }
.faq-q__text { font-family: var(--font-display); font-size: 24px; font-weight: 500; line-height: 1.3; color: var(--charcoal); }
.faq-q .icon { width: 24px; height: 24px; transition: transform .25s; }
.faq-item.is-open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.is-open .faq-a { max-height: 600px; padding: 0 0 28px 56px; }
.faq-a p { font-size: 16px; line-height: 1.7; color: var(--text-secondary); max-width: 70ch; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  position: relative;
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
}
.cta-band__media { position: absolute; inset: 0; z-index: 0; }
.cta-band__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,.92), rgba(26,26,26,.85)), var(--cta-bg, var(--charcoal-soft));
  background-size: cover;
  background-position: center;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 96px;
  align-items: center;
}
.cta-form {
  background: var(--cream);
  color: var(--charcoal);
  padding: 36px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-form h3 { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--charcoal); }
.cta-form input, .cta-form select, .cta-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
}
.cta-form .btn { width: 100%; }
.cta-form .fineprint { font-size: 12px; color: var(--text-muted); }

/* =========================================================
   Filter chips (gallery)
   ========================================================= */
.chips { display: flex; gap: 12px; flex-wrap: wrap; }
.chip {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  cursor: pointer;
  transition: all .18s;
}
.chip:hover { border-color: var(--charcoal); }
.chip.is-active { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--charcoal);
  color: var(--text-on-dark);
  padding: 80px 0 32px;
}
.footer__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 64px; margin-bottom: 64px; }
.footer__brand img { height: 44px; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer__brand p { font-size: 14px; line-height: 1.6; color: var(--text-on-dark-muted); margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border-dark); border-radius: 2px; transition: all .18s; }
.footer__social a:hover { background: var(--rust); border-color: var(--rust); }
.footer__col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; color: var(--rust); margin-bottom: 16px; font-family: var(--font-body); }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: var(--text-on-dark); }
.footer__col a:hover { color: var(--rust); }
.footer__contact-row { display: inline-flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer__contact-row .icon { color: var(--rust); margin-top: 4px; }
.footer__contact-row strong { font-size: 14px; font-weight: 600; color: var(--cream); display: block; }
.footer__contact-row span { font-size: 13px; color: var(--text-on-dark-muted); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  font-size: 12px;
  color: var(--text-on-dark-muted);
}
.footer__legal { display: flex; gap: 24px; align-items: center; }
.tao-mark {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #F5811F;
  margin-left: 20px;
  background: transparent;
  flex-shrink: 0;
}

/* =========================================================
   Utilities
   ========================================================= */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: start; }
.cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: start; }
.stack { display: flex; flex-direction: column; gap: 24px; }
.center { text-align: center; }

.icon { width: 16px; height: 16px; display: inline-block; flex-shrink: 0; }

/* =========================================================
   Image placeholders (for early development)
   ========================================================= */
.ph {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,.04), rgba(0,0,0,.12)),
    var(--mortar);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph::after {
  content: attr(data-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-align: center;
  padding: 0 24px;
}
.ph--dark { background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(0,0,0,.15)), var(--mortar-dark); }
.ph--rust { background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(0,0,0,.15)), var(--rust); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  :root { --gutter: 32px; --section: 80px; }
  .svc-grid, .proj-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .area-grid, .split-2 { grid-template-columns: 1fr; gap: 48px; }
  .area-map { aspect-ratio: 16/9; }
  .area-cities { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process__step + .process__step { border-left: none; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 48px; }
  .h-display { font-size: clamp(40px, 8vw, 64px); }
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__phone { display: none; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; --section: 56px; }
  .svc-grid, .proj-grid, .review-grid, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .area-cities { grid-template-columns: 1fr; gap: 24px; }
  .process { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .topbar { display: none; }
  .trust__inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 32px; margin-bottom: 40px; }
  .hero { min-height: 560px; }
  .hero__inner { min-height: 560px; padding: 80px var(--gutter); }
}

/* Mobile menu open state */
body.menu-open { overflow: hidden; }
@media (max-width: 1024px) {
  body.menu-open .nav__links {
    display: flex;
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    padding: 32px var(--gutter);
    gap: 24px;
    z-index: 99;
  }
  body.menu-open .nav__toggle span { background: transparent; }
  body.menu-open .nav__toggle span::before { transform: rotate(45deg); top: 0; }
  body.menu-open .nav__toggle span::after { transform: rotate(-45deg); top: 0; }
}
