/* ============ TOKENS ============ */
:root {
  --bg: #FAFAF7;
  --bg2: #F4F1EB;
  --white: #FFFFFF;
  --ink: #16160F;
  --ink2: #2a2a20;
  --mid: #6B6B60;
  --light: #E0DDD5;
  --moss: #2B4434;
  --moss2: #3C5E49;
  --moss-light: #EAF0EC;
  --amber: #B5832F;
  --amber-light: #FBF4E8;
  --red: #C0392B;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --hero-desktop: url("./head-desktop.jpg");
  --hero-mobile: url("./head-mobile.jpg");
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--sans); background:var(--bg); color:var(--ink); -webkit-font-smoothing:antialiased; overflow-x:hidden; }
body.preloading { overflow:hidden; }

/* ============ PRELOADER ============ */
.preloader {
  position:fixed; inset:0; z-index:1200;
  background:#ffffff;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  transition:opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.is-loaded .preloader { opacity:0; visibility:hidden; }
.preloader-inner {
  position:relative; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:18px;
}
.preloader-words {
  display:flex; gap:10px; flex-wrap:wrap; justify-content:center;
  font-family:var(--serif); font-size:clamp(1.5rem,3.6vw,2.6rem);
  font-style:italic; color:var(--ink); letter-spacing:-0.01em;
}
.preloader-words span {
  opacity:1;
  animation:preFade 2.8s var(--ease) forwards;
  animation-delay:var(--d);
}
.preloader-progress {
  font-family:var(--sans); font-size:12px; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--mid);
}
.preloader-clover-side {
  position:absolute; right:-40px; top:50%;
  transform:translateY(-50%);
  width:180px; height:180px; opacity:0.4;
  filter:blur(0.2px);
  background-color:#2b4434;
  -webkit-mask-image:url("dobilas.svg");
  -webkit-mask-repeat:no-repeat;
  -webkit-mask-position:center;
  -webkit-mask-size:contain;
  mask-image:url("dobilas.svg");
  mask-repeat:no-repeat;
  mask-position:center;
  mask-size:contain;
  background-image:url("dobilas.svg");
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
}
@keyframes preFade {
  0% { opacity:1; }
  70% { opacity:1; }
  100% { opacity:0; }
}

/* ============ MENU OVERLAY ============ */
.menu-overlay {
  position:fixed; inset:0; z-index:500;
  background:var(--white);
  clip-path:circle(0% at calc(100% - 44px) 44px);
  transition:clip-path 0.7s cubic-bezier(0.77,0,0.18,1);
  display:flex; align-items:center;
  padding:80px 64px 60px;
  pointer-events:none;
  flex-direction:column;
  justify-content:center;
}
.menu-overlay.open {
  clip-path:circle(150% at calc(100% - 44px) 44px);
  pointer-events:all;
}
.menu-nav {
  display:flex; flex-direction:column; gap:8px; width:100%;
  align-items:center; text-align:center;
  margin-top: 100px;
}
.menu-nav a {
  font-family:var(--serif);
  font-size:clamp(2.8rem,6vw,5.6rem);
  font-weight:400; color:var(--ink); text-decoration:none;
  display:block;
  opacity:0; transform:translateY(36px) scale(0.98); filter:blur(6px);
  transition:opacity 0.5s, transform 0.6s var(--ease-spring), color 0.2s, letter-spacing 0.6s, filter 0.6s;
  line-height:1.05; padding:6px 0;
  border-bottom:1px solid transparent;
  text-transform:uppercase; letter-spacing:0.12em;
  font-size: 40px !important;
}
.menu-overlay.open .menu-nav a { opacity:1; transform:translateY(0) scale(1); filter:blur(0); letter-spacing:0px; }
.menu-overlay.open .menu-nav a:nth-child(1) { transition-delay:0.12s; }
.menu-overlay.open .menu-nav a:nth-child(2) { transition-delay:0.19s; }
.menu-overlay.open .menu-nav a:nth-child(3) { transition-delay:0.26s; }
.menu-overlay.open .menu-nav a:nth-child(4) { transition-delay:0.33s; }
.menu-overlay.open .menu-nav a:nth-child(5) { transition-delay:0.40s; }
.menu-nav a:hover { color:var(--moss); text-shadow:0 8px 24px rgba(43,68,52,0.18); }
.menu-num {
  font-family:var(--sans); font-size:11px; color:var(--mid);
  margin:0 auto 8px; font-weight:500;
  letter-spacing:0.28em; text-transform:uppercase; display:block;
}
.menu-footer {
  margin-top:auto; padding-top:48px;
  display:flex; justify-content:space-between; align-items:flex-end;
  width:100%;
  opacity:0; transition:opacity 0.4s 0.5s;
}
.menu-overlay.open .menu-footer { opacity:1; }
.menu-footer-left { font-size:12px; color:var(--mid); line-height:1.7; }
.menu-footer-right { display:flex; flex-direction:column; gap:6px; align-items:flex-end; }
.menu-footer-right a { font-size:14px; color:var(--ink); text-decoration:none; font-weight:400; }

