@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #0a0a0a;
  --panel: #111111;
  --panel-2: #151515;
  --text: #f1eeea;
  --muted: #9e978e;
  --line: rgba(181, 158, 94, 0.24);
  --gold: #bfa463;
  --gold-soft: #ead9aa;
  --black: #090909;
  --heading: "Cinzel", Georgia, serif;
  --body: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

h1,
h2,
h3,
p,
a,
strong {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
}

body::before {
  content: none;
}

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

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

h1,
h2,
h3,
h4,
blockquote {
  margin: 0;
  font-family: var(--heading);
  font-weight: 400;
  letter-spacing: 0;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8vw;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(16px);
}

.brand img,
.footer-brand img {
  width: 112px;
  filter: invert(1) brightness(2);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
}

.desktop-nav a,
.mobile-nav a {
  color: rgba(241, 238, 234, 0.72);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
}

.gold-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 42px;
  border: 1px solid rgba(234, 217, 170, 0.35);
  background: linear-gradient(100deg, #b89045 0%, #d7bd7b 42%, #efe2b6 100%);
  color: #070707;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: filter 180ms ease, transform 180ms ease;
}

.gold-button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.nav-cta {
  min-height: 40px;
  padding: 0 32px;
  color: #070707 !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--text);
}

.mobile-nav {
  position: fixed;
  z-index: 40;
  top: 78px;
  left: 0;
  right: 0;
  display: none;
  padding: 24px 8vw 32px;
  border-top: 1px solid rgba(181, 158, 94, 0.22);
  background: rgba(10, 10, 10, 0.97);
}

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.home-mark {
  position: absolute;
  top: 145px;
  left: 50%;
  z-index: 2;
  width: min(360px, 70vw);
  transform: translateX(-50%);
  pointer-events: none;
  text-align: center;
}

.home-mark img {
  width: 156px;
  margin: 0 auto;
  filter: invert(1) brightness(2);
}

.practice-panels {
  display: flex;
  min-height: 100svh;
}

.practice-panel {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12vh 2vw 10vh;
  border-right: 1px solid rgba(181, 158, 94, 0.22);
  overflow: hidden;
  text-align: center;
  transition: flex 420ms ease, background-color 420ms ease, padding 420ms ease;
}

.practice-panel:last-child {
  border-right: 0;
}

.practice-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(191, 164, 99, 0.05));
  opacity: 0;
  transition: opacity 240ms ease;
}

.practice-panel:hover::before {
  opacity: 1;
}

.practice-panels:hover .practice-panel,
.practice-panels:focus-within .practice-panel,
.practice-panels.is-active .practice-panel {
  flex: 0.86 1 0;
}

.practice-panels:hover .practice-panel:hover,
.practice-panels:focus-within .practice-panel:focus-visible,
.practice-panels.is-active .practice-panel.is-expanded {
  flex: 1.42 1 0;
  padding-left: 4vw;
  padding-right: 4vw;
  background-color: rgba(191, 164, 99, 0.035);
}

.practice-panel h2 {
  color: var(--text);
  font-size: clamp(34px, 3.55vw, 50px);
  line-height: 0.95;
  text-transform: uppercase;
  transition: transform 420ms ease, color 240ms ease;
}

.practice-panel p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.18em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 240ms ease, opacity 240ms ease;
}

.practice-panels:hover .practice-panel:not(:hover) h2,
.practice-panels:focus-within .practice-panel:not(:focus-visible) h2,
.practice-panels.is-active .practice-panel:not(.is-expanded) h2 {
  color: rgba(241, 238, 234, 0.68);
  transform: scale(0.92);
  transform-origin: left center;
}

.practice-panels:hover .practice-panel:not(:hover) p,
.practice-panels:focus-within .practice-panel:not(:focus-visible) p,
.practice-panels.is-active .practice-panel:not(.is-expanded) p {
  opacity: 0.58;
}

.practice-panel:hover h2,
.practice-panel:focus-visible h2,
.practice-panel.is-expanded h2 {
  transform: translateY(-4px);
}

