/* ============================================================
   JANE UGC GARDA — "Riviera Quiet" design system
   Palette: warm ivory · ink black · champagne gold
   ============================================================ */

:root {
  --ivory: #F6F2EA;
  --cream: #FDFBF7;
  --ink: #171310;
  --ink-soft: #2B2620;
  --gold: #B4915C;
  --gold-light: #D8BC8E;
  --gold-pale: #EFE4D0;
  --muted: rgba(23, 19, 16, 0.62);
  --muted-2: rgba(23, 19, 16, 0.4);
  --line: rgba(23, 19, 16, 0.12);
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(23, 19, 16, 0.12);
  --radius: 18px;
  --font-display: 'Italiana', serif;
  --font-label: 'Jura', sans-serif;
  --font-body: 'Lora', serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; }

.label {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.wrap { width: min(1180px, 92vw); margin: 0 auto; }

section { position: relative; }

/* ---------- Scroll progress bar ---------- */
#progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1001; transition: width 0.1s linear;
}

/* ---------- Grain overlay ---------- */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: 0.35; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.02 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Header / Nav ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 22px 0;
}
header.scrolled {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo {
  font-family: var(--font-display); font-size: 26px; letter-spacing: 0.14em;
  display: flex; align-items: center; gap: 10px;
}
.logo .ring {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--gold); display: grid; place-items: center; flex: none;
}
.logo .ring::after {
  content: ""; width: 0; height: 0;
  border-left: 8px solid var(--gold); border-top: 5px solid transparent; border-bottom: 5px solid transparent;
  margin-left: 2px;
}
header.on-dark:not(.scrolled) { color: var(--cream); }
header.on-dark:not(.scrolled) .logo .ring { border-color: var(--gold-light); }
header.on-dark:not(.scrolled) .logo .ring::after { border-left-color: var(--gold-light); }

nav.main-nav { display: flex; align-items: center; gap: 30px; }
nav.main-nav a {
  font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase;
  position: relative; padding: 4px 0; opacity: 0.85; transition: opacity 0.3s;
}
nav.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
nav.main-nav a:hover { opacity: 1; }
nav.main-nav a:hover::after, nav.main-nav a.active::after { width: 100%; }
nav.main-nav a.active { opacity: 1; color: var(--gold); }

/* Language switch */
.lang-switch {
  display: flex; gap: 2px; border: 1px solid var(--line); border-radius: 999px; padding: 3px;
  font-family: var(--font-label); font-size: 11px; letter-spacing: 0.12em;
}
header.on-dark:not(.scrolled) .lang-switch { border-color: rgba(255,255,255,0.35); }
.lang-switch button {
  border: 0; background: transparent; color: inherit; cursor: pointer;
  font: inherit; padding: 5px 11px; border-radius: 999px; transition: all 0.3s;
  opacity: 0.7;
}
.lang-switch button.active { background: var(--gold); color: var(--cream); opacity: 1; }

/* Burger */
.burger { display: none; background: none; border: 0; cursor: pointer; z-index: 1002; width: 30px; height: 22px; position: relative; }
.burger span {
  position: absolute; left: 0; width: 100%; height: 2px; background: currentColor;
  transition: all 0.35s var(--ease);
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }
.burger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 17px 34px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.btn-gold { background: var(--gold); color: var(--cream); }
.btn-gold:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(23,19,16,0.25); }
.btn-ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--gold); transform: translateY(-2px); }

/* ---------- Hero (animated Lake Garda slideshow) ---------- */
.hero {
  min-height: 100svh; display: flex; align-items: flex-end;
  position: relative; color: var(--cream); overflow: hidden; background: var(--ink);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; animation: kbSlide 21s linear infinite; will-change: transform, opacity;
}
.hero-bg img:nth-child(1) { animation-delay: 0s; }
.hero-bg img:nth-child(2) { animation-delay: 7s; }
.hero-bg img:nth-child(3) { animation-delay: 14s; }
@keyframes kbSlide {
  0%      { opacity: 0; transform: scale(1.02); }
  6%      { opacity: 1; }
  33.33%  { opacity: 1; }
  41%     { opacity: 0; transform: scale(1.16) translate(-1.2%, 1%); }
  100%    { opacity: 0; transform: scale(1.02); }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(10,12,14,0.82) 0%, rgba(10,12,14,0.28) 45%, rgba(10,12,14,0.22) 100%);
}

