/* ==========================================================================
   Fresh Cuts Co. — Austin, TX
   Fresh cuts, modern craft.
   ========================================================================== */

/* --------------------------------------------------------------- Fonts --- */
@font-face {
  font-family: 'Oswald';
  src: url('../Media/fonts/oswald.woff2') format('woff2');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../Media/fonts/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------------------------------- Tokens --- */
:root {
  --green: #15603D;
  --green-deep: #0E4229;
  --turf: #3E9C6D;
  --ink: #111413;
  --gray: #6B7280;
  --paper: #F7F8F7;
  --white: #FFFFFF;

  --line: rgba(17, 20, 19, 0.12);
  --line-light: rgba(247, 248, 247, 0.16);

  --font-display: 'Oswald', 'Haettenschweiler', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --gutter: clamp(1.25rem, 5vw, 4rem);
  --maxw: 78rem;
  --section-y: clamp(4.5rem, 11vw, 9rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.75rem;

  /* Corner radii — soft, not sharp */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

  --shadow-soft: 0 18px 40px -24px rgba(17, 20, 19, 0.45);
}

/* --------------------------------------------------------------- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.02; text-transform: uppercase; letter-spacing: 0.005em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--turf);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; top: -100px; left: var(--gutter); z-index: 999;
  background: var(--ink); color: var(--paper);
  padding: 0.75rem 1.25rem; font-size: 0.85rem; font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------- Layout ---- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }

/* Section eyebrow — numbered, hairline rule. The quiet structural motif. */
.eyebrow {
  display: flex; align-items: center; gap: 0.9rem;
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--turf);
  margin-bottom: 1.5rem;
}
.eyebrow::after {
  content: ''; flex: 1; height: 1px;
  background: currentColor; opacity: 0.35;
}
.eyebrow-num { color: var(--gray); font-variant-numeric: tabular-nums; }

.section-title {
  font-size: clamp(2.1rem, 5.5vw, 3.75rem);
  max-width: 20ch;
}
.lede {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--gray);
  max-width: 56ch;
  margin-top: 1.5rem;
}

/* ------------------------------------------------------------ Buttons ---- */
.btn {
  --btn-bg: var(--green);
  --btn-fg: var(--paper);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1.05rem 2rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--btn-bg);
  border-radius: var(--r-pill);
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease),
              color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.btn--light { --btn-bg: var(--paper); --btn-fg: var(--ink); }
.btn--light:hover { background: var(--turf); border-color: var(--turf); color: var(--ink); }

.btn--outline-light { --btn-bg: transparent; --btn-fg: var(--paper); border-color: var(--line-light); }
.btn--outline-light:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }

.btn--sm { padding: 0.75rem 1.4rem; font-size: 0.72rem; }

/* Text link with animated rule */
.link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding-bottom: 0.35rem;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size 0.4s var(--ease), color 0.3s var(--ease);
}
.link:hover { background-size: 0% 1px; color: var(--turf); }

/* ------------------------------------------------------------- Header ---- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  transition: background-color 0.45s var(--ease), padding 0.45s var(--ease),
              width 0.45s var(--ease), border-color 0.45s var(--ease),
              box-shadow 0.45s var(--ease);
}
/* On scroll the bar lifts into a floating pill */
.header.is-stuck .header__inner {
  width: calc(100% - var(--gutter) * 2);
  padding: 0.5rem 0.6rem 0.5rem 1.6rem;
  background: rgba(17, 20, 19, 0.88);
  border-color: rgba(247, 248, 247, 0.12);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 14px 34px -20px rgba(0, 0, 0, 0.85);
}
.header.is-stuck .burger { margin-right: 0; }

.brand {
  display: flex; align-items: baseline; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.22rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--paper);
}
.brand__dot { width: 7px; height: 7px; background: var(--turf); border-radius: 50%; transform: translateY(-3px); flex: none; }
.brand__co { color: var(--turf); font-size: 0.78em; }

.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav__link {
  position: relative;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(247, 248, 247, 0.75);
  padding-block: 0.4rem;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 1px;
  background: var(--turf);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--paper); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.header__cta { display: inline-flex; }