.practice-panel strong {
  margin-top: 42px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.practice-panel:hover strong,
.practice-panel:focus-visible strong,
.practice-panel.is-expanded strong {
  opacity: 1;
  transform: translateY(0);
}

.scroll-cue {
  position: absolute;
  bottom: 44px;
  left: 50%;
  color: rgba(241, 238, 234, 0.6);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 16px auto 0;
  background: linear-gradient(var(--gold), transparent);
}

.mission-band,
.split-section,
.audience-section,
.deliver-section,
.approach-section,
.final-cta,
.contact-section,
.contact-hero {
  padding-left: 8vw;
  padding-right: 8vw;
}

.mission-band {
  display: grid;
  min-height: 62vh;
  place-items: center;
  gap: 18px;
  text-align: center;
}

.mission-band blockquote {
  max-width: 980px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.18;
}

.mission-band p,
.eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.image-band {
  position: relative;
  height: clamp(360px, 52vw, 620px);
  overflow: hidden;
  border-top: 1px solid rgba(181, 158, 94, 0.14);
  border-bottom: 1px solid rgba(181, 158, 94, 0.14);
}

.image-band::before,
.image-band::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.image-band::before {
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.74), rgba(10, 10, 10, 0.05) 48%, rgba(10, 10, 10, 0.64));
}

.image-band::after {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.2), rgba(10, 10, 10, 0.82));
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section,
.approach-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1.1fr;
  gap: 10vw;
  padding-top: 120px;
  padding-bottom: 120px;
  border-top: 1px solid rgba(181, 158, 94, 0.16);
}

.split-section h2,
.audience-section h2,
.deliver-section h2,
.approach-section h2,
.final-cta h2 {
  margin-top: 16px;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.05;
}

.lead {
  max-width: 650px;
  color: rgba(241, 238, 234, 0.68);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
}

.split-section .lead,
.audience-section .lead {
  margin-top: 24px;
}

.editorial-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(181, 158, 94, 0.2);
  background: #0d0d0d;
}

.editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0), rgba(10, 10, 10, 0.18));
  pointer-events: none;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-stack {
  display: grid;
  gap: 36px;
}

.feature-stack article,
.service-grid article,
.audience-grid article {
  border-top: 1px solid rgba(181, 158, 94, 0.24);
  padding-top: 28px;
}

.feature-stack h3,
.service-grid h3,
.audience-grid h3,
.contact-aside h3 {
  color: var(--text);
  font-size: 24px;
  line-height: 1.18;
}

.feature-stack p,
.service-grid p,
.audience-grid p,
.approach-section p,
.footer-brand p {
  margin-top: 14px;
  color: var(--muted);
}

.audience-section,
.deliver-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.audience-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 56px;
  margin-top: 64px;
}

.audience-grid span,
.service-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 15px;
}

.service-hero {
  display: grid;
  position: relative;
  grid-template-columns: minmax(540px, 0.9fr) minmax(360px, 0.82fr);
  gap: 5vw;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 145px 8vw 80px;
}

.service-hero > div {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.service-image {
  width: calc(100% + 8vw);
  height: min(70vh, 620px);
  min-height: 460px;
  margin-right: -8vw;
  border: 0;
  align-self: center;
}

.service-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.42), rgba(10, 10, 10, 0) 44%);
  pointer-events: none;
}

.service-hero h1,
.contact-hero h1 {
  margin-top: 20px;
  margin-bottom: 26px;
  font-size: clamp(46px, 5.6vw, 78px);
  line-height: 0.98;
  text-transform: uppercase;
}

.service-hero .gold-button {
  margin-top: 48px;
}

.deliver-section {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.38), transparent);
}

.approach-section > div:last-child {
  max-width: 760px;
}

.approach-section p + p {
  margin-top: 26px;
}

.final-cta {
  max-width: 980px;
  padding-top: 120px;
  padding-bottom: 130px;
}

.final-cta span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 32px;
  border: 1px solid rgba(181, 158, 94, 0.28);
  color: var(--gold);
  font-family: var(--heading);
  font-size: 28px;
}

