:root {
  --navy: #061b2b;
  --navy-2: #0a2639;
  --ink: #18222a;
  --muted: #68717a;
  --ivory: #f7f5f0;
  --white: #ffffff;
  --gold: #d6a454;
  --gold-light: #e7c17c;
  --line: rgba(15, 33, 48, 0.12);
  --shadow: 0 22px 50px rgba(6, 27, 43, 0.15);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 98px 0; }
.skip-link {
  position: fixed; left: 12px; top: -100px; z-index: 9999;
  padding: 10px 16px; background: var(--gold); color: var(--navy); font-weight: 700;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: 84px; display: flex; align-items: center;
  background: rgba(4, 22, 35, 0.97);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: height .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { height: 70px; background: rgba(4, 22, 35, 0.985); box-shadow: 0 12px 35px rgba(0,0,0,.22); }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); min-width: max-content; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; color: var(--gold); }
.brand-mark svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; letter-spacing: .16em; }
.brand-copy strong { font-family: var(--serif); font-size: 22px; font-weight: 700; }
.brand-copy small { margin-top: 5px; font-size: 8px; letter-spacing: .36em; }
.primary-nav { justify-self: center; display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); }
.primary-nav a { position: relative; color: rgba(255,255,255,.82); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; transition: color .25s ease; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -14px; height: 2px; background: var(--gold); transition: right .25s ease; }
.primary-nav a:hover, .primary-nav a.active { color: var(--gold-light); }
.primary-nav a:hover::after, .primary-nav a.active::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 40px; padding: 8px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: white; transition: transform .25s, opacity .25s; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 48px; padding: 0 24px; border: 1px solid transparent; border-radius: 3px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .025em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { color: #11202a; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 10px 25px rgba(214,164,84,.22); }
.button-gold:hover { box-shadow: 0 15px 30px rgba(214,164,84,.32); }
.button-outline { color: white; border-color: rgba(255,255,255,.55); background: rgba(0,0,0,.12); backdrop-filter: blur(8px); }
.button-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.header-cta { min-height: 44px; padding-inline: 24px; }

.hero { position: relative; min-height: 590px; padding-top: 84px; display: flex; align-items: stretch; overflow: hidden; background: #091826; }
.hero-media { position: absolute; inset: 0; background: url("assets/hero-spa.jpg") 64% 50% / cover no-repeat; transform: scale(1.02); animation: heroZoom 16s ease-in-out infinite alternate; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.74) 36%, rgba(0,0,0,.24) 67%, rgba(0,0,0,.08) 100%), linear-gradient(0deg, rgba(3,18,29,.25), transparent 45%); }
.hero-inner { position: relative; z-index: 2; display: flex; align-items: center; min-height: 506px; }
.hero-copy { width: min(590px, 62vw); padding: 58px 0 60px; color: white; }
.eyebrow { margin: 0 0 14px; color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(54px, 6vw, 83px); line-height: .96; letter-spacing: -.02em; font-weight: 600; text-shadow: 0 8px 26px rgba(0,0,0,.35); }
.hero h1 span, .section-heading h2 span { color: var(--gold-light); }
.hero-lead { max-width: 480px; margin: 24px 0 28px; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 18px; width: 24px; height: 38px; border: 1px solid rgba(255,255,255,.35); border-radius: 20px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 4px; margin-left: -2px; border-radius: 50%; background: var(--gold-light); animation: scrollDot 1.8s ease infinite; }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.08); } }
@keyframes scrollDot { 0% { opacity:0; transform:translateY(0); } 25% { opacity:1; } 80% { opacity:0; transform:translateY(15px); } 100% { opacity:0; } }

