:root {
  --ink: #161413;
  --muted: #635c55;
  --paper: #f7f3ee;
  --cream: #fffaf3;
  --copper: #b7794a;
  --sage: #7a8b78;
  --wine: #6b1f2e;
  --line: rgba(22, 20, 19, .14);
  --shadow: 0 24px 80px rgba(22, 20, 19, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.eyebrow,
.section-eyebrow,
.hero-eyebrow,
.consult-kicker {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 56px);
  color: white;
  background: rgba(24, 18, 14, .96);
  border-bottom: 1px solid rgba(201, 169, 110, .22);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .16);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(24, 18, 14, .96);
  color: white;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .16);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark { display: none; }
.brand-logo {
  width: 166px;
  height: 70px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand small { opacity: .76; font-size: 12px; margin-top: 3px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-cta {
  border: 1px solid currentColor;
  padding: 10px 18px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 6vw, 84px) 44px;
  color: white;
  overflow: hidden;
}
.hero-media, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 13, 12, .82), rgba(15, 13, 12, .38) 48%, rgba(15, 13, 12, .2)),
    linear-gradient(0deg, rgba(15, 13, 12, .78), transparent 44%);
}
.hero-content {
  position: relative;
  width: min(760px, 100%);
  padding-bottom: 64px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #f2c28c; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
}
h1 {
  margin-bottom: 22px;
  max-width: 720px;
  font-size: clamp(58px, 9vw, 128px);
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 74px);
}
h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}
.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2vw, 23px);
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
}
.button.primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.hero .button.primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.button.secondary {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .4);
  color: inherit;
}
.visit .button.secondary, .service-note .button.secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  background: rgba(255, 255, 255, .26);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(16px);
}
.hero-panel div {
  padding: 18px;
  background: rgba(18, 16, 15, .42);
}
.hero-panel strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 30px;
}
.hero-panel span {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.band { background: var(--cream); }
.intro, .services, .experience {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 84px);
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(28px, 7vw, 110px);
  align-items: end;
}
.section-grid p:last-child, .signature-copy p, .section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.signature {
  display: grid;
  grid-template-columns: minmax(280px, 44vw) 1fr;
  min-height: 760px;
  background: #e8e0d6;
}
.portrait-wrap {
  align-self: stretch;
  background: #d6cabd;
  overflow: hidden;
}
.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.signature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 92px);
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.feature-list span, .feature-list a {
  display: inline-flex;
  border: 1px solid rgba(22, 20, 19, .2);
  border-radius: 999px;
  padding: 9px 14px;
  color: #3d3833;
  background: rgba(255, 255, 255, .42);
  font-size: 14px;
  font-weight: 700;
}

