:root {
  --ink: #17110d;
  --ink-soft: #382b22;
  --cream: #f4ede4;
  --paper: #fbf8f3;
  --paper-warm: #eee5da;
  --gold: #b78a4d;
  --gold-light: #d9b980;
  --gold-pale: #ead6b6;
  --line: rgba(37, 26, 18, .14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --header-h: 96px;
  --ease: cubic-bezier(.22, .72, .28, 1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font: inherit; }
::selection { background: var(--gold); color: #fff; }
section[id] { scroll-margin-top: 84px; }

.scroll-progress {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3.2vw;
  color: #f7efe6;
  transition: background .28s ease, height .28s ease, box-shadow .28s ease;
}
.site-header.is-scrolled {
  position: fixed;
  height: 74px;
  background: rgba(14, 10, 7, .97);
  box-shadow: 0 1px 0 rgba(255,255,255,.07), 0 12px 34px rgba(0,0,0,.12);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}
.brand-mark {
  width: 49px;
  height: 49px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-copy {
  display: grid;
  line-height: 1.1;
  text-transform: uppercase;
}
.brand-copy strong {
  font: 500 17px/1.1 var(--serif);
  letter-spacing: .09em;
}
.brand-copy small {
  margin-top: 6px;
  padding-left: .48em;
  text-align: center;
  font: 400 8px/1 var(--sans);
  letter-spacing: .48em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 44px);
}
.site-nav a,
.header-cta {
  font-size: 9px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .21em;
  text-transform: uppercase;
}
.site-nav a {
  position: relative;
  padding: 16px 0;
  color: rgba(255,255,255,.74);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 8px;
  height: 1px;
  background: var(--gold-light);
  transition: right .3s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }
.header-cta {
  justify-self: end;
  border: 1px solid rgba(205,169,111,.75);
  padding: 16px 24px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.header-cta:hover {
  background: var(--gold-light);
  color: #130e0a;
  transform: translateY(-2px);
}
.menu-toggle { display: none; }

.hero {
  min-height: 100svh;
  height: max(760px, 100svh);
  position: relative;
  overflow: hidden;
  color: #fff8f0;
  background: #130d09;
  contain: paint;
}
.hero-image,
.quote-bg {
  position: absolute;
  inset: -2%;
  background: url("assets/images/hero.webp") center center / cover no-repeat;
  transform: scale(1.025);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(10,6,3,.04) 0%, rgba(9,6,4,.18) 40%, rgba(5,3,2,.77) 100%),
    linear-gradient(180deg, rgba(7,4,2,.72) 0%, rgba(10,6,3,.2) 28%, rgba(10,6,3,.17) 55%, rgba(7,4,2,.92) 100%),
    linear-gradient(90deg, rgba(7,4,2,.62) 0%, transparent 29%, transparent 71%, rgba(7,4,2,.45) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 150px 30px rgba(0,0,0,.42);
  pointer-events: none;
}
.hero-content {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: min(870px, 76vw);
  text-align: center;
  opacity: 0;
  animation: heroEnter 1s .12s var(--ease) forwards;
}
@keyframes heroEnter {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 22px)); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 10px;
  font-weight: 500;
}
.hero-eyebrow {
  color: rgba(255,246,235,.72);
  font-size: 11px;
}
.hero-eyebrow span {
  width: 4px;
  height: 4px;
  display: inline-block;
  margin: 0 10px 2px;
  border-radius: 50%;
  background: var(--gold-light);
}
.hero h1 {
  margin: 0;
  font: 400 clamp(54px, 5.1vw, 86px)/.95 var(--serif);
  letter-spacing: -.035em;
  text-shadow: 0 3px 30px rgba(0,0,0,.34);
}
.hero-seal {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 32px auto 0;
  border-radius: 50%;
  transition: background .25s ease, transform .25s ease;
}
.hero-seal img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}
.hero-seal::before,
.hero-seal::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(11vw, 150px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205,169,111,.65));
}
.hero-seal::before { right: calc(100% + 15px); }
.hero-seal::after {
  left: calc(100% + 15px);
  transform: scaleX(-1);
}
.hero-seal:hover { transform: rotate(3deg) scale(1.03); }
.hero-pillars {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 5.2vh;
  width: min(760px, 72vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  text-align: center;
  transform: translateX(-50%);
  opacity: 0;
  animation: pillarsEnter .9s .45s var(--ease) forwards;
}
@keyframes pillarsEnter {
  from { opacity: 0; transform: translate(-50%, 14px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.hero-pillars article { position: relative; }
.hero-pillars article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  right: -23px;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.13);
}
.line-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  color: var(--gold-light);
}
.line-icon svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-pillars h2 {
  margin: 0 0 6px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-pillars p {
  margin: 0;
  color: rgba(255,255,255,.63);
  font: 300 11px/1.55 var(--sans);
}
.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 3.2vw;
  bottom: 5vh;
  width: 24px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 3px;
  height: 9px;
  border-radius: 4px;
  background: var(--gold-light);
  transform: translateX(-50%);
  animation: scrollCue 2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%,100% { transform: translate(-50%,0); opacity: .45; }
  50% { transform: translate(-50%,17px); opacity: 1; }
}

.section {
  width: min(1240px, calc(100% - 9vw));
  margin-inline: auto;
}
.content-section { contain: paint; }
.section-kicker {
  margin-bottom: 48px;
  color: #8a796a;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.section-kicker--light { color: rgba(255,255,255,.43); }

.intro {
  padding-top: clamp(105px, 12vw, 180px);
  padding-bottom: clamp(115px, 13vw, 190px);
}
.intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.35fr;
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}
.intro-copy { padding-left: 4vw; }
.intro-copy h2,
.experience-copy h2,
.space-heading h2,
.contact-card h2,
.about-copy h2 {
  margin: 0 0 30px;
  font: 400 clamp(48px, 4.7vw, 76px)/.98 var(--serif);
  letter-spacing: -.035em;
}
.intro-copy p,
.experience-copy p,
.space-heading > p,
.contact-card > p,
.about-copy > p {
  color: #726458;
  font-size: 13px;
  line-height: 1.9;
}
.intro-copy .lead,
.experience-copy .lead,
.about-copy .lead {
  color: var(--ink-soft);
  font: 400 21px/1.55 var(--serif);
}
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  padding-bottom: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  transition: transform .28s ease;
}
.text-link:hover::after { transform: scaleX(.45); }
.text-link span { color: var(--gold); font-size: 15px; }
.text-link--light { color: #fff; }

.intro-collage {
  position: relative;
  min-height: 700px;
}
.media-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(43,28,17,.14);
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.media-card:hover img { transform: scale(1.025); }
.media-card--large {
  width: 69%;
  height: 88%;
  left: 0;
  top: 0;
}
.media-card--small {
  width: 47%;
  height: 48%;
  right: 0;
  bottom: 0;
  border: 10px solid var(--paper);
}
.floating-note {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 36%;
  width: 145px;
  height: 145px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  text-align: center;
  font: 400 20px/1.1 var(--serif);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

.about-section {
  position: relative;
  overflow: hidden;
  background: #18110c;
  color: #fff;
  padding: clamp(105px, 10vw, 165px) 0;
}
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
  pointer-events: none;
}
.about-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(217,185,128,.15);
  pointer-events: none;
}
.about-orb--one {
  width: 520px;
  height: 520px;
  left: -250px;
  top: -240px;
}
.about-orb--two {
  width: 390px;
  height: 390px;
  right: -190px;
  bottom: -190px;
}
.about-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 8vw));
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(70px, 8vw, 135px);
}
.about-visual {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}
.about-visual::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 10% 6% 0;
  border-radius: 48% 48% 12px 12px;
  background:
    radial-gradient(circle at 50% 24%, rgba(217,185,128,.26), transparent 34%),
    linear-gradient(155deg, #342419, #160f0b 72%);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 36px 80px rgba(0,0,0,.32);
}
.about-outline {
  position: absolute;
  z-index: -1;
  inset: 5% 1% 3%;
  border: 1px solid rgba(217,185,128,.33);
  border-radius: 50% 50% 16px 16px;
}
.about-visual > img {
  width: min(100%, 680px);
  max-height: 720px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.38));
}
.about-signature {
  position: absolute;
  left: -10px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 14px 14px;
  border: 1px solid rgba(217,185,128,.26);
  background: rgba(19,13,9,.92);
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
}
.about-signature img { width: 46px; height: 46px; }
.about-signature span {
  color: rgba(255,255,255,.78);
  font: 400 14px/1.25 var(--serif);
}
.about-copy { max-width: 650px; }
.about-copy h2 { color: #fff; }
.about-copy > p { color: rgba(255,255,255,.62); }
.about-copy .lead { color: var(--gold-pale); }
.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.credential-row span {
  padding: 10px 13px;
  border: 1px solid rgba(217,185,128,.25);
  color: rgba(255,255,255,.7);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-copy blockquote {
  position: relative;
  margin: 42px 0 0;
  padding: 26px 0 0 30px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.about-copy blockquote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: 15px;
  color: var(--gold-light);
  font: 400 52px/1 var(--serif);
}
.about-copy blockquote p {
  margin: 0;
  color: #f6eee5;
  font: 400 23px/1.35 var(--serif);
}
.about-copy blockquote footer {
  margin-top: 13px;
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.method-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 11vw, 170px) 0;
  background: #241912;
  color: white;
}
.method-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -180px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183,138,77,.17), transparent 70%);
  pointer-events: none;
}
.method-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 9vw));
  margin: auto;
}
.method-heading { margin-bottom: 90px; }
.method-heading h2 {
  margin: 0;
  font: 400 clamp(55px, 5.7vw, 90px)/.93 var(--serif);
  letter-spacing: -.04em;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.method-card {
  min-height: 330px;
  padding: 48px 44px 46px 0;
}
.method-card:not(:last-child) {
  margin-right: 44px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.method-card > span {
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: .2em;
}
.method-card h3 {
  margin: 55px 0 18px;
  color: #fff;
  font: 400 40px/1 var(--serif);
}
.method-card p {
  max-width: 280px;
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: 12px;
  line-height: 1.8;
}

.experience {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(80px, 10vw, 155px);
  align-items: center;
  padding-top: clamp(110px, 12vw, 175px);
  padding-bottom: clamp(110px, 12vw, 175px);
}
.experience-media { display: grid; place-items: center; }
.video-shell {
  position: relative;
  width: min(470px, 42vw);
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #17110d;
  box-shadow: 0 30px 80px rgba(38,25,16,.22);
}
.video-shell::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,.18);
  pointer-events: none;
}
.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-toggle {
  position: absolute;
  z-index: 4;
  right: 18px;
  top: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 50%;
  background: rgba(18,12,8,.55);
  color: white;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.video-toggle:hover { background: rgba(18,12,8,.83); transform: scale(1.04); }
.video-toggle .play-icon { display: none; padding-left: 2px; font-size: 12px; }
.video-toggle.is-paused .pause-icon { display: none; }
.video-toggle.is-paused .play-icon { display: block; }
.video-caption {
  position: absolute;
  z-index: 3;
  left: 20px;
  bottom: 18px;
  color: rgba(255,255,255,.78);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.check-list {
  display: grid;
  gap: 15px;
  margin: 31px 0 38px;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #57493e;
  font-size: 12px;
}
.check-list span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 10px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button span { font-size: 15px; }
.button--dark { background: var(--ink); color: white; }
.button--dark:hover { background: var(--gold); }
.button--gold { background: var(--gold-light); color: var(--ink); }
.button--gold:hover { background: #ecd29f; }
.button--ghost { border-color: rgba(255,255,255,.28); color: white; }
.button--ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.space-section {
  padding: clamp(95px, 10vw, 150px) 0 clamp(115px, 12vw, 180px);
  background: #eee6dc;
}
.space-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 120px;
  align-items: end;
  margin-bottom: 70px;
}
.space-heading h2 { max-width: 780px; }
.space-heading > p { margin-bottom: 16px; }
.gallery {
  width: min(1500px, calc(100% - 4vw));
  margin: auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr 1fr;
  grid-auto-rows: minmax(300px, 36vw);
  gap: 14px;
}
.gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #d8cec3;
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease), filter .45s ease;
}
.gallery-item:hover img { transform: scale(1.035); filter: brightness(.88); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(13,8,5,.65));
  opacity: .7;
}
.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  left: 26px;
  bottom: 22px;
  color: #fff;
  font: 500 19px/1 var(--serif);
}