/* Portrait card with play button */
.hero-portrait {
  position: relative; flex: 0 0 300px; margin: 0; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(216,188,142,0.55); box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  animation: floatY 7s ease-in-out infinite; cursor: pointer;
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-portrait img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; display: block; }
.hero-play-btn {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(to top, rgba(10,8,6,0.55), rgba(10,8,6,0.08) 55%);
  border: 0; cursor: pointer; color: var(--cream); width: 100%;
  transition: background 0.4s var(--ease);
}
.hero-play-btn:hover { background: linear-gradient(to top, rgba(10,8,6,0.65), rgba(10,8,6,0.2) 60%); }
.hero-play-btn .play-ring {
  width: 88px; height: 88px; border-radius: 50%; border: 1.5px solid var(--gold-light);
  display: grid; place-items: center; position: relative;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
  background: rgba(23,19,16,0.3); backdrop-filter: blur(6px);
}
.hero-play-btn .play-ring::before {
  content: ""; position: absolute; inset: 8px; border-radius: 50%; border: 1px solid rgba(216,188,142,0.6);
}
.hero-play-btn .play-ring::after {
  content: ""; width: 0; height: 0; margin-left: 5px;
  border-left: 19px solid var(--cream); border-top: 12px solid transparent; border-bottom: 12px solid transparent;
}
.hero-play-btn:hover .play-ring { transform: scale(1.1); background: rgba(180,145,92,0.4); }
.hero-play-label {
  font-family: var(--font-label); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* Video lightbox */
.video-lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; padding: 4vh 4vw;
  background: rgba(10,8,6,0.92); backdrop-filter: blur(10px);
}
.video-lightbox.open { display: flex; }
.video-lightbox video {
  max-height: 88vh; max-width: 92vw; border-radius: 14px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.6); border: 1px solid rgba(216,188,142,0.35);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(216,188,142,0.6);
  background: rgba(23,19,16,0.5); color: var(--cream); font-size: 18px; cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.lightbox-close:hover { background: var(--gold); transform: rotate(90deg); }

.hero .wrap {
  position: relative; z-index: 2; padding: 120px 0 9vh;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 48px;
}
.hero-copy { flex: 1; min-width: 0; }
.hero h1 { font-size: clamp(44px, 7.2vw, 96px); color: var(--cream); max-width: 16ch; }
.hero .kicker { margin-bottom: 18px; color: var(--gold-light); }
.hero .sub {
  font-size: clamp(17px, 1.6vw, 21px); max-width: 52ch; margin: 22px 0 34px;
  color: rgba(253, 251, 247, 0.85); font-style: italic;
}
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* letter stagger */
.split-lines .word { display: inline-block; overflow: hidden; vertical-align: top; }
.split-lines .word > span {
  display: inline-block; transform: translateY(110%);
  animation: riseUp 1s var(--ease) forwards;
}
@keyframes riseUp { to { transform: translateY(0); } }

.scroll-hint {
  position: absolute; bottom: 30px; right: 5vw; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(253,251,247,0.7); font-family: var(--font-label); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; writing-mode: vertical-rl;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 54px; background: linear-gradient(var(--gold-light), transparent);
  animation: drip 2s var(--ease) infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 170px 0 70px; position: relative; overflow: hidden;
}
.page-hero h1 { font-size: clamp(40px, 5.6vw, 76px); max-width: 20ch; margin-top: 14px; }
.page-hero .sub { color: var(--muted); font-style: italic; max-width: 58ch; margin-top: 20px; font-size: 19px; }
.page-hero .halo {
  position: absolute; top: -220px; right: -180px; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(180,145,92,0.22), transparent 65%);
  pointer-events: none;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-scale.visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.12s; }
