/* ────────────────────────────────────────────────────────────────────────────
   Bar Aquila — stylesheet
   Palette: navy #1C2B5E · gold #C9A84C · off-white #F6F3EC
──────────────────────────────────────────────────────────────────────────── */

/* Reset & tokens */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1C2B5E;
  --navy-dark:   #0F1A3E;
  --navy-mid:    #243477;
  --gold:        #C9A84C;
  --gold-light:  #DEC068;
  --gold-dark:   #A8852E;
  --white:       #FAFAF7;
  --off-white:   #F6F3EC;
  --text:        #1A1A1A;
  --text-mid:    #4A4A4A;
  --text-light:  #7A7A7A;
  --border-gold: rgba(201,168,76,.22);
  --shadow:      0 6px 28px rgba(28,43,94,.10);
  --shadow-lg:   0 12px 48px rgba(28,43,94,.16);
  --r:           4px;
  --r-lg:        10px;
  --ease:        .35s cubic-bezier(.4,0,.2,1);
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; }
img  { max-width: 100%; display: block; object-fit: cover; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Utilities ────────────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

.badge {
  display: inline-block;
  font-size: .68rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .6rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700; line-height: 1.15;
}
.section-sub {
  font-size: 1rem; color: var(--text-mid); line-height: 1.75; max-width: 580px;
}
.gold-rule {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 1.1rem 0;
  border: none;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ── Scroll-reveal ────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible   { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ── Navbar ───────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  padding: 1.4rem 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}
#navbar.scrolled {
  background: rgba(22,32,72,.98);
  padding: .85rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: .7rem; }
.logo-eagle { width: 38px; height: 23px; color: var(--gold); flex-shrink: 0; }
.logo-text  { display: flex; flex-direction: column; line-height: 1; }
.logo-name  { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: #fff; }
.logo-sub   { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-top: .15rem; }

.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  color: rgba(255,255,255,.85); font-size: .95rem; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 500;
  transition: color var(--ease); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform var(--ease); transform-origin: left;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

.lang-switcher { display: flex; gap: .3rem; align-items: center; }
.lang-btn {
  background: none; border: 1px solid transparent;
  cursor: pointer; padding: .2rem .25rem;
  border-radius: var(--r); transition: border-color var(--ease), transform var(--ease);
  line-height: 1; display: flex; align-items: center;
}
.lang-btn:hover  { transform: scale(1.15); }
.lang-btn.active { border-color: var(--gold); }
.flag-icon { width: 26px; height: 26px; display: block; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem; z-index: 901;
}
.nav-toggle span { display: block; width: 23px; height: 2px; background: #fff; transition: var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
#hero {
  position: relative; height: 100dvh; min-height: 580px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(170deg, rgba(11,18,46,.92) 0%, rgba(28,43,94,.78) 50%, rgba(11,18,46,.92) 100%),
    url('../vetrina_2.jpg') center 55%/cover no-repeat;
}
.hero-content {
  position: relative; z-index: 1; text-align: center; color: #fff;
  padding: 2rem; max-width: 820px; width: 100%;
}
.hero-eagle {
  width: 110px; height: 66px; color: var(--gold); margin: 0 auto 1.6rem;
  filter: drop-shadow(0 0 22px rgba(201,168,76,.5));
  animation: dropIn 1.2s cubic-bezier(.22,1,.36,1) both;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 700; line-height: .95; letter-spacing: -.01em;
  animation: fadeUp 1s .25s both;
}
.hero-sub {
  font-size: clamp(.7rem, 1.4vw, .85rem); letter-spacing: .38em;
  text-transform: uppercase; color: var(--gold);
  margin-top: .9rem;
  animation: fadeUp 1s .4s both;
}
.hero-divider {
  width: 72px; height: 1px; background: var(--gold);
  margin: 1.8rem auto; animation: fadeUp 1s .5s both;
}
.hero-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(.95rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.83); line-height: 1.65;
  animation: fadeUp 1s .6s both;
}
.hero-cta {
  display: inline-block; margin-top: 2.4rem;
  padding: .85rem 2.6rem;
  border: 1px solid var(--gold); color: #fff;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  transition: background var(--ease), color var(--ease);
  animation: fadeUp 1s .8s both;
}
.hero-cta:hover { background: var(--gold); color: var(--navy-dark); }

.hero-scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 1;
}
.hero-scroll span {
  display: block;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201,168,76,.15), 0 0 0 8px rgba(201,168,76,.08), 0 0 16px rgba(201,168,76,.4);
  animation: scrollShoot 2.2s linear infinite;
}
.hero-scroll span::before {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  right: 100%;
  width: 55px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.8));
}
@keyframes scrollShoot {
  0%   { transform: rotate(90deg) translateX(0);    opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: rotate(90deg) translateX(75px); opacity: 0; }
}

