/* ============================================================
   NAGA'S — Design System
   ============================================================ */

/* --- Variables ------------------------------------------------ */
:root {
  /* Couleurs */
  --clr-bg:        #0d0f14;
  --clr-surface:   #161a24;
  --clr-surface-2: #1e2433;
  --clr-border:    rgba(255,255,255,.07);

  --clr-gold:      #c89b4f;
  --clr-gold-light:#e0ba7a;
  --clr-gold-dark: #9e7a38;

  --clr-text:      #e8e8e8;
  --clr-text-muted:#8a95aa;
  --clr-white:     #ffffff;

  /* Typographie */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --fs-xs:   .75rem;
  --fs-sm:   .875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.375rem;
  --fs-2xl:  1.75rem;
  --fs-3xl:  2.25rem;
  --fs-4xl:  3rem;
  --fs-5xl:  4rem;

  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semibold:600;
  --fw-bold:    700;

  --lh-tight:  1.2;
  --lh-snug:   1.4;
  --lh-normal: 1.6;
  --lh-relaxed:1.8;

  /* Espacements */
  --space-1:  .25rem;
  --space-2:  .5rem;
  --space-3:  .75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Effets */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.5);
  --transition: 250ms cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Utilitaires ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section { padding-block: var(--space-24); }
.section--sm { padding-block: var(--space-16); }

.text-gold    { color: var(--clr-gold); }
.text-muted   { color: var(--clr-text-muted); }
.text-center  { text-align: center; }
.text-upper   { text-transform: uppercase; letter-spacing: .12em; font-size: var(--fs-xs); font-weight: var(--fw-semibold); }

/* --- Typographie ---------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--clr-white);
}

h1 { font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl)); }
h2 { font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl)); }
h3 { font-size: clamp(var(--fs-xl), 2.5vw, var(--fs-2xl)); }

p  { color: var(--clr-text-muted); line-height: var(--lh-relaxed); }

.section-label {
  display: inline-block;
  color: var(--clr-gold);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: var(--space-4);
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  max-width: 60ch;
  line-height: var(--lh-relaxed);
}

/* --- Boutons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-gold);
  color: var(--clr-bg);
}
.btn--primary:hover {
  background: var(--clr-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,155,79,.35);
}

.btn--outline {
  border: 1.5px solid var(--clr-gold);
  color: var(--clr-gold);
}
.btn--outline:hover {
  background: var(--clr-gold);
  color: var(--clr-bg);
  transform: translateY(-1px);
}

.btn--ghost {
  color: var(--clr-text-muted);
  padding-inline: 0;
}
.btn--ghost:hover { color: var(--clr-gold); }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* --- Divider -------------------------------------------------- */
.divider {
  width: 48px;
  height: 2px;
  background: var(--clr-gold);
  margin-block: var(--space-6);
}
.divider--center { margin-inline: auto; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.is-scrolled {
  background: rgba(13,15,20,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--clr-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  line-height: 1;
}

.nav__logo-sub {
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--clr-white);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__cta { margin-left: var(--space-4); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: var(--space-2);
}

.nav__burger span {
  display: block;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-6);
  flex-direction: column;
  gap: var(--space-4);
  z-index: 99;
}

.nav__mobile.is-open { display: flex; }

.nav__mobile-link {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--transition);
}

.nav__mobile-link:hover,
.nav__mobile-link.is-active { color: var(--clr-gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,155,79,.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(200,155,79,.04) 0%, transparent 60%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--clr-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--clr-border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  opacity: .4;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--clr-gold);
}

.hero__title {
  margin-bottom: var(--space-6);
}

.hero__title span {
  color: var(--clr-gold);
  display: block;
}

.hero__desc {
  font-size: var(--fs-lg);
  max-width: 56ch;
  margin-bottom: var(--space-10);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--clr-text-muted);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .1em;
  animation: bounce 2s infinite;
}

.hero__scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding-block: var(--space-8);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-8);
  text-align: center;
}

.stat__value {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  line-height: 1;
}

