/* Relocateinstyle V2 — Modern Interactive Experience */

:root {
  --gold: #C9A962;
  --gold-light: #E5D4A8;
  --gold-dark: #9A7B3A;
  --gold-tint: rgba(201, 169, 98, 0.12);
  --bg: #ffffff;
  --bg-elevated: #faf8f4;
  --bg-card: #ffffff;
  --text: #2c2416;
  --text-muted: #6b6358;
  --text-dark: #1a1a1a;
  --border: rgba(201, 169, 98, 0.35);
  --shadow: rgba(42, 31, 15, 0.1);
  --overlay: rgba(255, 255, 255, 0.88);
  --overlay-mid: rgba(255, 255, 255, 0.65);
  --overlay-soft: rgba(255, 255, 255, 0.45);
  --radius: 12px;
  --font-sans: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
  --font-serif: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--bg);
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

body.loaded { cursor: none; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: none; }
input, select, textarea { font-family: inherit; }

@media (max-width: 768px) {
  body, body.loaded, button { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Custom cursor ── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 98, 0.5);
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.08);
}

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  z-index: 1000;
}

/* ── Loader ── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  height: 100px;
  animation: pulse 1.5s ease infinite;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(201, 169, 98, 0.2);
  overflow: hidden;
  border-radius: 2px;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold);
  animation: loadBar 1.2s var(--ease) forwards;
}

@keyframes loadBar { to { width: 100%; } }
@keyframes pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 48px);
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px var(--shadow);
}

.nav-logo img { height: 120px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 24px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 0.3s, background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
  background: var(--gold-tint);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--text-dark) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.nav-version {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.3s;
}

.nav-version:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.3s var(--ease), background 0.3s, box-shadow 0.3s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--text-dark);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.25);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.35);
}

.btn-ghost {
  border: 1px solid var(--gold);
  color: var(--gold-dark);
}

.btn-ghost:hover {
  border-color: var(--gold-dark);
  background: var(--gold-tint);
  color: var(--gold-dark);
}

.btn-dark {
  background: var(--gold);
  color: var(--text-dark);
}

.btn-sm { padding: 12px 24px; font-size: 11px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--nav-h) clamp(20px, 4vw, 48px) 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  will-change: transform;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--overlay) 0%, var(--overlay-mid) 50%, var(--overlay) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(201,169,98,0.22) 0%, transparent 60%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.8vw, 3.75rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 28px;
  white-space: nowrap;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line > span {
  display: inline-block;
  white-space: nowrap;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

body.loaded .hero-title .line > span {
  transform: translateY(0);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.hero-gallery-main,
.hero-gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow);
  transition: transform 0.4s var(--ease);
  will-change: transform;
  margin: 0;
}

.hero-gallery-main img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.hero-gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.hero-gallery figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.95));
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
}

/* ── Marquee ── */
.marquee {
  padding: 20px 0;
  border-block: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(90deg, var(--bg-elevated), rgba(201,169,98,0.08), var(--bg-elevated));
}

.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.marquee-track span.marquee-highlight { color: var(--gold); }

.marquee-track span:not(.marquee-highlight):not(:empty) {
  color: var(--text-muted);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Sections ── */
.section {
  padding: clamp(80px, 12vw, 140px) clamp(20px, 4vw, 48px);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-dark { background: var(--bg-elevated); }

.section-gold {
  background: linear-gradient(160deg, rgba(201,169,98,0.18) 0%, var(--bg-elevated) 55%, var(--bg) 100%);
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-title em { font-style: italic; color: var(--gold); }
.section-title.gold { color: var(--gold); }
.section-title.light { color: var(--text); }

.section-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section-hint {
  font-size: 12px;
  color: var(--gold);
  margin-top: 12px;
  letter-spacing: 0.05em;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-scroll-section] {
  will-change: transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible[data-scroll-float] {
  transform: none;
}

[data-scroll-float] {
  will-change: transform, opacity;
}

/* ── Stats ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-label + .stat-label {
  margin-top: 4px;
}

/* ── Horizontal scroll ── */
.h-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 clamp(20px, 4vw, 48px) 20px;
}

.h-scroll::-webkit-scrollbar { display: none; }
.h-scroll.dragging { cursor: grabbing; }

.h-scroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-right: 48px;
}

.exp-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px var(--shadow);
  transition: border-color 0.3s, transform 0.4s var(--ease);
  will-change: transform;
}

.exp-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
}

