/* assets/css/main.css — Cinematic Theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --ink:       #0a0c10;
  --ink2:      #111418;
  --ink3:      #1a1e26;
  --gold:      #c9a84c;
  --gold2:     #e8c97a;
  --gold-dim:  rgba(201,168,76,.18);
  --cream:     #f5f0e8;
  --cream2:    #ede8de;
  --fog:       rgba(245,240,232,.65);
  --mist:      rgba(245,240,232,.08);
  --border:    rgba(201,168,76,.18);
  --border2:   rgba(245,240,232,.1);
  --r:         10px;
  --r2:        20px;
  --shadow:    0 8px 40px rgba(0,0,0,.5);
  --glow:      0 0 60px rgba(201,168,76,.12);
  --font-d:    'Cormorant Garamond', Georgia, serif;
  --font-b:    'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:var(--font-b);
  background:var(--ink);
  color:var(--cream);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

.container { width:100%; max-width:1200px; margin:0 auto; padding:0 24px; }
.section { padding:96px 0; }

/* ── FILM GRAIN ── */
body::after {
  content:'';
  position:fixed; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events:none;
  z-index:9999;
  opacity:.4;
}

/* ── TOPBAR ── */
.topbar { background:rgba(201,168,76,.08); border-bottom:1px solid var(--border); padding:7px 0; font-size:13px; color:rgba(245,240,232,.55); }
.topbar .container { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.topbar a { color:rgba(245,240,232,.7); transition:color .2s; }
.topbar a:hover { color:var(--gold); }
.topbar-left { display:flex; gap:20px; }
.topbar-left span { display:flex; align-items:center; gap:6px; }

/* ── HEADER ── */
header {
  position:sticky; top:0; z-index:100;
  background:rgba(10,12,16,.92);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border2);
  height:72px;
  transition:box-shadow .3s;
}
header.scrolled { box-shadow:0 4px 32px rgba(0,0,0,.5), var(--glow); }
nav { display:flex; align-items:center; justify-content:space-between; height:72px; gap:20px; }
.nav-brand { display:flex; align-items:center; gap:12px; }
.nav-brand img { width:44px; height:44px; border-radius:50%; object-fit:cover; border:1px solid var(--border); }
.nav-brand span { font-family:var(--font-d); font-size:22px; font-weight:600; color:var(--cream); letter-spacing:.02em; }
.nav-links { display:flex; align-items:center; gap:2px; }
.nav-links a { font-size:13px; font-weight:500; color:rgba(245,240,232,.55); padding:7px 14px; border-radius:6px; letter-spacing:.04em; text-transform:uppercase; transition:color .2s, background .2s; }
.nav-links a:hover { color:var(--gold); background:var(--mist); }

/* ── BUTTONS ── */
.btn { display:inline-flex; align-items:center; gap:8px; font-family:var(--font-b); font-size:14px; font-weight:600; padding:12px 26px; border-radius:var(--r); border:none; cursor:pointer; letter-spacing:.04em; transition:all .22s; white-space:nowrap; }
.btn:active { transform:scale(.98); }
.btn-gold { background:var(--gold); color:var(--ink); }
.btn-gold:hover { background:var(--gold2); box-shadow:0 4px 24px rgba(201,168,76,.35); }
.btn-ghost { background:transparent; color:var(--cream); border:1px solid var(--border2); }
.btn-ghost:hover { border-color:var(--gold); color:var(--gold); background:var(--gold-dim); }
.btn-sm { padding:8px 18px; font-size:13px; }

/* ── HAMBURGER ── */
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.hamburger span { display:block; width:22px; height:1.5px; background:var(--cream); transition:all .3s; }
.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-nav { display:none; position:fixed; top:72px; left:0; right:0; background:var(--ink2); border-bottom:1px solid var(--border); padding:16px 24px 28px; z-index:99; }
.mobile-nav.open { display:block; }
.mobile-nav a { display:block; padding:13px 0; font-size:15px; color:var(--cream); border-bottom:1px solid var(--border2); letter-spacing:.04em; }
.mobile-nav .btn { margin-top:18px; width:100%; justify-content:center; }

