/* ==========================================================================
   Amibara Properties — stylesheet
   Brand: gold #CBA135 / deep plum #551356 / ink #1C1E22 / cream #FBF9F4
   Font: Josefin Sans (Google Fonts)
   ========================================================================== */

:root {
  --gold: #cba135;
  --gold-light: #e2c874;
  /* darker gold for text on light backgrounds — #cba135 only hits ~2.4:1
     contrast on white/cream, which fails WCAG AA; this hits ~5:1 */
  --gold-text: #8a6a1a;
  --plum: #551356;
  --plum-dark: #3c0e3d;
  --ink: #1c1e22;
  --ink-soft: #2c2f36;
  --cream: #fbf9f4;
  --paper: #ffffff;
  --line: #e7e2d6;
  --text: #2a2a2a;
  --text-soft: #62605c;
  --text-invert: #f6f3ea;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 10px rgba(28, 30, 34, 0.06);
  --shadow: 0 12px 34px rgba(28, 30, 34, 0.12);
  --shadow-lg: 0 24px 60px rgba(28, 30, 34, 0.18);

  --container: 1200px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);

  --font: "Josefin Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

h1, h2, h3, h4 { font-weight: 500; letter-spacing: 0.01em; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.08; letter-spacing: 0.01em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.15; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
p { color: var(--text-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.9rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold-text); display: block; }
/* On dark/plum backgrounds the light gold reads better and still passes contrast */
.section--dark .eyebrow, .section--plum .eyebrow, .page-hero .eyebrow, .hero-inner .eyebrow {
  color: var(--gold-light);
}
.section--dark .eyebrow::before, .section--plum .eyebrow::before, .page-hero .eyebrow::before, .hero-inner .eyebrow::before {
  background: var(--gold-light);
}

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--dark { background: var(--ink); color: var(--text-invert); }
.section--dark p { color: rgba(246, 243, 234, 0.72); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--plum { background: linear-gradient(155deg, var(--plum) 0%, var(--plum-dark) 100%); color: var(--text-invert); }
.section--plum p { color: rgba(246, 243, 234, 0.78); }
.section--plum h2, .section--plum h3 { color: #fff; }
.section--paper { background: var(--paper); }
.section--line-top { border-top: 1px solid var(--line); }

.center { text-align: center; }
.max-60 { max-width: 60ch; }
.mx-auto { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-light); box-shadow: var(--shadow); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--plum); }
.btn-ghost { background: transparent; color: inherit; border-color: currentColor; opacity: 0.9; }
.btn-ghost:hover { opacity: 1; background: rgba(255, 255, 255, 0.08); }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: #fff; }
.btn-wa { background: #25d366; color: #06371c; }
.btn-wa:hover { background: #33e075; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 0.65rem 1.2rem; font-size: 0.75rem; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(246, 243, 234, 0.85);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.55rem; }
.topbar-links { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar-links a { display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.25s ease; }
.topbar-links a:hover { color: var(--gold); }
.topbar-links svg { width: 15px; height: 15px; flex: none; }
.topbar-cta { display: flex; align-items: center; gap: 1.1rem; }
.topbar-cta a.wa-link { display: inline-flex; align-items: center; gap: 0.45rem; color: #25d366; font-weight: 500; }
@media (max-width: 720px) {
  .topbar-links span.hide-mobile { display: none; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 0.85rem;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a {
  font-size: 0.95rem; font-weight: 400; color: var(--ink-soft);
  position: relative; padding-block: 0.3rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--gold); transition: right 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--plum); font-weight: 500; }
.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; transition: transform 0.3s ease, opacity 0.3s ease; }

.nav-actions .btn .short-label { display: none; }
@media (max-width: 940px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); height: 100vh;
    background: var(--paper); flex-direction: column; align-items: flex-start;
    padding: 6rem 2rem 2rem; gap: 1.6rem; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform 0.4s var(--ease);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; }
  .nav-toggle { display: flex; }
}
@media (max-width: 420px) {
  .nav-actions .btn .full-label { display: none; }
  .nav-actions .btn .short-label { display: inline; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(92vh, 820px);
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,30,34,0.15) 0%, rgba(28,30,34,0.35) 45%, rgba(28,30,34,0.92) 100%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding-block: clamp(3rem, 8vw, 5.5rem); }
.hero-inner .eyebrow { color: var(--gold-light); }
.hero-inner .eyebrow::before { background: var(--gold-light); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero p { color: rgba(255,255,255,0.82); max-width: 52ch; margin-top: 1.1rem; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-stats {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.18); padding-top: 1.75rem;
}
.hero-stats strong { display: block; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--gold-light); font-weight: 500; }
.hero-stats span { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  position: relative; color: #fff; background: var(--ink);
  padding-block: clamp(5rem, 12vw, 8rem) clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(155deg, rgba(85,19,86,0.55), rgba(28,30,34,0.88)); }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumbs { display: flex; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 1.1rem; }
.breadcrumbs a:hover { color: var(--gold-light); }
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 60ch; margin-top: 1rem; }

/* ---------- Amenities grid ---------- */
.amenity-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem; margin-top: 2.5rem;
}
.amenity-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; isolation: isolate;
}
.amenity-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.amenity-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,30,34,0) 35%, rgba(28,30,34,0.85) 100%);
}
.amenity-card:hover img { transform: scale(1.08); }
.amenity-card span {
  position: absolute; left: 1.2rem; bottom: 1rem; z-index: 1;
  color: #fff; font-size: 1.05rem; letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 0.5rem;
}
.amenity-card span svg { width: 18px; height: 18px; color: var(--gold-light); }