/* ============ PRELOADER ============ */
body.preloading { overflow:hidden; }
.preloader {
  position:fixed; inset:0; z-index:1200;
  background:var(--bg);
  display:flex; align-items:center; justify-content:center;
  transition:opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.is-loaded .preloader { opacity:0; visibility:hidden; }
.preloader-inner {
  position:relative; text-align:center; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:14px;
}
.preloader-words {
  display:flex; gap:10px; flex-wrap:wrap; justify-content:center;
  font-family:var(--serif); font-size:clamp(1.4rem,3.4vw,2.4rem);
  font-style:italic; color:var(--ink); letter-spacing:-0.01em;
}
.preloader-words span {
  opacity:0; transform:translateY(16px);
  animation:preWord 0.7s var(--ease) forwards;
  animation-delay:var(--d);
}
.preloader-clover {
  width:46px; height:46px;
  opacity:0.22;
  animation:preClover 1.2s var(--ease) 0.1s forwards;
}
.preloader-clover img { width:100%; height:100%; display:block; }
.preloader-wipe {
  position:absolute; inset:0; z-index:1;
  background:var(--moss);
  transform:scaleX(0);
  transform-origin:left;
  animation:preWipe 1.1s var(--ease) 0.5s forwards;
}
@keyframes preWord {
  to { opacity:1; transform:translateY(0); }
}
@keyframes preClover {
  0% { opacity:0; transform:translateY(10px) scale(0.9); }
  60% { opacity:0.35; transform:translateY(0) scale(1); }
  100% { opacity:0.18; transform:translateY(0) scale(1); }
}
@keyframes preWipe {
  0% { transform:scaleX(0); }
  45% { transform:scaleX(1); transform-origin:left; }
  100% { transform:scaleX(0); transform-origin:right; }
}

/* ============ HEADER ============ */
header {
  position:fixed; top:0; left:0; right:0; z-index:600;
  height:68px; padding:0 40px;
  display:flex; align-items:center; justify-content:space-between;
  background:rgba(250,250,247,0.92);
  backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px);
  border-bottom:1px solid rgba(22,22,15,0.07);
  transition:background 0.3s, border-color 0.3s;
}
.logo {
  font-family:var(--serif); font-size:17px; font-style:italic;
  color:var(--ink); text-decoration:none; letter-spacing:-0.01em;
  position:relative; padding-left:34px;
}
.logo-mark {
  position:absolute; left:0; top:50%;
  transform:translateY(-50%);
  width:28px; height:28px; opacity:0.45;
  pointer-events:none;
  background-color:#2b4434;
  -webkit-mask-image:url("dobilas.svg");
  -webkit-mask-repeat:no-repeat;
  -webkit-mask-position:center;
  -webkit-mask-size:contain;
  mask-image:url("dobilas.svg");
  mask-repeat:no-repeat;
  mask-position:center;
  mask-size:contain;
  background-image:url("dobilas.svg");
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
}
.logo span { color:var(--moss); }
.header-nav {
  display:flex; align-items:center; gap:2px;
}
.header-nav a {
  font-size:13px; font-weight:400; color:var(--mid);
  text-decoration:none; padding:7px 13px; border-radius:100px;
  transition:all 0.2s;
}
.header-nav a:hover { color:var(--ink); background:rgba(22,22,15,0.05); }
.header-cta {
  background:var(--moss) !important; color:white !important;
  font-weight:500 !important; padding:9px 20px !important;
  border-radius:100px; margin-left:6px;
  transition:background 0.2s !important;
}
.header-cta:hover { background:var(--moss2) !important; }
.hamburger {
  width:42px; height:42px; border:none; background:none;
  cursor:pointer; display:flex; flex-direction:column;
  justify-content:center; align-items:center; gap:5px;
  z-index:700; position:relative;
  border-radius:50%; transition:background 0.2s;
}
.hamburger:hover { background:rgba(22,22,15,0.06); }
.hamburger span {
  display:block; width:18px; height:1.5px; background:var(--ink);
  transition:all 0.38s cubic-bezier(0.77,0,0.18,1); transform-origin:center;
}
.hamburger.active span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.active span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  padding-top:68px; height:100svh; min-height:580px;
  position:relative; overflow:hidden;
  display:flex; flex-direction:column; justify-content:flex-end;
}
.hero-bg {
  position:absolute; inset:0;
  background-image:var(--hero-desktop);
  background-position:center calc(50% + var(--parallax-bg, 0px));
  background-size:cover;
  background-repeat:no-repeat;
  transform:scale(1.05);
  animation:heroKenBurns 20s ease-out forwards;
  will-change:transform;
}
@keyframes heroKenBurns {
  from { transform:scale(1.05) translateX(0); }
  to { transform:scale(1) translateX(-1%); }
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(
    to bottom,
    transparent 15%,
    rgba(10,18,12,0.1) 45%,
    rgba(10,18,12,0.72) 100%
  );
}

