/* ══════════════════════════════════════════════════════════════
   KIRKPINARSAM — Design System v2
   Token architecture · Premium layout · Animation system
══════════════════════════════════════════════════════════════ */

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

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Surface */
  --bg:       #f7f7f5;
  --white:    #ffffff;

  /* Text */
  --text:     #111111;
  --text-2:   #3d3d3d;
  --muted:    #6b6b6b;

  /* Border */
  --border:        rgba(0,0,0,.07);
  --border-md:     rgba(0,0,0,.11);
  --border-strong: rgba(0,0,0,.16);

  /* Brand */
  --green:      #22c55e;
  --green-dark: #16a34a;
  --green-glow: rgba(34,197,94,.26);

  /* Radius scale */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   14px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-full: 999px;

  /* Shadow scale */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.05);
  --shadow-md: 0 2px 8px rgba(0,0,0,.08), 0 8px 28px rgba(0,0,0,.07);
  --shadow-lg: 0 4px 20px rgba(0,0,0,.10), 0 16px 48px rgba(0,0,0,.09);

  /* Easing */
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);

  /* Duration */
  --t-fast: 140ms;
  --t-base: 220ms;
  --t-slow: 480ms;

  /* Layout */
  --max:  1100px;
  --pad:  clamp(20px, 4vw, 40px);

  /* Legacy compat */
  --radius:    var(--r-lg);
  --shadow-s:  var(--shadow-sm);
}

/* ── BASE ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg); color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; opacity: 0; transition: opacity .35s;
  padding-bottom: 58px; line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.skip-link {
  position: absolute; top: -48px; left: 16px;
  padding: 10px 18px; background: var(--text); color: #fff;
  border-radius: var(--r-sm); font-size: 14px; z-index: 999; transition: top .2s;
}
.skip-link:focus { top: 8px; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll-reveal system */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease),
              transform var(--t-slow) var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }

/* ── HEADER ─────────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,247,245,.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 60px; gap: 12px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 600; white-space: nowrap; letter-spacing: -.01em;
}
/* Phone in header */
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  padding: 6px 12px; border-radius: var(--r-full);
  border: 1px solid var(--border); transition: all var(--t-base);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--text); border-color: var(--border-strong); background: rgba(0,0,0,.03); }
.nav-phone svg { flex-shrink: 0; opacity: .6; }

.nav-links { display: flex; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--r-full);
  font-size: 13.5px; color: var(--muted);
  transition: color var(--t-base), background var(--t-base);
}
.nav-links a:hover { color: var(--text); background: rgba(0,0,0,.05); }
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ── LANG SWITCH ─────────────────────────────────────────────── */
.lang-switch { display: flex; gap: 3px; }
.lang-btn {
  padding: 5px 10px; border-radius: var(--r-sm); border: 1px solid var(--border);
  font-size: 11.5px; font-weight: 600; color: var(--muted);
  min-height: 34px; letter-spacing: .04em; transition: all var(--t-base);
}
.lang-btn:hover, .lang-btn.active {
  color: var(--text); border-color: var(--border-strong); background: rgba(0,0,0,.05);
}

/* ── HAMBURGER ──────────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  border-radius: var(--r-sm); border: 1px solid var(--border);
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform .22s, opacity .22s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 60px;
  z-index: 99; background: #fff; padding: 24px var(--pad) 40px;
  flex-direction: column; border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex; align-items: center; height: 60px;
  font-family: 'Playfair Display', serif; font-size: 22px;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.mobile-menu .lang-switch { margin-top: 24px; }
.mobile-menu .lang-btn { font-size: 14px; min-height: 44px; padding: 10px 16px; }
.mobile-wa-link {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  padding: 14px 16px; border-radius: var(--r-md);
  background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2);
  color: var(--green-dark); font-size: 15px; font-weight: 500;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px; height: 48px; padding: 0 24px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 500; border: 1px solid rgba(0,0,0,.12);
  letter-spacing: .01em;
  transition: transform var(--t-base) var(--ease),
              background var(--t-base), box-shadow var(--t-base),
              border-color var(--t-base);
  cursor: pointer; white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: scale(.98); transition-duration: 80ms; }

.btn-primary {
  background: #1a1a1a; color: #fff; border-color: #1a1a1a;
  box-shadow: 0 1px 6px rgba(0,0,0,.14);
}
.btn-primary:hover {
  background: #2d2d2d; border-color: #2d2d2d;
  box-shadow: 0 4px 18px rgba(0,0,0,.20);
}
.btn-wa {
  background: var(--green); color: #fff; border-color: var(--green);
  font-weight: 600; box-shadow: 0 2px 10px var(--green-glow);
}
.btn-wa:hover {
  background: #1db950; border-color: #1db950;
  box-shadow: 0 4px 22px rgba(34,197,94,.38);
}
.btn-outline {
  background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn-outline:hover { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.22); }

/* Ghost white — for hero dark overlay */
.btn-ghost-white {
  background: rgba(255,255,255,.12); color: #fff;
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.55);
}

