@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-variable.woff2') format('woff2');
}

/* ============================================================
   SuperCounty · Loyola College Ground — Chennai
   Static site stylesheet
   ============================================================ */

:root {
  --ink: #06101f;
  --ink-2: #0b1b32;
  --ink-3: #10233f;
  --cream: #f3f7fc;
  --cream-dim: #c6d5e8;
  --muted: #90a4bf;
  --gold: #2f80ff;          /* SuperCounty blue (accent) */
  --gold-soft: #6aa7ff;
  --turf: #47a05c;
  --line: rgba(198, 213, 232, 0.14);
  --line-strong: rgba(198, 213, 232, 0.28);
  --maxw: 1240px;
  --r: 18px;
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.75);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { position: relative; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold); opacity: 0.7;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.98;
  text-transform: uppercase;
}

h2 { font-size: clamp(34px, 5.4vw, 62px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); letter-spacing: 0.02em; }

.lede { color: var(--cream-dim); font-size: clamp(16px, 1.6vw, 19px); max-width: 62ch; }
.gold { color: var(--gold); }

.sec-head { display: grid; gap: 18px; margin-bottom: 54px; max-width: 780px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 800; font-size: 14.5px; letter-spacing: 0.04em; text-transform: uppercase;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--gold); color: #ffffff; box-shadow: 0 16px 40px -18px rgba(47, 128, 255, 0.95); }
.btn-primary:hover { background: var(--gold-soft); color: #06101f; }
.btn-ghost { border-color: var(--line-strong); color: var(--cream); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-wa { background: #1faa5a; color: #04170c; box-shadow: 0 16px 40px -18px rgba(31, 170, 90, 0.9); }
.btn-wa:hover { background: #27c169; }
.btn svg { width: 17px; height: 17px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent; padding: 14px 0;
}
.site-header.stuck {
  background: rgba(6, 16, 31, 0.88); backdrop-filter: blur(14px);
  border-bottom-color: var(--line); padding: 8px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  height: 42px; padding: 0 12px; border-radius: 8px; display: grid; place-items: center;
  background: #1877f2;
  color: #ffffff; font-family: var(--font-display); font-size: 21px; letter-spacing: 0.02em;
  box-shadow: 0 10px 26px -12px rgba(24, 119, 242, 0.9);
}
.brand-txt { display: grid; line-height: 1.1; }
.brand-txt strong { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.06em; }
.brand-txt span { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream-dim); position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 12px 20px; font-size: 13px; }

.burger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: transparent; border: 1px solid var(--line-strong);
}
.burger span { display: block; width: 18px; height: 1.8px; background: var(--cream); margin: 4px auto; transition: 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 89; background: rgba(8, 15, 13, 0.97);
  backdrop-filter: blur(18px); display: grid; align-content: center; gap: 6px;
  padding: 90px 30px 40px; transform: translateY(-102%); transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display); font-size: 30px; text-transform: uppercase;
  padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--cream-dim);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 22px; }

/* ---------- Hero ---------- */
.hero { min-height: 100svh; display: grid; align-items: end; padding: 150px 0 56px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,16,31,0.86) 0%, rgba(6,16,31,0.35) 38%, rgba(6,16,31,0.92) 88%),
    linear-gradient(90deg, rgba(6,16,31,0.8) 0%, rgba(6,16,31,0.1) 65%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; opacity: 0.32; pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 3px);
}