/* parallax layers */
.parallax-layer {
  --parallax-y: 0px;
  transform:translateY(var(--parallax-y));
  will-change:transform;
}
.parallax-bg { --parallax-bg: 0px; }
.hero-content {
  position:relative; z-index:2;
  padding:52px 56px;
  display:grid; grid-template-columns:1fr auto;
  align-items:flex-end; gap:24px;
}
.urgency-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(192,57,43,0.88); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.15);
  color:white; font-size:11px; font-weight:600;
  letter-spacing:0.09em; text-transform:uppercase;
  padding:5px 14px 5px 10px; border-radius:100px; margin-bottom:22px;
  width:fit-content;
}
.urgency-dot {
  width:6px; height:6px; background:#ff8a80; border-radius:50%;
  animation:blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.8);} }
.hero-title {
  font-family:var(--serif);
  font-size:clamp(3rem,6vw,5.2rem);
  font-weight:400; color:white; line-height:0.95;
  letter-spacing:-0.025em; margin-bottom:18px;
}
.hero-title em { font-style:italic; color:rgba(255,255,255,0.62); }
.hero-sub {
  font-size:15px; font-weight:300; color:rgba(255,255,255,0.6);
  line-height:1.7; max-width:380px;
}
.hero-actions {
  display:flex; flex-direction:column; gap:12px; align-items:flex-end; flex-shrink:0;
}
.btn-primary {
  background:white; color:var(--ink);
  font-size:13px; font-weight:500;
  padding:13px 22px; border-radius:100px;
  text-decoration:none; display:inline-flex; align-items:center; gap:8px;
  transition:all 0.22s var(--ease); white-space:nowrap; border:none; cursor:pointer;
}
.btn-primary:hover { background:#f1ede7; transform:translateY(-1px); }
.btn-primary svg { width:14px; height:14px; }
.hero-scroll-hint {
  color:rgba(255,255,255,0.3); font-size:10px; letter-spacing:0.14em;
  text-transform:uppercase; display:flex; align-items:center; gap:8px;
  margin-top:4px;
}
.hero-scroll-line {
  width:28px; height:1px; background:rgba(255,255,255,0.25);
  position:relative; overflow:hidden;
}
.hero-scroll-line::after {
  content:''; position:absolute; inset:0;
  background:rgba(255,255,255,0.6);
  transform:translateX(-100%);
  animation:scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse { 0%{transform:translateX(-100%);} 100%{transform:translateX(100%);} }

/* ============ STATS ============ */
.stats-bar { background:var(--moss); }
.stats-inner {
  display:grid; grid-template-columns:repeat(4,1fr);
  border-left:1px solid rgba(255,255,255,0.07);
}
.stat-item {
  padding:26px 0 26px 40px;
  border-right:1px solid rgba(255,255,255,0.07);
}
.stat-num {
  font-family:var(--serif);
  font-size:1.5rem; color:white; line-height:1; margin-bottom:4px;
}
.stat-label { font-size:11px; font-weight:300; color:rgba(255,255,255,0.4); letter-spacing:0.03em; }

/* ============ HELPERS ============ */
.tag {
  font-size:10px; font-weight:600; letter-spacing:0.16em;
  text-transform:uppercase; color:var(--amber);
  display:inline-block; margin-bottom:-15px;
}
.tag-moss { color:var(--moss); }
.h2 {
  font-family:var(--serif);
  font-size:clamp(2rem,3.8vw,3rem);
  font-weight:400; line-height:1.05; letter-spacing:-0.02em; color:var(--ink);
}
.h2.clover {
  position:relative;
  padding-left:0px;
  display:block;
  margin-top:10px;
}
.h2.clover::before {
  content:""; position:absolute; left:0; top:0.2em;
  width:500px; height:500px; opacity:0.07;
  left:-89px;
  background-color:#2b4434;
  -webkit-mask-image:url("dobilas.svg");
  -webkit-mask-repeat:no-repeat;
  -webkit-mask-position:center;
  -webkit-mask-size:contain;
  mask-image:url("dobilas.svg");
  mask-repeat:no-repeat;
  mask-position:center;
  mask-size:contain;
  background-image:url("dobilas.svg");
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
}
.h2.clover.no-clover::before { content:none; }
.h2 em { font-style:italic; }
.h2.white { color:white; }
.body-text {
  font-size:15px; font-weight:300; line-height:1.78; color:var(--mid);
}
.section { padding:96px 56px; }
.section-sm { padding:72px 56px; }
.mw { max-width:1160px; margin:0 auto; }

/* ============ CHIPS ============ */
.chips { display:flex; flex-wrap:wrap; gap:8px; }
.chip {
  background:var(--bg2); border:1px solid var(--light);
  border-radius:100px; padding:7px 16px;
  font-size:12px; font-weight:400; color:var(--ink2);
  display:inline-flex; align-items:center; gap:7px;
}
.chip::before {
  content:''; width:4px; height:4px;
  background:var(--moss); border-radius:50%; flex-shrink:0;
}

/* ============ INTRO ============ */
.intro-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:72px; align-items:center;
}
.intro-photo-wrap {
  position:relative; border-radius:24px; overflow:hidden; height:540px;
}
.intro-photo-inner { position:absolute; inset:0; }
.intro-photo-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.9s var(--ease);
}
.intro-photo-wrap:hover img { transform:scale(1.03); }
.intro-badge {
  position:absolute; bottom:24px; left:24px;
  background:rgba(255,255,255,0.96); backdrop-filter:blur(12px);
  padding:14px 18px; border-radius:14px;
  box-shadow:0 8px 32px rgba(0,0,0,0.1);
}
.ib-label { font-size:10px; color:var(--mid); margin-bottom:3px; letter-spacing:0.05em; }
.ib-val { font-family:var(--serif); font-size:1.15rem; color:var(--moss); }
.intro-text { display:flex; flex-direction:column; gap:22px; }
.pull-quote {
  font-family:var(--serif); font-size:1.25rem; font-style:italic;
  color:var(--ink); line-height:1.55;
  padding-left:20px; border-left:2px solid var(--amber);
}

