/* ============================================================
   Aeron Global — Main Stylesheet
   File: style.css
   ============================================================ */

:root {
  --primary: #1a1a1a;
  --mid: #555;
  --light: #999;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a88630;
  --off-white: #f7f7f5;
  --white: #fff;
  --border: rgba(0, 0, 0, 0.09);
  --shadow: rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--primary);
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--white);
  box-shadow: 0 1px 14px rgba(0, 0, 0, 0.08);
}

.hdr-inner {
  display: flex;
  align-items: stretch;
  min-height: 78px;
}

.hdr-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}

.hdr-logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
  display: block;
}

.hdr-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.hdr-logo-text span {
  color: var(--gold);
}

.hdr-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hdr-top {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 10px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.hdr-top a {
  color: var(--mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
}

.hdr-top a:hover {
  color: var(--gold);
}

.hdr-top svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

.hdr-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  flex: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links li a {
  display: block;
  padding: 0 20px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  line-height: 46px;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-cta {
  background: #25D366;
  color: #fff;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all .3s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

/* ── HERO (HOME) ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #1a1a1a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 15s infinite;
  transform: scale(1.05);
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.slide-1 {
  background-image: url('img/hero1.png');
  animation-delay: 0s;
}

.slide-2 {
  background-image: url('img/hero2.png');
  animation-delay: 5s;
}

.slide-3 {
  background-image: url('img/hero3.png');
  animation-delay: 10s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  10% {
    opacity: 1;
    transform: scale(1);
  }

  33% {
    opacity: 1;
    transform: scale(1);
  }

  43% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(201, 168, 76, .04) 60px, rgba(201, 168, 76, .04) 61px);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .14) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: .4rem 1.5rem;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border-radius: 1px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 1.5rem;
}

.hero h1 strong {
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.hero p {
  color: rgba(255, 255, 255, .62);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  padding: 1rem 2.6rem;
  font-weight: 600;
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all .3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .35);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: #fff;
  padding: 1rem 2.6rem;
  font-weight: 500;
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all .3s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  justify-content: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-lbl {
  font-size: .7rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .3rem;
  display: block;
}

/* ── SHARED ── */
.sec {
  padding: 6rem 5rem;
}

.sec-label {
  font-size: .67rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.sec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: .3;
  max-width: 55px;
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 300;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.sec-title strong {
  font-weight: 700;
}

/* ── ABOUT ── */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: var(--mid);
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.pillar {
  background: var(--off-white);
  padding: 1.25rem;
  border-left: 3px solid var(--gold);
}

.pillar h4 {
  font-size: .87rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: .3rem;
}

.pillar p {
  font-size: .77rem;
  color: var(--mid);
  line-height: 1.55;
  font-weight: 300;
}

.vm-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.5rem 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vm-heading::before {
  content: '';
  width: 25px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.vm-vision .vm-icon {
  background: rgba(201, 168, 76, .15);
  color: var(--gold-dark);
}

.vm-mission .vm-icon {
  background: rgba(24, 95, 165, .1);
  color: #185FA5;
}

.vm-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .6rem;
}

.vm-card p {
  font-size: .82rem;
  color: var(--mid);
  line-height: 1.72;
  font-weight: 300;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  font-size: .81rem;
  color: var(--mid);
  line-height: 1.65;
  padding: .28rem 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 300;
}

.mission-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  position: relative;
  z-index: 1;
}

.astat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .9rem;
  text-align: center;
}

.astat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.astat-lbl {
  display: block;
  font-size: .67rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--light);
  margin-top: .25rem;
}

.badges {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 1.75rem;
}

.badge {
  border: 1px solid rgba(201, 168, 76, .4);
  padding: .4rem .85rem;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-radius: 2px;
  background: rgba(201, 168, 76, .06);
}

.about-quote-box {
  background: linear-gradient(135deg, #f0ede8, var(--off-white));
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-quote-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 168, 76, .1), transparent 60%);
}

.about-quote {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--primary);
}

.about-quote em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* ── SERVICES ── */
#services {
  background: var(--off-white);
}

.svc-intro {
  max-width: 620px;
  margin-bottom: 3.5rem;
}

.svc-intro p {
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
}

.exp-arrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.75rem;
}

.exp-arrow span {
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .04em;
}

.exp-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 3rem;
}

.etab {
  padding: 13px 34px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--light);
  cursor: pointer;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all .25s;
  font-family: inherit;
  background: none;
}

.etab:hover {
  color: var(--primary);
}

.etab.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .5rem;
}

.tab-sub {
  text-align: center;
  color: var(--mid);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 2rem;
  font-weight: 500;
}

.tab-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .1), transparent);
  margin-bottom: 2.5rem;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.exp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
}

.exp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .1);
  border-color: rgba(201, 168, 76, .38);
}

.exp-img {
  position: relative;
  width: 100%;
  height: 185px;
  overflow: hidden;
}

.exp-img svg {
  display: block;
  width: 100%;
  height: 100%;
}

.exp-body {
  padding: 1.2rem 1.3rem 1.45rem;
}

.exp-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.13rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: .4rem;
}

.exp-short {
  font-size: .79rem;
  color: var(--mid);
  line-height: 1.62;
  margin-bottom: .95rem;
  font-weight: 300;
}

.exp-learn {
  font-size: .77rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: .05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}

