@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&family=Bodoni+Moda:opsz,wght@6..96,500;6..96,600&display=swap');

:root {
  --ink: #0a0b0a;
  --soft-ink: #141614;
  --paper: #efeee8;
  --muted: #a6aaa1;
  --line: rgba(239, 238, 232, 0.18);
  --acid: #b7ef32;
  --acid-dark: #162006;
  --white: #ffffff;
  --display: "Bodoni Moda", Georgia, serif;
  --utility: "Barlow Condensed", "Arial Narrow", sans-serif;
  --page: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--utility);
  font-size: 18px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.announce {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  background: var(--acid);
  color: var(--acid-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(10, 11, 10, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  width: var(--page);
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: repeat(5, 3px);
  align-items: center;
  gap: 3px;
  height: 25px;
}

.brand-mark i {
  display: block;
  width: 3px;
  background: var(--acid);
}

.brand-mark i:nth-child(1),
.brand-mark i:nth-child(5) { height: 7px; }
.brand-mark i:nth-child(2),
.brand-mark i:nth-child(4) { height: 17px; }
.brand-mark i:nth-child(3) { height: 25px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: #d7d9d2;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--acid);
  transition: right 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
}

.nav-call {
  padding: 10px 15px;
  border: 1px solid var(--acid);
  color: var(--acid) !important;
}

.nav-call::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 104px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #20231f;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.hero-shade {
  background: rgba(0, 0, 0, 0.48);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
  padding: 88px 0 46px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.25rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.hero h1 em {
  color: var(--acid);
  font-weight: inherit;
}

.hero-copy {
  max-width: 590px;
  margin: 26px 0 0;
  color: #e3e5dd;
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 1px solid var(--paper);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button.primary,
.button:hover {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--acid-dark);
}

.hero-trust {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-trust span {
  padding: 17px 26px;
  color: #d5d8d1;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-align: center;
  text-transform: uppercase;
}

.hero-trust span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.section {
  padding: clamp(80px, 11vw, 150px) 0;
}

.section-shell {
  width: var(--page);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.65fr) minmax(0, 1.55fr);
  gap: clamp(50px, 10vw, 150px);
}

.section-index {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-index strong {
  display: block;
  margin-bottom: 8px;
  color: var(--acid);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
}

.lead-copy {
  max-width: 870px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.9vw, 4.7rem);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.lead-copy .accent {
  color: var(--acid);
}

.service-ledger {
  border-top: 1px solid var(--line);
}

.service-row {
  min-height: 106px;
  display: grid;
  grid-template-columns: 68px 1fr minmax(240px, 0.8fr);
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.service-row .number {
  color: var(--acid);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.service-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-row:hover h3 {
  color: var(--acid);
}

.photo-feature {
  background: var(--paper);
  color: var(--ink);
}

.photo-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.rotator {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.rotator .image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #2b2e2a;
}

.rotator img {
  height: 100%;
  object-fit: cover;
  transition: opacity 250ms ease;
}

.rotator.is-changing img {
  opacity: 0.15;
}

.rotator figcaption {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(10, 11, 10, 0.25);
  color: #454942;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rotator figcaption::after {
  content: "Tap to change";
  color: #6e736a;
  font-size: 0.68rem;
}

.feature-copy {
  padding-bottom: 48px;
}

.feature-copy h2,
.page-title,
.section-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.feature-copy h2 {
  font-size: clamp(2.7rem, 5.5vw, 5.2rem);
}

.feature-copy p {
  max-width: 480px;
  margin: 24px 0 0;
  color: #4e534b;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.cta-band {
  background: var(--acid);
  color: var(--acid-dark);
}

.cta-layout {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 70px;
}

.cta-layout h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.cta-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-side p {
  margin: 0 0 20px;
  font-size: 1.08rem;
}

.cta-side .button {
  border-color: var(--ink);
  color: var(--ink);
}

.cta-side .button:hover {
  background: var(--ink);
  color: var(--acid);
}

.page-hero {
  padding: clamp(72px, 10vw, 140px) 0 clamp(58px, 8vw, 105px);
  background: var(--soft-ink);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(38px, 8vw, 120px);
  align-items: end;
}

.page-title {
  max-width: 900px;
  font-size: clamp(3.25rem, 8.5vw, 8.5rem);
}

.page-deck {
  max-width: 620px;
  margin: 25px 0 0;
  color: #bfc3b9;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.story-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.story-photo img {
  height: 100%;
  object-fit: cover;
}

.story-copy h2,
.section-title {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.story-copy p {
  color: #b8bcb3;
}

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

.fact-strip div {
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.fact-strip div + div {
  border-left: 1px solid var(--line);
}

.fact-strip strong {
  color: var(--acid);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 500;
}

.fact-strip span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-chapter {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(36px, 8vw, 120px);
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.service-chapter:last-child {
  border-bottom: 1px solid var(--line);
}

.service-chapter .chapter-no {
  color: var(--acid);
  font-size: 0.82rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.service-chapter h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-chapter p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.gallery-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}

.gallery-intro p {
  max-width: 480px;
  margin: 0 0 8px auto;
  color: var(--muted);
}

.photo-essay {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-shot {
  grid-column: span 6;
  margin: 0 0 38px;
}

.gallery-shot.wide {
  grid-column: span 8;
}

.gallery-shot.narrow {
  grid-column: span 4;
}

.gallery-shot .shot-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #232622;
}

.gallery-shot.wide .shot-frame {
  aspect-ratio: 16 / 10;
}

.gallery-shot.narrow .shot-frame {
  aspect-ratio: 3 / 4;
}

.gallery-shot img {
  height: 100%;
  object-fit: cover;
}

.gallery-shot figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  color: #b8bcb4;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gallery-shot figcaption span:first-child {
  color: var(--acid);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(48px, 8vw, 110px);
}

.contact-card {
  padding: 38px;
  background: var(--acid);
  color: var(--acid-dark);
}

.contact-card h2 {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.phone-link {
  display: block;
  padding: 19px 0;
  border-top: 1px solid rgba(22, 32, 6, 0.3);
  border-bottom: 1px solid rgba(22, 32, 6, 0.3);
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.contact-card address {
  margin: 24px 0;
  font-style: normal;
}

.contact-card .button {
  border-color: var(--acid-dark);
  color: var(--acid-dark);
}

.contact-card .button:hover {
  background: var(--acid-dark);
  color: var(--acid);
}

.hours-panel h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 500;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 25px;
  color: #c8cbc3;
  font-size: 0.77rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
  text-align: left;
}

.hours-table td {
  color: var(--muted);
  text-align: right;
}

.map-shell {
  aspect-ratio: 16 / 7;
  min-height: 340px;
  overflow: hidden;
  background: #292c28;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.site-footer {
  padding: 48px 0 94px;
  background: #060706;
  border-top: 1px solid var(--line);
}

.footer-grid {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 55px;
  align-items: end;
}

.footer-name {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 2rem;
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: #979b93;
  font-size: 0.84rem;
  font-style: normal;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 6px 28px;
}

.footer-links a {
  color: #c9ccc4;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.preview-credit {
  position: fixed;
  left: 10px;
  bottom: calc(var(--bbs-pay-height, 66px) + 10px);
  z-index: 2147483001;
  max-width: calc(100vw - 20px);
  padding: 7px 11px;
  background: #22251f;
  color: #c2c6bd;
  border: 1px solid #3b4037;
  border-radius: 999px;
  font-family: var(--utility);
  font-size: 12px;
  line-height: 1.2;
  text-decoration: none;
}

.reveal {
  transition: transform 520ms cubic-bezier(.2,.7,.2,1);
}

.js-ready .reveal:not(.in-view) {
  transform: translateY(18px);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js-ready .reveal:not(.in-view) {
    transform: none;
  }
}

@media (max-width: 880px) {
  :root {
    --page: min(100% - 30px, 700px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 104px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 20px 100px;
    background: var(--ink);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 19px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-call {
    margin-top: 16px;
    text-align: center;
  }

  .intro-grid,
  .page-hero-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .photo-feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    padding-bottom: 0;
  }

  .service-row {
    grid-template-columns: 44px 1fr;
  }

  .service-row p {
    grid-column: 2;
  }

  .service-chapter {
    grid-template-columns: 100px 1fr;
    gap: 22px;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 65px 0;
  }

  .gallery-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-intro p {
    margin-left: 0;
  }

  .gallery-shot,
  .gallery-shot.wide,
  .gallery-shot.narrow {
    grid-column: span 6;
  }

  .gallery-shot.narrow .shot-frame {
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100% - 28px);
  }

  .announce {
    min-height: 36px;
    font-size: 0.67rem;
  }

  .nav-shell {
    height: 66px;
  }

  .nav-links {
    top: 102px;
  }

  .hero {
    min-height: calc(100svh - 102px);
  }

  .hero-photo {
    object-position: 52% center;
  }

  .hero-content {
    padding: 76px 0 34px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 4.6rem);
  }

  .hero-copy {
    max-width: 340px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-trust span {
    padding: 9px 15px;
    font-size: 0.63rem;
  }

  .hero-trust span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .button-row .button {
    flex: 1 1 100%;
  }

  .lead-copy {
    font-size: 2.45rem;
  }

  .service-row {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .service-row p {
    font-size: 0.9rem;
  }

  .fact-strip {
    grid-template-columns: 1fr;
  }

  .fact-strip div {
    min-height: 125px;
    padding: 22px 0;
  }

  .fact-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-chapter {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 42px 0;
  }

  .photo-essay {
    display: block;
  }

  .gallery-shot,
  .gallery-shot.wide,
  .gallery-shot.narrow {
    margin-bottom: 34px;
  }

  .gallery-shot .shot-frame,
  .gallery-shot.wide .shot-frame,
  .gallery-shot.narrow .shot-frame {
    aspect-ratio: 4 / 3;
  }

  .contact-grid {
    display: block;
  }

  .contact-card {
    margin-bottom: 48px;
    padding: 28px 22px;
  }

  .map-shell {
    min-height: 390px;
    aspect-ratio: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .preview-credit {
    bottom: calc(var(--bbs-pay-height, 150px) + 8px);
    left: 8px;
    font-size: 11px;
  }
}