/* ============ WHY 6-GRID ============ */
.why-section { background:var(--white); }
.why-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px; margin-top:56px;
  background:var(--light); border:1px solid var(--light);
  border-radius:20px; overflow:hidden;
}
.why-card {
  background:var(--white); padding:36px 30px;
  transition:background 0.25s;
}
.why-card:hover { background:var(--bg); }
.why-num {
  font-family:var(--serif); font-size:2.2rem; font-style:italic;
  color:var(--light); margin-bottom:16px; line-height:1;
  transition:color 0.25s;
}
.why-card:hover .why-num { color:var(--amber); }
.why-title {
  font-family:var(--serif); font-size:1.15rem;
  color:var(--ink); margin-bottom:10px; line-height:1.25;
}
.why-body { font-size:13px; font-weight:300; color:var(--mid); line-height:1.7; }

/* ============ GALLERY ============ */
.gallery-section { background:var(--bg); padding:80px 0 64px; }
.gallery-header { padding:0 56px 40px; }
.gallery-track {
  display:flex; gap:12px; overflow-x:auto;
  padding:0 56px 20px;
  scroll-snap-type:x mandatory;
  -ms-overflow-style:none; scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.gallery-track::-webkit-scrollbar { display:none; }
/* desktop sizes */
.g-item {
  flex-shrink:0; scroll-snap-align:start;
  border-radius:20px; overflow:hidden;
  position:relative; cursor:pointer;
}
.g-item:nth-child(1) { width:50vw; height:440px; }
.g-item:nth-child(2) { width:32vw; height:440px; }
.g-item:nth-child(3) { width:40vw; height:440px; }
.g-item:nth-child(4) { width:34vw; height:440px; }
.g-item:nth-child(5) { width:38vw; height:440px; }
.g-item img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.8s var(--ease);
}
.g-item:hover img { transform:scale(1.04); }
.g-caption {
  position:absolute; bottom:0; left:0; right:0;
  padding:20px 18px 18px;
  background:linear-gradient(transparent, rgba(0,0,0,0.5));
  color:rgba(255,255,255,0.85); font-size:11px;
  letter-spacing:0.04em;
  opacity:0; transition:opacity 0.3s; font-weight:300;
}
.g-item:hover .g-caption { opacity:1; }
.gallery-footer { padding:16px 56px 0; display:flex; align-items:center; gap:16px; }
.g-dots { display:flex; gap:6px; }
.g-dot {
  height:3px; border-radius:2px; background:var(--light);
  cursor:pointer; transition:all 0.3s var(--ease);
  width:28px;
}
.g-dot.active { background:var(--ink); width:44px; }