/* Burger */
.burger {
  display: none;
  width: 2.75rem; height: 2.75rem;
  align-items: center; justify-content: center;
  margin-right: -0.6rem;
}
.burger__box { display: block; width: 22px; height: 12px; position: relative; }
.burger__box span {
  position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--paper);
  transition: transform 0.4s var(--ease), opacity 0.25s var(--ease), width 0.4s var(--ease);
}
.burger__box span:nth-child(1) { top: 0; }
.burger__box span:nth-child(2) { bottom: 0; width: 70%; }
.burger[aria-expanded="true"] .burger__box span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__box span:nth-child(2) { width: 100%; transform: translateY(-5px) rotate(-45deg); }

/* --------------------------------------------------------- Mobile menu --- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--green-deep);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--header-h) var(--gutter) 2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { clip-path: inset(0 0 0 0); visibility: visible; }

.mobile-menu__nav { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu__link {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 10vw, 3.25rem);
  text-transform: uppercase; color: var(--paper);
  padding-block: 0.35rem;
  display: flex; align-items: baseline; gap: 1rem;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s var(--ease);
}
.mobile-menu.is-open .mobile-menu__link { opacity: 1; transform: none; }
.mobile-menu__link:hover { color: var(--turf); }
.mobile-menu__num {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--turf); opacity: 0.8;
}
.mobile-menu__foot {
  margin-top: 2.75rem; padding-top: 2rem;
  border-top: 1px solid var(--line-light);
  display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s var(--ease) 0.35s, transform 0.5s var(--ease) 0.35s;
}
.mobile-menu.is-open .mobile-menu__foot { opacity: 1; transform: none; }
.mobile-menu__meta { color: rgba(247,248,247,0.7); font-size: 0.9rem; line-height: 1.8; }
.mobile-menu__meta a:hover { color: var(--turf); }

/* ---------------------------------------------------------------- Hero --- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  min-height: max(38rem, 100svh);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  overflow: hidden;
}
.hero__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + clamp(3rem, 7vw, 6rem)) clamp(2rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem) var(--gutter);
  position: relative;
  background: var(--green);
}
/* Subtle depth field — no texture, just light */
.hero__content::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 10% 0%, rgba(62,156,109,0.30), transparent 60%),
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.28));
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 34rem; margin-left: auto; width: 100%; }

.hero__eyebrow {
  display: flex; align-items: center; gap: 0.85rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(247,248,247,0.75);
  margin-bottom: 1.75rem;
}
.hero__eyebrow::before { content: ''; width: 2.25rem; height: 1px; background: var(--turf); flex: none; }

.hero__title {
  font-size: clamp(2.9rem, 7.2vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.005em;
}
.hero__title em {
  font-style: normal; display: block;
  color: rgba(247,248,247,0.55);
}
.hero__tagline {
  margin-top: 1.6rem;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: rgba(247,248,247,0.82);
  max-width: 34ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.5rem; }

.hero__status {
  margin-top: 2.75rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 2rem;
  font-size: 0.82rem; color: rgba(247,248,247,0.72);
}

.status-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 1.05rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper);
  background: rgba(247, 248, 247, 0.1);
  border: 1px solid rgba(247, 248, 247, 0.18);
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
}
.status-pill__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gray); flex: none;
}
.status-pill.is-open .status-pill__dot {
  background: var(--turf);
  box-shadow: 0 0 0 0 rgba(62,156,109,0.65);
  animation: pulse 2.4s infinite;
}
.status-pill.is-closed .status-pill__dot { background: #C0553F; }
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(62,156,109,0); }
  100% { box-shadow: 0 0 0 0 rgba(62,156,109,0); }
}

/* Deliberately square — the hero image runs flush into the green field */
.hero__media { position: relative; overflow: hidden; background: var(--ink); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(21,96,61,0.55), transparent 45%),
              linear-gradient(0deg, rgba(17,20,19,0.45), transparent 55%);
}

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 1.75rem; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(247,248,247,0.6);
}
.hero__scroll::after {
  content: ''; width: 2.5rem; height: 1px; background: currentColor;
  transform-origin: left; animation: sweep 2.6s var(--ease) infinite;
}
@keyframes sweep { 0%,100% { transform: scaleX(0.35); } 50% { transform: scaleX(1); } }