.exp-card-img {
  height: 220px;
  overflow: hidden;
}

.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.exp-card:hover .exp-card-img img { transform: scale(1.08); }

.exp-card-body { padding: 28px; }

.exp-num {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.exp-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 8px 0 12px;
}

.exp-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── Journey timeline ── */
.journey-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.journey-sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}

.journey-progress {
  width: 2px;
  height: 200px;
  background: rgba(201, 169, 98, 0.2);
  margin-top: 40px;
  position: relative;
}

.journey-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(var(--gold), var(--gold-dark));
  transition: height 0.3s var(--ease);
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.j-step {
  padding: 40px 0 40px 32px;
  border-left: 1px solid rgba(201, 169, 98, 0.25);
  margin-left: 20px;
  position: relative;
  opacity: 0.4;
  transition: opacity 0.5s;
}

.j-step.active { opacity: 1; }

.j-step-marker {
  position: absolute;
  left: -21px;
  top: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.j-step.active .j-step-marker {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-dark);
}

.j-step h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.j-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── Approach flip cards ── */
.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.approach-card {
  position: relative;
  height: 320px;
  perspective: 1000px;
  cursor: pointer;
}

.approach-front,
.approach-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 36px 28px;
  backface-visibility: hidden;
  transition: transform 0.7s var(--ease);
  display: flex;
  flex-direction: column;
}

.approach-front {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.approach-back {
  background: var(--gold);
  color: var(--text-dark);
  transform: rotateY(180deg);
  justify-content: center;
}

.approach-card.flipped .approach-front { transform: rotateY(-180deg); }
.approach-card.flipped .approach-back { transform: rotateY(0); }

.approach-card.featured .approach-front {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(201,169,98,0.12), var(--bg-card));
}

.approach-tier {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.approach-front h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.approach-front p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.approach-more {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.approach-card:hover .approach-more {
  background: var(--gold);
  color: var(--text-dark);
  transform: rotate(90deg);
}

.approach-back p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── Immersive Ticino ── */
.section-immersive {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px clamp(20px, 4vw, 48px);
  overflow: hidden;
}

.immersive-bg {
  position: absolute;
  inset: 0;
}

.immersive-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.15s linear;
}

.immersive-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--overlay) 0%, var(--overlay-soft) 60%, var(--overlay-mid) 100%);
}

.immersive-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.immersive-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.immersive-thumbs {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: 60px;
  display: flex;
  gap: 12px;
  z-index: 2;
}

.immersive-thumbs img {
  width: 100px;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}

.immersive-thumbs img:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

/* ── Contact ── */
.section-contact { background: var(--bg-elevated); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: color 0.3s;
}

.contact-link:hover { color: var(--gold); }

.contact-link-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-person {
  margin-top: 32px;
  font-size: 14px;
  color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-field {
  position: relative;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 18px 0 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 169, 98, 0.35);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  cursor: none;
}

.form-field select { cursor: none; }
.form-field select option { background: var(--bg-card); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field label {
  position: absolute;
  left: 0;
  top: 18px;
  font-size: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: transform 0.3s var(--ease), font-size 0.3s, color 0.3s;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:valid + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  transform: translateY(-22px);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-field textarea { resize: vertical; min-height: 100px; }

/* ── Footer ── */
.footer {
  padding: 48px clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo { height: 88px; opacity: 1; }
.footer p { font-size: 12px; color: var(--text-muted); }
.footer-address {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-version {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.footer-version:hover { opacity: 0.7; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin: 8px 0;
}

.footer-nav a {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--gold); }

/* ── Sticky full-viewport scroll (Mild-style) ── */
.scroll-story {
  position: relative;
  background: var(--bg);
}

.scroll-panel {
  height: 180vh;
  position: relative;
}

.scroll-panel-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 24px) clamp(20px, 4vw, 48px) 48px;
}

.scroll-card {
  position: relative;
  display: block;
  width: min(520px, 92vw);
  height: min(72vh, 640px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px var(--shadow);
  transition: border-color 0.3s;
}

.scroll-card:hover {
  border-color: var(--gold);
}

.scroll-card-bg {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.2);
}

.scroll-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 25%, rgba(255, 255, 255, 0.95) 100%);
}