/* ============ PLANS ============ */
.plans-section { background:var(--ink); }
.plans-top {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:52px; gap:40px;
}
.plans-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:12px;
}
.plan-card {
  background:rgb(43 68 52);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:20px; padding:28px;
  transition:all 0.3s var(--ease);
  position:relative; overflow:hidden;
  cursor:pointer;
}
.plan-card:hover {
  background:rgb(43 68 52);
  transform:translateY(-5px);
  border-color:rgba(255,255,255,0.12);
}
.plan-card.featured {
  border-color:rgba(255,255,255,0.18);
  background:rgb(43 68 52);
}
.plan-badge {
  position:absolute; top:0; right:22px;
  background:var(--amber); color:white;
  font-size:9px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  padding:4px 12px; border-radius:0 0 8px 8px;
}
.plan-photo {
  width:100%; height:156px; border-radius:12px; overflow:hidden; margin-bottom:22px;
}
.plan-photo img { width:100%; height:100%; object-fit:cover; }
.plan-type { font-size:10px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--amber); margin-bottom:6px; }
.plan-size { font-family:var(--serif); font-size:2rem; color:white; line-height:1; margin-bottom:3px; }
.plan-rooms { font-size:12px; color:rgba(255,255,255,0.3); margin-bottom:18px; }
.plan-price { font-family:var(--serif); font-size:1.9rem; color:white; line-height:1; }
.plan-monthly { font-size:12px; color:rgba(255,255,255,0.3); margin-bottom:20px; }
.plan-monthly strong { color:rgba(255,255,255,0.55); font-weight:500; }
.plan-divider { height:1px; background:rgba(255,255,255,0.06); margin:20px 0; }
.plan-feats { list-style:none; display:flex; flex-direction:column; gap:8px; margin-bottom:22px; }
.plan-feats li { font-size:12px; font-weight:300; color:rgba(255,255,255,0.4); display:flex; align-items:center; gap:8px; }
.plan-feats li::before { content:''; width:3px; height:3px; background:var(--amber); border-radius:50%; flex-shrink:0; }
.plan-cta {
  display:flex; align-items:center; justify-content:space-between;
  color:rgba(255,255,255,0.28); font-size:11px; letter-spacing:0.04em; text-decoration:none;
  transition:color 0.2s;
}
.plan-cta:hover { color:white; }
.plan-cta svg { width:14px; height:14px; }

/* Plan details (inline drawings) */
.plan-details { margin:18px 0 8px; border-top:1px solid rgba(255,255,255,0.08); padding-top:14px; }
.plan-details summary {
  cursor:pointer; list-style:none;
  font-size:12px; letter-spacing:0.08em; text-transform:uppercase;
  color:rgba(255,255,255,0.55); display:flex; align-items:center; gap:8px;
}
.plan-details summary::-webkit-details-marker { display:none; }
.plan-details summary::after {
  content:'›'; font-size:14px; transform:rotate(90deg); transition:transform 0.2s var(--ease);
}
.plan-details[open] summary::after { transform:rotate(270deg); }
.plan-details-body { padding-top:12px; }
.plan-details-body img { width:100%; border-radius:10px; background:white; padding:10px; max-height:420px; object-fit:contain; }


