/* Fonts load from HTML (preconnect + non-blocking link) to avoid render-blocking @import. */

:root {
  --navy: #1a2332;
  --navy-light: #243044;
  --teal: #0d7377;
  --teal-dark: #095c5f;
  --teal-light: #e6f4f4;
  --gold: #c9a84c;
  --gold-light: #f5ecd4;
  --bg: #f8f9fa;
  --bg-white: #ffffff;
  --text: #2d3748;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --success: #059669;
  --warning: #d97706;
  --danger: #dc2626;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max-width: 1200px;
  --header-h: 72px;
  --transition: .25s ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.3;
  color: var(--navy);
  font-weight: 600;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .75rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: .5rem; }
h4 { font-size: 1.125rem; font-family: 'Inter', sans-serif; font-weight: 600; }

p { margin-bottom: 1rem; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
img { max-width: 100%; height: auto; display: block; }

/* Homepage / gallery master plan preview: fixed aspect box so decode never collapses layout. */
.master-plan-preview {
  aspect-ratio: 1200 / 900;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.master-plan-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  display: block;
}
ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: .35rem; }
strong { font-weight: 600; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section--alt { background: var(--bg-white); }
.section--dark { background: var(--navy); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--teal { background: var(--teal); color: #fff; }
.section--teal h2 { color: #fff; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }
/* On dark/teal bands, do not reuse gray body text (fails WCAG on navy/teal). */
.section--dark .section-header p,
.section--teal .section-header p { color: rgba(255, 255, 255, 0.95); }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: var(--shadow-md);
  height: var(--header-h);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  line-height: 1.2;
}
.header__logo-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
}
.header__logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
}
.header__logo-sub {
  font-size: .7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  color: rgba(255,255,255,.85);
  font-size: .835rem;
  font-weight: 500;
  padding: .5rem .7rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: #fff; background: rgba(255,255,255,.1); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' \25BE'; font-size: .65em; }
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown__menu a {
  display: block;
  color: var(--text);
  padding: .5rem 1rem;
  font-size: .835rem;
  border-radius: 0;
}
.nav-dropdown__menu a:hover { background: var(--teal-light); color: var(--teal); }

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  font-size: .835rem;
  padding: .55rem 1.1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.header__cta:hover { background: #d4b45a; color: var(--navy) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s ease;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  overflow-y: auto;
  padding: 1rem;
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,.9);
  padding: .75rem 1rem;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a:hover { background: rgba(255,255,255,.05); }
.mobile-nav__group-title {
  color: var(--gold);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 1rem 1rem .4rem;
  font-weight: 600;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
  padding: 1rem 0;
  font-size: .85rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--teal); }
.breadcrumb span { margin: 0 .4rem; color: var(--text-muted); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 50%, var(--teal-dark) 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  /* Reduce CLS when web fonts swap (line breaks / block height). */
  min-height: clamp(22rem, 52vh, 36rem);
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  contain: strict;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 640px;
  margin-bottom: .75rem;
  line-height: 1.7;
}
.hero__rera-badge {
  display: inline-block;
  background: rgba(217,119,6,.2);
  border: 1px solid rgba(217,119,6,.4);
  color: #fbbf24;
  font-size: .8rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  padding: 3rem 0 2.5rem;
}
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 640px; }

/* Hero body links: global teal fails WCAG on navy; use gold-range + underline */
.page-hero a:not(.btn) {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(201, 168, 76, 0.65);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}
.page-hero a:not(.btn):hover {
  color: #fff;
  text-decoration-color: var(--gold);
}
.page-hero a:not(.btn):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}
.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--secondary { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn--secondary:hover { background: rgba(255,255,255,.25); color: #fff; }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #d4b45a; color: var(--navy); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }
/* Teal outline on navy fails contrast; use light border/text (e.g. #developer band). */
.section--dark .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.92);
  background: transparent;
}
.section--dark .btn--outline:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: #fff;
}
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--bg); color: var(--navy); }
.btn--sm { padding: .5rem 1rem; font-size: .835rem; }
.btn--lg { padding: .9rem 2rem; font-size: 1rem; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__body { padding: 1.5rem; }
.card__title { font-size: 1.1rem; margin-bottom: .5rem; }
.card__text { color: var(--text-light); font-size: .9rem; }
.card__icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--teal);
}
.card__badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 20px;
}

/* ===== GRID ===== */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ===== HIGHLIGHTS BAR ===== */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.highlight-item {
  background: var(--bg-white);
  padding: 1.25rem 1rem;
  text-align: center;
}
.highlight-item__value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.2;
}
.highlight-item__label {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .25rem;
}