/* ------------------------------------------------------------ Marquee ---- */
.marquee {
  background: var(--ink); color: var(--paper);
  padding-block: 1.15rem;
  overflow: hidden;
  border-block: 1px solid rgba(247,248,247,0.1);
}
.marquee__track { display: flex; width: max-content; animation: slide 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; flex: none; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 2.25rem;
  padding-inline: 1.125rem;
  font-family: var(--font-display); font-weight: 500;
  font-size: 0.95rem; letter-spacing: 0.16em; text-transform: uppercase;
  white-space: nowrap;
  color: rgba(247,248,247,0.85);
}
.marquee__item::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--turf); flex: none; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------- Services ---- */
.services { background: var(--white); }
.services__head {
  display: grid; grid-template-columns: 1fr auto; align-items: end;
  gap: 2rem; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* The scorecard */
.card-list { border-top: 1px solid var(--ink); }
.svc {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr) minmax(0, 1.15fr) auto;
  align-items: center; gap: 1.5rem;
  padding: clamp(1.35rem, 2.6vw, 2rem) 0.75rem;
  border-bottom: 1px solid var(--line);
  border-radius: var(--r-sm);
  position: relative;
  transition: background-color 0.4s var(--ease), padding-left 0.4s var(--ease);
}
.svc::before {
  content: ''; position: absolute; inset: 0.5rem auto 0.5rem 0; width: 3px;
  background: var(--turf); border-radius: var(--r-pill);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.45s var(--ease);
}
.svc:hover { background: rgba(21,96,61,0.045); padding-left: 1.5rem; }
.svc:hover::before { transform: scaleY(1); transform-origin: top; }

.svc__num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 0.82rem; letter-spacing: 0.14em;
  color: var(--turf); font-variant-numeric: tabular-nums;
}
.svc__name { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
.svc__desc { color: var(--gray); font-size: 0.95rem; }
.svc__meta {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gray);
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.services__note {
  margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.5rem;
  color: var(--gray); font-size: 0.9rem;
}

/* -------------------------------------------------------------- About ---- */
.about { background: var(--paper); }
.about__grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--r-lg);
}
.about__media::after {
  content: ''; position: absolute; inset: auto -1.25rem -1.25rem auto;
  width: 45%; height: 45%; border: 1px solid var(--turf); z-index: -1;
  border-radius: var(--r-lg);
}
.about__body p + p { margin-top: 1.15rem; }

.stats {
  display: flex; flex-wrap: wrap;
  gap: clamp(1.75rem, 4vw, 3rem);
  margin-top: 2.75rem;
  border-top: 1px solid var(--line); padding-top: 2rem;
}
.stat + .stat {
  border-left: 1px solid var(--line);
  padding-left: clamp(1.75rem, 4vw, 3rem);
}
.stat__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.75rem); line-height: 1;
  color: var(--green);
}
.stat__label {
  margin-top: 0.5rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gray);
}

/* ------------------------------------------------------------ Gallery ---- */
.gallery { background: var(--paper); }
.gallery__grid { columns: 3; column-gap: clamp(0.75rem, 1.6vw, 1.25rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.tile {
  break-inside: avoid;
  margin-bottom: clamp(0.75rem, 1.6vw, 1.25rem);
  position: relative; display: block; width: 100%;
  overflow: hidden; background: var(--ink);
  border-radius: var(--r-md);
  cursor: zoom-in;
}
.tile img {
  width: 100%; display: block;
  transition: transform 0.8s var(--ease), opacity 0.5s var(--ease);
}
.tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,66,41,0.55), transparent 55%);
  opacity: 0; transition: opacity 0.45s var(--ease);
}
.tile__label {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--paper);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.tile:hover img { transform: scale(1.05); }
.tile:hover::after, .tile:focus-visible::after { opacity: 1; }
.tile:hover .tile__label, .tile:focus-visible .tile__label { opacity: 1; transform: none; }