/* ── TICKER ── */
.ticker-wrap { background:var(--gold-dim); border-bottom:1px solid var(--border); padding:9px 0; overflow:hidden; }
.ticker-track { display:flex; gap:60px; animation:ticker 30s linear infinite; width:max-content; }
.ticker-track:hover { animation-play-state:paused; }
.ticker-item { font-size:12px; font-weight:500; color:var(--gold2); letter-spacing:.06em; text-transform:uppercase; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION LABELS ── */
.eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:11px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.eyebrow::before { content:''; display:block; width:24px; height:1px; background:var(--gold); }
.section-title { font-family:var(--font-d); font-size:clamp(32px,5vw,54px); font-weight:600; color:var(--cream); line-height:1.12; margin-bottom:16px; }
.section-sub { font-size:17px; color:rgba(245,240,232,.55); max-width:560px; line-height:1.75; margin-bottom:48px; }

/* ── HERO ── */
.hero { position:relative; min-height:100vh; display:flex; align-items:center; overflow:hidden; }
.hero-bg { position:absolute; inset:0; }
.hero-bg img { width:100%; height:100%; object-fit:cover; filter:brightness(.3) saturate(.6); }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(10,12,16,.95) 0%, rgba(10,12,16,.75) 50%, rgba(10,12,16,.88) 100%); }
.hero-overlay2 { position:absolute; inset:0; background:radial-gradient(ellipse 60% 50% at 50% 60%, rgba(201,168,76,.06) 0%, transparent 70%); }
.hero-inner { position:relative; z-index:2; display:grid; grid-template-columns:1fr 400px; gap:64px; align-items:center; width:100%; padding:120px 0 80px; }
.hero-tag { display:inline-flex; align-items:center; gap:8px; border:1px solid var(--border); border-radius:100px; padding:6px 16px; font-size:12px; color:var(--gold2); letter-spacing:.08em; text-transform:uppercase; margin-bottom:24px; background:var(--gold-dim); }
.hero h1 { font-family:var(--font-d); font-size:clamp(40px,6vw,72px); font-weight:600; color:var(--cream); line-height:1.06; margin-bottom:22px; }
.hero h1 em { color:var(--gold2); font-style:italic; }
.hero-sub { font-size:18px; color:rgba(245,240,232,.65); line-height:1.75; margin-bottom:36px; max-width:500px; }
.hero-ctas { display:flex; gap:14px; flex-wrap:wrap; }
.hero-line { width:48px; height:1px; background:var(--border); margin:44px 0 28px; }
.hero-stats { display:flex; gap:40px; flex-wrap:wrap; }
.hero-stat-val { font-family:var(--font-d); font-size:36px; font-weight:600; color:var(--gold2); line-height:1; }
.hero-stat-label { font-size:12px; color:rgba(245,240,232,.45); margin-top:4px; letter-spacing:.06em; text-transform:uppercase; }

/* Hero card */
.hero-card { background:rgba(26,30,38,.85); backdrop-filter:blur(24px); border:1px solid var(--border); border-radius:var(--r2); padding:32px 28px; box-shadow:var(--shadow); }
.hero-card h3 { font-family:var(--font-d); font-size:20px; color:var(--cream); margin-bottom:20px; padding-bottom:16px; border-bottom:1px solid var(--border2); }
.tool-row { display:flex; align-items:center; gap:14px; padding:13px 0; border-bottom:1px solid var(--border2); cursor:pointer; transition:all .2s; }
.tool-row:last-child { border:none; padding-bottom:0; }
.tool-row:hover .tool-label { color:var(--gold); }
.tool-icon { width:40px; height:40px; border-radius:10px; background:var(--gold-dim); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.tool-label { font-size:14px; font-weight:600; color:var(--cream); margin-bottom:2px; transition:color .2s; }
.tool-sub { font-size:12px; color:rgba(245,240,232,.4); }
.tool-arrow { margin-left:auto; color:rgba(245,240,232,.25); font-size:16px; transition:all .2s; }
.tool-row:hover .tool-arrow { color:var(--gold); transform:translateX(3px); }

/* ── DEST STRIP ── */
.dest-strip { background:var(--ink2); border-top:1px solid var(--border2); border-bottom:1px solid var(--border2); padding:16px 0; overflow:hidden; }
.dest-track { display:flex; gap:10px; animation:ticker 24s linear infinite; width:max-content; }
.dest-track:hover { animation-play-state:paused; }
.dest-pill { display:flex; align-items:center; gap:8px; border:1px solid var(--border2); border-radius:100px; padding:7px 18px; font-size:12px; font-weight:500; color:rgba(245,240,232,.65); letter-spacing:.04em; white-space:nowrap; transition:all .2s; cursor:pointer; }
.dest-pill:hover { border-color:var(--gold); color:var(--gold2); }
.dest-pill img { border-radius:2px; }

/* ── SERVICES ── */
.services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:20px; }
.service-card { background:var(--ink2); border:1px solid var(--border2); border-radius:var(--r2); overflow:hidden; transition:all .3s; }
.service-card:hover { transform:translateY(-6px); border-color:var(--border); box-shadow:var(--shadow), var(--glow); }
.service-card-img { position:relative; height:180px; overflow:hidden; }
.service-card-img img { width:100%; height:100%; object-fit:cover; filter:brightness(.55) saturate(.7); transition:all .5s; }
.service-card:hover .service-card-img img { filter:brightness(.7) saturate(.9); transform:scale(1.04); }
.service-card-img-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(17,20,24,.9) 0%, transparent 60%); }
.service-icon { position:absolute; top:16px; left:16px; width:40px; height:40px; background:var(--gold-dim); border:1px solid var(--border); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:18px; backdrop-filter:blur(8px); }
.service-body { padding:20px; }
.service-body h3 { font-family:var(--font-d); font-size:20px; font-weight:600; color:var(--cream); margin-bottom:6px; }
.service-body p { font-size:14px; color:rgba(245,240,232,.5); line-height:1.65; }