.upcoming {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 84px);
}
.countdown {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.countdown strong {
  font-family: Georgia, serif;
  color: var(--wine);
  font-size: clamp(54px, 7vw, 94px);
  line-height: .8;
}
.countdown span {
  max-width: 220px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.2;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 46vw);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  min-height: 76vh;
  padding: 128px clamp(20px, 6vw, 84px) 72px;
  background: var(--cream);
}
.page-hero.small-hero {
  min-height: 56vh;
}
.page-hero h1 {
  color: var(--ink);
  font-size: clamp(50px, 7vw, 92px);
}
.page-hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: 19px;
}
.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #18120e;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-hero {
  background: #18120e;
}
.service-hero h1,
.service-hero p {
  color: #fff;
}
.service-hero .eyebrow {
  color: #c9a96e;
}
.service-hero img {
  height: min(58vw, 560px);
  object-fit: contain;
  object-position: center;
  background: #211711;
}
.service-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--wine);
  color: white;
  font-size: 13px;
  font-weight: 900;
}
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.featured-grid {
  margin-top: 34px;
}
.service-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
  box-shadow: 0 12px 46px rgba(22, 20, 19, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card img {
  width: 100%;
  aspect-ratio: 5 / 3.2;
  object-fit: contain;
  background: #18120e;
}
.service-card span {
  margin: 18px 18px 8px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-card h3 {
  margin: 0 18px 8px;
}
.service-card p {
  margin: 0 18px 16px;
  color: var(--muted);
  font-size: 14px;
}
.service-card strong {
  margin: auto 18px 18px;
  color: var(--wine);
}
.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.service-directory-group {
  padding: clamp(54px, 7vw, 86px) clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
}
.category-title {
  margin-bottom: 24px;
}
.category-title h2 {
  font-size: clamp(34px, 5vw, 62px);
}
.detail-band {
  padding: clamp(52px, 7vw, 84px) clamp(20px, 6vw, 84px);
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.detail-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.detail-grid h2 {
  font-size: clamp(30px, 4vw, 48px);
}
.detail-grid p {
  color: var(--muted);
}
.service-story {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 84px);
}
.service-story p {
  color: var(--muted);
  font-size: 18px;
}
.service-story img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.page-gallery .gallery-grid {
  padding-top: clamp(36px, 5vw, 70px);
}
.page-visit {
  padding-top: 132px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}
.section-heading.compact {
  padding: clamp(62px, 8vw, 96px) clamp(20px, 6vw, 84px) 18px;
  margin: 0;
}
.service-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 26px;
  scrollbar-width: thin;
}
.service-tabs button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 10px 15px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(22, 20, 19, .04);
}
.service-tabs button.active {
  background: var(--wine);
  color: white;
  border-color: var(--wine);
}
.services-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.service-note {
  position: sticky;
  top: 96px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.service-note p { color: var(--muted); }
.text-link {
  color: var(--wine);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}
.service-list {
  display: grid;
  gap: 14px;
}
.service-category {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(22, 20, 19, .06);
}
.category-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: #f1ebe3;
  border-bottom: 1px solid var(--line);
}
.category-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-top: 1px solid rgba(22, 20, 19, .08);
}
.service-row-link {
  transition: background .18s ease;
}
.service-row-link:hover {
  background: #fffaf3;
}
.service-row:first-of-type { border-top: 0; }
.service-row h3 em {
  display: inline-flex;
  margin-left: 8px;
  transform: translateY(-2px);
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(109, 49, 69, .1);
  color: var(--wine);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}
.service-price-wrap {
  display: grid;
  justify-items: end;
  gap: 3px;
}
.service-price-wrap small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price {
  color: var(--wine);
  font-weight: 900;
  white-space: nowrap;
}

.gallery {
  background: var(--paper);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 10px;
  padding: 0 clamp(20px, 6vw, 84px) clamp(64px, 8vw, 110px);
}
.gallery-link {
  display: block;
  min-width: 0;
  color: inherit;
}
.gallery-link.tall {
  grid-row: span 2;
}
.gallery figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
}
.gallery figure.tall {
  grid-row: span 2;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 250, 243, .9);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.experience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #0d0a08;
  padding: 1px;
}
.experience-item {
  padding: clamp(32px, 5vw, 60px);
  background: var(--cream);
}
.experience-item span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--copper);
  font-weight: 900;
}
.experience-item p { color: var(--muted); }

.visit {
  display: grid;
  grid-template-columns: minmax(300px, 520px) 1fr;
  gap: clamp(22px, 5vw, 72px);
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 84px);
  align-items: center;
}
.visit-copy p { color: var(--muted); }
.map-wrap {
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-wrap iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(20px, 6vw, 84px);
  background: var(--ink);
  color: white;
}
.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .68);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: start;
}
.footer-links a {
  color: rgba(255,255,255,.74);
}
.footer-links a:hover {
  color: #c9a96e;
}
.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--wine);
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(109, 49, 69, .34);
}

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--ink);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 14px; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .hero { min-height: 92vh; padding-top: 120px; }
  .hero-panel, .section-grid, .signature, .services-layout, .visit, .experience {
    grid-template-columns: 1fr;
  }
  .page-hero, .service-card-grid, .detail-grid, .service-story {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding-top: 112px;
  }
  .hero-panel { margin-top: 8px; }
  .signature { min-height: auto; }
  .portrait-wrap { max-height: 620px; }
  .service-note { position: static; }
  .services {
    padding-top: 70px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .site-footer { flex-direction: column; }
  .floating-call { display: inline-flex; }
}

@media (max-width: 560px) {
  h1 { font-size: 52px; }
  h2 { font-size: 36px; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero-panel { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .service-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .service-price-wrap {
    justify-items: start;
  }
  .price { white-space: normal; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .gallery-link.tall { grid-row: span 1; }
  .gallery figure.tall { grid-row: span 1; }
  .map-wrap, .map-wrap iframe { min-height: 340px; height: 340px; }
}
