/* Vriddhi Buildcon LLP: design system. One CSS file, custom properties, no framework. */

/* ---------- fonts (self-hosted, Fontsource subset) ---------- */
@font-face { font-family:"Inter"; font-style:normal; font-weight:400; font-display:swap; src:url("../fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:500; font-display:swap; src:url("../fonts/inter-500.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:600; font-display:swap; src:url("../fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:700; font-display:swap; src:url("../fonts/inter-700.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:800; font-display:swap; src:url("../fonts/inter-800.woff2") format("woff2"); }
@font-face { font-family:"Fraunces"; font-style:normal; font-weight:400; font-display:swap; src:url("../fonts/fraunces-400.woff2") format("woff2"); }
@font-face { font-family:"Fraunces"; font-style:normal; font-weight:500; font-display:swap; src:url("../fonts/fraunces-500.woff2") format("woff2"); }
@font-face { font-family:"Fraunces"; font-style:normal; font-weight:600; font-display:swap; src:url("../fonts/fraunces-600.woff2") format("woff2"); }
@font-face { font-family:"Fraunces"; font-style:normal; font-weight:700; font-display:swap; src:url("../fonts/fraunces-700.woff2") format("woff2"); }
@font-face { font-family:"Fraunces"; font-style:normal; font-weight:900; font-display:swap; src:url("../fonts/fraunces-900.woff2") format("woff2"); }

/* NOTE: this file is authored to be included with a root-relative-to-css path of "../fonts/…";
   Home includes it as css/main.css so the browser resolves url() relative to css/, giving ../fonts/
   correctly from BOTH the site root and any depth, since font urls are resolved relative to the CSS
   file itself, not the HTML page. */

:root {
  --brand-blue: #0b5fce;
  --brand-blue-dark: #0a4aa3;
  --brand-cyan: #22b8e8;
  --brand-gold: #c8922c;
  --brand-gold-dark: #a8761c;
  --ink: #171e2c;
  --ink-soft: #414c60;
  --slate: #5c6779;
  --line: #e2e6ec;
  --surface: #ffffff;
  --surface-alt: #f4f6fa;
  --cream: #faf8f3;
  --dark-bg: #131a27;
  --dark-bg-2: #1a2334;
  --on-dark: #eef2f8;
  --on-dark-muted: #a7b2c4;
  --brand-on-dark: #57c8ef;
  --gold-on-dark: #e3b45c;
  --navy-muted: #9fb0c9;

  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --maxw: 1180px;
  --header-h: 76px;
  --shadow: 0 18px 44px rgba(20,30,50,.12);
  --shadow-sm: 0 6px 18px rgba(20,30,50,.10);

  --hero-bg: var(--dark-bg);
  --cx-accent: var(--brand-on-dark);
  --cx-bg: var(--hero-bg);
  --lb-accent: var(--gold-on-dark);
  --lb-muted: var(--navy-muted);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body { margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--surface); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; margin: 0 0 .5em; color: var(--ink); letter-spacing: -.01em; }
p { margin: 0 0 1em; color: var(--ink-soft); }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--brand-cyan); outline-offset: 2px; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; opacity: 0;
}
.skip-link { position: absolute; left: 1rem; top: -60px; z-index: 2000; background: var(--brand-blue); color: #fff; padding: .8rem 1.2rem; border-radius: var(--radius-sm); transition: top .2s var(--ease); }
.skip-link:focus { top: 1rem; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--alt { background: var(--surface-alt); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--dark-bg); color: var(--on-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p:not(.eyebrow) { color: var(--on-dark-muted); }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow { display: inline-flex; align-items: center; gap: .6em; font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: .9rem; }
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--brand-gold); clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%); }
.section--dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--brand-on-dark); }
.cta-band .eyebrow { color: #fff; }

h1 { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); }
.lead { font-size: clamp(1.05rem, .95rem + .4vw, 1.2rem); color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { display: inline-flex; align-items: center; gap: .5em; padding: .85rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: .96rem; border: 2px solid transparent; transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--brand-gold); color: #201406; }
.button--primary:hover { background: var(--brand-gold-dark); }
.button--secondary { background: transparent; border-color: currentColor; color: var(--brand-blue); }
.button--secondary:hover { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }
.section--dark .button--secondary, .hero .button--secondary, .page-hero .button--secondary, .cta-band .button--secondary, .hero-cx .button--secondary, .notfound .button--secondary { color: #fff; }
.section--dark .button--secondary:hover, .hero .button--secondary:hover, .page-hero .button--secondary:hover, .cta-band .button--secondary:hover, .hero-cx .button--secondary:hover, .notfound .button--secondary:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }
.button--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.button--sm { padding: .6rem 1.1rem; font-size: .88rem; }
.button svg { width: 1.1em; height: 1.1em; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 500; background: rgba(255,255,255,.92); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .9rem .4rem .5rem; gap: .5rem; box-shadow: var(--shadow-sm); }
.brand img { height: 38px; width: auto; }
.site-header .brand { background: none; border: 0; border-radius: 0; padding: 0; box-shadow: none; }
.site-header .brand img { height: 58px; }
.nav-primary { display: flex; align-items: center; }
.nav-primary > ul { display: flex; align-items: center; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }.nav-primary a { font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); padding: .3rem .05rem; border-bottom: 2px solid transparent; transition: color .16s, border-color .16s; }
.nav-primary a:hover, .nav-primary a[aria-current="page"] { color: var(--brand-blue); border-color: var(--brand-gold); }
.has-submenu { position: relative; }
.submenu { display: none; list-style: none; margin: 0; padding: .5rem; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 15rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); z-index: 700; }
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu { display: block; }
.submenu a { display: block; padding: .55rem .7rem; border-radius: 6px; font-size: .75rem; letter-spacing: .05em; white-space: nowrap; }
.submenu a:hover, .submenu a:focus-visible { background: var(--surface-alt, rgba(11,95,206,.08)); border-color: transparent; }
.header-actions { display: flex; align-items: center; gap: .7rem; }
.header-actions .tel-link { display: none; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  /* no-JS fallback: nav wraps as a plain in-flow list below the brand row, never overflows */
  .site-header .wrap { flex-wrap: wrap; }
  .nav-primary { flex-basis: 100%; order: 3; padding-block: .6rem 1rem; width: 100%; }
  .nav-primary > ul { flex-wrap: wrap; gap: .4rem 1.4rem; width: 100%; }
  .nav-primary a { padding: .3rem .1rem; }
  /* JS enhancement: turn it into a slide-in overlay, hidden until toggled */
  .js .nav-primary { position: fixed; top: var(--header-h); left: 0; right: 0; align-items: flex-start; height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h)); flex-basis: auto; z-index: 600; background: var(--surface); padding: 1.4rem clamp(1.1rem,4vw,2rem); overflow-y: auto; transform: translateX(100%); transition: transform .24s var(--ease); }
  .js .nav-primary > ul { flex-direction: column; align-items: flex-start; flex-wrap: nowrap; gap: 0; }
  .js .nav-primary a { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .submenu { display: block; position: static; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--line); margin: 0 0 .4rem 1rem; padding: 0 0 0 .8rem; min-width: 0; }
  .submenu a { padding: .55rem .1rem; border-bottom: 0; }
  .js .submenu a { border-bottom: 0; width: auto; }
  .js .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--surface); }
  .js .nav-toggle svg { width: 22px; height: 22px; }
  html.nav-open .nav-primary { transform: translateX(0); }
  html.nav-open { overflow: hidden; }
}
@media (max-width: 480px) {
  /* keep brand + actions on one row on small phones so the header height matches --header-h */
  .brand img { height: 28px; }
  .brand { padding: .35rem .7rem .35rem .45rem; }
  .header-actions { gap: .5rem; }
  .header-actions .button { padding: .5rem .85rem; font-size: .85rem; }
}
@media (min-width: 640px) { .header-actions .tel-link { display: inline-flex; } }