.hero-inner { display: grid; gap: 34px; }
.hero h1 { font-size: clamp(50px, 9.4vw, 128px); line-height: 0.9; max-width: 15ch; }
.hero h1 .outline {
  -webkit-text-stroke: 1.4px var(--gold); color: transparent; display: inline-block;
}
.hero-sub { max-width: 56ch; color: var(--cream-dim); font-size: clamp(16px, 1.7vw, 19.5px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-strip {
  margin-top: 26px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line); padding-top: 26px; gap: 22px;
}
.hero-strip div span {
  display: block; font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 40px); color: var(--cream);
}
.hero-strip div small { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.scroll-hint {
  position: absolute; right: 24px; bottom: 34px; writing-mode: vertical-rl;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 12px;
}
.scroll-hint::after { content: ""; width: 1px; height: 54px; background: linear-gradient(var(--gold), transparent); }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--gold); color: #ffffff; overflow: hidden; padding: 13px 0;
  border-block: 1px solid rgba(0,0,0,0.15);
}
.ticker-track { display: flex; gap: 44px; width: max-content; animation: slide 32s linear infinite; }
.ticker-track span {
  font-family: var(--font-display); font-size: 16px; letter-spacing: 0.12em;
  display: inline-flex; align-items: center; gap: 44px; white-space: nowrap;
}
.ticker-track span::after { content: "●"; font-size: 8px; opacity: 0.55; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Generic section padding ---------- */
.pad { padding: clamp(80px, 11vw, 140px) 0; }
.alt { background: var(--ink-2); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-copy p + p { margin-top: 18px; }
.about-points { display: grid; gap: 14px; margin-top: 32px; }
.about-points li { list-style: none; display: flex; gap: 14px; align-items: flex-start; color: var(--cream-dim); }
.about-points li b { color: var(--cream); font-weight: 800; }
.tick {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; margin-top: 3px;
  background: rgba(47,128,255,0.16); border: 1px solid rgba(47,128,255,0.5);
  display: grid; place-items: center; color: var(--gold); font-size: 11px;
}

.frame { position: relative; }
.frame img { border-radius: var(--r); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }

/* Ground overview video */
.frame-video { position: relative; border-radius: var(--r); }
.video-shell { position: relative; border-radius: var(--r); }
.ground-video {
  display: block; width: 100%; aspect-ratio: 16/11; object-fit: cover;
  border-radius: var(--r); box-shadow: var(--shadow); background: #06101f;
}
.video-cap {
  margin: 30px 2px 0; color: var(--muted); font-size: 13.5px; line-height: 1.5;
  letter-spacing: 0.01em;
}
.frame-video .frame-badge { left: 14px; bottom: 14px; padding: 12px 18px; max-width: 230px; background: rgba(6,16,31,.9); }
.frame-video .frame-badge strong { font-size: 24px; }
.frame-video .frame-badge small { font-size: 10px; }
@media (max-width: 900px) {
  .frame-video .frame-badge {
    position: static; max-width: none; margin-top: 12px; display: flex;
    align-items: baseline; gap: 10px; background: var(--ink-3);
  }
  .frame-video .frame-badge small { font-size: 10.5px; }
}
.video-tag {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: rgba(6, 16, 31, 0.72); border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px); color: var(--cream);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 12px; border-radius: 999px;
}


.frame::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold);
  border-radius: var(--r); z-index: -1; opacity: 0.55;
}
.frame-badge {
  position: absolute; left: -18px; bottom: 28px; background: var(--ink-3);
  border: 1px solid var(--line-strong); border-radius: 14px; padding: 16px 20px;
  box-shadow: var(--shadow); max-width: 230px;
}
.frame-badge strong { font-family: var(--font-display); font-size: 30px; display: block; color: var(--gold); }
.frame-badge small { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Ground / split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 78px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media img { border-radius: var(--r); width: 100%; aspect-ratio: 5/4; object-fit: cover; box-shadow: var(--shadow); }
/* Taller, top-weighted frame so faces (umpire, players) are never cropped */
.split-media-tall img { aspect-ratio: 4/3.4; object-position: 50% 12%; }


.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-top: 34px; }
.spec-grid div { background: var(--ink); padding: 22px 20px; }
.spec-grid strong { display: block; font-family: var(--font-display); font-size: 21px; color: var(--cream); letter-spacing: 0.03em; }
.spec-grid small { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative; background: var(--ink-3); border: 1px solid var(--line);
  border-radius: var(--r); padding: 32px 28px 34px; overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.4s, background 0.4s;
}
.card::after {
  content: ""; position: absolute; inset: auto auto 0 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), transparent); transition: width 0.55s var(--ease);
}
.card:hover { transform: translateY(-7px); border-color: var(--line-strong); }
.card:hover::after { width: 100%; }
.card .ico {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(47,128,255, 0.12); border: 1px solid rgba(47,128,255, 0.32);
  color: var(--gold); margin-bottom: 22px;
}
.card .ico svg { width: 23px; height: 23px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--cream-dim); font-size: 15.5px; }
.card .num {
  position: absolute; top: 16px; right: 22px; font-family: var(--font-display);
  font-size: 42px; color: rgba(198,213,232,0.06);
}