/* Plans drawings */
.plan-drawings {
  margin-top:52px;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:20px; overflow:hidden;
}
.drawings-header {
  padding:28px 36px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.drawings-header .h2 { font-size:1.5rem; margin-bottom:5px; }
.drawings-header p { font-size:13px; color:rgba(255,255,255,0.3); }
.variant-item { border-bottom:1px solid rgba(255,255,255,0.06); }
.variant-item:last-child { border-bottom:none; }
.variant-header {
  padding:22px 36px; display:flex; justify-content:space-between;
  align-items:center; cursor:pointer; transition:background 0.2s;
  gap:16px;
}
.variant-header:hover { background:rgba(255,255,255,0.02); }
.variant-label { font-size:14px; color:white; font-weight:400; }
.variant-meta { font-size:12px; color:rgba(255,255,255,0.28); margin-top:2px; }
.variant-chevron {
  width:18px; height:18px; color:rgba(255,255,255,0.25);
  transition:transform 0.3s var(--ease); flex-shrink:0;
}
.variant-item.open .variant-chevron { transform:rotate(180deg); }
.variant-body { display:none; padding:0 36px 28px; }
.variant-item.open .variant-body { display:block; }
.variant-body img { width:100%; border-radius:10px; background:white; padding:10px; max-height:480px; object-fit:contain; }
.variant-specs { display:flex; gap:28px; margin-top:18px; flex-wrap:wrap; }
.vspec-label { font-size:9px; color:rgba(255,255,255,0.25); letter-spacing:0.12em; text-transform:uppercase; margin-bottom:3px; }
.vspec-val { font-family:var(--serif); font-size:1.1rem; color:white; }
/* Full finish variant highlight */
.variant-item.gold { border-color:rgba(181,131,47,0.3); }
.variant-item.gold .variant-header { border-left:2px solid var(--amber); padding-left:34px; }

/* ============ TRUST ============ */
.trust-section { background:var(--bg2); }
.trust-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px; margin-top:56px;
  background:var(--light); border:1px solid var(--light);
  border-radius:20px; overflow:hidden;
}
.trust-item {
  background:var(--white); padding:36px 28px;
  transition:background 0.25s;
}
.trust-item:hover { background:var(--bg); }
.trust-icon {
  width:42px; height:42px; background:var(--moss-light);
  border-radius:10px; display:flex; align-items:center; justify-content:center;
  color:var(--moss); margin-bottom:18px;
}
.trust-title {
  font-family:var(--serif); font-size:1.15rem;
  color:var(--ink); margin-bottom:8px; line-height:1.25;
}
.trust-body { font-size:13px; font-weight:300; color:var(--mid); line-height:1.68; }

/* ============ FINANCING ============ */
.fin-section { background:var(--white); }
.fin-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:72px; align-items:flex-start; margin-top:56px;
}
.fin-calc {
  background:var(--bg2); border-radius:20px; padding:36px;
  border:1px solid var(--light);
}
.fin-calc-title { font-family:var(--serif); font-size:1.3rem; margin-bottom:24px; }
.fin-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 0; border-bottom:1px solid var(--light);
}
.fin-row:last-child { border-bottom:none; }
.fin-label { font-size:13px; color:var(--mid); font-weight:300; }
.fin-val { font-family:var(--serif); font-size:1.05rem; color:var(--ink); }
.fin-val.highlight { color:var(--moss); font-size:1.35rem; }
.fin-note {
  margin-top:18px; font-size:11px; color:var(--mid); line-height:1.65;
  padding:12px 14px; background:var(--white); border-radius:10px;
  border:1px solid var(--light);
}
.fin-steps { display:flex; flex-direction:column; }
.fin-step { display:flex; gap:18px; padding:22px 0; border-bottom:1px solid var(--light); }
.fin-step:last-child { border-bottom:none; }
.fin-step-num {
  width:30px; height:30px; background:var(--moss); border-radius:50%;
  color:white; font-size:12px; display:flex; align-items:center; justify-content:center;
  flex-shrink:0; margin-top:2px;
}
.fin-step-title { font-size:14px; font-weight:500; color:var(--ink); margin-bottom:4px; }
.fin-step-body { font-size:13px; font-weight:300; color:var(--mid); line-height:1.65; }

