@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #090908;
  --ink-soft: #11110f;
  --panel: #171613;
  --line: rgba(255, 255, 255, 0.13);
  --paper: #f4f0e8;
  --muted: #aaa59a;
  --acid: #c8a65a;
  --acid-dark: #9d7a35;
  --danger: #ff665c;
  --display: "Cormorant Garamond", serif;
  --body: "Manrope", sans-serif;
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--acid);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--acid); }
.display {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 8.6rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .82;
}
.display em { color: var(--acid); font-weight: 500; }
.section-title {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .9;
}
.section-copy { max-width: 560px; color: var(--muted); font-size: 1rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--acid);
  border-radius: 999px;
  background: var(--acid);
  color: #0b0c09;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.btn::after { content: "↗"; font-size: 1.05rem; }
.btn:hover { transform: translateY(-3px); background: transparent; color: var(--acid); }
.btn--ghost { border-color: var(--line); background: transparent; color: var(--paper); }
.btn--ghost:hover { border-color: var(--paper); color: var(--paper); }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(7, 8, 7, .9); backdrop-filter: blur(18px); }
.nav { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: .78rem; font-weight: 800; line-height: 1.1; letter-spacing: .05em; text-transform: uppercase; }
.brand-mark { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--acid); border-radius: 50%; color: var(--acid); font-family: var(--display); font-size: 1.3rem; transform: rotate(-9deg); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { position: relative; color: #d4d7ce; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--acid); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 17px; border: 1px solid var(--acid); border-radius: 999px; color: var(--acid) !important; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .25s ease; }

.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; padding: 160px 0 70px; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,8,7,.96) 0%, rgba(7,8,7,.64) 46%, rgba(7,8,7,.22) 100%), linear-gradient(0deg, var(--ink) 0%, transparent 35%); z-index: 1; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.12); }
.hero-content { position: relative; z-index: 2; max-width: 960px; }
.hero-intro { display: grid; grid-template-columns: 1.6fr .7fr; align-items: end; gap: 50px; margin-top: 35px; }
.hero-intro p { margin: 0; color: #c0c4ba; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.hero-index { position: absolute; right: max(20px, calc((100vw - 1180px) / 2)); bottom: 64px; z-index: 2; color: rgba(255,255,255,.52); font-family: var(--display); font-size: 1.6rem; writing-mode: vertical-rl; }
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--acid); color: var(--ink); }
.marquee-track { display: flex; width: max-content; animation: marquee 24s linear infinite; }
.marquee span { padding: 16px 30px; font-family: var(--display); font-size: 1.35rem; letter-spacing: .04em; text-transform: uppercase; }
.marquee span::after { content: "✦"; margin-left: 60px; }