/* ---------- Slots ---------- */
.slot-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.slot-card {
  border: 1px solid var(--line); border-radius: var(--r); background: var(--ink-3);
  padding: 30px 28px 28px; position: relative; overflow: hidden;
}
.slot-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(47,128,255,0));
}
.slot-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.slot-head h3 { font-size: clamp(26px, 3.2vw, 34px); }
.slot-head em {
  font-style: normal; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--turf); border: 1px solid rgba(71,160,92,0.4); border-radius: 999px; padding: 5px 11px;
  background: rgba(71,160,92,0.1);
}
.slot-list { display: grid; gap: 10px; list-style: none; }
.slot-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px 18px; border-radius: 13px; border: 1px solid var(--line);
  background: rgba(198,213,232,0.02); transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.slot-list li:hover { border-color: rgba(47,128,255,0.5); background: rgba(47,128,255,0.05); transform: translateX(5px); }
.slot-time { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.04em; }
.slot-tag { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 800; }
.slot-note {
  margin-top: 24px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  justify-content: space-between; border: 1px dashed var(--line-strong); border-radius: var(--r);
  padding: 22px 26px; background: rgba(47,128,255,0.05);
}
.slot-note p { color: var(--cream-dim); font-size: 15.5px; margin: 0; }

/* ---------- Corporate ---------- */
.corp {
  position: relative; border-radius: 26px; overflow: hidden; border: 1px solid var(--line);
}
.corp-bg { position: absolute; inset: 0; }
.corp-bg img { width: 100%; height: 100%; object-fit: cover; }
.corp-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6,16,31,0.96) 30%, rgba(6,16,31,0.6) 100%); }
.corp-inner { position: relative; padding: clamp(40px, 6vw, 76px); max-width: 760px; }
.corp-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 26px; margin: 30px 0 34px; list-style: none; }
.corp-list li { display: flex; gap: 11px; align-items: center; color: var(--cream-dim); font-size: 15.5px; }
.corp-list li::before { content: "▹"; color: var(--gold); }

/* ---------- Why / stats band ---------- */
.band { border-block: 1px solid var(--line); }
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.band-grid div { padding: 40px 26px; border-left: 1px solid var(--line); }
.band-grid div:first-child { border-left: 0; }
.band-grid strong { display: block; font-family: var(--font-display); font-size: clamp(34px, 4.4vw, 54px); color: var(--gold); }
.band-grid small { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gal {
  position: relative; overflow: hidden; border-radius: 16px; border: 1px solid var(--line);
  cursor: zoom-in;
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease), filter 0.5s; filter: saturate(0.92); }
.gal:hover img { transform: scale(1.07); filter: saturate(1.1); }
.gal figcaption {
  position: absolute; inset: auto 0 0 0; padding: 34px 18px 15px; font-size: 12.5px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  background: linear-gradient(transparent, rgba(6,12,10,0.9)); color: var(--cream);
}
.g-a { grid-column: span 2; grid-row: span 2; }
.g-b { grid-column: span 2; }
.g-c { grid-column: span 1; grid-row: span 1; }
.g-d { grid-column: span 1; }
/* Portrait / panoramic frames: show the whole photo (no cut-off heads or trophies) */
.g-p { grid-column: span 1; grid-row: span 2; }
.gal-fit { background:
  radial-gradient(120% 90% at 50% 0%, rgba(47, 128, 255, 0.16), transparent 70%),
  linear-gradient(180deg, #0b1a30, #060f1c); }
.gal-fit img { object-fit: contain; padding: 10px 10px 30px; }
.gal-fit:hover img { transform: scale(1.03); }


.lightbox {
  position: fixed; inset: 0; z-index: 120; background: rgba(5, 10, 8, 0.95);
  display: grid; place-items: center; padding: 30px; opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; border-radius: 14px; object-fit: contain; }
.lightbox button {
  position: absolute; top: 24px; right: 26px; width: 46px; height: 46px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line-strong); color: var(--cream); font-size: 20px;
}

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  border: 1px solid var(--line); border-radius: var(--r); padding: 32px 28px;
  background: linear-gradient(180deg, rgba(198,213,232,0.035), transparent);
  display: grid; gap: 20px; align-content: start;
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; }
.quote p { color: var(--cream); font-size: 16.5px; line-height: 1.7; }
.who { display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--line); padding-top: 18px; }
.who .av {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(47,128,255,0.14); border: 1px solid rgba(47,128,255,0.4);
  font-family: var(--font-display); color: var(--gold); font-size: 17px;
}
.who b { display: block; font-size: 15px; }
.who small { color: var(--muted); font-size: 12.5px; }

