/* ============================================================
   CREDORA INTERNATIONAL — MAIN STYLESHEET
   Design: Premium corporate authority | Navy + Gold
   ============================================================ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:         #0A1628;
  --navy-mid:     #112240;
  --navy-light:   #1D3461;
  --gold:         #C9A84C;
  --gold-light:   #E8C97E;
  --white:        #F8F9FA;
  --muted:        #8892A4;
  --border:       rgba(201,168,76,0.2);
  --border-light: rgba(201,168,76,0.1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w:   1280px;
  --radius:  4px;
  --trans:   0.35s ease;

  --section-py: clamp(4rem, 8vw, 7rem);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── GRAIN TEXTURE ──────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 500; }
p  { color: var(--muted); line-height: 1.8; }

.display-italic { font-style: italic; color: var(--gold); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.12em; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }
.section    { padding: var(--section-py) 0; }
.section--dark   { background: var(--navy); }
.section--mid    { background: var(--navy-mid); }
.section--light  { background: var(--navy-light); }

/* ─── GOLD DIVIDER ───────────────────────────────────────── */
.gold-rule {
  display: block;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.5rem;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

/* ─── SECTION LABEL ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--trans);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn--outline {
  border: 1px solid var(--border);
  color: var(--white);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background var(--trans), box-shadow var(--trans);
  padding: 1.25rem 0;
}
.site-header.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.75rem 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo img { height: 42px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color var(--trans);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--trans);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__cta { margin-left: 1rem; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--trans);
  border-radius: 2px;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
@media (max-width: 1023px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 70px;
    background: rgba(10,22,40,0.99);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    gap: 2rem;
    align-items: flex-start;
  }
  .nav.open .nav__links a { font-size: 1.2rem; }
  .nav.open .nav__cta { display: block; margin-left: 0; }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/hero-bg.png');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  transition: transform 15s ease;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.95) 0%,
    rgba(17,34,64,0.85) 50%,
    rgba(10,22,40,0.7) 100%
  );
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero__overline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero__overline span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.hero__overline::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: 1.125rem;
  color: rgba(248,249,250,0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: scroll-pulse 2.5s infinite;
}
.hero__scroll span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; }
.hero__scroll svg { animation: bounce 1.5s infinite; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
@keyframes scroll-pulse {
  0%,100% { opacity: 0.5; }
  50%      { opacity: 0.9; }
}

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.stat {
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}
@media (max-width: 767px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 1px solid var(--border); }
}

/* ─── ABOUT PREVIEW ──────────────────────────────────────── */
.about-preview { background: var(--navy); }
.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-preview__img {
  position: relative;
}
.about-preview__img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-preview__img::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  z-index: -1;
}
.credential-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

/* ─── SERVICES GRID ──────────────────────────────────────── */
.services { background: var(--navy-mid); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  transition: background var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.service-card:hover { background: var(--navy-light); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 3rem;
  height: 3rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.service-card__icon svg { width: 1.4rem; height: 1.4rem; }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.service-card p { font-size: 0.875rem; line-height: 1.7; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-top: 1.25rem;
  transition: gap var(--trans);
}
.service-card:hover .service-card__link { gap: 0.6rem; }
@media (max-width: 1023px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .services__grid { grid-template-columns: 1fr; } }

/* ─── WHY CHOOSE US ──────────────────────────────────────── */
.why { background: var(--navy); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-item { text-align: center; padding: 0 1rem; }
.why-item__icon {
  width: 4rem;
  height: 4rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  transition: background var(--trans), border-color var(--trans);
}
.why-item:hover .why-item__icon { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.why-item__icon svg { width: 1.5rem; height: 1.5rem; }
.why-item h4 { margin-bottom: 0.5rem; font-size: 0.95rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.02em; }
.why-item p { font-size: 0.8rem; line-height: 1.7; }
@media (max-width: 1023px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .why__grid { grid-template-columns: 1fr; } }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 0.75rem; }
.cta-banner p  { margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand p { font-size: 0.875rem; max-width: 280px; margin: 1rem 0 1.5rem; }
.footer__brand img { height: 36px; }
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--trans);
}
.footer__col ul a:hover { color: var(--white); }
.footer__contact { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.footer__contact-item svg { width: 1rem; height: 1rem; color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: 0.8rem; color: var(--muted); }
.footer__bottom a { color: var(--gold); transition: opacity var(--trans); }
.footer__bottom a:hover { opacity: 0.8; }
@media (max-width: 1023px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px)  { .footer__grid { grid-template-columns: 1fr; } }

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  padding: 9rem 0 5rem;
  position: relative;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url('/assets/images/hero-bg.png');
  background-size: cover;
  background-position: center;
}
.page-hero__content { position: relative; z-index: 2; max-width: 640px; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb span { color: var(--gold); }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.05rem; }

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}
.value-card {
  background: var(--navy-mid);
  padding: 2.5rem;
  transition: background var(--trans);
}
.value-card:hover { background: var(--navy-light); }
.value-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
@media (max-width: 767px) { .values-grid { grid-template-columns: 1fr; } }

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.mv-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.mv-card h3 { margin-bottom: 1rem; }
@media (max-width: 767px) { .mission-vision { grid-template-columns: 1fr; } }

/* ─── SERVICES PAGE ──────────────────────────────────────── */
.services-detail { background: var(--navy); }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-light);
}
.service-block:last-child { border-bottom: none; }
.service-block--reverse .service-block__img { order: 2; }
.service-block--reverse .service-block__text { order: 1; }
.service-block__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.service-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.service-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.55rem;
}
@media (max-width: 767px) {
  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-block--reverse .service-block__img,
  .service-block--reverse .service-block__text { order: unset; }
}