.partners { border-bottom: 1px solid #eee9df; background: #fff; }
.partner-grid { min-height: 94px; display: grid; grid-template-columns: 1.1fr repeat(5, 1fr); align-items: center; gap: 24px; }
.partner-intro { margin: 0; color: #617080; font-family: var(--serif); font-size: 18px; line-height: 1.05; }
.partner-intro strong { font-weight: 600; }
.partner-logo { min-height: 52px; display: flex; align-items: center; justify-content: center; color: #617080; opacity: .9; filter: grayscale(1); line-height: 1; }
.partner-logo strong { font-weight: 700; }
.partner-logo small { display: block; font-size: 7px; letter-spacing: .16em; }
.partner-logo.aqua { flex-direction: column; font-size: 14px; position: relative; }
.partner-logo.aqua .wave { position: absolute; left: 9px; font-size: 35px; opacity: .55; transform: rotate(-12deg); }
.partner-logo.passion { flex-direction: column; font-size: 18px; }
.partner-logo.passion small { margin-top: 5px; }
.partner-logo.supplier { gap: 8px; font-size: 11px; }
.supplier-icon { font-size: 34px; transform: rotate(45deg); }
.partner-logo.wellis { font-family: var(--serif); font-size: 28px; }
.partner-logo.wellis sup { font-size: 8px; }
.partner-logo.badge { width: 54px; height: 54px; margin: auto; border: 2px double #68717a; border-radius: 50%; flex-direction: column; font-size: 14px; }
.partner-logo.badge small { font-size: 5px; margin-top: 3px; }

.services { background: linear-gradient(180deg, #fff, #fbfaf7); }
.section-heading { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(39px, 4.6vw, 58px); line-height: 1.05; color: #17212a; font-weight: 600; }
.section-heading > p:last-child { max-width: 700px; margin: 20px auto 0; color: var(--muted); font-size: 13px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 266px; padding: 32px 25px 25px; text-align: center; background: rgba(255,255,255,.78); border: 1px solid #e9e5de; border-radius: 6px; box-shadow: 0 12px 40px rgba(24,34,42,.04); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; transition-delay: var(--delay); }
.service-card::before { content:""; position:absolute; inset:auto 0 0; height:3px; background:linear-gradient(90deg,transparent,var(--gold),transparent); transform:scaleX(0); transition:transform .3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(214,164,84,.45); }
.service-card:hover::before { transform:scaleX(1); }
.service-icon { width: 64px; height: 54px; margin: 0 auto 15px; color: var(--gold); }
.service-icon svg { width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.service-card h3 { margin: 0 0 9px; font-family: var(--serif); font-size: 23px; line-height: 1.1; }
.service-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.service-card a { display: inline-flex; gap: 7px; align-items:center; margin-top: 15px; color: var(--gold); font-size: 10px; font-weight: 700; text-transform:uppercase; letter-spacing:.08em; opacity:0; transform:translateY(6px); transition:.25s; }
.service-card:hover a { opacity:1; transform:translateY(0); }

.about { position: relative; background: var(--navy); color: white; overflow: hidden; }
.about::before { content:""; position:absolute; inset:-20% auto auto -8%; width:450px; height:450px; border-radius:50%; background:radial-gradient(circle, rgba(214,164,84,.07), transparent 70%); }
.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 70px; }
.about-copy { position: relative; z-index:2; }
.about-copy h2 { margin:0; font-family:var(--serif); font-size:clamp(40px,4.4vw,58px); line-height:1.03; font-weight:600; }
.gold-rule { display:block; width:38px; height:2px; margin:20px 0 28px; background:var(--gold); }
.about-copy > p:not(.eyebrow) { margin:0 0 17px; max-width:570px; color:rgba(255,255,255,.75); font-size:13px; line-height:1.75; }
.stats { display:grid; grid-template-columns:repeat(3,1fr); margin-top:34px; }
.stat { padding:0 22px; border-right:1px solid rgba(255,255,255,.13); }
.stat:first-child { padding-left:0; }
.stat:last-child { border-right:0; }
.stat strong { display:block; color:var(--gold-light); font-family:var(--serif); font-size:37px; line-height:1; white-space:nowrap; }
.stat small { display:block; margin-top:8px; color:rgba(255,255,255,.75); font-size:9px; }
.about-visual { position:relative; padding:0 46px 25px 0; }
.portrait-card { margin:0; border-radius:16px; overflow:hidden; box-shadow:0 24px 50px rgba(0,0,0,.27); }
.portrait-card img { width:100%; aspect-ratio:1.5/1; object-fit:cover; object-position:center; transition:transform .8s ease; }
.about-visual:hover .portrait-card img { transform:scale(1.035); }
.signature-card { position:absolute; right:0; bottom:0; width:205px; min-height:150px; padding:28px 24px; color:white; background:linear-gradient(145deg,#d9ab5d,#c88f3c); border-radius:10px; box-shadow:0 18px 35px rgba(0,0,0,.22); }
.signature-card strong { display:block; margin-bottom:12px; font-family:var(--serif); font-size:25px; font-style:italic; font-weight:500; }
.signature-card span { display:block; font-size:10px; line-height:1.7; }
.signature-card small { display:block; margin-top:8px; font-size:9px; }

.testimonials { padding-top:75px; padding-bottom:72px; background:#fff; }
.testimonials .section-heading { margin-bottom:28px; }
.testimonials .section-heading h2 { font-size:clamp(38px,4vw,50px); }
.testimonial-slider { position:relative; max-width:1000px; margin:0 auto; padding:0 58px 24px; }
.testimonial-viewport { overflow:hidden; }
.testimonial-track { display:flex; transition:transform .55s cubic-bezier(.22,.61,.36,1); }
.testimonial-slide { min-width:100%; display:grid; grid-template-columns:1fr 150px 1fr; align-items:center; gap:42px; opacity:.5; transform:scale(.985); transition:opacity .4s, transform .4s; }
.testimonial-slide.is-active { opacity:1; transform:scale(1); }
.testimonial-slide blockquote { position:relative; margin:0; }
.testimonial-slide blockquote:last-child { text-align:left; }
.quote-mark { position:absolute; top:-18px; left:-28px; color:#ece8e0; font-family:var(--serif); font-size:66px; line-height:1; }
.testimonial-slide p { position:relative; margin:0; color:#454e56; font-size:12px; line-height:1.75; }
.testimonial-slide cite { display:block; margin-top:12px; color:#2c353c; font-size:10px; font-style:normal; font-weight:600; }
.testimonial-image { width:150px; height:150px; border-radius:50%; object-fit:cover; box-shadow:0 12px 30px rgba(6,27,43,.18); border:5px solid #fff; }
.slider-button { position:absolute; top:52%; width:34px; height:34px; border:0; border-radius:50%; color:white; background:var(--gold); font-family:var(--serif); font-size:26px; line-height:1; box-shadow:0 8px 20px rgba(214,164,84,.25); transform:translateY(-50%); transition:transform .2s, background .2s; z-index:3; }
.slider-button:hover { background:#bb8237; transform:translateY(-50%) scale(1.07); }
.slider-button.prev { left:0; }
.slider-button.next { right:0; }
.slider-dots { position:absolute; bottom:0; left:50%; display:flex; gap:6px; transform:translateX(-50%); }
.slider-dots button { width:5px; height:5px; padding:0; border:0; border-radius:50%; background:#d6d2ca; }
.slider-dots button.is-active { width:18px; border-radius:10px; background:var(--gold); }

.cta-strip { background:var(--navy); color:white; }
.cta-inner { min-height:112px; display:grid; grid-template-columns:72px 1fr auto; align-items:center; gap:25px; }
.cta-icon { width:60px; height:60px; display:grid; place-items:center; border-radius:50%; color:white; background:var(--gold); }
.cta-icon svg { width:32px; height:32px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.cta-copy h2 { margin:0 0 2px; font-family:var(--serif); font-size:26px; font-weight:600; }
.cta-copy p { margin:0; color:rgba(255,255,255,.68); font-size:11px; }
.cta-strip .button { min-width:255px; }

.site-footer { padding:28px 0; color:rgba(255,255,255,.65); background:#04131f; font-size:10px; }
.footer-inner { display:flex; justify-content:space-between; align-items:center; gap:24px; }
.footer-brand { transform:scale(.8); transform-origin:left center; }
.footer-inner p { margin:0; }
.back-to-top { position:fixed; right:22px; bottom:22px; z-index:50; width:42px; height:42px; border:1px solid rgba(255,255,255,.25); border-radius:50%; color:white; background:rgba(6,27,43,.9); box-shadow:0 12px 30px rgba(0,0,0,.2); opacity:0; visibility:hidden; transform:translateY(12px); transition:.25s; }
.back-to-top.is-visible { opacity:1; visibility:visible; transform:translateY(0); }

.reveal { opacity:0; transform:translateY(26px); transition:opacity .75s ease, transform .75s ease; }
.reveal-left { transform:translateX(-34px); }
.reveal-right { transform:translateX(34px); }
.reveal.is-visible { opacity:1; transform:none; }

@media (max-width: 1080px) {
  .primary-nav { gap:20px; }
  .header-cta { display:none; }
  .header-inner { grid-template-columns:auto 1fr; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .partner-grid { grid-template-columns:repeat(3,1fr); padding-block:20px; }
  .partner-intro { grid-row:span 2; }
  .about-grid { grid-template-columns:1fr 1.1fr; gap:45px; }
}

@media (max-width: 820px) {
  .container { width:min(calc(100% - 34px), var(--container)); }
  .site-header, .site-header.is-scrolled { height:70px; }
  .header-inner { grid-template-columns:1fr auto; gap:10px; }
  .menu-toggle { display:block; }
  .menu-toggle.is-open span:nth-child(1) { transform:translateY(8px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity:0; }
  .menu-toggle.is-open span:nth-child(3) { transform:translateY(-8px) rotate(-45deg); }
  .primary-nav { position:absolute; left:0; right:0; top:70px; display:grid; gap:0; padding:12px 22px 22px; background:rgba(4,22,35,.99); border-top:1px solid rgba(255,255,255,.08); box-shadow:0 25px 30px rgba(0,0,0,.25); opacity:0; visibility:hidden; transform:translateY(-10px); transition:.25s; }
  .primary-nav.is-open { opacity:1; visibility:visible; transform:none; }
  .primary-nav a { padding:13px 0; border-bottom:1px solid rgba(255,255,255,.06); }
  .primary-nav a::after { display:none; }
  .hero { min-height:650px; padding-top:70px; }
  .hero-media { background-position:63% center; }
  .hero-overlay { background:linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.55) 70%,rgba(0,0,0,.25)); }
  .hero-copy { width:100%; max-width:580px; }
  .partner-grid { grid-template-columns:repeat(2,1fr); }
  .partner-intro { grid-row:auto; grid-column:1/-1; text-align:center; }
  .about-grid { grid-template-columns:1fr; }
  .about-copy { order:1; }
  .about-visual { order:0; }
  .testimonial-slide { grid-template-columns:1fr 115px 1fr; gap:25px; }
  .testimonial-image { width:115px; height:115px; }
  .cta-inner { grid-template-columns:60px 1fr; padding-block:22px; }
  .cta-strip .button { grid-column:1/-1; width:100%; }
  .footer-inner { flex-direction:column; text-align:center; }
  .footer-brand { transform-origin:center; }
}

@media (max-width: 590px) {
  .section { padding:72px 0; }
  .brand-mark { width:38px; height:38px; }
  .brand-copy strong { font-size:19px; }
  .hero { min-height:690px; }
  .hero-media { background-position:67% center; }
  .hero-overlay { background:linear-gradient(90deg,rgba(0,0,0,.89),rgba(0,0,0,.65) 82%,rgba(0,0,0,.38)); }
  .hero h1 { font-size:51px; }
  .hero-copy { padding-top:58px; }
  .hero-actions { flex-direction:column; align-items:stretch; max-width:330px; }
  .button { width:100%; }
  .partner-grid { grid-template-columns:1fr 1fr; gap:16px; }
  .partner-logo { min-height:64px; }
  .service-grid { grid-template-columns:1fr; }
  .service-card { min-height:240px; }
  .service-card a { opacity:1; transform:none; }
  .about-visual { padding-right:18px; }
  .portrait-card img { aspect-ratio:1.08/1; }
  .signature-card { width:165px; min-height:125px; padding:20px; }
  .signature-card strong { font-size:21px; }
  .stats { gap:0; }
  .stat { padding:0 9px; }
  .stat strong { font-size:27px; }
  .testimonial-slider { padding:0 36px 30px; }
  .testimonial-slide { grid-template-columns:1fr; text-align:center; gap:25px; }
  .testimonial-slide blockquote:last-child { text-align:center; }
  .testimonial-image { order:-1; width:120px; height:120px; margin:auto; }
  .quote-mark { left:4px; }
  .slider-button { width:30px; height:30px; }
  .cta-inner { grid-template-columns:1fr; text-align:center; }
  .cta-icon { margin:auto; }
  .cta-copy h2 { font-size:24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  .reveal { opacity:1; transform:none; }
}