.scroll-card-overlay h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 8px 0;
}

.scroll-card-overlay p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 12px;
  max-width: 36ch;
}

.scroll-card-overlay .teaser-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-card-overlay .teaser-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Multi-page: Home sunset hero ── */
.hero-sunset { justify-content: center; }

.hero-centered {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-centered .hero-desc { margin-inline: auto; }

.hero-gradient-sunset {
  background:
    linear-gradient(180deg, var(--overlay-mid) 0%, var(--overlay-soft) 40%, var(--overlay) 100%),
    linear-gradient(90deg, var(--overlay) 0%, rgba(255,255,255,0.25) 45%, var(--overlay-mid) 100%),
    radial-gradient(ellipse at 80% 40%, rgba(201,169,98,0.25) 0%, transparent 55%);
}

/* ── Multi-page: Inner page heroes ── */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 48px) clamp(20px, 4vw, 48px) 80px;
  overflow: hidden;
}

.page-hero-short { min-height: 45vh; }

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.72) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.52) 50%, rgba(255, 255, 255, 0.72) 100%);
}

.page-hero-sunset .page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.72) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0.52) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 98, 0.2) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-content-center {
  text-align: center;
}

.page-hero .hero-eyebrow {
  color: #8a6b2e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.page-hero-title em { font-style: italic; color: var(--gold); }

.page-hero-title-services {
  white-space: nowrap;
  font-size: clamp(1.35rem, 3.8vw, 3rem);
}

.page-hero-title .title-gold {
  color: var(--gold);
}

.page-hero-title .title-dark {
  color: var(--text);
  font-style: normal;
}

.page-hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  margin-top: 20px;
  color: var(--text);
}

.page-hero-tagline em { font-style: italic; color: var(--gold); }

/* Lifestyle: match hero title to in-page section titles */
body[data-page="lifestyle"] .page-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.15;
  font-weight: 400;
}

/* Lifestyle hero — clearer pool framing, lighter wash */
body[data-page="lifestyle"] .page-hero-bg img {
  object-position: center 45%;
}

body[data-page="lifestyle"] .page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(28, 22, 12, 0.08) 0%, rgba(255, 255, 255, 0.18) 45%, rgba(255, 255, 255, 0.55) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, transparent 40%, rgba(255, 255, 255, 0.12) 100%);
}

/* ── Multi-page: Shared content blocks ── */
.body-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.body-text strong { color: var(--text); font-weight: 500; }

.section-header-inline {
  margin-bottom: 48px;
}

.section-cta {
  margin-top: 48px;
  text-align: center;
}

.section-cta-left {
  margin-top: 32px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.split-text .section-lead {
  max-width: none;
}

.split-image-landscape {
  aspect-ratio: 4 / 3;
}

.cta-banner {
  text-align: center;
}

.cta-banner .section-title { margin-bottom: 16px; }

.cta-banner .section-lead {
  margin: 0 auto 32px;
  max-width: 480px;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.split-reverse .split-text { order: 2; }
.split-reverse .split-image { order: 1; }

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Teaser cards (Home) ── */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.teaser-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.4s var(--ease);
  will-change: transform;
}
.teaser-card-img {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
  transition: filter 0.4s var(--ease);
}

.teaser-card:hover { border-color: var(--gold); }
.teaser-card:hover img:not(.teaser-card-img) { transform: scale(1.06); }
.teaser-card:hover .teaser-card-img { filter: brightness(1.06); }

.teaser-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(255,255,255,0.95) 100%);
}

.teaser-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.teaser-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.teaser-overlay p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.teaser-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Vision (About) ── */
.vision-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.vision-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.45;
  font-weight: 400;
}

.vision-quote .body-text em { font-style: italic; color: var(--gold); }

/* About page — calmer typography */
body[data-page="about"] .section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

body[data-page="about"] .section-title.gold {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.02em;
}

body[data-page="about"] .value-card h3,
body[data-page="about"] .team-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