/* ---------- hero (page-hero, non-home inner pages) ---------- */
.page-hero { background: linear-gradient(155deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%); color: #fff; padding-block: clamp(3.4rem, 9vw, 6rem); }
.page-hero h1 { color: #fff; }
.page-hero p:not(.eyebrow) { color: var(--on-dark-muted); max-width: 62ch; }
.page-hero--photo { position: relative; background-size: cover; background-position: center; isolation: isolate; }
.page-hero--photo::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(155deg, rgba(19,26,39,.92) 0%, rgba(26,35,52,.86) 55%, rgba(19,26,39,.72) 100%); }
.proj-feature-image img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .86rem; color: var(--on-dark-muted); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--on-dark-muted); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-hidden] { opacity: .6; }

/* ---------- proof strip ---------- */
.proof-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 1.4rem; padding-block: clamp(1.8rem,4vw,2.6rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface-alt); }
.proof-item { text-align: center; }
.proof-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem,1.3rem+1.6vw,2.4rem); color: var(--brand-blue); }
.proof-label { font-size: .88rem; color: var(--slate); font-weight: 600; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); }
.grid--split { grid-template-columns: 1.1fr .9fr; align-items: start; }
@media (max-width: 720px) { .grid--split { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm); }
.card h3 { margin-bottom: .5rem; }
.card p:last-child { margin-bottom: 0; }
.ico { width: 42px; height: 42px; padding: .5rem; border-radius: var(--radius-sm); background: rgba(11,95,206,.1); color: var(--brand-blue); margin-bottom: 1rem; }
.section--dark .ico, .cta-band .ico { background: rgba(255,255,255,.12); color: var(--brand-on-dark); }