.quote-section {
  height: min(780px, 80svh);
  min-height: 580px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}
.quote-bg { background-position: center 58%; }
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16,10,6,.74);
  box-shadow: inset 0 0 140px rgba(0,0,0,.43);
}
.quote-section blockquote {
  position: relative;
  z-index: 2;
  width: min(870px, 80vw);
  margin: 0;
  text-align: center;
}
.quote-section blockquote > span {
  color: var(--gold-light);
  font: 400 90px/.6 var(--serif);
}
.quote-section blockquote p {
  margin: 28px 0;
  font: 400 clamp(45px, 5vw, 78px)/1 var(--serif);
  letter-spacing: -.035em;
}
.quote-section blockquote footer {
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: .87fr 1.13fr;
  min-height: 780px;
  background: #17110d;
  color: white;
}
.contact-card {
  padding: clamp(80px, 8vw, 132px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-card h2 { max-width: 650px; }
.contact-card > p { color: rgba(255,255,255,.57); }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.contact-info {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 40px;
  margin-top: 62px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.contact-info span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.contact-info p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 12px;
}
.contact-info a:hover { color: var(--gold-light); }

.location-card {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(300px, 38vh) auto;
  background: #f4ede4;
  color: var(--ink);
  overflow: hidden;
}
.location-map {
  position: relative;
  overflow: hidden;
  background: #ded4c9;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(.3) saturate(.72) contrast(.97);
  pointer-events: none;
}
.map-rating-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  padding: 13px 16px;
  background: rgba(244,237,228,.96);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
}
.map-rating-badge strong {
  color: #b37c2f;
  font: 600 16px/1 var(--sans);
}
.map-rating-badge span {
  color: #6f6054;
  font-size: 7px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.map-route {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: rgba(20,14,10,.94);
  color: white;
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s ease;
}
.map-route:hover { background: var(--gold); transform: translateY(-2px); }
.location-details {
  padding: clamp(32px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.google-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(37,26,18,.13);
}
.google-rating > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 13px;
}
.google-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .06em;
}
.google-rating strong {
  font: 500 54px/.9 var(--serif);
}
.rating-copy { display: grid; justify-items: end; }
.stars {
  color: #c59242;
  font-size: 19px;
  letter-spacing: .08em;
  line-height: 1;
}
.rating-copy small {
  margin-top: 8px;
  color: #817266;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.location-details h3 {
  max-width: 680px;
  margin: 30px 0 12px;
  font: 400 clamp(34px, 3vw, 53px)/.98 var(--serif);
  letter-spacing: -.025em;
}
.location-details > p {
  max-width: 650px;
  margin: 0;
  color: #76685d;
  font-size: 12px;
}
.location-photos {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-top: 26px;
}
.location-photos img {
  width: 100%;
  height: clamp(130px, 11vw, 185px);
  object-fit: cover;
}
.review-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
.review-highlights span {
  padding: 8px 10px;
  border: 1px solid rgba(37,26,18,.13);
  color: #6e5f54;
  font-size: 7px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.location-details .text-link { margin-top: 21px; }

.site-footer {
  padding: 65px 4vw 34px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
  background: #0e0a07;
  color: rgba(255,255,255,.65);
}
.brand--footer { color: #fff; }
.site-footer > p {
  text-align: center;
  font: 400 20px/1.2 var(--serif);
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.footer-links a:hover { color: var(--gold-light); }
.site-footer > small {
  grid-column: 1/-1;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.whatsapp-float {
  position: fixed;
  z-index: 950;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #1b1510;
  box-shadow: 0 12px 38px rgba(0,0,0,.25);
  transition: transform .25s ease, background .25s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); background: var(--gold-light); }
.whatsapp-float svg { width: 27px; fill: currentColor; }

.reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .72s ease, transform .72s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0,0,0);
}

@media (max-width: 1180px) {
  .site-nav { gap: 22px; }
  .contact-card { padding-inline: 6vw; }
  .about-inner { gap: 60px; }
  .about-visual { min-height: 650px; }
}

@media (max-width: 1050px) {
  :root { --header-h: 82px; }
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 24px;
  }
  .header-cta { display: none; }
  .menu-toggle {
    display: grid;
    gap: 7px;
    justify-self: end;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 0;
    background: transparent;
    color: white;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform .28s ease;
  }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 110px 30px 40px;
    background: rgba(14,10,7,.99);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a {
    font: 400 43px/1.05 var(--serif);
    letter-spacing: 0;
    text-transform: none;
    color: #fff;
  }
  .site-nav a::after { bottom: 4px; }
  .hero-content { top: 43%; width: 88vw; }
  .hero-pillars { width: 85vw; gap: 26px; }
  .scroll-cue { display: none; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-copy { max-width: 720px; padding-left: 0; }
  .intro-collage { min-height: 640px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-copy { max-width: 760px; }
  .about-visual { min-height: 690px; }
  .experience { gap: 75px; }
  .space-heading { gap: 60px; }
  .contact-section { grid-template-columns: 1fr; }
  .location-card { min-height: 0; grid-template-rows: minmax(300px, 36vh) auto; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer > p { display: none; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .brand-mark { width: 43px; height: 43px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 7px; }
  .hero { height: max(720px, 100svh); min-height: 720px; }
  .hero-image { inset: -1%; background-position: 50% center; }
  .hero-shade {
    background:
      radial-gradient(ellipse at 52% 40%, rgba(8,5,3,.04), rgba(7,4,2,.72) 70%),
      linear-gradient(180deg, rgba(5,3,2,.72), rgba(6,4,2,.18) 38%, rgba(5,3,2,.95));
  }
  .hero-content { top: 42%; }
  .hero-eyebrow { font-size: 8px; letter-spacing: .2em; }
  .hero h1 { font-size: clamp(47px, 14vw, 65px); line-height: .95; }
  .hero-seal { width: 62px; height: 62px; margin-top: 25px; }
  .hero-seal img { width: 61px; height: 61px; }
  .hero-pillars {
    bottom: 27px;
    width: calc(100% - 34px);
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .hero-pillars article { padding-inline: 3px; }
  .hero-pillars article:not(:last-child)::after { right: -4px; }
  .hero-pillars p { display: none; }
  .hero-pillars h2 { font-size: 7px; line-height: 1.45; letter-spacing: .08em; }
  .line-icon { width: 28px; height: 28px; }
  .section { width: calc(100% - 42px); }
  .section-kicker { margin-bottom: 36px; }
  .intro { padding-block: 92px 110px; }
  .intro-grid { gap: 65px; }
  .intro-copy h2,
  .experience-copy h2,
  .space-heading h2,
  .contact-card h2,
  .about-copy h2 { font-size: clamp(42px, 12vw, 58px); }
  .intro-collage { min-height: 500px; }
  .media-card--large { width: 78%; height: 77%; }
  .media-card--small { width: 54%; height: 45%; border-width: 7px; }
  .floating-note { width: 112px; height: 112px; right: -8px; bottom: 45px; font-size: 16px; }
  .about-section { padding-block: 92px 105px; }
  .about-inner { width: calc(100% - 42px); gap: 55px; }
  .about-visual { min-height: 500px; }
  .about-visual::before { inset: 12% 0 0; }
  .about-outline { inset: 7% -5px 2%; }
  .about-visual > img { max-height: 520px; }
  .about-signature { left: -5px; bottom: 15px; }
  .about-copy blockquote p { font-size: 20px; }
  .method-section { padding-block: 95px; }
  .method-heading { margin-bottom: 65px; }
  .method-heading h2 { font-size: clamp(46px, 13vw, 62px); }
  .method-grid { grid-template-columns: 1fr; }
  .method-card { min-height: 0; padding: 36px 0; }
  .method-card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
    margin-right: 0;
  }
  .method-card h3 { margin-top: 28px; }
  .experience { grid-template-columns: 1fr; padding-block: 105px; gap: 70px; }
  .experience-media { order: 2; }
  .video-shell { width: min(390px, 89vw); }
  .space-section { padding-block: 95px 110px; }
  .space-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 52px; }
  .gallery {
    width: calc(100% - 22px);
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 60vw;
  }
  .gallery-item--wide { grid-column: span 2; }
  .quote-section { min-height: 650px; height: 76svh; }
  .quote-section blockquote { width: calc(100% - 44px); }
  .quote-section blockquote p { font-size: clamp(42px, 12vw, 58px); }
  .contact-card { padding: 90px 22px; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .contact-info { grid-template-columns: 1fr; gap: 26px; margin-top: 48px; }
  .location-card { min-height: auto; grid-template-rows: 320px auto; }
  .location-details { padding: 34px 22px 48px; }
  .google-rating { align-items: flex-end; }
  .google-rating strong { font-size: 47px; }
  .rating-copy small { max-width: 130px; text-align: right; }
  .location-details h3 { font-size: 39px; }
  .location-photos { gap: 5px; }
  .site-footer { grid-template-columns: 1fr; padding-inline: 22px; }
  .footer-links { flex-wrap: wrap; }
  .site-footer > small { line-height: 1.6; }
  .whatsapp-float { width: 52px; height: 52px; }
}

@media (max-width: 440px) {
  .brand-copy { display: none; }
  .site-header { padding-inline: 18px; }
  .hero h1 { font-size: 48px; }
  .hero-pillars { width: calc(100% - 20px); }
  .about-signature span { display: none; }
  .about-signature { padding-right: 14px; }
  .google-rating { gap: 10px; }
  .stars { font-size: 16px; }
  .location-photos { grid-template-columns: 1fr 1fr; }
  .location-photos img { height: 118px; }
  .location-photos img:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal,
  .hero-content,
  .hero-pillars { opacity: 1; transform: none; }
  .hero-content { transform: translate(-50%, -50%); }
  .hero-pillars { transform: translateX(-50%); }
}

/* Atualização v3 — avaliações, som do vídeo e seção profissional ao final */
.video-sound {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 18px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(18,12,8,.72);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background .22s ease, transform .22s ease, border-color .22s ease;
}
.video-sound:hover {
  transform: translateY(-2px);
  background: rgba(18,12,8,.92);
  border-color: rgba(217,185,128,.9);
}
.video-sound-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sound-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.sound-icon--off { display: none; }
.video-sound.is-muted .sound-icon--on { display: none; }
.video-sound.is-muted .sound-icon--off { display: block; }
.video-sound:not(.is-muted) {
  background: rgba(183,138,77,.9);
  border-color: rgba(236,210,159,.9);
}

.review-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 27px;
  border-top: 1px solid rgba(37,26,18,.13);
}
.review-section-head > span {
  color: var(--ink);
  font: 500 24px/1 var(--serif);
}
.review-section-head small {
  color: #8a796a;
  font-size: 7px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 16px;
}
.review-card {
  min-width: 0;
  padding: 20px 18px 18px;
  border: 1px solid rgba(37,26,18,.12);
  background: rgba(255,255,255,.52);
  box-shadow: 0 12px 28px rgba(60,42,28,.05);
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.review-card-top .stars {
  font-size: 13px;
  letter-spacing: .04em;
}
.review-card-top small {
  color: #7a6a5e;
  font-size: 8px;
  font-weight: 600;
}
.review-card p {
  min-height: 92px;
  margin: 17px 0 20px;
  color: #55483e;
  font: 400 17px/1.42 var(--serif);
}
.review-card footer {
  display: grid;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid rgba(37,26,18,.1);
}
.review-card footer strong {
  color: var(--ink);
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.review-card footer span {
  color: #948275;
  font-size: 7px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.about-final-cta { margin-top: 28px; }

/* Evita custo visual desnecessário durante o scroll em dispositivos mais fracos */
@media (max-width: 900px), (pointer: coarse) {
  .video-sound {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (max-width: 760px) {
  .video-sound {
    right: 12px;
    bottom: 12px;
    min-height: 40px;
    padding-inline: 12px;
  }
  .video-sound-label { font-size: 7px; }
  .review-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .review-grid { grid-template-columns: 1fr; }
  .review-card p { min-height: 0; }
}