body[data-page="about"] .vision-quote blockquote {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

.vision-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Values (About) ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px var(--shadow);
  transition: border-color 0.3s, transform 0.4s var(--ease);
  will-change: transform;
}

.value-card:hover { border-color: var(--gold); }

.value-icon {
  display: block;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── Team (About) ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
}

.team-card-inner { padding: 40px; }

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.team-avatar-network {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.75rem;
}

.team-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.team-langs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.team-langs li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55em;
  height: 1.55em;
  font-size: 1.05rem;
  line-height: 1;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1px solid var(--gold-light);
  box-shadow: none;
}

.team-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.team-external {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.team-external .section-label {
  margin-bottom: 8px;
}

.team-external-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 28px;
}

.team-grid-external {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.team-card-external {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px var(--shadow);
}

.team-card-external .team-avatar {
  margin-bottom: 16px;
}

.team-card-external h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.team-card-external .team-role {
  margin-bottom: 12px;
}

.team-card-external .team-langs {
  margin-bottom: 0;
}

/* ── Membership flyer page ── */
.membership-page {
  padding: calc(var(--nav-h) + 40px) clamp(16px, 3vw, 32px) 64px;
  background:
    radial-gradient(ellipse at top, rgba(201, 169, 98, 0.12), transparent 55%),
    var(--bg-elevated);
}

.membership-flyer {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px solid var(--gold);
  box-shadow: 0 24px 64px rgba(42, 31, 15, 0.08);
  overflow: hidden;
}

.mf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 40px 24px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.mf-logo img {
  width: 88px;
  height: auto;
}

.mf-header-right {
  text-align: right;
}

.mf-pill {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: 6px 12px;
  margin-bottom: 8px;
}

.mf-validity,
.mf-tagline {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a5c20;
}

.mf-brand {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.mf-hero {
  padding: 40px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.14);
}

.mf-eyebrow,
.mf-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7a5c20;
  margin-bottom: 22px;
}

.mf-hero-flex {
  display: flex;
  align-items: center;
  gap: 28px;
}

.mf-hero-text {
  flex: 1;
  min-width: 0;
}

.mf-questions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
}

.mf-questions p {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.15;
}

.mf-questions span {
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 600;
}

.mf-hero-body {
  font-size: 14px;
  line-height: 1.75;
  color: #8a6a30;
  max-width: 34em;
}

.mf-hero-body strong {
  color: var(--gold-dark);
}

.mf-hero-photo {
  width: 190px;
  height: 210px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.35);
  background: #f7f4ec;
}

.mf-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mf-answer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 40px;
  background: var(--gold);
}

.mf-answer-text {
  flex: 1;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-style: italic;
  color: #0a0a0a;
  line-height: 1.25;
}

.mf-answer-text em {
  font-style: normal;
  font-weight: 600;
}

.mf-answer-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(10, 10, 10, 0.2);
}

.mf-badge {
  text-align: center;
  flex-shrink: 0;
}

.mf-badge-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5a3e0a;
  margin-bottom: 4px;
}

.mf-badge-val {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #0a0a0a;
}

.mf-what {
  padding: 36px 40px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.14);
}

.mf-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}

.mf-benefit {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.mf-benefit-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.mf-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.mf-benefit h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}

.mf-benefit p {
  padding-left: 15px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #7a5c20;
}

.mf-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(201, 169, 98, 0.14);
}

.mf-price {
  padding: 32px 36px;
  border-right: 1px solid rgba(201, 169, 98, 0.14);
}