[data-delay="2"] { transition-delay: 0.24s; }
[data-delay="3"] { transition-delay: 0.36s; }

/* ---------- Marquee ribbon ---------- */
.marquee {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px 0; background: var(--cream); white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 56px; animation: slide 30s linear infinite; will-change: transform; }
.marquee span {
  font-family: var(--font-display); font-size: 22px; letter-spacing: 0.06em; color: var(--ink);
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee i { font-style: normal; color: var(--gold); font-size: 14px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.sec-head { max-width: 720px; margin-bottom: 60px; }
.sec-head h2 { font-size: clamp(34px, 4.4vw, 58px); margin-top: 14px; }
.sec-head p { color: var(--muted); margin-top: 18px; font-style: italic; font-size: 18px; }

/* About split */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.about-grid .photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.about-grid .photo img { transition: transform 1.2s var(--ease); }
.about-grid .photo:hover img { transform: scale(1.045); }
.about-grid .photo::after {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(253,251,247,0.5); border-radius: 12px; pointer-events: none;
}
.about-copy h2 { font-size: clamp(32px, 4vw, 52px); margin: 14px 0 22px; }
.about-copy p { color: var(--muted); margin-bottom: 16px; }
.about-copy strong { color: var(--ink); font-weight: 600; }
.loc-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.loc-tags span {
  font-family: var(--font-label); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold); border-radius: 999px; padding: 8px 16px;
}

/* Why-me cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px 34px; position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.card .num {
  font-family: var(--font-display); font-size: 15px; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 22px;
}
.card h3 { font-size: 27px; margin-bottom: 14px; }
.card p { color: var(--muted); font-size: 16px; }
.card::before {
  content: ""; position: absolute; top: -60px; right: -60px; width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(180,145,92,0.16), transparent 70%);
  transition: transform 0.6s var(--ease);
}
.card:hover::before { transform: scale(1.7); }

/* Stats */
.stats { background: var(--ink); color: var(--cream); padding: 90px 0; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats .n { font-family: var(--font-display); font-size: clamp(42px, 5vw, 68px); color: var(--gold-light); }
.stats .l { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.65; margin-top: 8px; }

/* Brands */
.brands { text-align: center; }
.brands .row {
  display: flex; justify-content: center; align-items: baseline; gap: clamp(30px, 7vw, 90px);
  flex-wrap: wrap; margin-top: 44px;
}
.brands .brand {
  font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 44px); letter-spacing: 0.12em;
  opacity: 0.5; transition: all 0.45s var(--ease); cursor: default;
}
.brands .brand:hover { opacity: 1; color: var(--gold); transform: translateY(-4px); }

/* ---------- Video cards (skincare / tech) ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.video-grid.single { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
.video-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
.vcard { position: relative; }
.vcard .frame {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 9 / 16;
  background: var(--ink); box-shadow: var(--shadow); cursor: pointer;
}
.vcard video { width: 100%; height: 100%; object-fit: cover; }
.vcard .play-ov {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(to top, rgba(15,12,9,0.55), rgba(15,12,9,0.08) 55%);
  transition: opacity 0.4s var(--ease); z-index: 2;
}
.vcard .play-ring {
  width: 82px; height: 82px; border-radius: 50%; border: 1.5px solid var(--gold-light);
  display: grid; place-items: center; position: relative;
  transition: transform 0.4s var(--ease);
}
.vcard .play-ring::before {
  content: ""; position: absolute; inset: 7px; border-radius: 50%; border: 1px solid rgba(216,188,142,0.6);
}
.vcard .play-ring::after {
  content: ""; width: 0; height: 0; margin-left: 4px;
  border-left: 18px solid var(--cream); border-top: 11px solid transparent; border-bottom: 11px solid transparent;
}
.vcard .frame:hover .play-ring { transform: scale(1.12); }
.vcard.playing .play-ov { opacity: 0; pointer-events: none; }
.vcard .meta { padding: 22px 6px 0; }
.vcard .flag { font-size: 22px; margin-right: 8px; }
.vcard .t { font-family: var(--font-display); font-size: 24px; display: flex; align-items: center; }
.vcard .d { color: var(--muted); font-size: 15px; margin-top: 6px; }
.vcard .tag {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  font-family: var(--font-label); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  background: rgba(253,251,247,0.9); color: var(--ink); padding: 7px 14px; border-radius: 999px;
}

.note-block {
  margin-top: 70px; text-align: center; max-width: 640px; margin-left: auto; margin-right: auto;
}
.note-block p { font-style: italic; font-size: 20px; color: var(--muted); }
.note-block .label { display: block; margin-bottom: 14px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 48px 36px; display: flex; flex-direction: column; position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.price-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.price-card.featured {
  background: var(--ink); color: var(--cream); border-color: var(--gold);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-10px); }
.price-card .badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--cream); font-family: var(--font-label);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 30px; margin-bottom: 8px; }
.price-card .for { font-size: 14px; font-style: italic; opacity: 0.65; margin-bottom: 26px; }
.price-card .price { font-family: var(--font-display); font-size: 44px; color: var(--gold); }
.price-card.featured .price { color: var(--gold-light); }
.price-card .per { font-size: 13px; opacity: 0.6; margin-bottom: 28px; font-family: var(--font-label); letter-spacing: 0.1em; }
.price-card ul { list-style: none; margin-bottom: 34px; flex: 1; }
.price-card li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; display: flex; gap: 12px; }
.price-card.featured li { border-color: rgba(253,251,247,0.14); }
.price-card li::before { content: "—"; color: var(--gold); flex: none; }
.addons {
  margin-top: 60px; padding: 34px 40px; border: 1px dashed var(--gold); border-radius: var(--radius);
  background: rgba(180,145,92,0.05);
}
.addons p { font-size: 14.5px; color: var(--muted); }
.addons .label { display: block; margin-bottom: 10px; }

/* ---------- Contact ---------- */
.contact-links { display: grid; gap: 20px; margin: 50px 0; max-width: 640px; }
.contact-link {
  display: flex; align-items: center; gap: 22px; padding: 28px 32px;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  transition: all 0.45s var(--ease); font-size: 19px;
}
.contact-link:hover { border-color: var(--gold); transform: translateX(10px); box-shadow: var(--shadow); }
.contact-link .ico {
  width: 54px; height: 54px; border-radius: 50%; background: rgba(180,145,92,0.12);
  display: grid; place-items: center; font-size: 24px; flex: none;
  transition: all 0.4s;
}
.contact-link:hover .ico { background: var(--gold); }
.contact-link .kind { font-family: var(--font-label); font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); display: block; }
.contact-link .val { font-family: var(--font-display); font-size: clamp(17px, 2.4vw, 24px); word-break: break-all; }
.contact-link .arrow { margin-left: auto; color: var(--gold); font-size: 22px; transition: transform 0.4s var(--ease); }
.contact-link:hover .arrow { transform: translateX(6px); }