section { padding: 120px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 58px; }
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 520px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.service-card:nth-child(1) { grid-column: span 5; }
.service-card:nth-child(2) { grid-column: span 7; }
.service-card:nth-child(3) { grid-column: 4 / span 6; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25); transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .5s ease; }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,5,4,.92), transparent 70%); }
.service-card:hover img { transform: scale(1.045); filter: grayscale(0); }
.service-card-content { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; padding: 30px; }
.service-card h3 { margin: 0 0 8px; font-family: var(--display); font-size: 2.3rem; font-weight: 400; text-transform: uppercase; }
.service-card p { max-width: 420px; margin: 0; color: #bdc1b7; font-size: .88rem; }
.service-no { position: absolute; top: 24px; right: 24px; z-index: 1; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: .7rem; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 8vw; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.stat-badge { position: absolute; right: -30px; bottom: 44px; width: 156px; height: 156px; display: grid; place-content: center; border-radius: 50%; background: var(--acid); color: var(--ink); text-align: center; transform: rotate(7deg); }
.stat-badge strong { font-family: var(--display); font-size: 3.2rem; line-height: .8; font-weight: 400; }
.stat-badge span { max-width: 90px; margin-top: 7px; font-size: .64rem; font-weight: 800; line-height: 1.25; letter-spacing: .08em; text-transform: uppercase; }
.feature-list { display: grid; gap: 0; margin: 35px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); color: #d9dcd3; }
.feature-list li::before { content: "✓"; color: var(--acid); font-weight: 800; }
.proof { padding-top: 40px; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.proof-item { padding: 35px 25px; border-right: 1px solid var(--line); }
.proof-item:last-child { border: 0; }
.proof-item strong { display: block; color: var(--acid); font-family: var(--display); font-size: 3.2rem; font-weight: 400; line-height: 1; }
.proof-item span { color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

.page-hero { padding: 190px 0 85px; background: radial-gradient(circle at 78% 20%, rgba(200,255,50,.13), transparent 26%); }
.page-hero .section-copy { margin: 25px 0 0 auto; }
.breadcrumbs { margin-bottom: 30px; color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumbs span { color: var(--acid); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-step { min-height: 290px; padding: 30px; background: var(--ink); }
.process-step strong { color: var(--acid); font-family: var(--display); font-size: 2rem; font-weight: 400; }
.process-step h3 { margin: 65px 0 8px; font-size: 1rem; text-transform: uppercase; }
.process-step p { margin: 0; color: var(--muted); font-size: .85rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, var(--panel), #0b0c0a); }
.value-card .icon { color: var(--acid); font-family: var(--display); font-size: 3rem; }
.value-card h3 { margin: 35px 0 8px; font-family: var(--display); font-size: 2rem; font-weight: 400; text-transform: uppercase; }
.value-card p { color: var(--muted); font-size: .9rem; }

.service-detail { display: grid; grid-template-columns: 70px 1fr 1fr; gap: 35px; padding: 45px 0; border-top: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-detail .number { color: var(--acid); font-family: var(--display); font-size: 1.8rem; }
.service-detail h2 { margin: 0; font-family: var(--display); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 400; line-height: .9; text-transform: uppercase; }
.service-detail p { margin-top: 0; color: var(--muted); }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.service-tags span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #d5d8cf; font-size: .7rem; text-transform: uppercase; }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 35px; }
.filter-btn { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }
.filter-btn.active, .filter-btn:hover { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 180px; gap: 14px; }
.gallery-item { position: relative; grid-column: span 4; grid-row: span 2; overflow: hidden; border: 0; border-radius: 18px; background: var(--panel); cursor: zoom-in; padding: 0; }
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 8; grid-row: span 3; }
.gallery-item:nth-child(3), .gallery-item:nth-child(4) { grid-row: span 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .4s ease; }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(.75); }
.gallery-item::after { content: attr(data-label); position: absolute; right: 18px; bottom: 18px; left: 18px; color: white; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-align: left; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: .3s ease; }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.lightbox { position: fixed; inset: 0; z-index: 30; display: none; align-items: center; justify-content: center; padding: 30px; background: rgba(0,0,0,.92); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; border-radius: 14px; }
.lightbox-close { position: absolute; top: 24px; right: 24px; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.5rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; min-height: 590px; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.price-card.featured { background: var(--acid); color: var(--ink); transform: translateY(-18px) rotate(1deg); }
.price-card .popular { position: absolute; top: 20px; right: 20px; padding: 7px 11px; border: 1px solid currentColor; border-radius: 999px; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.price-card h2 { margin: 45px 0 0; font-family: var(--display); font-size: 3rem; font-weight: 400; text-transform: uppercase; }
.price { margin: 10px 0 24px; font-family: var(--display); font-size: 4rem; line-height: 1; }
.price small { font-family: var(--body); font-size: .75rem; }
.price-card ul { display: grid; gap: 13px; margin: 0 0 35px; padding: 25px 0 0; border-top: 1px solid currentColor; list-style: none; opacity: .85; }
.price-card li::before { content: "+"; margin-right: 10px; }
.price-card .btn { margin-top: auto; }
.price-card.featured .btn { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.add-ons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 50px; background: var(--line); border: 1px solid var(--line); }
.add-on { display: flex; justify-content: space-between; gap: 30px; padding: 22px; background: var(--ink); }
.add-on span:last-child { color: var(--acid); font-weight: 700; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; }
.contact-list { display: grid; gap: 20px; margin-top: 45px; }
.contact-item { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.contact-item small { display: block; color: var(--acid); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-item a, .contact-item span { display: block; margin-top: 6px; font-family: var(--display); font-size: 1.55rem; }
.booking-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #d6d9d0; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 0; border-bottom: 1px solid #3a3d37; border-radius: 0; outline: 0; background: transparent; color: var(--paper); padding: 13px 0; transition: border-color .2s ease; }
.field select option { background: var(--panel); }
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--acid); }
.field-error { min-height: 16px; color: var(--danger); font-size: .7rem; }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .72rem; }
.form-status { grid-column: 1 / -1; display: none; padding: 14px; border: 1px solid var(--acid); border-radius: 10px; color: var(--acid); font-size: .85rem; }
.form-status.visible { display: block; }

.cta { padding-top: 40px; }
.cta-box { position: relative; overflow: hidden; padding: 80px; border-radius: var(--radius); background: var(--acid); color: var(--ink); }
.cta-box::after { content: "101"; position: absolute; right: -20px; bottom: -90px; color: rgba(7,8,7,.1); font-family: var(--display); font-size: 20rem; line-height: 1; }
.cta-box .section-title { position: relative; z-index: 1; max-width: 700px; }
.cta-box .btn { position: relative; z-index: 1; margin-top: 30px; border-color: var(--ink); background: var(--ink); color: var(--paper); }
.site-footer { padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .6fr); gap: 40px; padding-bottom: 55px; border-bottom: 1px solid var(--line); }
.footer-brand p { max-width: 330px; color: var(--muted); font-size: .82rem; }
.footer-col h4 { margin: 0 0 18px; color: var(--acid); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a, .footer-col span { display: block; margin: 9px 0; color: #bfc3b9; font-size: .8rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; color: #747970; font-size: .7rem; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 100; padding: 12px 18px; background: var(--acid); color: var(--ink); }
.skip-link:focus { top: 20px; }

/* Luxury homepage */
.home-page { background: #090908; }
.home-page .site-header.scrolled { background: rgba(9, 9, 8, .92); }
.home-page .home-hero { min-height: 100svh; padding-bottom: 0; }
.home-page .home-hero::before {
  background:
    linear-gradient(90deg, rgba(6, 6, 5, .96) 0%, rgba(7, 7, 6, .74) 43%, rgba(7, 7, 6, .12) 78%),
    linear-gradient(0deg, rgba(9, 9, 8, .9) 0%, transparent 38%);
}
.home-page .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(200, 166, 90, .18);
  border-block: 0;
  pointer-events: none;
}
.home-page .hero-bg { filter: saturate(.6) contrast(1.12) brightness(.82); object-position: 58% center; }
.home-page .hero-content { align-self: center; width: var(--container); max-width: none; padding: 120px 0 150px; }
.home-page .home-hero .display { max-width: 1010px; font-size: clamp(4.8rem, 9.7vw, 9.5rem); }
.home-page .hero-intro { max-width: 1040px; grid-template-columns: minmax(0, 1.4fr) auto; align-items: end; }
.home-page .hero-intro > div > p { max-width: 680px; font-size: 1.02rem; }
.hero-phone { display: grid; gap: 3px; padding: 7px 0 7px 24px; border-left: 1px solid var(--acid); }
.hero-phone span, .cta-contact span { color: var(--muted); font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero-phone strong { font-family: var(--display); font-size: 1.9rem; font-weight: 500; line-height: 1; white-space: nowrap; }
.hero-service-note { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); width: var(--container); margin-inline: auto; border-top: 1px solid rgba(255,255,255,.2); }
.hero-service-note span { padding: 22px 24px; color: #d4cec1; font-size: .67rem; font-weight: 700; letter-spacing: .13em; text-align: center; text-transform: uppercase; }
.hero-service-note span + span { border-left: 1px solid rgba(255,255,255,.2); }
.home-services { position: relative; }
.home-services::before { content: "101"; position: absolute; top: 30px; right: -1vw; color: rgba(200,166,90,.045); font-family: var(--display); font-size: clamp(12rem, 30vw, 31rem); font-weight: 600; line-height: .7; pointer-events: none; }
.luxury-services .service-card { border-radius: 2px; }
.luxury-services .service-card:nth-child(1) { grid-column: span 7; min-height: 650px; }
.luxury-services .service-card:nth-child(2) { grid-column: span 5; min-height: 650px; }
.luxury-services .service-card:nth-child(3) { grid-column: 3 / span 8; min-height: 540px; margin-top: 24px; }
.luxury-services .service-card::after { background: linear-gradient(0deg, rgba(5,5,4,.96) 0%, rgba(5,5,4,.24) 68%, rgba(5,5,4,.15)); }
.luxury-services .service-card-content { padding: 38px; }
.luxury-services .service-card h3 { margin: 8px 0 10px; font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 500; line-height: .86; text-transform: none; }
.card-kicker { color: var(--acid); font-size: .61rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.card-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; color: #f2eadb; font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.card-link::after { content: "↗"; color: var(--acid); font-size: 1rem; transition: transform .2s ease; }
.service-card:hover .card-link::after { transform: translate(3px, -3px); }
.standard-section { overflow: hidden; background: #11100e; }
.standard-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(60px, 8vw, 125px); }
.standard-copy { position: relative; z-index: 2; }
.standard-gallery { position: relative; min-height: 760px; }
.standard-gallery figure { margin: 0; overflow: hidden; }
.standard-gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.58) contrast(1.08); }
.standard-main { position: absolute; inset: 0 0 50px 16%; }
.standard-inset { position: absolute; bottom: 0; left: -7%; z-index: 2; width: 42%; height: 42%; border: 9px solid #11100e; }
.standard-seal { position: absolute; top: 8%; left: 5%; z-index: 3; display: grid; width: 148px; height: 148px; place-content: center; border: 1px solid rgba(200,166,90,.7); border-radius: 50%; background: rgba(9,9,8,.84); text-align: center; backdrop-filter: blur(10px); }
.standard-seal strong { color: var(--acid); font-family: var(--display); font-size: 3.6rem; font-weight: 500; line-height: .7; }
.standard-seal span { max-width: 90px; margin-top: 10px; color: #ded6c8; font-size: .56rem; font-weight: 700; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 6px; border-bottom: 1px solid rgba(200,166,90,.5); color: #eee7da; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { color: var(--acid); font-size: 1rem; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.results-section { padding-bottom: 60px; }
.results-head { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.results-head .eyebrow { margin: 0; }
.results-strip { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; align-items: end; }
.result-shot { position: relative; margin: 0; overflow: hidden; background: var(--panel); }
.result-shot:nth-child(1) { grid-column: span 5; height: 570px; }
.result-shot:nth-child(2) { grid-column: span 3; height: 410px; }
.result-shot:nth-child(3) { grid-column: span 4; height: 500px; }
.result-shot img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.58) contrast(1.1); transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .5s ease; }
.result-shot:hover img { transform: scale(1.035); filter: saturate(.85); }
.result-shot figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 45px 22px 20px; background: linear-gradient(0deg, rgba(7,7,6,.9), transparent); color: #e8e1d5; font-family: var(--display); font-size: 1.45rem; }
.service-area-section { position: relative; padding-top: 120px; }
.service-area-grid { display: grid; grid-template-columns: 1.16fr .84fr; align-items: center; gap: clamp(55px, 8vw, 120px); }
.map-panel { position: relative; min-height: 610px; overflow: hidden; border: 1px solid rgba(200,166,90,.32); background: #d5ccba; }
.map-panel iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) sepia(.3) contrast(1.08); }
.map-badge { position: absolute; right: 22px; bottom: 22px; display: grid; min-width: 180px; padding: 17px 20px; border-left: 2px solid var(--acid); background: rgba(9,9,8,.92); backdrop-filter: blur(10px); }
.map-badge span { color: var(--muted); font-size: .56rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.map-badge strong { font-family: var(--display); font-size: 1.7rem; font-weight: 500; }
.area-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 32px 0 25px; }
.area-list span { padding: 10px 14px; border: 1px solid var(--line); color: #d9d2c5; font-size: .67rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.area-note { color: var(--muted); font-size: .82rem; }
.area-note a { color: var(--acid); font-weight: 700; }
.home-cta .cta-box { display: grid; grid-template-columns: 1.5fr .5fr; align-items: end; gap: 60px; border-radius: 2px; background: linear-gradient(120deg, #d1b46f, #a9843c); }
.home-cta .cta-box::after { color: rgba(9,9,8,.075); }
.home-cta .cta-box .section-title { max-width: 820px; }
.home-cta .eyebrow::before { background: currentColor; }
.cta-actions { position: relative; z-index: 2; display: grid; justify-items: start; gap: 24px; }
.home-cta .cta-actions .btn { margin: 0; }
.cta-contact { display: grid; color: #17140f; font-size: .72rem; font-weight: 700; word-break: break-word; }
.cta-contact span { color: rgba(23,20,15,.62); }