/* ---------------------------------------------------------- The team ----- */
.team { background: var(--white); }
.team__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.member { display: flex; flex-direction: column; }
.member__media {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--ink);
}
.member__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block;
  /* Slight base scale crops the film-border edge baked into the source frames */
  transform: scale(1.04);
  transition: transform 0.8s var(--ease);
}
.member:hover .member__media img { transform: scale(1.09); }

/* Years-behind-the-chair chip floating on the portrait */
.member__badge {
  position: absolute; left: 0.9rem; bottom: 0.9rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-pill);
  background: rgba(17, 20, 19, 0.6);
  border: 1px solid rgba(247, 248, 247, 0.18);
  backdrop-filter: blur(8px);
  color: var(--paper);
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}

.member__body { padding-top: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.member__name { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
.member__role {
  margin-top: 0.5rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--turf);
}
.member__bio { margin-top: 0.9rem; color: var(--gray); font-size: 0.95rem; }
.member__cta { margin-top: auto; padding-top: 1.5rem; }

/* ---------------------------------------------------------- CTA band ----- */
.band { background: var(--white); padding-block: clamp(1.5rem, 4vw, 3rem); }

.band__card {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--r-xl);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.75rem, 5vw, 4rem);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
}
.band__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
/* Green wash over the photograph — keeps the type legible and on-brand */
.band__card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg,
      rgba(14, 66, 41, 0.96) 0%,
      rgba(21, 96, 61, 0.90) 45%,
      rgba(21, 96, 61, 0.58) 100%),
    radial-gradient(70% 130% at 88% 10%, rgba(62, 156, 109, 0.38), transparent 62%);
}
.band__inner {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.band__title { font-size: clamp(1.9rem, 4.6vw, 3.1rem); max-width: 16ch; }
.band__sub { margin-top: 1rem; color: rgba(247,248,247,0.78); max-width: 40ch; }

/* -------------------------------------------------------------- Visit ---- */
.visit { background: var(--ink); color: var(--paper); }
.visit .eyebrow { color: var(--turf); }
.visit .eyebrow-num { color: rgba(247,248,247,0.5); }
.visit__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.info__block + .info__block { margin-top: 2.25rem; padding-top: 2.25rem; border-top: 1px solid var(--line-light); }
.info__label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--turf); margin-bottom: 0.85rem;
}
.info__body { color: rgba(247,248,247,0.82); font-size: 1.02rem; line-height: 1.75; }
.info__body a { transition: color 0.3s var(--ease); }
.info__body a:hover { color: var(--turf); }

.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: 0.6rem 0; font-size: 0.98rem; font-weight: 400; }
.hours tr + tr { border-top: 1px solid rgba(247,248,247,0.09); }
.hours th { color: rgba(247,248,247,0.85); font-weight: 500; }
.hours td { color: rgba(247,248,247,0.62); text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--turf); font-weight: 600; }
.hours tr.is-closed td { color: rgba(247,248,247,0.38); }

.map {
  width: 100%; height: 100%; min-height: 22rem;
  border: 1px solid var(--line-light);
  border-radius: var(--r-md);
  filter: grayscale(1) invert(0.92) contrast(0.86) hue-rotate(120deg);
}
.map-wrap { display: flex; flex-direction: column; gap: 1.25rem; }

/* ------------------------------------------------------------- Footer ---- */
.footer { background: var(--green-deep); color: rgba(247,248,247,0.7); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-light);
}
.footer .brand { color: var(--paper); font-size: 1.35rem; }
.footer__tag { margin-top: 1rem; max-width: 30ch; font-size: 0.95rem; }
.footer__h {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--turf); margin-bottom: 1.1rem;
}
.footer__list li + li { margin-top: 0.6rem; }
.footer__list a { font-size: 0.95rem; transition: color 0.3s var(--ease); }
.footer__list a:hover { color: var(--paper); }
.footer__bottom {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.82rem; color: rgba(247,248,247,0.5);
}