.btn-lg { height: 52px; padding: 0 30px; font-size: 15px; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero { padding: clamp(16px, 2.5vw, 24px) 0 0; }

.hero-card {
  position: relative;
  background: #150e05
    url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=80')
    center / cover no-repeat;
  border-radius: var(--r-2xl);
  min-height: min(88vh, 700px);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(150deg,
    rgba(13,8,1,.74) 0%,
    rgba(13,8,1,.52) 55%,
    rgba(13,8,1,.28) 100%
  );
}
.hero-card-inner {
  position: relative; z-index: 1;
  padding: clamp(52px,7vw,96px) clamp(36px,6vw,88px);
  width: 100%;
}

/* Staggered entrance */
.hero-card-inner .trust-row { animation: fadeUp .9s var(--ease) .12s both; }
.hero-card-inner h1          { animation: fadeUp .9s var(--ease) .26s both; }
.hero-card-inner .hero-sub   { animation: fadeUp .9s var(--ease) .38s both; }
.hero-card-inner .hero-ctas  { animation: fadeUp .9s var(--ease) .50s both; }

.trust-row {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 20px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600;
  color: rgba(255,255,255,.75); letter-spacing: .04em;
}
.trust-sep { color: rgba(255,255,255,.22); font-size: 16px; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 62px); font-weight: 600;
  line-height: 1.08; letter-spacing: -.025em;
  margin-bottom: 16px; color: #fff;
}
.hero-sub {
  font-size: clamp(14px, 1.5vw, 16.5px); color: rgba(255,255,255,.68);
  max-width: 44ch; line-height: 1.72; margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* ── SECTIONS ────────────────────────────────────────────────── */
section { padding: clamp(44px,6vw,76px) 0; }
section + section { border-top: 1px solid var(--border); }
.section-eyebrow {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; font-weight: 600;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 36px); font-weight: 600;
  letter-spacing: -.022em; line-height: 1.14; margin-bottom: 24px;
}

/* ── LAND CARDS ──────────────────────────────────────────────── */
.lands { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px,2vw,22px); }
.land-card {
  border-radius: var(--r-xl); border: 1px solid var(--border);
  background: var(--white); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
}
.land-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.land-card .thumb { height: 230px; background: #e8e6e1; overflow: hidden; }
.land-card .thumb img { transition: transform .65s var(--ease); }
.land-card:hover .thumb img { transform: scale(1.05); }
.land-card .info { padding: 22px 24px 24px; }
.land-card h3 {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600;
  letter-spacing: -.013em; margin-bottom: 7px; line-height: 1.28;
}
.land-meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: var(--muted); margin-bottom: 10px;
}
.land-meta span { display: inline-flex; align-items: center; gap: 4px; }
.land-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.land-price { font-size: 13.5px; font-weight: 600; margin-bottom: 18px; color: var(--text); }
.card-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.card-actions .btn { height: 42px; font-size: 13.5px; padding: 0 16px; }