/* ============ FAQ ============ */
.faq-section { background:var(--bg); }
.faq-grid {
  display:grid; grid-template-columns:1fr 1.3fr;
  gap:80px; margin-top:56px;
}
.faq-list { display:flex; flex-direction:column; }
.faq-item { border-bottom:1px solid var(--light); }
.faq-q {
  width:100%; text-align:left;
  display:flex; justify-content:space-between; align-items:center;
  padding:20px 0; cursor:pointer;
  font-size:14px; color:var(--ink);
  background:none; border:none; gap:16px; line-height:1.4;
}
.faq-q:hover { color:var(--moss); }
.faq-icon {
  width:22px; height:22px; flex-shrink:0;
  border:1px solid var(--light); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--mid); transition:all 0.3s;
}
.faq-item.open .faq-icon {
  background:var(--moss); border-color:var(--moss); color:white; transform:rotate(45deg);
}
.faq-a {
  display:none; padding:0 0 18px;
  font-size:13px; font-weight:300; color:var(--mid); line-height:1.75;
}
.faq-item.open .faq-a { display:block; }
.faq-sidebar {
  position:sticky; top:90px; display:flex; flex-direction:column; gap:0;
}
.faq-sidebar-img {
  border-radius:20px; overflow:hidden; height:220px; margin-bottom:28px;
}
.faq-sidebar-img img { width:100%; height:100%; object-fit:cover; }
.faq-sidebar h3 {
  font-family:var(--serif); font-size:1.6rem;
  line-height:1.2; margin-bottom:10px;
}
.faq-sidebar p { font-size:13px; color:var(--mid); line-height:1.65; margin-bottom:22px; }
.btn-moss {
  background:var(--moss); color:white;
  font-size:13px; font-weight:500; padding:13px 22px;
  border-radius:100px; text-decoration:none;
  display:inline-flex; align-items:center; gap:8px;
  transition:all 0.22s; width:fit-content;
}
.btn-moss:hover { background:var(--moss2); transform:translateY(-1px); }
.phone-link {
  display:flex; align-items:center; gap:8px; margin-top:14px;
  font-size:14px; color:var(--ink); text-decoration:none;
}
.phone-link svg { color:var(--moss); width:15px; height:15px; }

/* ============ LOCATION ============ */
.location-section { background:var(--white); }
.loc-grid {
  display:grid; grid-template-columns:1.15fr 0.85fr;
  gap:56px; align-items:center; margin-top:56px;
}
.loc-img { border-radius:20px; overflow:hidden; height:460px; }
.loc-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.8s var(--ease); }
.loc-img:hover img { transform:scale(1.03); }
.dist-table { display:flex; flex-direction:column; }
.dist-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:16px 0; border-bottom:1px solid var(--light);
}
.dist-row:first-child { border-top:1px solid var(--light); }
.dist-name { font-size:14px; color:var(--ink); display:flex; align-items:center; gap:10px; }
.dist-name svg { width:14px; height:14px; color:var(--moss); flex-shrink:0; }
.dist-time { font-family:var(--serif); font-size:1rem; color:var(--moss); }
.loc-address-box {
  margin-top:22px; background:var(--bg); border:1px solid var(--light);
  border-radius:12px; padding:18px; display:flex; align-items:center; gap:12px;
}
.loc-address-box svg { color:var(--moss); width:17px; height:17px; flex-shrink:0; }
.addr-main { font-size:14px; color:var(--ink); }
.addr-sub { font-size:11px; color:var(--mid); margin-top:2px; }

/* ============ CTA ============ */
.cta-section { background:var(--moss); padding:88px 56px; text-align:center; }
.cta-section .h2 { color:white; margin-bottom:10px; }
.cta-section p { font-size:15px; font-weight:300; color:rgba(255,255,255,0.55); margin-bottom:36px; }
.cta-pills { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.cta-pill {
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.14);
  color:white; font-size:14px; padding:12px 24px; border-radius:100px;
  text-decoration:none; display:flex; align-items:center; gap:8px;
  transition:all 0.2s;
}
.cta-pill:hover { background:rgba(255,255,255,0.18); }
.cta-pill svg { width:14px; height:14px; opacity:0.65; }