/* ---------- project cards ---------- */
.proj-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.proj-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.proj-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--dark-bg); }
.proj-card__media img { width: 100%; height: 100%; object-fit: cover; }
.proj-card__tag { position: absolute; top: .8rem; left: .8rem; background: var(--brand-gold); color: #201406; font-weight: 700; font-size: .75rem; letter-spacing: .04em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; }
.proj-card__tag--upcoming { background: var(--brand-cyan); color: #071b26; }
.proj-card__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.proj-card__loc { font-size: .86rem; color: var(--slate); font-weight: 600; }
.proj-card__body p { flex: 1; font-size: .95rem; }
.proj-card__link { font-weight: 700; color: var(--brand-blue); display: inline-flex; align-items: center; gap: .4em; }
.proj-card__link svg { width: 1em; height: 1em; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: 1rem; }
.gallery figure { margin: 0; position: relative; border-radius: var(--radius-sm); overflow: hidden; background: var(--dark-bg); aspect-ratio: 4/3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--ease); }
.gallery a:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: .6rem .8rem; font-size: .82rem; color: #fff; background: rgba(10,14,24,.82); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: .8rem; max-width: 78ch; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 1.1rem 1.3rem; font-weight: 700; font-family: var(--font-head); display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--brand-blue); flex: none; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 1.3rem 1.2rem; margin: 0; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.4rem; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.contact-block + .contact-block { margin-top: 1.2rem; }
.contact-line { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; }
.contact-line:last-child { margin-bottom: 0; }
.contact-line svg { width: 22px; height: 22px; flex: none; color: var(--brand-blue); margin-top: 2px; }
.starters { display: flex; flex-direction: column; gap: .8rem; }
.starter { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-alt); font-weight: 700; }
.starter:hover { border-color: var(--brand-blue); }
.starter span { font-weight: 400; color: var(--slate); font-size: .85rem; }
.note { font-size: .86rem; color: var(--slate); }