.stat__label {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-top: var(--space-2);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(200,155,79,.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: rgba(200,155,79,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.card__icon svg { width: 24px; height: 24px; color: var(--clr-gold); }

.card__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-3);
}

.card__desc { font-size: var(--fs-sm); }

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

/* ============================================================
   SECTION ABOUT (HOME)
   ============================================================ */
.about-block__tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(200,155,79,.1);
  border: 1px solid rgba(200,155,79,.3);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.about-block__visual {
  position: relative;
}

.about-block__image-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.about-block__logo-display {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  opacity: .15;
  user-select: none;
}

.about-block__badge {
  position: absolute;
  bottom: -var(--space-4);
  right: var(--space-4);
  background: var(--clr-gold);
  color: var(--clr-bg);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-block__badge-num {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  line-height: 1;
}

.about-block__badge-text {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
}

/* ============================================================
   CITATION
   ============================================================ */
.quote-section {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.quote {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.quote__mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--clr-gold);
  opacity: .2;
  line-height: .6;
  margin-bottom: var(--space-4);
  display: block;
}

.quote__text {
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-xl), 2.5vw, var(--fs-2xl));
  color: var(--clr-white);
  font-style: italic;
  line-height: var(--lh-snug);
  margin-bottom: var(--space-6);
}

.quote__author {
  font-size: var(--fs-sm);
  color: var(--clr-gold);
  font-weight: var(--fw-semibold);
}

/* ============================================================
   PAGE HERO (sous-pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-16);
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(200,155,79,.06) 0%, transparent 70%);
  border-bottom: 1px solid var(--clr-border);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding-block: var(--space-12);
  border-bottom: 1px solid var(--clr-border);
}

.service-row:last-child { border-bottom: none; }
.service-row--reverse { direction: rtl; }
.service-row--reverse > * { direction: ltr; }

.service-row__num {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  opacity: .1;
  line-height: 1;
}

.service-row__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-4);
}

.service-row__visual {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.service-row__visual-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--clr-surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
}

.service-row__visual-icon {
  width: 36px;
  height: 36px;
  background: rgba(200,155,79,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-row__visual-icon svg { width: 18px; height: 18px; color: var(--clr-gold); }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.tag {
  padding: var(--space-1) var(--space-3);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* ============================================================
   À PROPOS PAGE
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}

.value-card {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.value-card:hover::before { transform: scaleX(1); }

.value-card__num {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  opacity: .15;
  line-height: 1;
}

.timeline {
  position: relative;
  padding-left: var(--space-10);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
}

.timeline__item {
  position: relative;
  margin-bottom: var(--space-10);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-10) - 4px);
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(200,155,79,.2);
}

.timeline__date {
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--space-2);
}

.timeline__title { font-size: var(--fs-lg); margin-bottom: var(--space-2); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--clr-border);
}

.contact-info__item:last-child { border-bottom: none; }

.contact-info__icon {
  width: 40px;
  height: 40px;
  background: rgba(200,155,79,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg { width: 18px; height: 18px; color: var(--clr-gold); }

.contact-info__label {
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--space-1);
}

.contact-info__value { font-size: var(--fs-sm); color: var(--clr-text-muted); }
.contact-info__value a:hover { color: var(--clr-gold); }

/* Formulaire */
.form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
}

.form__label span { color: var(--clr-gold); }

.form__input,
.form__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input::placeholder,
.form__textarea::placeholder { color: var(--clr-text-muted); }

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(200,155,79,.1);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}

.form__submit {
  width: 100%;
  justify-content: center;
  padding: var(--space-4);
}

/* Messages de statut */
.alert {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.alert--success {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  color: #86efac;
}

.alert--error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  color: #fca5a5;
}

.alert svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-16);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--clr-border);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--space-2);
}

.footer__brand-sub {
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-5);
}

.footer__desc { font-size: var(--fs-sm); max-width: 32ch; }

.footer__col-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.footer__link:hover { color: var(--clr-gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-6);
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer__social-link {
  width: 34px;
  height: 34px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.footer__social-link svg { width: 16px; height: 16px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--clr-surface) 0%, var(--clr-surface-2) 100%);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-16);
  text-align: center;
  margin-block: var(--space-8);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,155,79,.06) 0%, transparent 70%);
}

.cta-section > * { position: relative; z-index: 1; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-2-1,
  .contact-grid { grid-template-columns: 1fr; }

  .service-row { grid-template-columns: 1fr; }
  .service-row--reverse { direction: ltr; }

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

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav__links,
  .nav__cta { display: none; }

  .nav__burger { display: flex; }

  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }

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

  .footer__main { grid-template-columns: 1fr; gap: var(--space-8); }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--space-4); }
  .section { padding-block: var(--space-16); }
  .form { padding: var(--space-6); }
  .cta-section { padding: var(--space-10) var(--space-6); }
}