/* ===== TABLES ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--bg-white);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
thead { background: var(--navy); color: #fff; }
th {
  padding: .85rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}
td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border-light);
}
tbody tr:hover { background: var(--teal-light); }
tbody tr:last-child td { border-bottom: none; }

/* ===== PRICING CARDS ===== */
.price-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
  border-top: 4px solid var(--teal);
  transition: all var(--transition);
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card--featured { border-top-color: var(--gold); }
.price-card__config {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: .5rem;
}
.price-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25rem;
}
.price-card__area {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.price-card__features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 1.5rem;
}
.price-card__features li {
  padding: .35rem 0;
  font-size: .875rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-light);
}
.price-card__features li::before {
  content: '\2713';
  color: var(--success);
  font-weight: 700;
  margin-right: .5rem;
}

/* ===== FAQ ACCORDION ===== */
.faq-group__title {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 2rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}
.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  margin-bottom: .5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  transition: background var(--transition);
}
.faq-item__question:hover { background: var(--teal-light); }
.faq-item__question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item.active .faq-item__question::after { content: '\2212'; }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item__answer-inner {
  padding: 0 1.25rem 1rem;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item__answer-inner a { color: var(--teal); text-decoration: underline; }

/* ===== COMPARISON TABLE ===== */
.compare-table { font-size: .85rem; }
.compare-table th:first-child { min-width: 140px; }
.compare-highlight { background: var(--teal-light) !important; font-weight: 600; }

/* ===== DISCLAIMER / RERA ===== */
.disclaimer {
  background: #fef3c7;
  border-left: 4px solid var(--warning);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .875rem;
  margin: 1.5rem 0;
  color: #78350f;
  line-height: 1.65;
}
.disclaimer strong { color: #713f12; }
.disclaimer a {
  color: #0f4c4a;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.disclaimer a:hover { color: #0a3634; }

/* ===== AMENITY GRID ===== */
.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.amenity-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.amenity-item__text h4 { font-size: .95rem; margin-bottom: .15rem; }
.amenity-item__text p { font-size: .825rem; color: var(--text-light); margin: 0; }

/* ===== BLOG CARDS ===== */
.blog-card__tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .5rem;
}
.blog-card__date { font-size: .8rem; color: var(--text-muted); }

/* ===== CONTENT PROSE ===== */
.prose { max-width: 800px; }
.prose h2 { margin-top: 2.5rem; margin-bottom: .75rem; }
.prose h3 { margin-top: 2rem; }
.prose ul, .prose ol { margin-bottom: 1.25rem; }
.prose li { margin-bottom: .5rem; line-height: 1.7; }
/* Inline links: not distinguishable by color alone (WCAG 1.4.1). */
.prose a:not(.btn) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.prose a:not(.btn):hover { text-decoration-thickness: 2px; }
.section--dark .prose { color: rgba(255, 255, 255, 0.96); }
.section--dark .prose a:not(.btn) {
  color: #c5f6f7;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}
.section--dark .prose a:not(.btn):hover {
  color: #fff;
  text-decoration-color: #fff;
}
.prose blockquote {
  border-left: 4px solid var(--teal);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--teal-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.footer__brand-tagline {
  font-size: .8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .75rem;
}
.footer__brand p { font-size: .875rem; line-height: 1.7; }

.footer h4,
.footer .footer-heading {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .75rem;
}
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: .35rem; }
.footer ul a { color: rgba(255,255,255,.6); font-size: .875rem; transition: color var(--transition); }
.footer ul a:hover { color: var(--gold); }

.footer__rera {
  background: rgba(217,119,6,.1);
  border-top: 1px solid rgba(217,119,6,.2);
  padding: 1rem 0;
  margin-top: 1rem;
  text-align: center;
  font-size: .8rem;
  color: #fbbf24;
}
.footer__rera a {
  color: #fde68a;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 600;
}
.footer__rera a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: .8rem;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: flex-end;
}
.floating-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--teal);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  text-decoration: none;
}
.floating-cta__btn:hover { background: var(--teal-dark); color: #fff; transform: translateY(-2px); }

.scroll-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 16/10;
  background: var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .85rem;
  border: 2px dashed var(--border);
}
/* Master plan uses 4:3; do not force 16:10 placeholder box (CLS + cropping). */
.gallery-item:has(.master-plan-preview) {
  aspect-ratio: auto;
  background: transparent;
  border: none;
  padding: 0;
  display: block;
  overflow: visible;
}

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg-white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,115,119,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: .5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.65rem;
  top: .35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--bg);
}
.timeline-item__date {
  font-size: .8rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: .2rem;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-muted { color: var(--text-light); }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .78rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header__cta--desktop { display: none; }
  .hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  table { font-size: .8rem; }
  th, td { padding: .6rem .7rem; }
}

@media (max-width: 480px) {
  .highlights { grid-template-columns: 1fr 1fr; }
  .price-card { padding: 1.5rem; }
  .floating-cta { bottom: 1rem; right: 1rem; }
}

/* Contact form worker feedback */
#form-message.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
}
#form-message.form-status.success {
  background: #e8f5e9;
  color: #1b5e20;
}
#form-message.form-status.error {
  background: #ffebee;
  color: #b71c1c;
}
.form__error {
  color: #c62828;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}