.mf-figure {
  font-size: clamp(2.75rem, 6vw, 3.25rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.mf-figure span {
  font-size: 1.25rem;
  vertical-align: super;
  margin-right: 4px;
  color: var(--gold-dark);
}

.mf-per {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a5c20;
}

.mf-note {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.55;
  color: #5a4010;
}

.mf-privileges {
  padding: 32px 36px;
  background: #f7f4ec;
}

.mf-privileges ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mf-privileges li {
  position: relative;
  padding-left: 18px;
  font-size: 12.5px;
  line-height: 1.55;
  color: #8a6a30;
}

.mf-privileges li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 2px;
}

.mf-privileges strong {
  color: var(--gold-dark);
  font-weight: 600;
}

.mf-how {
  padding: 36px 40px;
  background: #f7f4ec;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.mf-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.mf-step {
  padding: 0 20px;
  border-right: 1px solid rgba(201, 169, 98, 0.22);
}

.mf-step:first-child { padding-left: 0; }
.mf-step:last-child { border-right: none; padding-right: 0; }

.mf-step-n {
  display: block;
  font-size: 1.85rem;
  color: rgba(201, 169, 98, 0.45);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}

.mf-step h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.mf-step p {
  font-size: 12px;
  line-height: 1.6;
  color: #6a5020;
}

.mf-trust {
  padding: 22px 40px;
  text-align: center;
  background: rgba(201, 169, 98, 0.08);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.mf-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}

.mf-trust-sub {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a5c20;
}

.mf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 40px;
}

.mf-contact p {
  font-size: 12px;
  line-height: 1.7;
  color: #5a4010;
}

.mf-contact a:hover {
  color: var(--gold-dark);
}

/* Membership modal */
body.membership-modal-open {
  overflow: hidden;
}

.membership-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.membership-modal[hidden] {
  display: none;
}

.membership-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 12, 0.45);
  backdrop-filter: blur(4px);
}

.membership-modal-sheet {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(92vh, 860px);
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -12px 48px rgba(42, 31, 15, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: membershipSheetIn 0.35s var(--ease);
}

@keyframes membershipSheetIn {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.membership-modal-handle {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(201, 169, 98, 0.45);
  margin: 10px auto 0;
  flex-shrink: 0;
}

.membership-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: var(--text-muted);
  background: var(--gold-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.membership-modal-close:hover {
  color: var(--text);
  background: rgba(201, 169, 98, 0.22);
}

.membership-modal-scroll {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 22px 28px;
}

.membership-modal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}

.membership-modal-lead {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.membership-modal-pay {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  margin-bottom: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #faf8f4;
}

.membership-bank {
  display: grid;
  gap: 10px;
}

.membership-bank div {
  display: grid;
  gap: 2px;
  font-size: 13px;
}

.membership-bank dt {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.membership-bank dd {
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.02em;
  word-break: break-word;
}

.membership-qr-wrap {
  text-align: center;
}

.membership-qr-wrap img {
  width: 148px;
  height: 148px;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--gold-light);
}

.membership-qr-caption {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.membership-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  cursor: pointer;
}

.membership-check input {
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.membership-form .form-note {
  padding: 14px 16px;
  border: 1px solid var(--gold);
  background: var(--gold-tint);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .membership-modal {
    align-items: center;
    padding: 24px;
  }

  .membership-modal-sheet {
    border-radius: 16px;
    max-height: min(88vh, 820px);
  }

  .membership-modal-handle {
    display: none;
  }

  .membership-modal-scroll {
    padding: 28px 32px 32px;
  }

  .membership-qr-wrap img {
    width: 168px;
    height: 168px;
  }
}

@media (max-width: 520px) {
  .membership-modal-pay {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .membership-bank {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .mf-header,
  .mf-hero-flex,
  .mf-answer,
  .mf-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .mf-header-right { text-align: left; }

  .mf-hero-photo {
    width: 100%;
    height: 220px;
  }

  .mf-answer-divider { display: none; }

  .mf-benefits,
  .mf-price-row,
  .mf-steps {
    grid-template-columns: 1fr;
  }

  .mf-price {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 98, 0.14);
  }

  .mf-step {
    padding: 0 0 18px;
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 98, 0.18);
  }

  .mf-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .mf-hero,
  .mf-what,
  .mf-how,
  .mf-header,
  .mf-answer,
  .mf-trust,
  .mf-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .mf-price,
  .mf-privileges {
    padding: 28px 24px;
  }
}

.service-partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 0 0 32px;
}

.service-partner-label + .service-partners {
  margin-top: 0;
}

.service-partners .service-partner {
  margin: 0;
  height: 100%;
}

.service-partner-cta {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.service-partner-link:hover .service-partner-cta {
  color: var(--gold);
}

.service-partner-link {
  display: block;
  color: inherit;
}

.service-partner:has(.service-partner-link:hover) {
  border-color: var(--gold);
}

.service-partner-link:hover .service-partner-name {
  color: var(--gold);
}

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.service-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 10px;
  border-radius: 100px;
}

.service-body { padding: 24px; }

.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.service-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── Ticino page ── */
.ticino-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ticino-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.4s var(--ease);
  will-change: transform;
}

.ticino-gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.ticino-gallery-item figcaption {
  padding: 14px 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-card);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.why-card:hover { border-color: var(--gold); }

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── Approach page ── */
.approach-cards-page { margin-top: 0; }

.approach-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 40px;
  font-style: italic;
}

.feature-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
}