/* ── HOW IT WORKS ── */
.steps-section { background:var(--ink2); }
.steps-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:0; position:relative; }
.steps-grid::before { content:''; position:absolute; top:26px; left:10%; width:80%; height:1px; background:linear-gradient(to right, transparent, var(--border), transparent); }
.step { text-align:center; padding:0 20px; position:relative; }
.step-num { width:52px; height:52px; background:var(--gold-dim); border:1px solid var(--border); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-d); font-size:24px; font-weight:600; color:var(--gold2); margin:0 auto 20px; }
.step h3 { font-family:var(--font-d); font-size:18px; color:var(--cream); margin-bottom:8px; }
.step p { font-size:13px; color:rgba(245,240,232,.45); line-height:1.65; }

/* ── ABOUT ── */
.about-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-img { position:relative; }
.about-img-main { width:100%; height:480px; object-fit:cover; border-radius:var(--r2); filter:brightness(.7) saturate(.7); border:1px solid var(--border2); }
.about-float { position:absolute; bottom:-24px; right:-24px; background:var(--ink2); border:1px solid var(--border); border-radius:var(--r2); padding:20px 24px; box-shadow:var(--shadow); }
.about-float strong { display:block; font-family:var(--font-d); font-size:40px; font-weight:600; color:var(--gold2); }
.about-float span { font-size:13px; color:rgba(245,240,232,.5); letter-spacing:.05em; text-transform:uppercase; }
.stats-row { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin:32px 0 36px; }
.stat-box { border:1px solid var(--border2); border-radius:var(--r); padding:18px; text-align:center; background:var(--ink2); }
.stat-box strong { display:block; font-family:var(--font-d); font-size:30px; font-weight:600; color:var(--gold2); }
.stat-box span { font-size:11px; color:rgba(245,240,232,.4); letter-spacing:.06em; text-transform:uppercase; }

/* ── DESTINATIONS ── */
.dest-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:16px; }
.dest-card { background:var(--ink2); border:1px solid var(--border2); border-radius:var(--r); display:flex; align-items:center; gap:0; overflow:hidden; transition:all .25s; }
.dest-card:hover { border-color:var(--border); transform:translateY(-3px); box-shadow:var(--shadow); }
.dest-flag { width:80px; height:80px; flex-shrink:0; display:flex; align-items:center; justify-content:center; background:var(--gold-dim); border-right:1px solid var(--border2); }
.dest-flag img { width:48px; filter:saturate(.7); transition:filter .3s; }
.dest-card:hover .dest-flag img { filter:saturate(1); }
.dest-info { padding:16px 18px; }
.dest-info h3 { font-family:var(--font-d); font-size:17px; color:var(--cream); margin-bottom:4px; }
.dest-info p { font-size:13px; color:rgba(245,240,232,.45); line-height:1.5; }
.dest-link { display:inline-flex; align-items:center; gap:4px; font-size:12px; font-weight:600; color:var(--gold); margin-top:8px; letter-spacing:.04em; }

