:root {
  --ink: #101411;
  --ink-soft: #334139;
  --paper: #f7f9f4;
  --white: #ffffff;
  --green: #31543e;
  --green-dark: #173126;
  --blue: #263f54;
  --gold: #b48335;
  --mist: #e7ece5;
  --line: rgba(16, 20, 17, 0.16);
  --shadow: 0 26px 70px rgba(16, 20, 17, 0.18);
  --radius: 8px;
  --scroll-progress: 0%;
  --hero-shift: 0px;
  --hero-scale: 1;
  --hero-fade: 1;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body::selection {
  background: rgba(180, 131, 53, 0.32);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: var(--scroll-progress);
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e3c16d, #7cbf8b);
  box-shadow: 0 0 22px rgba(180, 131, 53, 0.48);
  transform-origin: left center;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(247, 249, 244, 0.92);
  border-bottom: 1px solid rgba(16, 20, 17, 0.08);
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

body.has-scrolled .site-header {
  min-height: 66px;
  background: rgba(247, 249, 244, 0.96);
  box-shadow: 0 14px 36px rgba(16, 20, 17, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 15px;
}

.brand-role {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--green);
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-header nav[aria-label="Legal Navigation"] {
  display: flex;
  position: static;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(92svh - 76px);
  isolation: isolate;
  overflow: clip;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: 0;
}

.hero-media img {
  object-fit: cover;
  transform: translate3d(0, var(--hero-shift), 0) scale(var(--hero-scale));
  transform-origin: center;
  transition: transform 80ms linear;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 22% 72%, rgba(7, 12, 10, 0.86) 0%, rgba(7, 12, 10, 0.72) 30%, rgba(7, 12, 10, 0.24) 58%, rgba(7, 12, 10, 0) 78%),
    linear-gradient(90deg, rgba(7, 12, 10, 0.92) 0%, rgba(7, 12, 10, 0.82) 34%, rgba(7, 12, 10, 0.34) 74%),
    linear-gradient(180deg, rgba(7, 12, 10, 0.42), rgba(7, 12, 10, 0.68));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  width: min(760px, calc(100% - 36px));
  min-height: calc(92svh - 76px);
  padding: 92px 0 72px clamp(18px, 6vw, 84px);
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
  opacity: var(--hero-fade);
}

.hero-depth {
  position: absolute;
  inset: 76px 0 0;
  z-index: 2;
  pointer-events: none;
}

.hero-depth span {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: translate3d(0, calc(var(--hero-shift) * -0.42), 0);
}

.hero-depth span:nth-child(1) {
  right: 6vw;
  bottom: 18%;
  width: 18vw;
  max-width: 230px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.hero-depth span:nth-child(2) {
  right: 28vw;
  bottom: 8%;
  width: 30vw;
  height: 1px;
}

.hero-depth span:nth-child(3) {
  left: clamp(18px, 6vw, 84px);
  bottom: 58px;
  width: min(430px, 64vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  border: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  line-height: 0.95;
  font-weight: 500;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.button:hover {
  transform: translate3d(var(--mx, 0px), var(--my, -2px), 0);
  background: #c79646;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  position: relative;
  overflow: hidden;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.hero-meta span::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.26) 44%, transparent 58%);
  content: "";
  transform: translateX(-120%);
}

.hero-meta span:hover::before {
  transform: translateX(120%);
  transition: transform 620ms ease;
}

.section {
  padding: 108px clamp(18px, 6vw, 84px);
}

.section.tight {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section.dark {
  background: var(--green-dark);
  color: var(--white);
}

.section.blue {
  background: var(--blue);
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 84px);
  align-items: end;
  margin-bottom: 52px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 500;
}

.section-lead {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.dark .section-lead,
.blue .section-lead {
  color: rgba(255, 255, 255, 0.76);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: stretch;
}

.portrait-stack {
  display: grid;
  gap: 16px;
}

.portrait-stack img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-copy {
  display: grid;
  align-content: center;
  gap: 28px;
}

.profile-copy .intro {
  max-width: 720px;
  font-size: 24px;
  line-height: 1.35;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.credential {
  min-height: 240px;
  padding: 28px;
  background: var(--paper);
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.credential:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(16, 20, 17, 0.14);
  transform: translateY(-8px);
}

.credential img {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.credential h3,
.service-copy h3,
.price h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.credential p,
.service-copy p,
.price p,
.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.service-list {
  position: relative;
  display: grid;
  border-top: 1px solid var(--line);
}

.service-list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(180, 131, 53, 0.58), transparent);
  content: "";
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr) minmax(250px, 0.56fr);
  gap: clamp(24px, 4vw, 52px);
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  transition: background 280ms ease, transform 280ms ease, border-color 280ms ease;
}

.service-row::before {
  position: absolute;
  top: 51px;
  left: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(180, 131, 53, 0.36);
  content: "";
  opacity: 0;
  transition: opacity 240ms ease, box-shadow 480ms ease, transform 240ms ease;
}

.service-row.is-active {
  background: linear-gradient(90deg, rgba(180, 131, 53, 0.08), transparent 42%);
  border-color: rgba(180, 131, 53, 0.32);
  transform: translateX(6px);
}

.service-row.is-active::before {
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 0 0 12px rgba(180, 131, 53, 0.1);
}

.service-row.is-active .service-index {
  transform: translateX(16px);
}

.service-row.is-active .price {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(16, 20, 17, 0.12);
}

.service-index {
  color: var(--gold);
  font-weight: 900;
  transition: transform 280ms ease;
}

.service-copy h3 {
  font-size: 28px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.price {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 20, 17, 0.08);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.price p {
  margin-bottom: 10px;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
}

.media-split.reverse {
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius);
  background: #0d1713;
  box-shadow: var(--shadow);
  transform: translateY(var(--media-shift, 0px));
  transition: transform 180ms linear;
}

.media-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 38%, rgba(0, 0, 0, 0.28));
  content: "";
  opacity: 0;
  transition: opacity 300ms ease;
}

.media-frame:hover::after {
  opacity: 1;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: translateY(calc(var(--media-shift, 0px) * -0.22)) scale(1.04);
  transition: transform 700ms ease;
}

.media-frame:hover img {
  transform: translateY(calc(var(--media-shift, 0px) * -0.22)) scale(1.085);
}

.dark .feature-list li,
.blue .feature-list li {
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.82);
}

