:root {
  --gold: #b8953d;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --cream: #f7f5f0;
  --line: rgba(184,149,61,.35);
  --font: "Plus Jakarta Sans", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font: 400 15px/1.75 var(--font);
  color: var(--muted);
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, .ttl { font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
h2 { font-weight: 700; color: var(--ink); }
h3, h5 { font-weight: 600; color: var(--ink); }
h6 { font-weight: 600; color: var(--ink); }

.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 80;
  background: var(--gold);
}

.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 50; color: #fff; transition: .35s; }
.header.solid { background: #fff; color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.bottom { position: relative; display: flex; align-items: center; padding: 10px 48px; gap: 24px; }
.top {
  display: flex; gap: 28px; padding: 8px 48px;
  font-size: 13px; letter-spacing: .04em; border-bottom: 1px solid rgba(255,255,255,.25);
}
.header.solid .top { border-bottom-color: var(--line); }
.top i { color: var(--gold); margin-right: 6px; }
.brand img { height: 64px; width: auto; max-height: 64px; }
.bottom nav { margin-left: auto; display: flex; gap: 4px; }
.bottom nav a {
  padding: 8px 16px; color: #fff; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 500;
}
.bottom nav a.on, .bottom nav a:hover { color: var(--gold); }
.header.solid .bottom nav a { color: var(--ink); }
.header.solid .bottom nav a.on, .header.solid .bottom nav a:hover { color: var(--gold); }
.burger { display: none; width: 36px; height: 36px; border: 0; background:
  linear-gradient(#fff,#fff) center 10px/18px 2px no-repeat,
  linear-gradient(#fff,#fff) center 18px/18px 2px no-repeat,
  linear-gradient(#fff,#fff) center 26px/18px 2px no-repeat; }
.header.solid .burger { background:
  linear-gradient(var(--ink),var(--ink)) center 10px/18px 2px no-repeat,
  linear-gradient(var(--ink),var(--ink)) center 18px/18px 2px no-repeat,
  linear-gradient(var(--ink),var(--ink)) center 26px/18px 2px no-repeat; }

.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; display: grid; place-items: end center; text-align: center; color: #fff; }
.hero-bg { position: absolute; inset: -8%; }
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 45%;
  opacity: 0; transform: scale(1.06) translateY(8px);
  transition: opacity 1.1s ease-in-out, transform 2.2s ease-out;
  pointer-events: none;
}
.hero-bg img.show {
  opacity: 1; transform: scale(1) translateY(0);
  z-index: 1;
}
.hero-dots {
  position: absolute; z-index: 2; left: 50%; bottom: 72px; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.hero-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0;
  background: rgba(255,255,255,.4); cursor: pointer;
}
.hero-dots button.on { background: var(--gold); width: 22px; border-radius: 8px; }
.hero:after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: rgba(201, 168, 76, .52);
}
.hero-copy { position: relative; z-index: 2; padding: 0 24px 110px; }
.kicker {
  color: #111; letter-spacing: .28em; text-transform: uppercase; font-size: 11px; margin-bottom: 14px;
}
.ttl {
  font-size: clamp(2.8rem, 7vw, 4.4rem); color: #111; letter-spacing: -.02em;
  font-weight: 700;
  line-height: 1.05; margin-bottom: 14px;
  transform: translateY(-28px); opacity: 0; animation: in 1s .15s forwards;
}
.sub {
  font-size: 16px; color: #111; margin-bottom: 28px; font-weight: 400;
  opacity: 0; animation: in 1s .4s forwards;
}
@keyframes in { to { opacity: 1; transform: none; } }

.btn {
  display: inline-block; padding: 14px 36px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid transparent; transition: .3s; font-weight: 500;
}
.btn.yellow { background: var(--gold); color: #fff; }
.btn.yellow:hover { background: transparent; color: #fff; border-color: #fff; }
.btn.dark-h:hover { background: #fff; border-color: var(--gold); color: var(--gold); }

.scroll {
  position: absolute; left: 50%; bottom: 28px; width: 20px; height: 32px;
  border: 1px solid rgba(255,255,255,.7); border-radius: 12px; transform: translateX(-50%);
  z-index: 2;
}
.scroll:after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 3px; height: 7px; margin-left: -1.5px;
  background: var(--gold); border-radius: 2px; animation: drip 1.4s infinite;
}
@keyframes drip { 50% { top: 16px; opacity: .3; } }

.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  width: min(1080px, calc(100% - 48px)); margin: -48px auto 56px; position: relative; z-index: 2;
  background: #fff; border: 1px solid var(--line);
}
.features article { padding: 36px 28px; text-align: center; border-right: 1px solid var(--line); }
.features article:last-child { border-right: 0; }
.features i { font-size: 22px; color: var(--gold); margin-bottom: 12px; }
.features h5 { font-size: 22px; margin-bottom: 8px; }
.features p { font-size: 14px; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 580px; align-items: stretch; overflow: hidden; }
.split.rev { grid-template-columns: .9fr 1.1fr; }
.split-img { overflow: hidden; background: var(--cream); }
.split-img img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; object-position: 50% 30%; will-change: transform; }
.split-txt { padding: 80px 64px; background: #fff; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 500; }
.eyebrow.white { color: #fff; }
h2 { font-size: 42px; line-height: 1.15; margin-bottom: 8px; }
.orn { position: relative; display: block; max-width: 120px; height: 1px; margin: 20px 0 24px; background: var(--gold); }
.orn i { display: none; }
.orn.light { background: #fff; margin-left: auto; margin-right: auto; }
.split-txt > p { max-width: 460px; margin-bottom: 28px; }
.lines > div { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.mark {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: var(--gold); border: 1px solid var(--gold); font-size: 16px;
}
.lines h6 { font-family: inherit; font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; }
.lines p { font-size: 14px; }

.buy-list { list-style: none; margin-top: 8px; }
.buy-list li {
  padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink); letter-spacing: .04em;
}
.buy-list li:before { content: "— "; color: var(--gold); }

.pair { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.pair img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; }

.testimonials { background: var(--gold); padding: 88px 24px; }
.inner { width: min(1080px, calc(100% - 48px)); margin: 0 auto; text-align: center; }
.testimonials .eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .28em; opacity: .8; }
.testimonials h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -.02em; }
.testimonials .orn { margin-left: auto; margin-right: auto; }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: left; margin-top: 28px; }
blockquote { position: relative; min-height: 70px; }
.av {
  position: absolute; left: 0; top: 0; width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; object-position: 50% 20%; background: #fff;
}
blockquote h6 {
  color: #fff; padding: 4px 0 0 68px; margin: 0;
  font-size: 16px; font-weight: 700; letter-spacing: 0;
}
blockquote span {
  display: block; color: rgba(255,255,255,.7); padding: 2px 0 0 68px;
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
}
blockquote p {
  color: #fff; padding-top: 16px; font-size: 15px; font-weight: 400;
  line-height: 1.7; font-style: italic; opacity: .95;
}

.process { background: var(--cream); padding: 88px 24px; text-align: center; }
.process .orn { margin-left: auto; margin-right: auto; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: min(1080px, 100%); margin: 40px auto 0; }
.steps article { background: #fff; padding: 32px 16px; border: 1px solid var(--line); }
.steps h6 { font-size: 28px; color: var(--gold); margin-bottom: 6px; }
.steps p { color: var(--ink); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }

.folio { padding: 72px 0 0; text-align: center; }
.folio h3 { margin: 8px 0 36px; font-size: 28px; }
.look { display: grid; grid-template-columns: 1.2fr 1fr 1fr; width: min(1100px, calc(100% - 48px)); margin: 0 auto; gap: 16px; }
.look figure { overflow: hidden; background: var(--cream); }
.look img { width: 100%; height: 420px; object-fit: cover; transition: transform .8s; }
.look figure:first-child img { height: 420px; object-position: 50% 12%; }
.look figure:hover img { transform: scale(1.04); }
.look figcaption { padding: 14px 0 8px; font-family: inherit; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); }
.ready { padding: 64px 20px 80px; text-align: center; }
.ready h1 { font-size: 48px; margin-bottom: 8px; font-weight: 700; }
.ready p { margin-bottom: 22px; }

footer { background: var(--cream); border-top: 1px solid var(--line); }
.ft {
  display: grid; grid-template-columns: 1.5fr .9fr .9fr 1.1fr; gap: 40px 32px;
  width: min(1100px, calc(100% - 48px)); margin: 0 auto; padding: 64px 0 48px;
  align-items: start;
}
.ft h4 { color: var(--ink); margin-bottom: 18px; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 600; }
.ft a, .ft p { margin-bottom: 10px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.ft p { display: block; }
.ft > div > a { display: block; }
.ft a:hover { color: var(--gold); }
.flogo { height: 72px; width: auto; margin-bottom: 14px; }
.ft i { color: var(--gold); margin-right: 8px; }
.ft-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.ft-actions a {
  display: inline-block; margin: 0; padding: 8px 14px; border: 1px solid var(--gold);
  color: var(--ink); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}
.ft-actions a:hover { background: var(--gold); color: #fff; }
.copy {
  border-top: 1px solid var(--line); color: var(--muted);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  width: min(1100px, calc(100% - 48px)); margin: 0 auto; padding: 18px 0 28px; font-size: 13px;
  background: transparent; text-align: left;
}
.copy a { color: var(--gold); }

.wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 28px;
}

.reveal { opacity: 0; transform: translateY(24px); transition: .8s cubic-bezier(.16,1,.3,1); }
.reveal.on { opacity: 1; transform: none; }

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 100vh;
  background: var(--cream);
}
.intro-copy {
  padding: 160px 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.intro-copy .kicker { margin-bottom: 18px; }
.intro-copy h1 {
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: .95;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 12ch;
  font-weight: 700;
}
.intro-copy p { max-width: 38ch; margin-bottom: 28px; color: var(--muted); font-size: 16px; }
.intro-visual { position: relative; overflow: hidden; }
.intro-visual img {
  width: 100%; height: 100%; min-height: 100vh;
  object-fit: cover; object-position: 58% 8%;
}

.svc-head {
  padding: 150px 0 40px;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 40px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.svc-head h1 { font-size: clamp(3rem, 7vw, 5.5rem); line-height: .9; margin: 8px 0 0; }
.rate-card {
  background: var(--gold); color: #fff; padding: 28px 28px 24px;
}
.rate-card small { letter-spacing: .2em; text-transform: uppercase; font-size: 11px; opacity: .9; }
.rate-card b { display: block; font-size: 28px; font-weight: 700; margin-top: 8px; color: #fff; }
.rate-card span { display: block; font-size: 13px; margin-top: 4px; opacity: .9; }

.menu { width: min(1100px, calc(100% - 48px)); margin: 0 auto 20px; }
.menu-row {
  display: grid; grid-template-columns: 80px 1fr 280px; gap: 32px; align-items: center;
  padding: 40px 0; border-bottom: 1px solid var(--line);
}
.menu-row:nth-child(even) { grid-template-columns: 280px 80px 1fr; }
.menu-row:nth-child(even) .num { order: 2; }
.menu-row:nth-child(even) .txt { order: 3; }
.menu-row:nth-child(even) img { order: 1; }
.menu-row .num { font-family: inherit; font-size: 36px; color: var(--gold); }
.menu-row h3 { font-size: 34px; margin-bottom: 8px; font-weight: 700; }
.menu-row img { width: 100%; height: 180px; object-fit: cover; }

.exclude {
  width: min(1100px, calc(100% - 48px)); margin: 48px auto 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 40px; background: var(--cream);
}
.exclude h2 { font-size: 32px; }
.exclude li { list-style: none; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink); }

.desk {
  background: var(--gold);
  padding: 150px 24px 64px;
  text-align: center;
  color: #fff;
}
.desk .kicker { color: #fff; }
.desk h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  color: #fff;
  line-height: 1;
  margin: 12px 0 12px;
  font-weight: 700;
}
.desk a.phone {
  display: inline-block;
  font-family: inherit;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.5);
  margin: 8px 0 28px;
}
.acts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  width: min(900px, 100%); margin: 28px auto 0; text-align: left;
}
.acts a {
  background: #fff; color: var(--ink); padding: 22px 22px 20px; display: block;
}
.acts strong { display: block; font-weight: 700; font-size: 26px; }
.acts span { font-size: 13px; color: var(--muted); }

.bring-form {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px;
  width: min(1100px, calc(100% - 48px)); margin: 64px auto 80px;
}
.bring-form h2 { font-size: 36px; }
.bring-form ol { margin: 16px 0 0 18px; }
.bring-form li { margin-bottom: 12px; color: var(--ink); }
.desk-form { background: var(--cream); padding: 36px; }
.desk-form h3 { font-size: 28px; margin-bottom: 16px; }
form { display: grid; gap: 14px; }
form input, form textarea, form select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); font: 400 14px/1.5 var(--font); color: var(--ink);
  background: #fff;
}
form textarea { min-height: 120px; resize: vertical; }
form button { justify-self: start; cursor: pointer; font-family: inherit; }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  width: min(1080px, calc(100% - 48px)); margin: 0 auto 64px; border: 1px solid var(--line);
}
.about-stats article { padding: 32px; text-align: center; border-right: 1px solid var(--line); }
.about-stats article:last-child { border-right: 0; }
.about-stats b { display: block; font-size: 36px; color: var(--gold); font-weight: 700; }

.page-pad { padding-top: 0; }

.story {
  width: min(1080px, calc(100% - 48px));
  margin: 72px auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.story h2 { font-size: 46px; }
.story p { margin-bottom: 16px; }
.story .lead { font-size: 18px; color: var(--ink); }

.values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px;
  width: min(1080px, calc(100% - 48px)); margin: 0 auto 80px;
}
.values article { padding: 28px 28px 32px; border: 1px solid var(--line); background: #fff; }
.values h5 { font-size: 26px; margin: 8px 0 10px; }
.values i { color: var(--gold); font-size: 20px; }

.band {
  background: var(--cream); padding: 72px 24px;
}
.band-inner { width: min(1080px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.band-inner img { width: 100%; height: 420px; object-fit: cover; }
.band-inner ul { list-style: none; }
.band-inner li { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.band-inner li span { display: block; color: var(--muted); font-size: 14px; margin-top: 4px; }

.visit { width: min(800px, calc(100% - 48px)); margin: 72px auto 40px; }
.visit article { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.visit b { font-size: 32px; color: var(--gold); font-weight: 700; }
.visit h6 { font-family: inherit; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; margin-bottom: 6px; }

.photos3 { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 12px; width: min(1080px, calc(100% - 48px)); margin: 0 auto 80px; }
.photos3 img { width: 100%; height: 340px; object-fit: cover; }

@media (max-width: 1100px) {
  .top, .bottom { padding-left: 20px; padding-right: 20px; }
  h2 { font-size: 32px; }
  .intro-copy { padding: 140px 36px 56px; }
  .split-txt { padding: 48px 32px; }
}

@media (max-width: 900px) {
  .top { display: none; }
  .bottom { padding: 10px 16px; }
  .brand img { height: 52px; }
  .bottom nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px rgba(0,0,0,.06);
  }
  .bottom nav.open { display: flex; }
  .bottom nav.open a { color: var(--ink); padding: 12px 8px; }
  .burger { display: block; margin-left: auto; }
  .hero { min-height: 100svh; height: 100svh; }
  .ttl { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-copy { padding: 0 18px 100px; }
  .features, .split, .split.rev, .tgrid, .steps, .look, .ft, .pair, .intro, .story, .values, .band-inner, .photos3, .about-stats, .svc-head, .menu-row, .menu-row:nth-child(even), .exclude, .acts, .bring-form { grid-template-columns: 1fr; }
  .menu-row:nth-child(even) .num, .menu-row:nth-child(even) .txt, .menu-row:nth-child(even) img { order: unset; }
  .intro { min-height: 0; }
  .intro-copy { padding: 120px 20px 36px; border-right: 0; }
  .intro-visual img { min-height: 320px; object-position: 50% 20%; }
  .visit article { grid-template-columns: 48px 1fr; }
  .photos3 img, .band-inner img { height: 240px; }
  .features { margin: 20px auto 40px; width: calc(100% - 32px); }
  .features article { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 20px; }
  .about-stats { width: calc(100% - 32px); }
  .about-stats article { border-right: 0; border-bottom: 1px solid var(--line); }
  .split-img img, .pair img { min-height: 260px; }
  .split-txt { padding: 36px 20px; }
  .look { width: calc(100% - 32px); }
  .look img { height: 240px; }
  .ready h1 { font-size: 28px; }
  .story, .values, .visit, .photos3, .svc-head, .menu, .exclude, .bring-form, .inner, .steps { width: calc(100% - 32px); }
  .story h2 { font-size: 28px; }
  .svc-head { padding-top: 120px; }
  .svc-head h1 { font-size: 36px; }
  .menu-row { padding: 28px 0; gap: 16px; }
  .menu-row h3 { font-size: 24px; }
  .menu-row img { height: 200px; }
  .exclude { padding: 24px; margin-bottom: 48px; }
  .desk { padding: 120px 16px 48px; }
  .desk a.phone { font-size: 28px; word-break: break-word; }
  .acts { width: 100%; }
  .bring-form { gap: 32px; }
  .desk-form { padding: 24px; }
  .ft { width: calc(100% - 32px); grid-template-columns: 1fr 1fr; gap: 32px 24px; padding: 48px 0 32px; }
  .copy { width: calc(100% - 32px); flex-direction: column; text-align: left; }
  .testimonials { padding: 56px 16px; }
  .process { padding: 56px 16px; }
  .tgrid { gap: 28px; }
  .wa { right: 14px; bottom: 14px; width: 50px; height: 50px; font-size: 24px; }
  .band-inner { width: calc(100% - 0px); }
}

@media (max-width: 560px) {
  .ft { grid-template-columns: 1fr; }
  .pair { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .lines > div { flex-direction: row; }
}