/* ---------- credentials ---------- */
.tbc { border: 1.5px dashed var(--brand-gold-dark); border-radius: var(--radius); padding: 1.4rem 1.6rem; background: #fbf4e6; }
.tbc h3 { margin-bottom: .4rem; }
.tbc p { margin-bottom: 0; }

/* ---------- standards strip (footer) ---------- */
.standards { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: center; padding-block: 1rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; color: var(--on-dark-muted); }
.standards li { display: flex; align-items: center; gap: .4em; }
.standards svg { width: 1em; height: 1em; color: var(--brand-on-dark); }

/* ---------- cta band ---------- */
.cta-band { background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%); color: #fff; padding-block: clamp(2.6rem,6vw,3.6rem); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p:not(.eyebrow) { color: rgba(255,255,255,.86); max-width: 56ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--dark-bg); color: var(--on-dark); }
.footer-top { padding-block: clamp(2.6rem,6vw,3.6rem); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand .brand img { height: 78px; }
.footer-top h4 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: .9rem; }
.footer-top ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-top a { color: var(--on-dark-muted); font-size: .92rem; }
.footer-top a:hover { color: #fff; }
.footer-top p { color: var(--on-dark-muted); font-size: .92rem; }
.social-row { display: flex; gap: .7rem; margin-top: 1rem; }
.social-row a { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: rgba(255,255,255,.08); }
.social-row a:hover { background: var(--brand-blue); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.2rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .82rem; color: var(--on-dark-muted); }
.footer-bottom p { color: var(--on-dark-muted); }

/* ---------- floating action button ---------- */
.fab { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 400; display: flex; flex-direction: column; gap: .6rem; }
.fab a { width: 54px; height: 54px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow); color: #fff; }
.fab a svg { width: 24px; height: 24px; }
.fab .fab-wa { background: #25d366; }
.fab .fab-tel { background: var(--brand-blue); }

/* ---------- 404 ---------- */
.notfound { min-height: 70vh; display: flex; align-items: center; background: linear-gradient(155deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%); color: #fff; text-align: center; }
.notfound .wrap { padding-block: 4rem; }
.notfound h1 { color: #fff; font-size: clamp(3rem,2rem+4vw,6rem); }
.notfound p:not(.eyebrow) { color: var(--on-dark-muted); max-width: 50ch; margin-inline: auto 1.6rem; }

/* ---------- spec table ---------- */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); font-size: .95rem; }
.spec-table th { width: 42%; color: var(--slate); font-weight: 600; }

/* ---------- project features / specs ---------- */
.check-list { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 1.6rem; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .5em; width: .6rem; height: .6rem; border-radius: 999px; background: var(--brand-gold); }
.spec-groups h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.spec-groups ul { padding-left: 1.2rem; margin-bottom: 1.6rem; }
.spec-groups li { margin-bottom: .3rem; }
.amenity-list { display: grid; gap: .9rem 1.2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); list-style: none; padding: 0; }
.amenity-list li { display: flex; align-items: center; gap: .6em; font-weight: 600; }
.amenity-list svg { width: 1.2em; height: 1.2em; flex: none; color: var(--brand-gold); }
.check-list--icons { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.check-list--icons li { padding-left: 0; display: flex; align-items: flex-start; gap: .7em; }
.check-list--icons li::before { display: none; }
.check-list--icons svg { width: 1.4em; height: 1.4em; flex: none; color: var(--brand-gold); margin-top: .1em; }
.icon-fill { fill: currentColor; }
.icon-stroke { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.spec-groups h3 { display: flex; align-items: center; gap: .5em; }
.spec-groups h3 svg { width: 1.3em; height: 1.3em; flex: none; color: var(--brand-gold); }

/* ---------- amenity photo cards ---------- */
.amenity-photos { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 1rem; }
.amenity-photo { position: relative; margin: 0; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; background: var(--dark-bg); box-shadow: var(--shadow-sm); }
.amenity-photo img { width: 100%; height: 100%; object-fit: cover; }
.amenity-photo .amenity-icon { position: absolute; top: .7rem; left: .7rem; width: 38px; height: 38px; border-radius: 50%; background: var(--brand-gold); display: flex; align-items: center; justify-content: center; }
.amenity-photo .amenity-icon svg { width: 20px; height: 20px; color: #201406; }
.amenity-photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: .6rem .8rem; font-size: .85rem; font-weight: 700; color: #fff; background: rgba(10,14,24,.82); }

/* ---------- video embed ---------- */
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--dark-bg); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- signature chevron divider ---------- */
.chevron-divider { display: flex; justify-content: center; padding-block: .4rem; }
.chevron-divider svg { width: 34px; height: 20px; color: var(--brand-gold); }

/* =========================================================
   Hero carousel (from tools/hero-carousel.css), wired to brand
   ========================================================= */
.hero-cx { position: relative; height: calc(100svh - var(--header-h, 76px)); min-height: 480px; max-height: 860px; background: var(--cx-bg); overflow: hidden; isolation: isolate; }
.cx-radio { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; white-space: nowrap; }
.cx-track { position: absolute; inset: 0; z-index: 0; }
.cx-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .9s ease; }
.cx-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cx-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,14,24,.28) 0%, rgba(9,14,24,.38) 52%, rgba(7,11,20,.68) 100%); }
.cx-slide.has-cap .cx-scrim { background: linear-gradient(180deg, rgba(9,14,24,.5) 0%, rgba(9,14,24,.6) 48%, rgba(7,11,20,.86) 100%); }
#cx-1:checked~.cx-track #cxs-1,#cx-2:checked~.cx-track #cxs-2,#cx-3:checked~.cx-track #cxs-3,#cx-4:checked~.cx-track #cxs-4,#cx-5:checked~.cx-track #cxs-5,#cx-6:checked~.cx-track #cxs-6,#cx-7:checked~.cx-track #cxs-7,#cx-8:checked~.cx-track #cxs-8 { opacity: 1; visibility: visible; }
@media (prefers-reduced-motion: no-preference) {
  .cx-slide img { transform: scale(1.05); transition: transform 8s ease, opacity .9s ease; }
  #cx-1:checked~.cx-track #cxs-1 img,#cx-2:checked~.cx-track #cxs-2 img,#cx-3:checked~.cx-track #cxs-3 img,#cx-4:checked~.cx-track #cxs-4 img,#cx-5:checked~.cx-track #cxs-5 img,#cx-6:checked~.cx-track #cxs-6 img,#cx-7:checked~.cx-track #cxs-7 img,#cx-8:checked~.cx-track #cxs-8 img { transform: scale(1); }
  .cx-cap-inner { opacity: 0; transform: translateY(20px); transition: opacity .7s ease .2s, transform .7s ease .2s; }
  #cx-1:checked~.cx-track #cxs-1 .cx-cap-inner,#cx-2:checked~.cx-track #cxs-2 .cx-cap-inner,#cx-3:checked~.cx-track #cxs-3 .cx-cap-inner,#cx-4:checked~.cx-track #cxs-4 .cx-cap-inner,#cx-5:checked~.cx-track #cxs-5 .cx-cap-inner,#cx-6:checked~.cx-track #cxs-6 .cx-cap-inner,#cx-7:checked~.cx-track #cxs-7 .cx-cap-inner,#cx-8:checked~.cx-track #cxs-8 .cx-cap-inner { opacity: 1; transform: none; }
}
.cx-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(2rem,6vw,4rem) clamp(1rem,4vw,2rem) clamp(3.4rem,8vw,5rem); }
.cx-cap-inner { max-width: var(--maxw); margin-inline: auto; color: #fff; }
.cx-eyebrow { display: inline-flex; align-items: center; gap: .6em; font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: .9rem; }
.cx-eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--cx-accent); border-radius: 2px; }
.cx-title { font-family: var(--font-head); font-weight: 700; color: #fff; line-height: 1.02; font-size: clamp(2.4rem, 1.6rem + 4vw, 4.6rem); letter-spacing: -.015em; text-shadow: 0 2px 24px rgba(2,12,8,.45); }
.cx-title strong { display: block; font-weight: 700; }
.cx-title strong::after { content: ""; display: block; width: 84px; height: 5px; border-radius: 3px; background: var(--cx-accent); margin-top: 1.1rem; }
.cx-lead { margin-top: 1rem; max-width: 48ch; font-size: clamp(1rem, 1.6vw, 1.18rem); color: rgba(255,255,255,.94); }
.cx-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.cx-dots { position: absolute; left: 0; right: 0; bottom: clamp(1.1rem,3vw,1.6rem); z-index: 3; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; padding-inline: clamp(1rem,4vw,2rem); }
.cx-dot { width: 26px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.45); cursor: pointer; transition: background .2s, width .2s; }
.cx-dot:hover { background: rgba(255,255,255,.8); }
#cx-1:checked~.cx-dots [for=cx-1],#cx-2:checked~.cx-dots [for=cx-2],#cx-3:checked~.cx-dots [for=cx-3],#cx-4:checked~.cx-dots [for=cx-4] { background: var(--cx-accent); width: 40px; }
.cx-radio:focus-visible~.cx-dots { outline: 2px solid #fff; outline-offset: 6px; border-radius: 8px; }
.cx-arrow { display: none; }
.js .cx-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: rgba(6,12,9,.45); border: 1px solid rgba(255,255,255,.4); color: #fff; cursor: pointer; transition: background .18s; }
.js .cx-arrow:hover { background: rgba(6,12,9,.74); }
.js .cx-arrow:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.js .cx-arrow svg { width: 24px; height: 24px; }
.cx-prev { left: clamp(.6rem,2vw,1.4rem); } .cx-next { right: clamp(.6rem,2vw,1.4rem); }
@media (max-width: 640px) {
  .js .cx-arrow { display: none; }
  .cx-title strong::after { height: 4px; margin-top: .8rem; }
  .cx-dot { width: 18px; }
  #cx-1:checked~.cx-dots [for=cx-1],#cx-2:checked~.cx-dots [for=cx-2],#cx-3:checked~.cx-dots [for=cx-3],#cx-4:checked~.cx-dots [for=cx-4] { width: 26px; }
}

/* =========================================================
   Gallery lightbox carousel (from tools/gallery-carousel.css)
   ========================================================= */
.js .gallery a { cursor: zoom-in; }
.lb-lock { overflow: hidden; }
.lb { position: fixed; inset: 0; z-index: 1000; display: flex; flex-direction: column; gap: .5rem; background: rgba(15,19,33,.97); padding: clamp(.6rem,.3rem + 1vw,1.1rem); }
.lb[hidden] { display: none; }
.lb:focus { outline: none; }
.lb-toolbar { flex: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.lb-counter { font-size: .95rem; font-weight: 600; color: var(--lb-muted); font-variant-numeric: tabular-nums; padding-left: .3rem; }
.lb-tools { display: flex; align-items: center; gap: .4rem; }
.lb-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: #fff; cursor: pointer; transition: background-color .18s var(--ease), border-color .18s var(--ease); }
.lb-btn:hover { background: rgba(255,255,255,.14); border-color: var(--lb-accent); }
.lb-btn:focus-visible { outline: 3px solid var(--lb-accent); outline-offset: 2px; }
.lb-btn svg { width: 20px; height: 20px; }
.lb-main { position: relative; flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; }
.lb-stage { margin: 0; display: flex; flex-direction: column; align-items: center; gap: .7rem; max-width: 100%; }
.lb-imgwrap { display: inline-block; max-width: 100%; overflow: hidden; border-radius: var(--radius); line-height: 0; background: #0f1321; box-shadow: 0 18px 50px rgba(0,0,0,.55); }
.lb-img { display: block; max-width: 100%; max-height: calc(100vh - 210px); max-height: calc(100dvh - 210px); width: auto; height: auto; object-fit: contain; }
.lb-caption { color: var(--lb-muted); font-size: .95rem; text-align: center; max-width: 62ch; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; padding: 0; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: rgba(18,21,26,.62); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background-color .18s var(--ease), border-color .18s var(--ease); }
.lb-nav:hover { background: rgba(18,21,26,.95); border-color: var(--lb-accent); }
.lb-nav:focus-visible { outline: 3px solid var(--lb-accent); outline-offset: 2px; }
.lb-nav svg { width: 26px; height: 26px; }
.lb-prev { left: clamp(.3rem,1vw,1.1rem); }
.lb-next { right: clamp(.3rem,1vw,1.1rem); }
.lb-thumbs { flex: none; display: flex; gap: .5rem; overflow-x: auto; overflow-y: hidden; padding: .3rem .2rem; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.3) transparent; justify-content: center; }
.lb-thumbs::-webkit-scrollbar { height: 8px; }
.lb-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.25); border-radius: 8px; }
.lb-thumb { flex: none; width: 88px; height: 62px; padding: 0; border: 2px solid transparent; border-radius: 8px; overflow: hidden; background: #0f1321; cursor: pointer; opacity: .5; transition: opacity .18s var(--ease), border-color .18s var(--ease); }
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lb-thumb:hover { opacity: .85; }
.lb-thumb[aria-current="true"] { opacity: 1; border-color: var(--lb-accent); }
.lb-thumb:focus-visible { outline: 3px solid var(--lb-accent); outline-offset: 2px; }
@media (prefers-reduced-motion: no-preference) { .lb-img.is-zooming { animation: lb-kenburns 7s var(--ease) both; } }
@keyframes lb-kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
@media (max-width: 600px) {
  .lb-img { max-height: calc(100vh - 184px); max-height: calc(100dvh - 184px); }
  .lb-nav { width: 44px; height: 44px; } .lb-nav svg { width: 22px; height: 22px; }
  .lb-thumb { width: 66px; height: 48px; }
  .lb-thumbs { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) { .lb-btn, .lb-nav, .lb-thumb { transition: none; } }