/* ---------- Unit / project cards ---------- */
.unit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.unit-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
  display: flex; flex-direction: column;
}
.unit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.unit-card-media { position: relative; aspect-ratio: 16/11; background: var(--ink); }
.unit-card-media img { width: 100%; height: 100%; object-fit: cover; }
.unit-card-tag {
  position: absolute; top: 0.9rem; left: 0.9rem; background: var(--gold); color: var(--ink);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border-radius: 999px;
}
.unit-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.unit-card-body h3 { margin: 0; }
.unit-sizes { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.unit-sizes span { font-size: 0.78rem; background: var(--cream); border: 1px solid var(--line); color: var(--text-soft); padding: 0.25rem 0.6rem; border-radius: 999px; }
.unit-card-body .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Feature list (icon + text rows) ---------- */
.feature-list { display: grid; gap: 1.6rem; margin-top: 2rem; }
.feature-row { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature-icon {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(203, 161, 53, 0.14); color: var(--gold-text);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-row h3 { margin-bottom: 0.3rem; }
.feature-row p { margin: 0; font-size: 0.95rem; }
/* On dark backgrounds, the lighter gold has better contrast than gold-text */
.section--dark .feature-icon, .section--plum .feature-icon {
  background: rgba(226, 200, 116, 0.16); color: var(--gold-light);
}

/* ---------- Split section (media + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split-media img, .split-media video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split-media .badge-card {
  position: absolute; left: -1.25rem; bottom: -1.25rem; background: var(--paper);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.1rem 1.4rem;
  display: flex; gap: 0.9rem; align-items: center; max-width: 240px;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media .badge-card { left: 1rem; bottom: -1rem; }
}

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  padding: 2.4rem 0;
}
.stats-strip div { text-align: center; border-left: 1px solid rgba(255,255,255,0.15); padding-inline: 1rem; }
.stats-strip div:first-child { border-left: none; }
.stats-strip strong { display: block; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--gold-light); font-weight: 500; }
.stats-strip span { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
@media (max-width: 720px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip div { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.2rem; }
}

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.testimonial-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem; display: flex; flex-direction: column; gap: 1.1rem;
}
.testimonial-card .quote-mark { color: var(--gold-text); font-size: 2.4rem; line-height: 1; font-weight: 600; }
.testimonial-card p.quote { color: var(--text); font-style: italic; }
.testimonial-card p[lang="am"] { font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--plum); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 500; flex: none;
}
.testimonial-author strong { display: block; font-size: 0.92rem; color: var(--ink); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-soft); }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; margin-top: 2.5rem; }
.blog-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card-media { aspect-ratio: 16/10; background: var(--ink); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.blog-meta { font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-text); font-weight: 600; }
.blog-card-body h3 { line-height: 1.3; }
.blog-card-body p { font-size: 0.92rem; flex: 1; }
.blog-card-body .read-more { font-size: 0.85rem; font-weight: 600; color: var(--plum); display: inline-flex; align-items: center; gap: 0.4rem; }
.blog-card-body .read-more svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.blog-card:hover .read-more svg { transform: translateX(4px); }

article.post { max-width: 74ch; margin-inline: auto; }
article.post p { color: var(--text); font-size: 1.05rem; margin-block: 1.1rem; }
article.post h2 { margin-top: 2.2rem; margin-bottom: 0.8rem; }
article.post .lede { font-size: 1.2rem; color: var(--ink-soft); }
.post-meta { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; color: var(--text-soft); font-size: 0.85rem; margin-top: 1rem; }

/* ---------- CTA band ---------- */
.cta-band { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.cta-band h2 { max-width: 20ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.contact-methods { display: grid; gap: 1rem; margin-top: 1.5rem; }
.contact-method {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.1rem;
  border: 1px solid var(--line); border-radius: var(--radius); transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact-method:hover { border-color: var(--gold); transform: translateX(4px); }
.contact-method .feature-icon { background: rgba(85,19,86,0.08); color: var(--plum); }
.contact-method strong { display: block; color: var(--ink); font-size: 0.95rem; }
.contact-method span { font-size: 0.85rem; color: var(--text-soft); }

.form-field { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-field label { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.8rem 0.9rem;
  background: var(--cream); transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(203,161,53,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.78rem; color: var(--text-soft); margin-top: 0.6rem; }
.form-status { font-size: 0.85rem; margin-top: 0.8rem; display: none; }
.form-status.is-visible { display: block; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 74ch; margin-top: 2rem; display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.3rem 1.3rem;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 2rem 1.1rem 0; position: relative;
  font-weight: 500; color: var(--ink); font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--gold-text); font-weight: 400; line-height: 1;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding-bottom: 1.2rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(246,243,234,0.75); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 42px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 32ch; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; transition: background 0.3s ease, border-color 0.3s ease;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { color: #fff; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { display: grid; gap: 0.8rem; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col address { font-style: normal; font-size: 0.9rem; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; padding-top: 1.5rem; font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease);
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 28px; height: 28px; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Utility grid for text pages ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

.badge-pill {
  display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(203,161,53,0.12);
  color: var(--gold-text); border-radius: 999px; padding: 0.4rem 0.9rem; font-size: 0.78rem; font-weight: 600;
}

.award-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.award-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.award-card img { height: 56px; width: auto; margin-inline: auto; margin-bottom: 1rem; object-fit: contain; }
.award-card strong { display: block; color: var(--gold-text); font-size: 1.1rem; margin-bottom: 0.4rem; }
.award-card p { font-size: 0.85rem; margin: 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--ink);
  padding: 0.8rem 1.2rem; z-index: 100; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.timeline { display: grid; gap: 1.6rem; margin-top: 2rem; border-left: 2px solid var(--line); padding-left: 1.6rem; }
.timeline-item { position: relative; }
.timeline-item::before {
  content: ""; position: absolute; left: -1.98rem; top: 0.35rem; width: 10px; height: 10px;
  border-radius: 50%; background: var(--gold);
}
.timeline-item strong { display: block; color: var(--ink); margin-bottom: 0.25rem; }
.timeline-item span.year { color: var(--plum); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em; }

.error-page { min-height: 60vh; display: flex; align-items: center; }
.error-page .container { text-align: center; }
.error-code { font-size: clamp(4rem, 12vw, 8rem); color: var(--gold-text); font-weight: 500; line-height: 1; }

/* ==========================================================================
   Utility classes
   These replace one-off inline `style="..."` attributes so the site can run
   under a strict Content-Security-Policy with no `style-src 'unsafe-inline'`.
   ========================================================================== */
.icon-inline { vertical-align: -2px; }
.icon-inline-block { display: inline; vertical-align: -2px; }
.sprite-hidden { display: none; }
.m-0 { margin: 0; }
.mt-1 { margin-top: 1rem; }
.mt-1-2 { margin-top: 1.2rem; }
.mt-1-5 { margin-top: 1.5rem; }
.mt-1-75 { margin-top: 1.75rem; }
.mt-2 { margin-top: 2rem; }
.mt-0-8 { margin-top: 0.8rem; }
.mb-1-2 { margin-bottom: 1.2rem; }
.pb-3 { padding-bottom: 3rem; }
/* h2.max-24ch (not just .max-24ch) to out-specificity ".cta-band h2 { max-width: 20ch }" */
h2.max-24ch, .max-24ch { max-width: 24ch; }
.justify-center { justify-content: center; }
.cta-divider { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }

/* ---------- One-off components (previously inline-styled) ---------- */
.video-trigger-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5;
}
.video-trigger-wrap img { width: 100%; height: 100%; object-fit: cover; }
.play-button {
  position: absolute; inset: 0; margin: auto; width: 72px; height: 72px;
  border-radius: 50%; background: rgba(255, 255, 255, 0.92); border: 0;
  display: flex; align-items: center; justify-content: center; color: var(--plum);
}
/* p.ceo-title (not just .ceo-title) to out-specificity ".section--dark p" */
p.ceo-title, .ceo-title { color: var(--gold-light); font-weight: 500; margin-bottom: 1rem; }
.stats-box-dark { background: var(--ink); border-radius: var(--radius-lg); color: #fff; padding-inline: 1.5rem; }
.badge-pill--plum { background: rgba(255, 255, 255, 0.15); color: var(--gold-light); }