/* ============ FOOTER ============ */
footer { background:var(--ink); padding:64px 56px 32px; }
.footer-grid {
  display:grid; grid-template-columns:1.8fr 1fr 1fr;
  gap:56px; padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,0.07); margin-bottom:32px;
}
.footer-brand { font-family:var(--serif); font-size:1.3rem; font-style:italic; color:white; margin-bottom:10px; }
.footer-desc { font-size:12px; font-weight:300; color:rgba(255,255,255,0.28); line-height:1.75; max-width:240px; }
.footer-col h4 { font-size:9px; font-weight:600; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.2); margin-bottom:16px; }
.footer-col a { display:block; color:rgba(255,255,255,0.4); text-decoration:none; font-size:13px; font-weight:300; margin-bottom:9px; transition:color 0.2s; }
.footer-col a:hover { color:white; }
.footer-bottom { display:flex; justify-content:space-between; font-size:11px; color:rgba(255,255,255,0.18); font-weight:300; }

/* ============ ANIMATIONS ============ */
.reveal {
  opacity:0; transform:translateY(22px);
  transition:opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-28px); transition:opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.in { opacity:1; transform:translateX(0); }
.reveal-scale { opacity:0; transform:scale(0.96); transition:opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-scale.in { opacity:1; transform:scale(1); }
.d1 { transition-delay:0.08s; }
.d2 { transition-delay:0.16s; }
.d3 { transition-delay:0.24s; }
.d4 { transition-delay:0.32s; }
.d5 { transition-delay:0.40s; }

/* number count animation */
.count-num { display:inline-block; }

/* ============ MOBILE ============ */
@media(max-width:768px) {
  header { padding:0 20px; }
  .header-nav { display:none; }
  .menu-overlay { padding:72px 28px 44px; }
  .menu-nav a { font-size:clamp(2rem,8vw,3rem); }
  .menu-footer { flex-direction:column; gap:16px; align-items:flex-start; }
  
  .hero-content { padding:32px 20px; grid-template-columns:1fr; gap:20px; }
  .hero-actions { align-items:flex-start; flex-direction:row; gap:8px; flex-wrap:wrap; }
  .hero-bg { background-image:var(--hero-mobile); }
  
  .stats-inner { grid-template-columns:1fr 1fr; }
  .stat-item { padding:18px 0 18px 20px; }
  
  .section { padding:64px 20px; }
  .section-sm { padding:52px 20px; }
  
  .intro-grid,
  .fin-grid,
  .faq-grid,
  .loc-grid { grid-template-columns:1fr; gap:36px; }
  .intro-photo-wrap { height:260px; }
  
  .why-grid,
  .trust-grid { grid-template-columns:1fr; }
  
  /* Mobile gallery inline – active item highlighted */
  .gallery-section { padding:64px 0 48px; }
  .gallery-header { padding:0 20px 28px; }
  .gallery-track { padding:0 20px 16px; gap:10px; }
  .g-item:nth-child(1),
  .g-item:nth-child(2),
  .g-item:nth-child(3),
  .g-item:nth-child(4),
  .g-item:nth-child(5) {
    width:80vw; height:240px;
    /* Mobile: active snap gives scale effect via CSS */
    transition:transform 0.3s var(--ease), box-shadow 0.3s;
  }
  /* Snap active highlight – JS adds .snap-active */
  .g-item.snap-active { transform:scale(1.02); box-shadow:0 12px 40px rgba(0,0,0,0.15); }
  .gallery-footer { padding:12px 20px 0; }
  .g-dot { width:24px; }
  .g-dot.active { width:36px; }
  
  .plans-grid { grid-template-columns:1fr; gap:10px; }
  .plans-top { flex-direction:column; align-items:flex-start; margin-bottom:32px; }
  .plan-details-body img { max-height:320px; }
  
  .cta-section { padding:64px 20px; }
  
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; gap:6px; }
  
  .faq-sidebar { position:static; }
  .loc-img { height:280px; }
  .h2.clover { padding-left:0px; }
  .h2.clover::before {
    width:260px; height:260px;
    left:-48px; top:0.1em;
    opacity:0.08;
  }
  .preloader-clover-side { width:140px; height:140px; right:-30px; }
}