.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: start; }
.cform { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; }
.cform h3 { font-size: 28px; margin-bottom: 26px; }
.cform label { display: block; font-family: var(--font-label); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin: 20px 0 8px; }
.cform input, .cform textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--ivory);
  padding: 15px 18px; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  transition: border-color 0.3s; resize: vertical;
}
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--gold); }
.cform button { margin-top: 28px; width: 100%; justify-content: center; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink); color: var(--cream); text-align: center;
  padding: 130px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; top: -260px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 560px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(180,145,92,0.28), transparent 65%);
}
.cta-band h2 { font-size: clamp(36px, 5.4vw, 70px); position: relative; }
.cta-band p { font-style: italic; opacity: 0.75; margin: 22px auto 40px; max-width: 46ch; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Gallery strip (parallax) ---------- */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.gallery-strip.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-strip .g { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); will-change: transform; }
.gallery-strip .g img, .gallery-strip .g video {
  aspect-ratio: 3 / 4; object-fit: cover; width: 100%; display: block; transition: transform 1s var(--ease);
}
.gallery-strip .g:hover img { transform: scale(1.06); }
.gallery-strip .g:nth-child(even) { margin-top: 46px; }
/* Ken Burns animated tiles — slow living zoom, no interaction needed */
.gallery-strip .g.kb img { animation: kbTile 16s ease-in-out infinite alternate; }
.gallery-strip .g.kb:nth-child(even) img { animation-duration: 20s; animation-direction: alternate-reverse; }
@keyframes kbTile {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.14) translate(-2%, 2%); }
}