.dark .price,
.blue .price {
  background: rgba(255, 255, 255, 0.08);
}

.dark .price p,
.blue .price p,
.dark .service-copy p,
.blue .service-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.92);
  transform: translateY(var(--gallery-shift, 0px));
  transition: transform 520ms ease, filter 520ms ease, clip-path 520ms ease;
  clip-path: inset(0 round var(--radius));
}

.gallery-grid:hover img {
  filter: saturate(0.75) contrast(0.94);
}

.gallery-grid img:hover {
  z-index: 1;
  filter: saturate(1.12) contrast(1.03);
  transform: translateY(calc(var(--gallery-shift, 0px) - 10px)) scale(1.025);
  clip-path: inset(8px round var(--radius));
}

.gallery-grid img:first-child {
  height: 652px;
  grid-row: span 2;
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  transition: color 220ms ease, padding-left 220ms ease, border-color 220ms ease;
}

.contact-list a:hover {
  padding-left: 12px;
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.booking-frame {
  overflow: hidden;
  min-height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--white);
}

.booking-frame iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 42px clamp(18px, 6vw, 84px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}

.legal-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 82px 18px 108px;
}

.legal-page h1 {
  color: var(--ink);
  font-size: 56px;
}

.legal-page h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: 28px;
}

.legal-page h3 {
  margin-top: 32px;
}

.legal-page a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.credential-grid .credential:nth-child(2),
.feature-list li:nth-child(2),
.gallery-grid img:nth-child(2) {
  transition-delay: 70ms;
}

.credential-grid .credential:nth-child(3),
.feature-list li:nth-child(3),
.gallery-grid img:nth-child(3) {
  transition-delay: 140ms;
}

.feature-list li:nth-child(4),
.gallery-grid img:nth-child(4) {
  transition-delay: 210ms;
}

.feature-list li:nth-child(n+5),
.gallery-grid img:nth-child(5) {
  transition-delay: 280ms;
}

@supports (animation-timeline: view()) {
  .section-head h2 {
    animation: title-rise both;
    animation-timeline: view();
    animation-range: entry 10% cover 34%;
  }

  .gallery-grid {
    animation: gallery-tighten both;
    animation-timeline: view();
    animation-range: entry 0% cover 52%;
  }
}

@keyframes title-rise {
  from {
    opacity: 0.55;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gallery-tighten {
  from {
    gap: 28px;
    transform: scale(0.975);
  }
  to {
    gap: 12px;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .hero-media img,
  .media-frame,
  .media-frame img,
  .gallery-grid img {
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
  }

  .site-header nav[aria-label="Legal Navigation"] {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  .section-head,
  .profile-grid,
  .service-row,
  .media-split,
  .media-split.reverse,
  .booking,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-grid img:first-child {
    height: 420px;
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-role {
    font-size: 10px;
  }

  .nav {
    top: 68px;
  }

  .hero,
  .hero-content {
    min-height: calc(88svh - 68px);
  }

  .hero-content {
    width: 100%;
    padding: 68px 18px 46px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy,
  .section-lead {
    font-size: 17px;
  }

  .section {
    padding: 74px 18px;
  }

  .profile-copy .intro {
    font-size: 20px;
  }

  .service-row {
    padding: 34px 0;
  }

  .service-list::before,
  .service-row::before,
  .hero-depth {
    display: none;
  }

  .service-row.is-active {
    transform: none;
  }

  .media-frame,
  .media-frame img {
    min-height: 280px;
  }

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

  .gallery-grid img,
  .gallery-grid img:first-child {
    grid-column: auto;
    height: 300px;
  }

  .booking-frame,
  .booking-frame iframe {
    min-height: 660px;
    height: 660px;
  }

  .legal-page h1 {
    font-size: 42px;
  }
}