.feature-list.diamond li::before {
  width: 4px;
  height: 4px;
  top: 9px;
}

/* ── Services page ── */
.service-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 clamp(20px, 4vw, 48px) 0;
  margin-top: -24px;
  margin-bottom: 8px;
}

.service-nav-link {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 600;
  padding: 12px 24px;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(201, 169, 98, 0.25);
  transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.service-nav-link:hover {
  color: var(--text-dark);
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 20px rgba(201, 169, 98, 0.35);
}

.service-pillar {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.service-partner {
  margin: 32px 0;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.service-partner-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-partner .partner-logo {
  max-width: 220px;
  height: 140px;
  margin: 0 auto 12px;
}

.service-partner-name {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.service-partner-name-lg {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 8px;
}

.service-partner-tagline {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.vision-quote-inline {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.55;
  font-weight: 400;
  margin: 0;
}

.vision-quote-inline em {
  font-style: italic;
  color: var(--gold);
}

.why-lugano-list {
  max-width: 640px;
  margin: 0 auto;
}

/* ── Partners (Ticino) ── */
.partners-grid-centered {
  max-width: 300px;
  margin-inline: auto;
  grid-template-columns: 1fr;
}

.partners-grid-property {
  max-width: 680px;
  margin-inline: auto;
}

.partners-grid-single {
  max-width: 300px;
  margin-inline: auto;
  grid-template-columns: 1fr;
}

.partners-grid-property .partner-logo img {
  max-height: 72px;
}

.partners-grid-property .partner-logo-dark img {
  max-width: 72px;
}

.service-partners-single {
  max-width: 280px;
}

.partners-grid-centered .partner-logo {
  height: 100px;
  padding: 12px;
}

.partners-grid-centered .partner-logo img {
  max-height: 72px;
  max-width: 72px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px var(--shadow);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.partner-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  margin-bottom: 24px;
  padding: 16px;
  background: #fff;
  border-radius: calc(var(--radius) - 4px);
}

.partner-logo img {
  max-width: 100%;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-dark {
  background: #111;
}

.partner-logo-wide img {
  max-height: 64px;
}

.partner-initials {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.partner-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.partner-card p {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.partner-link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
}

.partners-feature {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.partners-feature img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.partners-feature figcaption {
  padding: 14px 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--bg-card);
  text-align: center;
}

.helpdesk-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ── Contact page extras ── */
.contact-person-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.contact-person-block strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-steps {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: step;
}

.contact-steps li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  padding-left: 28px;
  position: relative;
}

.contact-steps li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-note {
  padding: 16px 20px;
  margin-bottom: 24px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 15px;
  line-height: 1.6;
}

.contact-person-block span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-gallery { max-width: 100%; }
  .hero-visual { margin-top: 40px; }
  .journey-layout { grid-template-columns: 1fr; }
  .journey-sticky { position: static; }
  .journey-progress { display: none; }
  .approach-cards { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .immersive-thumbs { display: none; }
  .split-block { grid-template-columns: 1fr; }
  .split-reverse .split-text,
  .split-reverse .split-image { order: unset; }
  .vision-layout { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .ticino-gallery { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    margin: 0;
    padding: 40px;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; padding: 16px; }
  .nav-toggle { display: flex; }
  .nav-version { display: none; }

  .stats-row { grid-template-columns: 1fr; text-align: center; }
  .exp-card { width: 280px; }
  .form-field input, .form-field select, .form-field textarea { cursor: auto; }
  .teaser-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .services-grid,
  .why-grid,
  .ticino-gallery { grid-template-columns: 1fr; }
  .page-hero { min-height: 50vh; }
}

/* Swiss villages — map & guidebook (compact rows, same pattern as holiday docs) */
.lifestyle-sv-offer {
  margin: 24px 0 4px;
  width: 100%;
}

.lifestyle-sv-note {
  margin-bottom: 14px;
}

.lifestyle-sv-docs {
  margin-bottom: 0;
}

.lifestyle-sv-docs > li {
  width: 100%;
}

.lifestyle-sv-doc {
  cursor: default;
  width: 100%;
  box-sizing: border-box;
}

.lifestyle-sv-cover {
  flex: 0 0 48px;
  width: 48px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.lifestyle-sv-cover img {
  width: 48px;
  height: 64px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Photo gallery lightbox */
body.gallery-modal-open {
  overflow: hidden;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 12, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(42, 31, 15, 0.28);
  overflow: hidden;
  animation: videoModalIn 0.35s var(--ease);
}

.gallery-modal-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.12) 0%, #fff 100%);
}

.gallery-modal-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
}

.gallery-modal-count {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gallery-modal-close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.gallery-modal-close:hover {
  background: var(--gold-tint);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.gallery-modal-stage {
  position: relative;
  background: #0f0c08;
  min-height: min(62vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-stage img {
  max-width: 100%;
  max-height: min(70vh, 620px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.gallery-nav:hover {
  background: #fff;
  border-color: var(--gold);
}

.gallery-nav-prev { left: 12px; }
.gallery-nav-next { right: 12px; }

@media (max-width: 640px) {
  .gallery-modal {
    align-items: flex-end;
    padding: 0;
  }

  .gallery-modal-dialog {
    width: 100%;
    border-radius: 18px 18px 0 0;
    max-height: 92vh;
  }

  .gallery-modal-stage {
    min-height: 48vh;
  }

  .gallery-modal-stage img {
    max-height: 56vh;
  }
}

/* Lifestyle hero — Services-style category pills */
body[data-page="lifestyle"] .service-nav-lifestyle {
  margin-top: -28px;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

body[data-page="lifestyle"] .service-nav-lifestyle .service-nav-link {
  padding: 10px 18px;
  font-size: 11px;
}

body[data-page="lifestyle"] #hidden-gems {
  padding-top: clamp(56px, 8vw, 96px);
}

.lifestyle-yacht-destinations {
  margin: 28px 0 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.lifestyle-yacht-destinations .section-label {
  margin-bottom: 14px;
}

/* Lifestyle PDF / video document rows */
.lifestyle-docs {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lifestyle-doc {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s, transform 0.3s var(--ease);
  cursor: pointer;
  color: inherit;
  font: inherit;
}

a.lifestyle-doc:hover,
button.lifestyle-doc:hover {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.1) 0%, var(--bg-card) 100%);
  transform: translateY(-1px);
}

.lifestyle-doc-icon {
  flex-shrink: 0;
  width: 36px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lifestyle-doc-icon svg {
  width: 100%;
  height: 100%;
}

.lifestyle-doc-icon-play {
  width: 40px;
  height: 40px;
}

.lifestyle-doc-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lifestyle-doc-text strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.lifestyle-doc-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.lifestyle-doc-action {
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dark);
}

/* Video lightbox */
body.video-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 12, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(42, 31, 15, 0.28);
  overflow: hidden;
  animation: videoModalIn 0.35s var(--ease);
}

@keyframes videoModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.12) 0%, #fff 100%);
}

.video-modal-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: var(--text);
}

.video-modal-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  cursor: pointer;
}

.video-modal-close:hover {
  background: var(--gold-tint);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.video-modal-player {
  background: #0f0c08;
  aspect-ratio: 16 / 9;
}

.video-modal-player video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: min(70vh, 520px);
  object-fit: contain;
  background: #0f0c08;
}

@media (max-width: 640px) {
  .video-modal {
    align-items: flex-end;
    padding: 0;
  }

  .video-modal-dialog {
    width: 100%;
    border-radius: 18px 18px 0 0;
    max-height: 92vh;
    animation: videoSheetIn 0.35s var(--ease);
  }

  @keyframes videoSheetIn {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  .video-modal-player {
    aspect-ratio: auto;
  }

  .video-modal-player video {
    max-height: min(56vh, 420px);
  }
}