@keyframes dropIn { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes pulse  { 0%,100% { opacity: .25; transform: scaleY(.5); } 50% { opacity: 1; transform: scaleY(1); } }

/* ── About ────────────────────────────────────────────────────────────────── */
#about { padding: 5rem 0; background: var(--off-white); }

.about-header { text-align: center; margin-bottom: 5rem; }
.about-header .gold-rule { margin-left: auto; margin-right: auto; }

.about-block {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3.5rem;
  margin-bottom: 2.5rem;
}
.about-block:last-child { margin-bottom: 0; }
.about-block.flip { direction: rtl; }
.about-block.flip > * { direction: ltr; }

.about-img-wrap { position: relative; }
.about-img {
  width: 100%; height: 400px;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute; bottom: -1.2rem; right: -1.2rem;
  background: var(--navy); color: var(--gold);
  padding: 1rem 1.4rem; border-radius: var(--r);
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  box-shadow: var(--shadow);
  text-align: center; line-height: 1.2;
}
.about-img-badge small {
  display: block; font-family: var(--sans); font-size: .62rem;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(201,168,76,.7);
}

.about-text h3 {
  font-family: var(--serif); font-size: 1.85rem; font-weight: 700;
  color: var(--navy); margin-bottom: .6rem;
}
.about-text .gold-rule { margin-bottom: 1.2rem; }
.about-text p { color: var(--text-mid); line-height: 1.82; font-size: .98rem; }

/* ── Services ─────────────────────────────────────────────────────────────── */
#services { padding: 5rem 0; background: var(--navy-dark); }
.services-header { text-align: center; margin-bottom: 2.5rem; }
.services-header .section-title { color: #fff; }
.services-header .section-sub  { color: rgba(255,255,255,.60); margin: 0 auto; }
.services-header .gold-rule     { margin-left: auto; margin-right: auto; }

.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.service-card {
  background: rgba(255,255,255,.04); border: 1px solid var(--border-gold);
  padding: 2.4rem 1.8rem; text-align: center; border-radius: var(--r);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.service-card:hover {
  background: rgba(201,168,76,.09); border-color: var(--gold);
  transform: translateY(-5px);
}
.service-icon { font-size: 2.4rem; display: block; margin-bottom: 1.1rem; }
.service-card h3 { font-family: var(--serif); font-size: 1.15rem; color: #fff; margin-bottom: .7rem; }
.service-card p  { font-size: .855rem; color: rgba(255,255,255,.57); line-height: 1.72; }

/* ── Specialties ──────────────────────────────────────────────────────────── */
#specialties { padding: 5rem 0; background: var(--white); }
.specialties-header { text-align: center; margin-bottom: 2.5rem; }
.specialties-header .gold-rule { margin-left: auto; margin-right: auto; }
.specialties-header .section-sub { margin: 0 auto; }

.specialties-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.specialty-card {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  aspect-ratio: 4/3; cursor: default;
}
.specialty-card img {
  width: 100%; height: 100%;
  transition: transform .6s var(--ease);
}
.specialty-card:hover img { transform: scale(1.07); }
.specialty-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,18,46,.82) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.4rem;
}
.specialty-name {
  font-family: var(--serif); font-size: 1.15rem; color: #fff; font-weight: 600;
}

/* ── Gallery ──────────────────────────────────────────────────────────────── */
#gallery { padding: 5rem 0; background: var(--off-white); }
.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.gallery-header .gold-rule { margin-left: auto; margin-right: auto; }
.gallery-header .section-sub { margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item { overflow: hidden; border-radius: var(--r); }
.gallery-item img { width: 100%; height: 100%; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }

/* ── Hours ────────────────────────────────────────────────────────────────── */
#hours { padding: 5rem 0; background: var(--navy); }
.hours-header { text-align: center; margin-bottom: 3rem; }
.hours-header .section-title { color: #fff; }
.hours-header .gold-rule { margin-left: auto; margin-right: auto; }

.hours-wrap { max-width: 660px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hours-table { width: auto; min-width: 360px; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(201,168,76,.12); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: .6rem 0; font-size: .93rem; color: rgba(255,255,255,.80); }
.hours-table .day-name { font-weight: 600; color: #fff; width: 130px; padding-right: 1.5rem; }
.hours-table td:nth-child(2) { width: 160px; }
.hours-table td:last-child { text-align: right; color: var(--gold); font-weight: 500; }
.hours-table .closed-day td { color: rgba(255,255,255,.35); }
.hours-table .closed-day .day-name { color: rgba(255,255,255,.35); font-weight: 400; }
.hours-table .closed-day .closed-label { color: rgba(255,255,255,.35); text-align: right; }

.hours-note {
  margin-top: 2.2rem; text-align: center;
  font-size: .78rem; color: rgba(255,255,255,.45); letter-spacing: .04em; line-height: 1.7;
}
.hours-note::before { content: '⚠  '; }

/* ── Contact ──────────────────────────────────────────────────────────────── */
#contact { padding: 5rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: 5rem; align-items: start; }

.contact-info .section-title { color: var(--navy); margin-bottom: .5rem; }
.contact-info .section-sub   { margin-bottom: 2.2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item  { display: flex; align-items: flex-start; gap: .9rem; }
.ci-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}
.ci-text { display: flex; flex-direction: column; }
.ci-label { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .15rem; }
.ci-value { font-size: .93rem; color: var(--text); line-height: 1.5; }
.ci-value a { color: var(--navy); transition: color var(--ease); }
.ci-value a:hover { color: var(--gold-dark); }

.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 440px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer { background: var(--navy-dark); padding: 3rem 0 1.5rem; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.footer-top {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,.35); margin-bottom: 2rem;
}
.footer-brand { text-align: center; }
.footer-brand .fn { font-family: var(--serif); color: #fff; font-size: 1.5rem; font-weight: 700; display: block; }
.footer-brand .fs { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); display: block; margin: .2rem 0 1rem; }
.footer-brand p   { color: rgba(255,255,255,.45); font-size: .83rem; line-height: 1.7; }

.footer-col { text-align: center; }
.footer-col h4    { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.1rem; }
.footer-col ul    { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a  { color: rgba(255,255,255,.50); font-size: .86rem; transition: color var(--ease); }
.footer-col ul a:hover { color: #fff; }
.footer-col p     { color: rgba(255,255,255,.50); font-size: .86rem; line-height: 1.8; }

.footer-bottom {
  display: flex; justify-content: center; gap: 2rem; align-items: center;
  font-size: .72rem; color: rgba(255,255,255,.27);
}

/* ── WhatsApp FAB ─────────────────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--ease), box-shadow var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.whatsapp-fab svg  { width: 28px; height: 28px; fill: currentColor; }

/* ── Back to top ──────────────────────────────────────────────────────────── */
#backToTop {
  position: fixed; bottom: 5.8rem; right: 2rem; z-index: 800;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--gold); border: 1px solid var(--border-gold);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
}
#backToTop.show { opacity: 1; pointer-events: auto; }
#backToTop:hover { transform: translateY(-3px); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .specialties-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 200px; }
  .g-wide, .g-tall { grid-column: span 1; grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-links, .lang-switcher { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 2rem; position: fixed; inset: 0; background: var(--navy-dark); z-index: 899;
  }
  .nav-links.open a { font-size: 1.15rem; }
  .lang-switcher.mobile-open {
    display: flex; position: fixed; bottom: 3rem; left: 50%; transform: translateX(-50%);
    z-index: 900; gap: .6rem;
  }
  .lang-switcher.mobile-open .lang-btn { font-size: 1.4rem; padding: .3rem .4rem; }

  /* About */
  .about-block, .about-block.flip { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .about-img { height: 260px; }
  .about-img-badge { bottom: -.8rem; right: -.8rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .map-wrap { height: 300px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* Specialties */
  .specialties-grid { grid-template-columns: 1fr; }

  /* FABs */
  .whatsapp-fab { bottom: 1.2rem; right: 1.2rem; }
  #backToTop    { bottom: 5rem; right: 1.2rem; }
}

/* ── Active nav link ──────────────────────────────────────────────────────── */
.nav-links a.nav-active { color: #fff; }
.nav-links a.nav-active::after { transform: scaleX(1); }

/* ── Page hero (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  padding: 8rem 0 3rem; background: var(--navy-dark);
  text-align: center; position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--border-gold);
}
.page-hero-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; color: #fff; margin-bottom: .5rem;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: 1.2rem; font-size: .72rem;
  color: rgba(255,255,255,.40); letter-spacing: .06em;
}
.breadcrumb a { color: rgba(255,255,255,.40); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .bc-current { color: rgba(255,255,255,.65); }

/* ── Stats bar ────────────────────────────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: 1.6rem 0; border-bottom: 1px solid var(--border-gold); }
.stats-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; text-align: center;
}
.stat strong { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.stat span   { display: block; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: .3rem; }

/* ── Home about teaser ────────────────────────────────────────────────────── */
.home-about { padding: 5rem 0; background: var(--off-white); }
.home-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.home-about-img  { width: 100%; height: 460px; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.home-about-text .section-title { color: var(--navy); margin-bottom: .5rem; }
.home-about-text .gold-rule { margin-bottom: 1.4rem; }
.home-about-text p { color: var(--text-mid); line-height: 1.82; font-size: .98rem; margin-bottom: 2rem; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn-outline {
  display: inline-block; padding: .78rem 2.2rem;
  border: 1px solid var(--navy); color: var(--navy);
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  transition: background var(--ease), color var(--ease);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost {
  display: inline-block; padding: .78rem 2.2rem;
  border: 1px solid var(--gold); color: #fff;
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  transition: background var(--ease), color var(--ease);
}
.btn-ghost:hover { background: var(--gold); color: var(--navy-dark); }

/* ── Contact strip (bottom of home) ──────────────────────────────────────── */
.contact-strip { padding: 4rem 0; background: var(--navy); text-align: center; }
.contact-strip h2 { font-family: var(--serif); font-size: clamp(1.8rem,3.5vw,2.6rem); color: #fff; margin-bottom: .8rem; }
.contact-strip p  { color: rgba(255,255,255,.55); font-size: .98rem; margin-bottom: 2.2rem; line-height: 1.7; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── Section CTA ──────────────────────────────────────────────────────────── */
.section-cta { text-align: center; margin-top: 3rem; }

/* ── Responsive additions ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .home-about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .home-about-img { height: 320px; }
}
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .page-hero { padding: 8rem 0 3rem; }
}

/* ── Logo image (navbar) ──────────────────────────────────────────────────── */
.nav-logo-img {
  height: 60px; width: auto;
  display: block;
  transition: height var(--ease);
}
#navbar.scrolled .nav-logo-img { height: 50px; }
@media (max-width: 768px) { .nav-logo-img { height: 44px; } }

/* ── Logo image (hero) ────────────────────────────────────────────────────── */
.hero-logo-img {
  width: 320px; max-width: 68vw;
  margin: 0 auto;
  animation: dropIn 1.2s cubic-bezier(.22,1,.36,1) both;
  display: block;
}

/* ── Contact form ─────────────────────────────────────────────────────────── */
.contact-form-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.contact-form-wrap .section-title { margin-bottom: .5rem; }
.contact-form-wrap .gold-rule { margin-left: auto; margin-right: auto; margin-bottom: 1rem; }
.contact-form-wrap .section-sub { color: rgba(255,255,255,.60); margin: 0 auto 2.5rem; }
.contact-form-wrap .contact-form { text-align: left; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.form-input {
  padding: .75rem 1rem; border: 1px solid rgba(28,43,94,.2);
  border-radius: var(--r); font-family: var(--sans); font-size: .93rem;
  color: var(--text); background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-check {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .82rem; color: rgba(255,255,255,.70); line-height: 1.5;
}
.form-check input[type="checkbox"] { margin-top: .2rem; accent-color: var(--navy); flex-shrink: 0; }
.form-submit {
  display: inline-block; align-self: flex-start;
  padding: .85rem 2.8rem;
  background: var(--gold); color: var(--navy-dark);
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  border: none; cursor: pointer; border-radius: var(--r);
  transition: background var(--ease), transform var(--ease);
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }
