/* Kudwah Space — modern minimal theme
   Brand colours live here as CSS variables.
   Once the real logo is in, only these need tweaking. */
:root {
  --bg:        #f7f4ee;   /* warm cream — matches venue walls */
  --surface:   #ffffff;
  --ink:       #1e2433;
  --muted:     #6c7180;
  --line:      #e7e2d8;
  --brand:     #17284a;   /* Kudwah navy */
  --brand-ink: #0f1c37;
  --accent:    #c68a34;   /* Kudwah gold */
  --danger:    #c0563f;
  --ok:        #2f8f5b;
  --radius:    16px;
  --shadow:    0 8px 30px rgba(28,26,23,.08);
  --maxw:      1140px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.eyebrow { color: var(--brand); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
h1,h2,h3 { line-height: 1.15; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.lead { color: var(--muted); font-size: 1.12rem; max-width: 620px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: 999px;
  font-weight: 600; font-size: .98rem; cursor: pointer; border: 1.5px solid transparent; transition: .18s; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-ink); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* Header */
.nav { position: sticky; top: 0; z-index: 40; background: rgba(250,248,244,.85);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.brand img { height: 50px; width: auto; }
.brand .dot { width: 30px; height: 30px; border-radius: 9px; background: var(--brand); color:#fff;
  display: grid; place-items: center; font-size: 1rem; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: .96rem; }
.nav-links a:hover { color: var(--ink); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: var(--surface); padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
}

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-top: 80px; padding-bottom: 72px; }
.hero p.lead { margin: 20px 0 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; background:
  linear-gradient(135deg, #e7efe9, #f3ead6); position: relative; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); font-size: .9rem; text-align:center; padding: 20px; }
.stats { display: flex; gap: 36px; margin-top: 40px; }
.stats .n { font-size: 1.7rem; font-weight: 800; color: var(--brand); }
.stats small { color: var(--muted); }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 40px; } }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery .cell { aspect-ratio: 1; border-radius: 14px; overflow: hidden; background:
  linear-gradient(135deg,#eef2ee,#f5ecdb); }
.gallery .cell img { width:100%; height:100%; object-fit: cover; }
.gallery .cell.tall { grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 720px){ .gallery { grid-template-columns: repeat(2,1fr);} }

/* Pricing cards */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: .2s; position: relative; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
.card.pop { border-color: var(--brand); }
.card .tag { position:absolute; top:-12px; right: 22px; background: var(--accent); color:#1c1a17;
  font-size:.72rem; font-weight:700; padding:5px 12px; border-radius:999px; text-transform:uppercase; letter-spacing:.05em;}
.card h3 { font-size: 1.3rem; }
.card .price { font-size: 2.2rem; font-weight: 800; margin: 12px 0 4px; }
.card .price small { font-size: .95rem; font-weight: 500; color: var(--muted); }
.card ul { list-style: none; margin: 20px 0 26px; }
.card li { padding: 7px 0 7px 26px; position: relative; color: var(--muted); font-size: .95rem; }
.card li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
@media (max-width: 860px){ .cards { grid-template-columns: 1fr; } }

/* Facilities */
.facilities { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.facility { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start; transition: .18s; }
.facility:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.facility .fic { font-size: 1.7rem; line-height: 1; flex-shrink: 0; }
.facility h4 { font-size: 1.05rem; margin-bottom: 4px; }
.facility p { color: var(--muted); font-size: .9rem; }
@media (max-width: 860px){ .facilities { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .facilities { grid-template-columns: 1fr; } }

/* Early bird */
.eb-banner{display:flex;align-items:center;gap:12px;justify-content:center;background:linear-gradient(135deg,#fff3e0,#fdece7);
  border:1px solid #f2d9c4;border-radius:14px;padding:14px 22px;max-width:640px;margin:0 auto 40px;color:#8a4a1f;font-size:.95rem}
.eb-banner strong{color:#a63c28}
.eb-spark{font-size:1.3rem}
.price-orig{color:var(--muted);text-decoration:line-through;font-size:1.15rem;font-weight:600;line-height:1}
.price-save{display:inline-block;background:#e3f4ea;color:#1c7a45;font-size:.8rem;font-weight:700;padding:3px 10px;border-radius:999px;margin-top:2px}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 0; font-size: 1.08rem;
  font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--ink); }
.faq-q .ic { transition: .2s; color: var(--brand); font-size: 1.4rem; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; color: var(--muted); }
.faq-a p { padding: 0 0 22px; max-width: 760px; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-item.open .ic { transform: rotate(45deg); }

/* Sections helpers */
.center { text-align: center; }
.center .lead { margin: 14px auto 0; }
.mt { margin-top: 40px; }

/* WhatsApp float */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 50; background: #25d366; color:#fff;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: .2s; }
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* Footer */
.footer { background: var(--brand-ink); color: #dfe9e4; padding: 56px 0 30px; margin-top: 40px; }
.footer a { color: #cfe0d8; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer h4 { color: #fff; margin-bottom: 14px; font-size: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; font-size: .88rem; opacity: .8; }
@media (max-width: 720px){ .footer-grid { grid-template-columns: 1fr; } }