/* ----------------------------------------------------------- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 12, 11, 0.96);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { margin: 0; max-width: min(72rem, 100%); max-height: 100%; display: flex; flex-direction: column; gap: 1rem; }
.lightbox__img {
  max-width: 100%; max-height: calc(100svh - 10rem);
  object-fit: contain; margin-inline: auto;
  border-radius: var(--r-md);
  transform: scale(0.96); transition: transform 0.45s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: none; }
.lightbox__cap {
  text-align: center; color: rgba(247,248,247,0.65);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
}
.lightbox__btn {
  position: absolute; z-index: 2;
  width: 3rem; height: 3rem;
  display: grid; place-items: center;
  color: var(--paper);
  border: 1px solid var(--line-light);
  background: rgba(17,20,19,0.6);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lightbox__btn:hover { background: var(--green); border-color: var(--green); }
.lightbox__btn--close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__btn--prev { left: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__btn svg { width: 18px; height: 18px; }

/* -------------------------------------------------------------- Modal ---- */
.modal {
  position: fixed; inset: 0; z-index: 210;
  display: grid; place-items: center;
  padding: var(--gutter);
  background: rgba(10, 12, 11, 0.75);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__panel {
  background: var(--paper); color: var(--ink);
  max-width: 30rem; width: 100%;
  padding: clamp(2rem, 5vw, 3rem);
  border-top: 3px solid var(--green);
  border-radius: var(--r-lg);
  transform: translateY(14px); transition: transform 0.4s var(--ease);
  position: relative;
}
.modal.is-open .modal__panel { transform: none; }
.modal__title { font-size: 1.75rem; margin-bottom: 1rem; }
.modal__text { color: var(--gray); margin-bottom: 1.75rem; }
.modal__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.modal__close {
  position: absolute; top: 0.85rem; right: 0.85rem;
  width: 2.25rem; height: 2.25rem; display: grid; place-items: center;
  color: var(--gray); border-radius: 50%;
  transition: color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.modal__close:hover { color: var(--ink); background: rgba(17, 20, 19, 0.06); }

/* ------------------------------------------------------------ Reveals ---- */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal[data-delay="1"].is-visible { transition-delay: 0.1s; }
.reveal[data-delay="2"].is-visible { transition-delay: 0.2s; }
.reveal[data-delay="3"].is-visible { transition-delay: 0.3s; }

/* ---------------------------------------------------------- Responsive --- */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__content { padding-inline: var(--gutter); padding-block: calc(var(--header-h) + 4.5rem) 4rem; }
  .hero__inner { margin-left: 0; max-width: 40rem; }
  .hero__media { height: clamp(18rem, 46vw, 26rem); order: 2; }
  .hero__media::after { background: linear-gradient(0deg, rgba(17,20,19,0.5), transparent 60%); }
  .hero__scroll { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 32rem; }
  .visit__grid { grid-template-columns: 1fr; }
  .gallery__grid { columns: 2; }
}

@media (max-width: 860px) {
  :root { --header-h: 4.25rem; }
  .nav, .header__cta { display: none; }
  .burger { display: inline-flex; }
  .header.is-stuck .header__inner { padding: 0.5rem 1rem 0.5rem 1.35rem; }
  .services__head { grid-template-columns: 1fr; }
  .svc {
    grid-template-columns: 2.75rem minmax(0, 1fr);
    row-gap: 0.35rem; align-items: start;
    padding-block: 1.4rem;
  }
  .svc__num { padding-top: 0.3rem; }
  .svc__desc { grid-column: 2; }
  .svc__meta { grid-column: 2; margin-top: 0.35rem; }
  .svc:hover { padding-left: 0.75rem; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand-col { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .gallery__grid { columns: 1; }
  .team__grid { grid-template-columns: 1fr; }
  .stats { flex-direction: column; gap: 1.25rem; padding-top: 1.5rem; }
  .stat + .stat {
    border-left: 0; padding-left: 0;
    border-top: 1px solid var(--line); padding-top: 1.25rem;
  }
  .hero__actions .btn { width: 100%; }
  .band__inner { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .lightbox__btn--prev { left: 0.5rem; }
  .lightbox__btn--next { right: 0.5rem; }
}

/* ---------------------------------------------------- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .mobile-menu { transition: none; }
  .mobile-menu__link { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------- Print ----- */
@media print {
  .header, .mobile-menu, .marquee, .hero__scroll, .lightbox, .modal, .band, .map { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1.5rem; }
}