/* ── BLOGS ── */
.blogs-section { background:var(--ink2); }
.blogs-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:24px; }
.blog-card { background:var(--ink3); border:1px solid var(--border2); border-radius:var(--r2); overflow:hidden; transition:all .3s; display:flex; flex-direction:column; }
.blog-card:hover { transform:translateY(-5px); border-color:var(--border); box-shadow:var(--shadow); }
.blog-card-img { height:220px; overflow:hidden; position:relative; }
.blog-card-img img { width:100%; height:100%; object-fit:cover; filter:brightness(.55) saturate(.65); transition:all .5s; }
.blog-card:hover .blog-card-img img { filter:brightness(.75) saturate(.85); transform:scale(1.04); }
.blog-cat { position:absolute; top:14px; left:14px; background:var(--gold-dim); border:1px solid var(--border); border-radius:100px; padding:4px 12px; font-size:11px; font-weight:600; color:var(--gold2); letter-spacing:.06em; text-transform:uppercase; backdrop-filter:blur(8px); }
.blog-body { padding:22px; flex:1; display:flex; flex-direction:column; }
.blog-body h3 { font-family:var(--font-d); font-size:22px; color:var(--cream); margin-bottom:8px; line-height:1.25; }
.blog-body p { font-size:14px; color:rgba(245,240,232,.5); line-height:1.65; flex:1; }
.blog-meta { display:flex; align-items:center; justify-content:space-between; margin-top:18px; padding-top:16px; border-top:1px solid var(--border2); }
.blog-date { font-size:12px; color:rgba(245,240,232,.3); letter-spacing:.05em; }
.blog-read { font-size:12px; font-weight:600; color:var(--gold); display:flex; align-items:center; gap:4px; letter-spacing:.04em; }

/* ── ENQUIRY ── */
.enquiry-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.form-card { background:var(--ink2); border:1px solid var(--border); border-radius:var(--r2); padding:40px; box-shadow:var(--shadow), var(--glow); }
.form-card h3 { font-family:var(--font-d); font-size:28px; color:var(--cream); margin-bottom:6px; }
.form-card > p { font-size:15px; color:rgba(245,240,232,.5); margin-bottom:28px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-field { margin-bottom:18px; }
.form-field label { display:block; font-size:12px; font-weight:600; color:rgba(245,240,232,.55); margin-bottom:8px; letter-spacing:.08em; text-transform:uppercase; }
.form-field input, .form-field select, .form-field textarea { width:100%; font-family:var(--font-b); font-size:14px; color:var(--cream); background:var(--ink3); border:1px solid var(--border2); border-radius:var(--r); padding:13px 16px; transition:border-color .2s, box-shadow .2s; appearance:none; outline:none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,168,76,.08); }
.form-field input::placeholder, .form-field textarea::placeholder { color:rgba(245,240,232,.2); }
.form-field select option { background:var(--ink2); color:var(--cream); }
.form-field textarea { resize:vertical; min-height:100px; }
.form-submit { width:100%; padding:15px; font-size:15px; margin-top:6px; letter-spacing:.06em; }
.contact-item { display:flex; align-items:center; gap:16px; padding:16px 0; border-bottom:1px solid var(--border2); }
.contact-item:last-child { border:none; }
.contact-icon { width:44px; height:44px; background:var(--gold-dim); border:1px solid var(--border); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.contact-label { font-size:12px; color:rgba(245,240,232,.4); letter-spacing:.06em; text-transform:uppercase; margin-bottom:2px; }
.contact-val { font-size:15px; color:var(--cream); font-weight:500; }

/* ── TOOLS ── */
.tools-section { background:var(--ink2); }
.tools-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; }
.tool-card { background:var(--ink3); border:1px solid var(--border2); border-radius:var(--r2); padding:28px; }
.tool-card h3 { font-family:var(--font-d); font-size:22px; color:var(--cream); margin-bottom:20px; }
.tool-input { width:100%; background:var(--ink2); border:1px solid var(--border2); border-radius:var(--r); padding:11px 14px; color:var(--cream); font-family:var(--font-b); font-size:13px; margin-bottom:10px; outline:none; appearance:none; }
.tool-input:focus { border-color:var(--gold); }
.tool-input option { background:var(--ink2); }
.tool-result { background:var(--gold-dim); border:1px solid var(--border); border-radius:var(--r); padding:12px 16px; margin-top:12px; font-size:14px; color:var(--gold2); display:none; }
.tool-result.show { display:block; }