.final-cta p {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.final-cta .gold-button {
  margin-top: 42px;
}

.contact-hero {
  padding-top: 175px;
  padding-bottom: 110px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.4), rgba(10, 10, 10, 0));
}

.contact-hero h1 {
  max-width: 720px;
}

.contact-section {
  display: grid;
  max-width: 1120px;
  grid-template-columns: 1fr;
  gap: 42px;
  margin: 0 auto;
  padding-bottom: 120px;
}

.booking-frame {
  position: relative;
  width: min(100%, 920px);
  height: 900px;
  margin: 0 auto;
  background: transparent;
  overflow: hidden;
}

.booking-frame iframe {
  position: absolute;
  top: -72px;
  left: 0;
  width: 100%;
  height: 972px;
  border: 0;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid rgba(181, 158, 94, 0.2);
  border-bottom: 1px solid rgba(181, 158, 94, 0.2);
  padding: 34px 0;
}

.contact-aside::before {
  content: "";
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-aside a {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  color: var(--muted);
  transition: color 180ms ease;
}

.contact-aside a:hover {
  color: var(--gold);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  margin-top: 18px;
}

.phone-link::before {
  content: "Phone";
  margin-right: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.email-link::before {
  content: "Email";
  margin-right: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.5fr 0.5fr;
  gap: 56px;
  padding: 80px 8vw 36px;
  border-top: 1px solid rgba(181, 158, 94, 0.18);
  background: #080808;
}

.footer-brand p {
  max-width: 360px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h4 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

.footer-links a,
.footer-bottom p {
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 24px;
  padding-top: 48px;
}

@media (max-width: 1000px) {
  body::before {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: grid;
    gap: 22px;
  }

  .practice-panels,
  .service-hero,
  .split-section,
  .approach-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .practice-panel {
    min-height: 42vh;
    flex: none;
    border-right: 0;
    border-bottom: 1px solid rgba(181, 158, 94, 0.22);
    padding: 64px 8vw 56px;
  }

  .practice-panels {
    display: grid;
  }

  .practice-panels:hover .practice-panel,
  .practice-panels:focus-within .practice-panel,
  .practice-panels.is-active .practice-panel,
  .practice-panels:hover .practice-panel:hover,
  .practice-panels:focus-within .practice-panel:focus-visible,
  .practice-panels.is-active .practice-panel.is-expanded {
    flex: none;
    padding: 64px 8vw 56px;
  }

  .practice-panels:hover .practice-panel:not(:hover) h2,
  .practice-panels:focus-within .practice-panel:not(:focus-visible) h2,
  .practice-panels.is-active .practice-panel:not(.is-expanded) h2,
  .practice-panel:hover h2,
  .practice-panel:focus-visible h2,
  .practice-panel.is-expanded h2 {
    transform: none;
  }

  .home-mark {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding-top: 112px;
    transform: none;
  }

  .home-hero,
  .practice-panels {
    min-height: auto;
  }

  .service-image {
    width: 100%;
    max-width: 760px;
    height: auto;
    min-height: 0;
    margin-right: 0;
    aspect-ratio: 16 / 10;
  }

  .scroll-cue {
    display: none;
  }

  .contact-aside {
    padding-left: 0;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 18px 24px;
  }

  .mobile-nav,
  .mission-band,
  .split-section,
  .audience-section,
  .deliver-section,
  .approach-section,
  .final-cta,
  .contact-section,
  .contact-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-hero {
    padding: 130px 24px 70px;
  }

  .service-image {
    aspect-ratio: 4 / 3;
  }

  .service-hero h1,
  .contact-hero h1 {
    font-size: clamp(34px, 11vw, 50px);
    line-height: 1.04;
  }

  .contact-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .practice-panel p {
    white-space: normal;
  }

  .audience-grid,
  .service-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gold-button {
    width: 100%;
    padding: 0 22px;
  }

  .booking-frame {
    width: 100%;
    height: 820px;
  }

  .booking-frame iframe {
    top: -58px;
    height: 878px;
  }

  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}
