:root {
  --black: #050505;
  --ink: #080808;
  --panel: #111;
  --panel-2: #151515;
  --line: rgba(255, 255, 255, 0.08);
  --cream: #f2ede4;
  --muted: #afafaf;
  --gold: #c69a5b;
  --copper: #b9905c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 16% 8%, rgba(185, 144, 92, .08), transparent 30rem), var(--black);
  color: var(--cream);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
picture { display: block; width: 100%; height: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: min(100% - 40px, 1240px); margin: 0 auto; }
.section { padding: 110px 0; border-bottom: 1px solid var(--line); }
.section.dark { background: var(--ink); }
.eyebrow { margin: 0 0 18px; color: var(--gold); font-size: 11px; line-height: 1; text-transform: uppercase; letter-spacing: .18em; }
.title { margin: 0; max-width: 820px; font-size: clamp(34px, 5.2vw, 64px); font-weight: 300; line-height: 1.06; text-transform: uppercase; letter-spacing: .08em; }
.copy { margin: 24px 0 0; max-width: 640px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  border: 1px solid rgba(198, 154, 91, .75);
  padding: 14px 20px;
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: .28s ease;
}
.btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn.filled { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn.filled:hover { background: transparent; color: var(--gold); }
.btn.dark { border-color: rgba(0,0,0,.8); color: var(--black); }
.btn.dark:hover { background: var(--black); color: var(--cream); }
.btn .icon, .menu-btn .icon { color: inherit; }
.icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5,5,5,.36);
  backdrop-filter: blur(18px);
  transition: background .3s ease;
}
.header.scrolled { background: rgba(5,5,5,.9); }
.nav { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.logo-small { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.logo-main { display: block; margin-top: 2px; font-size: 20px; font-weight: 300; text-transform: uppercase; letter-spacing: .16em; }
.links { display: flex; align-items: center; gap: 30px; }
.links a { position: relative; color: rgba(242,237,228,.82); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.links a:after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: .25s ease; }
.links a:hover:after { transform: scaleX(1); }
.menu-btn { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; color: var(--cream); }
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 80; padding: 24px; background: rgba(5,5,5,.98); }
.mobile-menu.open { display: block; }
.mobile-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-links { margin-top: 56px; display: grid; gap: 22px; }
.mobile-links a { border-bottom: 1px solid var(--line); padding-bottom: 20px; font-size: 24px; font-weight: 300; text-transform: uppercase; letter-spacing: .12em; }

.hero { position: relative; min-height: 100vh; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg:before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.58) 45%, rgba(5,5,5,.28)); }
.hero-bg:after { content: ""; position: absolute; inset: auto 0 0; z-index: 2; height: 240px; background: linear-gradient(0deg, var(--black), transparent); }
.hero-bg img { opacity: .62; }
.hero-content { position: relative; z-index: 3; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 140px 0 32px; }
.hero h1 { margin: 0; max-width: 980px; font-size: clamp(42px, 7vw, 86px); font-weight: 300; line-height: 1.04; text-transform: uppercase; letter-spacing: .06em; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.stats { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: rgba(17,17,17,.72); backdrop-filter: blur(14px); }
.stat { padding: 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; margin-top: 18px; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; }
.stat span { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }

/* Page hero (for inner pages) */
.page-hero { padding: 160px 0 80px; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero .copy { margin-top: 20px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 32px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--muted); }

.grid-2 { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: end; }
.image-frame { position: relative; overflow: hidden; min-height: 430px; border: 1px solid var(--line); background: var(--panel); box-shadow: 0 24px 90px rgba(198,154,91,.14); }
.image-frame:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(5,5,5,.78)); pointer-events: none; }
.image-frame img { transition: transform .7s ease; }
.image-frame:hover img { transform: scale(1.025); }
.video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.video-frame .video-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.benefits { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit { padding: 26px; border-right: 1px solid var(--line); }
.benefit:last-child { border-right: 0; }
.benefit h3, .service h3, .set-card h3 { margin: 18px 0 0; font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: .12em; }
.benefit p, .set-card p, .service p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.wide-image { margin-top: 44px; min-height: 520px; }

.tabs-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.tabs { display: flex; overflow-x: auto; border-bottom: 1px solid var(--line); }
.tab { min-width: max-content; border: 0; background: transparent; padding: 15px 20px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; cursor: pointer; }
.tab.active, .tab:hover { color: var(--gold); }
.tab-panel { margin-top: 42px; display: grid; grid-template-columns: 1.45fr .85fr; border: 1px solid var(--line); background: var(--panel); }
.tab-image { min-height: 560px; }
.tab-image img.contain-image { object-fit: contain; background: #f3eee8; }
.tab-content { display: flex; flex-direction: column; justify-content: center; padding: 58px; }
.tab-content h3 { margin: 0; color: var(--gold); font-size: 28px; font-weight: 300; text-transform: uppercase; letter-spacing: .12em; }

.timeline { margin-top: 58px; display: grid; gap: 22px; }
.timeline-step { display: grid; grid-template-columns: .18fr .72fr .65fr; gap: 24px; border-top: 1px solid var(--line); padding-top: 24px; }
.timeline-step .num { color: var(--gold); font-size: 34px; font-weight: 300; }
.timeline-step h3 { margin: 4px 0 0; font-size: 18px; font-weight: 400; text-transform: uppercase; letter-spacing: .12em; }
.timeline-step p { color: var(--muted); font-size: 14px; line-height: 1.8; }
.timeline-step .image-frame { min-height: 220px; }

.center { text-align: center; margin-inline: auto; }
.services { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service { padding: 32px; border: 1px solid var(--line); background: rgba(17,17,17,.9); transition: transform .25s ease, border-color .25s ease; }
.service:hover { transform: translateY(-6px); border-color: rgba(198,154,91,.45); }
.service h3 { color: var(--gold); font-size: 25px; font-weight: 300; line-height: 1.2; }
.service ul { margin: 26px 0 30px; padding: 0; list-style: none; display: grid; gap: 12px; color: rgba(242,237,228,.86); font-size: 14px; }
.service li { display: flex; gap: 12px; align-items: center; }
.cta-strip { margin-top: 32px; padding: 24px; border: 1px solid var(--line); background: rgba(17,17,17,.78); display: flex; justify-content: space-between; align-items: center; gap: 22px; }
.cta-strip p { margin: 0; color: var(--muted); line-height: 1.7; }

/* Service detail page */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.service-includes { margin-top: 48px; }
.service-includes h3 { color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; margin: 0 0 24px; }
.include-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.include-list li { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 20px; border: 1px solid var(--line); background: rgba(17,17,17,.6); }
.include-list li .icon { margin-top: 2px; }
.include-list li strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.include-list li p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.service-cta-box { padding: 32px; border: 1px solid rgba(198,154,91,.3); background: rgba(198,154,91,.04); }
.service-cta-box p { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.price-hint { display: block; margin-bottom: 24px; color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }

.section-head-row { display: flex; justify-content: space-between; gap: 32px; align-items: end; }
.cards-3 { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.set-card { overflow: hidden; border: 1px solid var(--line); background: var(--panel); transition: transform .25s ease, border-color .25s ease; }
.set-card:hover { transform: translateY(-5px); border-color: rgba(198,154,91,.45); }
.set-card .media { height: 230px; overflow: hidden; }
.set-card img { opacity: .86; transition: .7s ease; }
.set-card:hover img { opacity: 1; transform: scale(1.05); }
.card-body { padding: 24px; }

.guest-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: center; }
.guest-benefits { margin-top: 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.guest-benefits .benefit { border: 1px solid var(--line); }

.testimonials { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(198,154,91,.12); gap: 1px; border: 1px solid rgba(198,154,91,.12); }
.testimonial { padding: 40px 36px 36px; background: #0c0c0c; display: flex; flex-direction: column; gap: 24px; }
.testimonial::before { content: '\201C'; display: block; font-size: 56px; line-height: 1; color: var(--gold); font-weight: 300; margin-bottom: -8px; }
.t-text { margin: 0; color: rgba(242,237,228,.88); font-size: 15px; line-height: 1.85; flex: 1; }
.t-author { padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.t-name { color: var(--cream); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; }
.t-role { color: var(--muted); font-size: 12px; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; padding: 25px 0; display: flex; justify-content: space-between; gap: 20px; border: 0; background: transparent; color: var(--cream); text-align: left; cursor: pointer; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { margin: 0; padding: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.faq-item.open .faq-a { max-height: 180px; }

.light { background: #e9e1d4; color: var(--black); }
.about-box { display: grid; grid-template-columns: .72fr 1.28fr; border: 1px solid rgba(0,0,0,.1); overflow: hidden; }
.about-copy { padding: 48px; }
.about-copy p { color: rgba(0,0,0,.7); font-size: 14px; line-height: 1.8; }
.about-image { min-height: 0; height: 520px; background: #e9e1d4; }
.about-image::before { display: none; }
.about-image::after { background: none; }
.about-image img { position: relative; z-index: 1; object-fit: contain; object-position: center; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(0,0,0,.1); border-top: 0; }
.metric { padding: 28px; border-right: 1px solid rgba(0,0,0,.1); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; font-size: 34px; font-weight: 300; }
.metric span { display: block; margin-top: 12px; color: rgba(0,0,0,.6); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; }
.contact-line { display: flex; gap: 16px; margin-top: 20px; }
.contact-line .icon { color: var(--black); }
.contact-line small { display: block; color: rgba(0,0,0,.55); text-transform: uppercase; letter-spacing: .12em; }
.contact-line span { display: block; margin-top: 4px; color: rgba(0,0,0,.8); font-size: 14px; }
form { display: grid; gap: 18px; }
label { display: grid; gap: 8px; color: rgba(0,0,0,.6); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
input, textarea, select { width: 100%; border: 0; border-bottom: 1px solid rgba(0,0,0,.22); background: transparent; padding: 14px 0; color: var(--black); outline: 0; -webkit-appearance: none; appearance: none; }
textarea { min-height: 150px; resize: vertical; border: 1px solid rgba(0,0,0,.22); padding: 16px; }
input:focus, textarea:focus, select:focus { border-color: var(--black); }
.name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.check-label { display: flex; align-items: flex-start; gap: 10px; flex-direction: row; text-transform: none; letter-spacing: 0; font-size: 13px; cursor: pointer; }
.check-label input[type="checkbox"] { width: auto; border: 0; padding: 0; margin-top: 3px; flex-shrink: 0; -webkit-appearance: checkbox; appearance: checkbox; }
#formMsg { font-size: 13px; min-height: 20px; }
.submit { width: fit-content; border: 0; background: var(--black); color: var(--cream); padding: 16px 32px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; cursor: pointer; transition: .25s ease; }
.submit:hover { background: var(--gold); color: var(--black); }
.submit:disabled { opacity: .5; cursor: not-allowed; }
.callout { margin-top: 42px; padding: 26px; background: var(--black); color: var(--cream); display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.callout p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* Cookie consent banner */
#cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 200;
  border-top: 1px solid rgba(198,154,91,.2);
  background: rgba(5,5,5,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.cookie-inner {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-text small {
  display: block;
  color: var(--gold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 8px;
}
.cookie-text p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; max-width: 640px; }
#cookie-banner a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-reject {
  display: inline-flex; align-items: center;
  padding: 13px 22px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 11px; font-weight: 600; font-family: inherit;
  text-transform: uppercase; letter-spacing: .12em;
  cursor: pointer; transition: .25s ease;
}
#cookie-reject:hover { border-color: rgba(255,255,255,.25); color: var(--cream); }
#cookie-accept {
  display: inline-flex; align-items: center;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  font-size: 11px; font-weight: 600; font-family: inherit;
  text-transform: uppercase; letter-spacing: .12em;
  cursor: pointer; transition: .25s ease;
}
#cookie-accept:hover { background: transparent; color: var(--gold); }
@media (max-width: 640px) { .cookie-inner { flex-direction: column; align-items: flex-start; gap: 16px; } }

footer { padding: 70px 0 28px; background: var(--black); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr .8fr; gap: 54px; }
.footer-brand { color: var(--gold); font-size: clamp(30px, 4vw, 44px); font-weight: 300; line-height: 1.12; text-transform: uppercase; letter-spacing: .12em; }
.footer-col h3 { color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; }
.footer-col a { display: block; margin-top: 13px; color: var(--muted); font-size: 14px; transition: .25s ease; }
.footer-col a:hover { color: var(--gold); }
.social { display: flex; gap: 16px; margin-top: 30px; }
.social a { color: var(--gold); transition: opacity .25s ease; }
.social a:hover { opacity: .7; }
.copyright { margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .image-frame img, .set-card img { transition: none; }
}

@media (max-width: 980px) {
  .links, .header .btn { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .stats, .benefits, .services, .cards-3, .metrics { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .tab-panel, .timeline-step, .guest-grid, .faq-grid, .about-box, .contact-grid, .footer-grid, .service-detail { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .tabs-head, .section-head-row, .cta-strip, .callout { align-items: flex-start; flex-direction: column; }
  .tab-content { padding: 34px; }
  .wide-image, .tab-image { min-height: 380px; }
  .about-image { min-height: 0; height: 440px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1240px); }
  .section { padding: 78px 0; }
  .nav { height: 72px; }
  .hero h1 { font-size: 39px; }
  .stats, .benefits, .services, .cards-3, .guest-benefits, .metrics { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .stat, .benefit, .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric { border-bottom-color: rgba(0,0,0,.1); }
  .image-frame, .wide-image, .tab-image { min-height: 320px; }
  .about-image { min-height: 0; height: 320px; }
  .about-image img { object-position: center; }
  .about-copy { padding: 30px; }
  .footer-brand { font-size: 34px; }
  .name-row { grid-template-columns: 1fr; }
}