/* ── FOOTER ── */
footer { background:var(--ink2); border-top:1px solid var(--border2); padding:64px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:56px; }
.footer-brand { font-family:var(--font-d); font-size:22px; font-weight:600; color:var(--cream); margin-bottom:14px; }
footer p { font-size:14px; color:rgba(245,240,232,.4); line-height:1.75; }
.footer-col h4 { font-size:12px; font-weight:600; color:rgba(245,240,232,.4); letter-spacing:.1em; text-transform:uppercase; margin-bottom:18px; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { font-size:14px; color:rgba(245,240,232,.45); transition:color .2s; }
.footer-col ul li a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid var(--border2); padding:20px 0; display:flex; justify-content:space-between; font-size:13px; color:rgba(245,240,232,.25); flex-wrap:wrap; gap:8px; }

/* ── WA FLOAT ── */
.wa-btn { position:fixed; bottom:28px; right:26px; width:56px; height:56px; background:#25d366; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:26px; color:#fff; box-shadow:0 4px 24px rgba(37,211,102,.4); z-index:200; text-decoration:none; transition:transform .2s; }
.wa-btn:hover { transform:scale(1.1); }

/* ── TOAST ── */
.toast { position:fixed; bottom:96px; right:26px; background:var(--ink2); border:1px solid var(--border); color:var(--cream); padding:14px 20px; border-radius:var(--r); font-size:14px; box-shadow:var(--shadow); transform:translateY(20px); opacity:0; transition:all .3s; z-index:400; pointer-events:none; max-width:300px; }
.toast.show { opacity:1; transform:translateY(0); }
.toast.error { border-color:rgba(226,75,74,.4); background:rgba(226,75,74,.1); }

/* ── MODAL ── */
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.75); backdrop-filter:blur(6px); z-index:300; align-items:center; justify-content:center; padding:20px; }
.modal-overlay.open { display:flex; }
.modal { background:var(--ink2); border:1px solid var(--border); border-radius:var(--r2); padding:36px; max-width:440px; width:100%; position:relative; animation:modalIn .25s ease; box-shadow:var(--shadow), var(--glow); }
@keyframes modalIn { from{opacity:0;transform:translateY(20px) scale(.97)} to{opacity:1;transform:none} }
.modal-close { position:absolute; top:16px; right:16px; background:rgba(245,240,232,.06); border:1px solid var(--border2); border-radius:50%; width:32px; height:32px; font-size:16px; cursor:pointer; color:rgba(245,240,232,.5); display:flex; align-items:center; justify-content:center; transition:all .2s; }
.modal-close:hover { color:var(--cream); border-color:var(--border); }
.modal h3 { font-family:var(--font-d); font-size:24px; color:var(--cream); margin-bottom:6px; }
.modal > p { font-size:14px; color:rgba(245,240,232,.5); margin-bottom:22px; }
.modal-result { background:var(--gold-dim); border:1px solid var(--border); border-radius:var(--r); padding:14px 18px; margin-top:16px; font-size:15px; color:var(--gold2); display:none; }
.modal-result.show { display:block; }

/* ── BLOG PAGES ── */
.blog-hero { background:linear-gradient(to bottom, var(--ink) 0%, var(--ink2) 100%); padding:64px 0 52px; border-bottom:1px solid var(--border2); }
.blog-content { font-size:17px; line-height:1.85; color:rgba(245,240,232,.8); }
.blog-content h2 { font-family:var(--font-d); font-size:30px; color:var(--cream); margin:36px 0 14px; }
.blog-content h3 { font-family:var(--font-d); font-size:24px; color:var(--cream); margin:28px 0 12px; }
.blog-content p { margin-bottom:18px; }
.blog-content ul, .blog-content ol { padding-left:24px; margin-bottom:18px; }
.blog-content li { margin-bottom:8px; }
.blog-content strong { color:var(--cream); font-weight:600; }
.blog-content a { color:var(--gold); }
.blog-post-img { width:100%; max-height:480px; object-fit:cover; border-radius:var(--r2); margin-bottom:40px; filter:brightness(.7) saturate(.7); border:1px solid var(--border2); }