/* ─── PROCESS PAGE ───────────────────────────────────────── */
.process-steps { counter-reset: step; }
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-light);
  counter-increment: step;
}
.process-step:last-child { border-bottom: none; }
.process-step__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  min-width: 3rem;
  text-align: center;
}
.process-step__content h3 { margin-bottom: 0.6rem; }

/* ─── FAQ ACCORDION ──────────────────────────────────────── */
.faq { background: var(--navy-mid); }
.faq__list { margin-top: 2.5rem; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--trans);
}
.faq-item__q:hover { color: var(--gold); }
.faq-item__q svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--trans);
}
.faq-item.open .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
}
.faq-item.open .faq-item__a { max-height: 300px; padding-bottom: 1.5rem; }
.faq-item__a p { font-size: 0.9rem; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info__icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info__icon svg { width: 1.25rem; height: 1.25rem; }
.contact-info__text h4 { font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.35rem; }
.contact-info__text p, .contact-info__text a { font-size: 0.95rem; color: var(--muted); }
.contact-info__text a:hover { color: var(--white); }
@media (max-width: 767px) { .contact-grid { grid-template-columns: 1fr; } }

/* ─── CONTACT FORM ───────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 767px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(29,52,97,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color var(--trans), background var(--trans);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(29,52,97,0.6);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-message { font-size: 0.875rem; padding: 0.75rem 1rem; border-radius: var(--radius); display: none; }
.form-message.success { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3); color: #4ade80; display: block; }
.form-message.error   { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3); color: #f87171; display: block; }

/* ─── TERMS PAGE ─────────────────────────────────────────── */
.terms-content {
  max-width: 800px;
  margin: 0 auto;
}
.terms-content h3 { margin: 2.5rem 0 0.75rem; }
.terms-content p  { margin-bottom: 1rem; }
.terms-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.terms-content ul li { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.4rem; list-style: disc; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-header { max-width: 640px; margin-bottom: 3.5rem; }
.section-header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header--center .gold-rule { margin: 0 auto 1.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1rem; }

/* ─── ABOUT PREVIEW LAYOUT FIX ───────────────────────────── */
@media (max-width: 1023px) {
  .about-preview__grid { grid-template-columns: 1fr; }
  .about-preview__img img { height: 360px; }
  .about-preview__img::before { display: none; }
}

/* ─── RESPONSIVE HELPERS ─────────────────────────────────── */
@media (max-width: 767px) {
  .hero__actions { flex-direction: column; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ─── PRINT ──────────────────────────────────────────────── */
@media print {
  .site-header, .hero__scroll, .cta-banner, .site-footer { display: none; }
  body { background: white; color: black; }
  h1, h2, h3 { color: black; }
  p { color: #333; }
}