.exp-card:hover .exp-learn {
  gap: 9px;
}

/* ── MODAL / DRAWER ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 480px;
  max-width: 100vw;
  background: var(--white);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-drawer.open {
  transform: translateX(0);
}

.modal-hero-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
  flex-shrink: 0;
}

.modal-hero-img svg {
  width: 100%;
  height: 100%;
  display: block;
}

.modal-body {
  padding: 2rem 2.2rem;
  flex: 1;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .45);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.modal-close:hover {
  background: rgba(0, 0, 0, .7);
}

.modal-close svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

.modal-category {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .9rem;
  line-height: 1.15;
}

.modal-desc {
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1.6rem;
  font-weight: 300;
}

.modal-included {
  margin-bottom: 1.6rem;
}

.modal-included h5 {
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: .9rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.modal-included ul {
  list-style: none;
  padding: 0;
}

.modal-included li {
  font-size: .84rem;
  color: var(--mid);
  padding: .38rem 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.55;
  font-weight: 300;
}

.modal-included li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: .8rem;
  margin-top: 1px;
}

.modal-why {
  background: rgba(201, 168, 76, .06);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 6px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.8rem;
}

.modal-why h6 {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: .45rem;
}

.modal-why p {
  font-size: .83rem;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
}

.modal-cta {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .25s;
  display: block;
  text-align: center;
  text-decoration: none;
}

.modal-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, .3);
}

/* ── CONTACT ── */
#contact {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-left p {
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.1rem 1.25rem;
  transition: all .25s;
}

.ci-item:hover {
  border-color: rgba(201, 168, 76, .4);
  background: #fff;
}

.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.8;
}

.ci-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: .25rem;
}

.ci-val {
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
}

.ci-val a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
}

.ci-val a:hover {
  color: var(--gold);
}

.areas-box {
  margin-top: 1.75rem;
}

.areas-label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 7px;
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  padding: .55rem 1rem;
  font-size: .8rem;
  color: var(--primary);
  font-weight: 500;
  border-radius: 30px;
  transition: all .22s;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.area-tag:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, .25);
}

.area-tag:hover .area-dot {
  background: #fff;
}

.area-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  transition: background .22s;
}

.area-tag--all {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-weight: 600;
}

.area-tag--all:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.areas-note {
  font-size: .76rem;
  color: var(--light);
  margin-top: .85rem;
  line-height: 1.6;
  font-style: italic;
}

.contact-form-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.2rem;
}

.contact-form-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: .4rem;
}

.contact-form-box p {
  font-size: .84rem;
  color: var(--mid);
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: .5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #e0e0de;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: .9rem;
  font-family: inherit;
  background: #fff;
  color: var(--primary);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .12);
}

.form-field textarea {
  resize: none;
  height: 100px;
  line-height: 1.6;
}

.wa-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid #e0e0de;
  border-radius: 6px;
  background: #fff;
  padding: 0 14px;
  transition: border-color .2s, box-shadow .2s;
}

.wa-row:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .12);
}

.wa-pfx {
  font-size: .9rem;
  font-weight: 600;
  color: var(--mid);
  white-space: nowrap;
}

.wa-row input {
  border: none;
  outline: none;
  padding: 10px 0;
  font-size: .9rem;
  font-family: inherit;
  flex: 1;
  background: transparent;
}

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all .25s;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .5rem;
}

.form-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, .3);
}

.form-note {
  font-size: .75rem;
  color: var(--light);
  text-align: center;
  margin-top: .75rem;
}

.wa-quick {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.wa-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: .84rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
}

.wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: .84rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
}

.call-btn:hover {
  background: #333;
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  background: #1a1a1a;
  padding: 4rem 5rem 2rem;
  color: rgba(255, 255, 255, .5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand span {
  color: var(--gold);
}

.footer-bio {
  font-size: .82rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.reg-badge {
  font-size: .68rem;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .3);
  padding: .3rem .8rem;
  border-radius: 1px;
}

.fcol h5 {
  color: #fff;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.flinks {
  list-style: none;
}

.flinks li {
  margin-bottom: .5rem;
}

.flinks a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  font-size: .82rem;
  transition: color .2s;
}

.flinks a:hover {
  color: var(--gold-light);
}

.fci {
  display: flex;
  gap: .7rem;
  margin-bottom: .75rem;
  font-size: .8rem;
  align-items: flex-start;
}

.fci svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: .74rem;
}

/* ── FLOAT WA ── */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.float-wa a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .22);
  transition: all .2s;
}

.float-wa a:hover {
  background: #1ebe5d;
  transform: scale(1.04);
}

@media(max-width:900px) {
  .sec {
    padding: 4rem 2rem;
  }

  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .exp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hdr-inner {
    flex-direction: column;
    min-height: auto;
  }

  .hdr-logo {
    border-right: none;
    border-bottom: 1px solid var(--border);
    justify-content: center;
    padding: 14px;
  }

  .hdr-top {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hdr-nav {
    padding: 0 12px;
    justify-content: center;
  }

  .nav-links li a {
    padding: 0 12px;
    font-size: .82rem;
  }
}

@media(max-width:560px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }

  .modal-drawer {
    width: 100vw;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wa-quick {
    flex-direction: column;
  }

  .pillars {
    grid-template-columns: 1fr;
  }
}