/* ── ADMIN ── */
.admin-body { background:var(--ink); font-family:var(--font-b); }
.admin-layout { display:flex; min-height:100vh; }
.admin-sidebar { width:240px; background:var(--ink2); border-right:1px solid var(--border2); display:flex; flex-direction:column; position:sticky; top:0; height:100vh; overflow-y:auto; flex-shrink:0; }
.admin-sidebar-brand { padding:24px 20px 20px; border-bottom:1px solid var(--border2); }
.admin-sidebar-brand span { font-family:var(--font-d); font-size:18px; color:var(--cream); }
.admin-sidebar-brand small { display:block; font-size:11px; color:rgba(245,240,232,.35); margin-top:2px; letter-spacing:.05em; text-transform:uppercase; }
.admin-nav { flex:1; padding:12px 10px; }
.admin-nav-btn { display:flex; align-items:center; gap:10px; width:100%; padding:10px 14px; border-radius:8px; border:none; cursor:pointer; font-size:13px; font-weight:500; font-family:var(--font-b); margin-bottom:2px; letter-spacing:.02em; transition:all .18s; }
.admin-nav-btn.active { background:var(--gold-dim); border:1px solid var(--border); color:var(--gold2); }
.admin-nav-btn:not(.active) { background:transparent; color:rgba(245,240,232,.5); }
.admin-nav-btn:not(.active):hover { background:var(--mist); color:var(--cream); }
.admin-footer-nav { padding:12px 10px; border-top:1px solid var(--border2); }
.admin-main { flex:1; overflow:auto; padding:28px 32px; }
.admin-page-title { font-family:var(--font-d); font-size:26px; font-weight:600; color:var(--cream); margin-bottom:6px; }
.admin-page-sub { font-size:13px; color:rgba(245,240,232,.4); margin-bottom:28px; }
.admin-card { background:var(--ink2); border:1px solid var(--border2); border-radius:var(--r2); padding:24px; margin-bottom:20px; }
.admin-card h3 { font-size:15px; font-weight:600; color:var(--cream); margin-bottom:16px; padding-bottom:12px; border-bottom:1px solid var(--border2); }
.admin-table { width:100%; border-collapse:collapse; }
.admin-table th { font-size:11px; font-weight:600; color:rgba(245,240,232,.35); letter-spacing:.08em; text-transform:uppercase; padding:10px 14px; border-bottom:1px solid var(--border2); text-align:left; }
.admin-table td { font-size:13px; color:rgba(245,240,232,.75); padding:13px 14px; border-bottom:1px solid rgba(245,240,232,.04); vertical-align:middle; }
.admin-table tr:last-child td { border:none; }
.admin-table tr:hover td { background:var(--mist); }
.badge { display:inline-block; font-size:11px; font-weight:600; padding:3px 10px; border-radius:100px; letter-spacing:.04em; }
.badge-pub { background:rgba(34,197,94,.12); color:#4ade80; }
.badge-draft { background:rgba(245,158,11,.12); color:#fcd34d; }
.badge-new { background:rgba(59,130,246,.12); color:#93c5fd; }
.badge-active { background:rgba(34,197,94,.12); color:#4ade80; }
.ai-field { width:100%; background:var(--ink3); border:1px solid var(--border2); border-radius:var(--r); padding:11px 14px; color:var(--cream); font-family:var(--font-b); font-size:13px; outline:none; margin-bottom:10px; }
.ai-field:focus { border-color:var(--gold); }
.ai-textarea { resize:vertical; min-height:240px; font-family:monospace; font-size:13px; line-height:1.6; }
.stat-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:14px; margin-bottom:24px; }
.stat-c { background:var(--ink2); border:1px solid var(--border2); border-radius:var(--r); padding:18px; }
.stat-c-icon { font-size:22px; margin-bottom:8px; }
.stat-c-val { font-family:var(--font-d); font-size:32px; font-weight:600; color:var(--gold2); }
.stat-c-label { font-size:12px; color:rgba(245,240,232,.35); margin-top:2px; letter-spacing:.05em; text-transform:uppercase; }

/* ── RESPONSIVE ── */
@media (max-width:960px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-card { display:none; }
  .about-inner { grid-template-columns:1fr; }
  .enquiry-inner { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .steps-grid::before { display:none; }
}
@media (max-width:640px) {
  .section { padding:56px 0; }
  .nav-links, .desktop-cta { display:none; }
  .hamburger { display:flex; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .stats-row { grid-template-columns:repeat(3,1fr); }
}

/* ── FADE UP ── */
.fu { opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.fu.in { opacity:1; transform:none; }
.fu-d1 { transition-delay:.1s; }
.fu-d2 { transition-delay:.2s; }
.fu-d3 { transition-delay:.3s; }