/* ---------- FAQ ---------- */
.faq { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line); border-radius: 14px; background: var(--ink-3);
  padding: 0 24px; transition: border-color 0.3s, background 0.3s;
}
.faq details[open] { border-color: rgba(47,128,255,0.42); background: rgba(47,128,255,0.045); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 0; font-weight: 800; font-size: 17px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 24px; line-height: 1; transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--cream-dim); padding-bottom: 24px; font-size: 15.8px; max-width: 78ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); }
.contact-cards { display: grid; gap: 14px; margin-top: 34px; }
.ccard {
  display: flex; gap: 18px; align-items: center; border: 1px solid var(--line);
  border-radius: 15px; padding: 20px 22px; background: var(--ink-3);
  transition: border-color 0.3s, transform 0.35s var(--ease);
}
.ccard:hover { border-color: rgba(47,128,255,0.5); transform: translateX(5px); }
.ccard .ico { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 13px; display: grid; place-items: center; background: rgba(47,128,255,0.12); border: 1px solid rgba(47,128,255,0.3); color: var(--gold); }
.ccard small { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.ccard b { font-size: 17px; font-weight: 800; }

.enquiry {
  border: 1px solid var(--line); border-radius: 22px; padding: clamp(28px, 4vw, 40px);
  background: var(--ink-3); box-shadow: var(--shadow);
}
.enquiry h3 { margin-bottom: 8px; }
.enquiry > p { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }
.field { display: grid; gap: 7px; margin-bottom: 15px; }
.field label { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; background: rgba(198,213,232,0.04);
  border: 1px solid var(--line); color: var(--cream); font: inherit; font-size: 15.5px;
  transition: border-color 0.3s, background 0.3s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(47,128,255,0.06); }
.field select option { background: var(--ink-2); color: var(--cream); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.enquiry .btn { width: 100%; margin-top: 8px; }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 14px; }

.map-embed { margin-top: 22px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; filter: grayscale(0.35) contrast(1.05); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; display: grid; gap: 24px; justify-items: center; }
.cta-band h2 { max-width: 18ch; }

/* ---------- Footer ---------- */
footer { background: #040b16; border-top: 1px solid var(--line); padding: 66px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-grid h4 { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.foot-grid ul { list-style: none; display: grid; gap: 10px; }
.foot-grid a, .foot-grid p { color: var(--muted); font-size: 14.7px; }
.foot-grid a:hover { color: var(--gold); }
.foot-bot {
  margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 20px; border-radius: 999px;
  background: #1faa5a; color: #04170c; font-weight: 800; font-size: 14.5px;
  box-shadow: 0 18px 44px -14px rgba(31, 170, 90, 0.75);
  transition: transform 0.35s var(--ease);
}
.fab:hover { transform: translateY(-4px) scale(1.03); }
.fab svg { width: 20px; height: 20px; }

/* ---------- Reveal animation ---------- */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cards, .quotes { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-auto-rows: 170px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .burger { display: block; }
  .about-grid, .split, .contact-grid, .slot-wrap { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .band-grid { grid-template-columns: repeat(2, 1fr); }
  .band-grid div:nth-child(3) { border-left: 0; }
  .frame::before { display: none; }
  .frame-badge { left: 14px; }
  .scroll-hint { display: none; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .cards, .quotes { grid-template-columns: 1fr; }
  .corp-list, .row-2, .spec-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-a { grid-column: span 2; grid-row: span 2; }
  .g-b { grid-column: span 2; }
  .g-p { grid-column: span 1; grid-row: span 2; }

  .fab span { display: none; }
  .fab { padding: 15px; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* ---------- Mobile-first refinements (Chennai traffic is ~90% mobile) ---------- */
.mobile-bar { display: none; }

@media (max-width: 900px) {
  html { scroll-padding-top: 74px; }
  /* Persistent thumb-reach action bar: call + WhatsApp */
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(6, 16, 31, 0.94); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
  }
  .mobile-bar .btn { width: 100%; padding: 15px 12px; font-size: 14px; min-height: 52px; }
  body { padding-bottom: 82px; }
  .fab { display: none; }

  /* Bigger touch targets */
  .nav-cta .btn, .mobile-menu a { min-height: 48px; }
  .mobile-menu a { display: flex; align-items: center; }
  .slot .btn, .hero-actions .btn, .enquiry .btn { min-height: 52px; }
  .field input, .field select, .field textarea { font-size: 16px; padding: 15px 16px; } /* prevents iOS zoom */

  /* Tighter vertical rhythm so sections don't feel endless on a phone */
  .pad { padding-top: 62px; padding-bottom: 62px; }
  .sec-head { margin-bottom: 34px; gap: 12px; }
  .wrap { padding: 0 18px; }
}

@media (max-width: 680px) {
  h1 { line-height: 1.02; }
  .hero-inner { padding-top: 96px; padding-bottom: 34px; }
  .hero-sub { font-size: 16.5px; }
  .hero-strip { gap: 14px; }
  .hero-strip small { font-size: 11px; }
  .eyebrow { font-size: 11px; letter-spacing: 0.22em; }

  /* Gallery becomes a swipeable rail — far better than a cramped grid */
  .gallery {
    display: flex; overflow-x: auto; gap: 12px; grid-auto-rows: initial;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding-bottom: 10px; margin-inline: -18px; padding-inline: 18px;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery .gal {
    flex: 0 0 78%; height: 300px; scroll-snap-align: center;
    grid-column: auto; grid-row: auto;
  }
  .gallery .gal-fit { flex: 0 0 62%; height: 300px; }
  .gal-fit img { padding: 8px 8px 28px; }

  .ticker span { font-size: 12px; }
  .ccard { padding: 16px 18px; }
  .ccard b { font-size: 16px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot-bot { flex-direction: column; text-align: left; }
}

@media (max-width: 680px) {
  /* Compact, non-overflowing mobile header */
  .nav { gap: 12px; }
  .brand-txt span { display: none; }
  .brand-txt strong { font-size: 18px; }
  .brand-mark { height: 36px; padding: 0 10px; font-size: 18px; }
  .nav-cta { gap: 10px; }
  .nav-cta .btn-primary { display: none; }
  .site-header { padding: 10px 0; }
}

/* ---- Hero booking tags ---- */
.hero-tags{
  list-style:none;margin:18px 0 0;padding:0;
  display:flex;flex-wrap:wrap;gap:8px;
}
.hero-tags li{
  font-size:12.5px;letter-spacing:.04em;font-weight:600;
  padding:8px 12px;border-radius:999px;
  color:#eaf2ff;background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(6px);
}
@media (max-width:640px){
  .hero-tags{gap:6px;margin-top:14px}
  .hero-tags li{font-size:11.5px;padding:7px 10px}
}

/* ---------- Form label helpers ---------- */
.field label .opt {
  font-weight: 600; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-left: 6px;
}

/* ---------- Narrow-phone safety (no horizontal scroll) ---------- */
html, body { overflow-x: hidden; }
.contact-grid > *, .about-grid > *, .split > * { min-width: 0; }
.ccard { min-width: 0; }
.ccard div { min-width: 0; }
.ccard b { overflow-wrap: anywhere; }
.enquiry .btn { white-space: normal; line-height: 1.25; text-align: center; }
@media (max-width: 420px) {
  .enquiry .btn { font-size: 13.5px; letter-spacing: .04em; padding: 15px 12px; }
}

/* ---- Larger, edge-to-edge ground video on phones ---- */
@media (max-width: 900px) {
  .frame-video { margin-inline: -18px; }
  .ground-video { border-radius: 0; aspect-ratio: 16/11; }
  .frame-video .frame-badge { margin-left: 18px; margin-right: 18px; }
  .video-cap { margin: 12px 18px 0; font-size: 13px; }
}
@media (min-width: 901px) {
  .ground-video { aspect-ratio: 16/11; }
}