/* ── APPOINTMENT CTA ─────────────────────────────────────────── */
.appt-cta {
  text-align: center;
  padding: clamp(28px,4vw,44px) clamp(20px,6vw,80px);
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.appt-cta p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px,2vw,22px); font-weight: 600;
  letter-spacing: -.016em; margin-bottom: 18px; color: var(--text);
}
.appt-btns { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px,4vw,56px); align-items: start;
}
.contact-info .section-title { margin-bottom: 10px; }
.contact-info > p { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.contact-links { display: flex; flex-direction: column; gap: 8px; }
.contact-link {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  border-radius: var(--r-md); border: 1px solid var(--border);
  font-size: 13.5px; color: var(--muted); min-height: 48px; background: var(--white);
  transition: color var(--t-base), border-color var(--t-base), background var(--t-base);
}
.contact-link:hover { color: var(--text); border-color: var(--border-md); background: rgba(0,0,0,.01); }
.contact-link svg { flex-shrink: 0; opacity: .45; }

/* ── FORM ────────────────────────────────────────────────────── */
.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: clamp(22px,3vw,32px);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.field label {
  font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.field input, .field textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm);
  color: var(--text); font-size: 16px; font-family: inherit;
  padding: 12px 14px; outline: none; width: 100%;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.field input:focus, .field textarea:focus {
  border-color: rgba(0,0,0,.22); box-shadow: 0 0 0 3px rgba(0,0,0,.04);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-msg {
  display: none; padding: 12px 14px; border-radius: var(--r-sm);
  font-size: 13.5px; margin-bottom: 10px; line-height: 1.5;
}
.form-msg.error  { background: #fff5f5; border: 1px solid #fca5a5; color: #dc2626; }
.form-msg.success{ background: #f0fdf4; border: 1px solid #86efac; color: var(--green-dark); }
#formSubmit { width: 100%; height: 52px; font-size: 15px; border-radius: var(--r-md); }
#formSubmit:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── MICRO COMMITMENT ────────────────────────────────────────── */
.micro-select { margin-bottom: 16px; }
.micro-select p {
  font-size: 12px; color: var(--muted); margin-bottom: 9px;
  font-weight: 500; letter-spacing: .01em;
}
.micro-opts { display: flex; gap: 6px; flex-wrap: wrap; }
.micro-btn {
  padding: 6px 14px; border-radius: var(--r-full); border: 1px solid var(--border);
  font-size: 12.5px; font-weight: 500; color: var(--muted); cursor: pointer;
  background: var(--bg); transition: all var(--t-base); font-family: inherit; line-height: 1;
}
.micro-btn:hover { border-color: rgba(0,0,0,.22); color: var(--text); background: #fff; transform: translateY(-1px); }
.micro-btn.selected { background: var(--text); color: #fff; border-color: var(--text); box-shadow: 0 1px 8px rgba(0,0,0,.15); }

/* ── TRUST REPLY ─────────────────────────────────────────────── */
.trust-reply { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; letter-spacing: .01em; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 28px 0; }
.foot-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--muted);
}
.foot-logo { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--text); letter-spacing: -.01em; }
.foot-links { display: flex; gap: 16px; }
.foot-links a { transition: color var(--t-base); }
.foot-links a:hover { color: var(--text); }

/* ── WA FLOAT (hidden; sidebar used) ────────────────────────── */
.wa-float { display: none; }

/* ── SIDEBAR CTA ─────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px;
  box-shadow: var(--shadow-md);
}
.sticky-cta .btn {
  flex: none;
  width: 58px;
  height: auto;
  min-height: 54px;
  padding: 8px 4px;
  border-radius: 14px;
  flex-direction: column;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
}
.sticky-cta .btn svg { flex-shrink: 0; }

/* Label inside sidebar buttons */
.cta-lbl {
  font-size: 9px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  line-height: 1; pointer-events: none;
}

/* Mobile: revert to slim bottom bar */
@media (max-width: 768px) {
  body { padding-bottom: 58px; }
  .sticky-cta {
    position: fixed;
    left: 0; right: 0; top: auto; bottom: 0;
    transform: none;
    flex-direction: row;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 20px rgba(0,0,0,.06);
    padding: 8px var(--pad);
    gap: 7px;
    background: rgba(255,255,255,.97);
  }
  .sticky-cta .btn {
    flex: 1; width: auto; min-height: 40px;
    height: 40px; padding: 0 10px;
    flex-direction: row; gap: 6px;
    border-radius: var(--r-full);
  }
  .cta-lbl {
    font-size: 12px; font-weight: 500;
    letter-spacing: .005em; text-transform: none;
  }
}
@media (min-width: 769px) {
  body { padding-bottom: 0; }
}

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--muted); margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); transition: color var(--t-base); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span:last-of-type { color: var(--text); font-weight: 500; }

/* ── GALLERY SCROLL HINT ─────────────────────────────────────── */
.gallery { position: relative; }
.gallery::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 4px; width: 48px;
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none; border-radius: 0 var(--r-md) var(--r-md) 0;
}
[dir="rtl"] .gallery::after { right: auto; left: 0; background: linear-gradient(to left, transparent, var(--bg)); }

/* ── DETAIL FORM SECTION ─────────────────────────────────────── */
.detail-form-section {
  margin: clamp(32px,5vw,56px) 0;
  padding: clamp(28px,4vw,44px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.detail-form-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px,2.6vw,26px); font-weight: 600;
  letter-spacing: -.016em; margin-bottom: 8px;
}
.detail-form-section > p {
  color: var(--muted); font-size: 14px; margin-bottom: 24px; line-height: 1.6;
}
.detail-form-section .form-card { background: transparent; border: none; padding: 0; box-shadow: none; }