/* ---------- Moments: photos that slowly appear & disappear ---------- */
.moments-stage {
  position: relative; max-width: 600px; margin: 0 auto; aspect-ratio: 3 / 4;
  border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px rgba(23,19,16,0.22);
  border: 1px solid rgba(180,145,92,0.4); background: var(--ink);
}
.moments-stage img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; animation: momentFade 30s ease-in-out infinite; will-change: opacity, transform;
}
.moments-stage img:nth-child(1) { animation-delay: 0s; }
.moments-stage img:nth-child(2) { animation-delay: 6s; }
.moments-stage img:nth-child(3) { animation-delay: 12s; }
.moments-stage img:nth-child(4) { animation-delay: 18s; }
.moments-stage img:nth-child(5) { animation-delay: 24s; }
@keyframes momentFade {
  0%   { opacity: 0; transform: scale(1.05); }
  4%   { opacity: 1; }
  20%  { opacity: 1; }
  25%  { opacity: 0; transform: scale(1.14); }
  100% { opacity: 0; transform: scale(1.05); }
}
.moments-caption {
  text-align: center; margin-top: 26px; font-style: italic; color: var(--muted);
  font-size: 17px;
}

/* ---------- Footer ---------- */
footer { background: var(--ink); color: rgba(253,251,247,0.7); padding: 60px 0 40px; }
footer .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
footer .logo { color: var(--cream); font-size: 21px; }
footer .social { display: flex; gap: 14px; }
footer .social a {
  width: 44px; height: 44px; border: 1px solid rgba(253,251,247,0.25); border-radius: 50%;
  display: grid; place-items: center; font-size: 17px; transition: all 0.35s var(--ease);
}
footer .social a:hover { border-color: var(--gold); background: var(--gold); transform: translateY(-3px); }
footer .fine { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.18em; width: 100%; text-align: center; margin-top: 34px; opacity: 0.5; }
footer a.mail:hover { color: var(--gold-light); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards-3, .video-grid, .video-grid.cols-2, .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-10px); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .gallery-strip, .gallery-strip.cols-3 { grid-template-columns: repeat(2, 1fr); }

  .hero .wrap { flex-direction: column-reverse; align-items: flex-start; gap: 30px; padding-top: 110px; }
  .hero-portrait { flex: none; width: 220px; }

  nav.main-nav {
    position: fixed; inset: 0; background: var(--ivory); color: var(--ink);
    flex-direction: column; justify-content: center; gap: 34px;
    transform: translateY(-100%); transition: transform 0.55s var(--ease);
    z-index: 1001;
  }
  nav.main-nav.open { transform: none; }
  nav.main-nav a { font-size: 16px; }
  .burger { display: block; }
  header .lang-switch { margin-left: auto; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 76px 0; }
  .hero .cta-row .btn { width: 100%; justify-content: center; }
  .hero-portrait { width: 180px; }
  .hero-play-btn .play-ring { width: 64px; height: 64px; }
  .gallery-strip, .gallery-strip.cols-3 { grid-template-columns: 1fr; }
  .gallery-strip .g:nth-child(even) { margin-top: 0; }
  .cform { padding: 30px 22px; }
  .contact-link { padding: 20px; gap: 14px; }
  .scroll-hint { display: none; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation: none; }
  .hero-bg img { animation: none; opacity: 1; }
  .hero-bg img:nth-child(2), .hero-bg img:nth-child(3) { display: none; }
  .hero-portrait { animation: none; }
  .gallery-strip .g.kb img { animation: none; }
  .moments-stage img { animation: none; }
  .moments-stage img:nth-child(1) { opacity: 1; }
  html { scroll-behavior: auto; }
}