/* ── DETAIL PAGES ────────────────────────────────────────────── */
.detail-hero { padding: clamp(36px,5vw,64px) 0 clamp(24px,3vw,36px); }
.back-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; color: var(--muted); margin-bottom: 24px;
  transition: color var(--t-base);
}
.back-link:hover { color: var(--text); }
[dir="rtl"] .back-link svg { transform: scaleX(-1); }
.detail-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px,5.5vw,62px); font-weight: 600;
  letter-spacing: -.026em; line-height: 1.08; margin-bottom: 18px;
}
.quick-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.fact {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: var(--r-full); border: 1px solid var(--border);
  font-size: 13px; background: var(--white);
}
.fact svg { flex-shrink: 0; opacity: .5; }
.hero-img {
  border-radius: var(--r-xl); overflow: hidden;
  height: clamp(260px,42vw,500px); background: #e8e6e1;
  margin-bottom: 12px; cursor: zoom-in; box-shadow: var(--shadow-sm);
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin-bottom: clamp(32px,5vw,56px); scrollbar-width: none; }
.gallery::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 160px; height: 108px; border-radius: var(--r-md); overflow: hidden;
  cursor: pointer; background: #e8e6e1; border: 2px solid transparent;
  transition: border-color var(--t-base), opacity var(--t-base); opacity: .6;
}
.gallery-item:hover, .gallery-item.active { border-color: rgba(0,0,0,.3); opacity: 1; }

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92);
  z-index: 300; align-items: center; justify-content: center; cursor: zoom-out;
}
.lightbox.open { display: flex; animation: fadeIn .2s ease; }
.lightbox img { max-width: 95vw; max-height: 90vh; object-fit: contain; border-radius: var(--r-md); }

/* ── VIDEO ───────────────────────────────────────────────────── */
.video-section { margin-bottom: clamp(32px,5vw,56px); }
.video-section h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; letter-spacing: -.016em; margin-bottom: 14px; }
.video-wrap {
  position: relative; padding-top: 56.25%; border-radius: var(--r-xl);
  overflow: hidden; background: #e8e6e1; box-shadow: var(--shadow-sm);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ── MAP ─────────────────────────────────────────────────────── */
.map-section { margin-bottom: clamp(32px,5vw,56px); }
.map-section h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; letter-spacing: -.016em; margin-bottom: 14px; }
.map-wrap { border-radius: var(--r-xl); overflow: hidden; height: 340px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── DETAIL BODY ─────────────────────────────────────────────── */
.detail-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(24px,4vw,52px); margin: clamp(32px,5vw,56px) 0; align-items: start; }
.detail-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(20px,2.6vw,26px); font-weight: 600; letter-spacing: -.016em; margin-bottom: 14px; }
.detail-text p { font-size: 14.5px; color: var(--muted); line-height: 1.78; margin-bottom: 12px; }
.specs-card { border-radius: var(--r-xl); border: 1px solid var(--border); background: var(--white); overflow: hidden; position: sticky; top: 76px; box-shadow: var(--shadow-sm); }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 18px; border-bottom: 1px solid var(--border); font-size: 13.5px; gap: 10px; }
.spec-row:last-child { border-bottom: none; }
.spec-row .k { color: var(--muted); }
.spec-row .v { font-weight: 600; }
.detail-cta { text-align: center; padding: clamp(36px,5vw,64px) 0; }
.detail-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(22px,3vw,34px); font-weight: 600; letter-spacing: -.02em; margin-bottom: 12px; }
.detail-cta p { color: var(--muted); font-size: 14.5px; margin-bottom: 28px; line-height: 1.65; }
.detail-cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .lands { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .detail-body { grid-template-columns: 1fr; }
  .specs-card { position: static; }
  .hero-card { min-height: min(80vh, 600px); }
}
@media (max-width: 500px) {
  .hero-card { border-radius: var(--r-xl); min-height: min(75vh, 560px); }
  .hero-card-inner { padding: 32px 22px 40px; }
  .hero-ctas, .card-actions, .detail-cta-btns, .appt-btns { flex-direction: column; }
  .hero-ctas .btn, .card-actions .btn, .detail-cta-btns .btn, .appt-btns .btn { justify-content: center; width: 100%; }
  .foot-inner { flex-direction: column; align-items: flex-start; }
  #formSubmit { border-radius: var(--r-md); }
}
