/* ==========================================================================
   AKRIVIA GLOBAL — Minimalist · Premium
   Palette derived from logo: deep navy, antique gold, warm cream.
   ========================================================================== */

:root {
  --navy:        #0c1a2e;
  --navy-2:      #0f2138;
  --navy-3:      #15294a;
  --gold:        #c9a559;
  --gold-soft:   #d9bb78;
  --cream:       #f3ead8;
  --cream-dim:   #d8cdb5;
  --line:        rgba(243, 234, 216, 0.12);
  --line-strong: rgba(243, 234, 216, 0.22);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(201, 165, 89, 0.07), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(201, 165, 89, 0.05), transparent 50%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--cream-dim);
}
.gold { color: var(--gold); font-style: italic; font-weight: 500; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.center { text-align: center; }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 60ch;
  font-weight: 300;
}
.lede.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
  background: transparent;
  color: var(--cream);
}
.btn--gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); transform: translateY(-2px); }
.btn--ghost { padding: 0.7rem 1.3rem; font-size: 0.72rem; }
.btn--ghost:hover { background: var(--gold); color: var(--navy); }
.btn--text {
  border: none; padding: 1rem 0.4rem;
  border-bottom: 1px solid var(--line-strong); border-radius: 0;
}
.btn--text:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad);
  background: rgba(12, 26, 46, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  animation: navSlide 0.8s cubic-bezier(.2,.7,.2,1) both;
  transition: padding 0.3s ease, background 0.3s ease;
}
@keyframes navSlide {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.nav.scrolled {
  padding: 0.7rem var(--pad);
  background: rgba(12, 26, 46, 0.92);
  transition: padding 0.3s ease, background 0.3s ease;
}
.nav__brand { display: flex; align-items: center; gap: 0.85rem; }
.nav__brand img { width: 38px; height: 38px; border-radius: 6px; }
.nav__brand span {
  font-family: var(--serif); font-size: 1.25rem;
  letter-spacing: 0.18em; font-weight: 500;
}
.nav__brand em { font-style: normal; color: var(--gold); font-weight: 400; }
.nav__links { display: flex; gap: 2.4rem; align-items: center; }
.nav__links a {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 400; color: var(--cream-dim);
  position: relative; padding: 0.4rem 0;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .35s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta-mobile { display: none; }

/* Hamburger button */
.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  width: 44px; height: 44px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s ease;
  z-index: 60;
}
.nav__toggle:hover { border-color: var(--gold); }
.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.35s cubic-bezier(.2,.7,.2,1);
  transform-origin: center;
}
.nav__toggle.is-open {
  border-color: var(--gold);
}
.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--gold);
}
.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--gold);
}

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 26, 46, 0.6);
  backdrop-filter: blur(4px);
  z-index: 45;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nav__overlay.is-open {
  display: block;
  opacity: 1;
}

@media (max-width: 860px) {
  .nav { padding: 0.9rem var(--pad); }
  .nav__brand span { font-size: 1.05rem; letter-spacing: 0.14em; }
  .nav__brand img { width: 34px; height: 34px; }
  .nav__cta-desktop { display: none; }
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(82vw, 340px);
    background: var(--navy-2);
    border-left: 1px solid var(--line-strong);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(.2,.7,.2,1);
    z-index: 55;
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a {
    width: 100%;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--cream);
  }
  .nav__links a::after { display: none; }
  .nav__links a:hover { color: var(--gold); padding-left: 0.6rem; transition: all .3s ease; }
  .nav__cta-mobile {
    display: inline-flex !important;
    margin-top: 2rem;
    width: 100%;
    justify-content: center;
    border-bottom: none !important;
    padding: 1rem 1.6rem !important;
  }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  padding: 160px var(--pad) 0;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
/* Subtle geometric grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 165, 89, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 165, 89, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, black 20%, transparent 70%);
  pointer-events: none;
}
/* Decorative corner accent */
.hero::after {
  content: '';
  position: absolute;
  top: 120px; right: -60px;
  width: 400px; height: 400px;
  border: 1px solid rgba(201, 165, 89, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero__grid {
  flex: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__copy { animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) both; }
.hero__copy h1 { margin-bottom: 2rem; }
.hero__cta {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  margin-top: 2.5rem;
}
.hero__stats {
  margin-top: 4rem;
  display: flex; gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.hero__stats div { display: flex; flex-direction: column; flex: 1; }
.hero__stats div + div {
  border-left: 1px solid var(--line);
  padding-left: 2rem;
}
.hero__stats strong {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 400;
  color: var(--gold); line-height: 1;
}
.hero__stats span {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-dim); margin-top: 0.5rem;
}

.hero__mark {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 1.4s ease 0.3s both;
}
.hero__mark img {
  width: min(100%, 420px);
  border-radius: 12px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 0 1px var(--line-strong),
    0 0 80px rgba(201, 165, 89, 0.08);
}
.mark-ring {
  position: absolute;
  inset: -8%;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
.mark-ring::before {
  content: ''; position: absolute; top: -4px; left: 50%;
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  transform: translateX(-50%);
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__mark { order: -1; max-width: 280px; margin: 0 auto; }
  .hero__stats { gap: 0; flex-wrap: wrap; }
  .hero__stats div { flex: 0 0 50%; padding: 0.8rem 0; }
  .hero__stats div + div { border-left: none; padding-left: 0; }
  .hero__stats div:nth-child(2n) { border-left: 1px solid var(--line); padding-left: 1.5rem; }
  .hero__stats div:nth-child(n+3) { border-top: 1px solid var(--line); padding-top: 1rem; }
}

/* ---------- Marquee ---------- */
.marquee {
  margin-top: 5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; letter-spacing: 0.1em;
  color: var(--cream-dim);
}
.marquee__track span:nth-child(even) { color: var(--gold); }

/* ---------- Sections ---------- */
section { padding: clamp(80px, 10vw, 140px) var(--pad); }

.section-head {
  max-width: var(--max); margin: 0 auto 4rem;
}

.intro__inner {
  max-width: 880px; margin: 0 auto; text-align: center;
  position: relative;
}
.intro__inner::before {
  content: '"';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.intro h2 { margin: 1rem 0 2rem; }

/* ---------- Services (Tabbed Pillars) ---------- */
.services { background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.svc-tabs {
  max-width: var(--max); margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  padding-bottom: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: wrap;
}
.svc-tabs::-webkit-scrollbar { display: none; }

.svc-tab {
  padding: 0.85rem 1.6rem;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cream-dim);
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
  outline: none;
}
.svc-tab:hover {
  color: var(--cream);
  border-color: var(--gold);
  background: rgba(201, 165, 89, 0.08);
}
.svc-tab.is-active {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  font-weight: 600;
}

.svc-panels { max-width: var(--max); margin: 0 auto; }

/* CRITICAL: hide/show panels */
.svc-panel { display: none !important; opacity: 0; }
.svc-panel.is-active {
  display: block !important;
  opacity: 1;
  animation: panelFadeIn 0.55s cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.svc-panel__head {
  padding: 0 0 1.5rem;
}
.svc-panel__head h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400; color: var(--cream);
  line-height: 1.15; margin-bottom: 0.5rem;
}
.svc-panel__head h3 em { font-style: italic; color: var(--gold); }
.svc-panel__head p {
  color: var(--cream-dim); font-size: 0.9rem;
  max-width: 55ch; line-height: 1.6;
}

.svc-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 1.5rem;
}

.svc-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.4rem;
  background: var(--navy-2);
  min-height: 170px;
  transition: all 0.35s ease;
  cursor: default;
  position: relative;
}
.svc-card:hover {
  background: var(--navy-3);
}
.svc-card:hover::after {
  content: '→';
  position: absolute;
  top: 1.5rem; right: 1.3rem;
  font-size: 1rem;
  color: var(--gold);
  animation: arrowSlide 0.4s ease forwards;
}
@keyframes arrowSlide {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

.svc-card__icon {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.svc-card__body h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.25;
  transition: color 0.3s;
}
.svc-card:hover .svc-card__body h4 { color: var(--gold); }

.svc-card__body p {
  color: var(--cream-dim);
  font-size: 0.82rem;
  line-height: 1.55;
}

.svc-panel__cta {
  padding: 1.8rem 0 0.5rem;
  text-align: left;
}
.svc-panel__cta a {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  transition: all 0.3s;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.4rem;
}
.svc-panel__cta a:hover {
  border-bottom-color: var(--gold);
  padding-left: 0.5rem;
}

@media (max-width: 900px) {
  .svc-panel__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card { min-height: 150px; padding: 1.3rem 1.2rem; }
}
@media (max-width: 560px) {
  .svc-panel__grid { grid-template-columns: 1fr; }
  .svc-card { min-height: auto; padding: 1.2rem 1rem; }
}
@media (max-width: 700px) {
  .svc-tabs { gap: 0.4rem; padding-bottom: 1.5rem; }
  .svc-tab { padding: 0.65rem 0.9rem; font-size: 0.62rem; letter-spacing: 0.06em; }
}

/* ---------- Process ---------- */
.process__steps {
  max-width: var(--max); margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.process__steps li {
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--gold);
  position: relative;
  transition: all 0.4s ease;
}
.process__steps li:hover {
  padding-left: 0.8rem;
}
.step__num {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--gold);
  letter-spacing: 0.2em; margin-bottom: 1.5rem;
}
.process__steps h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.7rem; margin-bottom: 0.8rem;
}
.process__steps p { color: var(--cream-dim); font-size: 0.95rem; }

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

/* ---------- Approach ---------- */
.approach { background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.approach__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem;
  align-items: start;
}
.approach__list {
  display: grid; gap: 2.4rem;
}
.approach__list h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.4rem; color: var(--gold); margin-bottom: 0.5rem;
}
.approach__list p { color: var(--cream-dim); font-size: 0.95rem; }
@media (max-width: 900px) { .approach__grid { grid-template-columns: 1fr; gap: 3rem; } }

/* ---------- Sectors ---------- */
.sectors__list {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  justify-content: center;
}
.sectors__list span {
  padding: 0.9rem 1.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  transition: all 0.35s ease;
  cursor: default;
}
.sectors__list span:hover {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold); transform: translateY(-2px);
}

/* ---------- Contact ---------- */
.contact { background: var(--navy-2); border-top: 1px solid var(--line); }
.contact__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.contact__meta {
  margin-top: 3rem; display: grid; gap: 1.5rem;
  border-top: 1px solid var(--line); padding-top: 2rem;
}
.contact__meta div { display: flex; flex-direction: column; }
.contact__meta strong {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
  margin-bottom: 0.3rem;
}
.contact__meta span { color: var(--cream-dim); font-size: 1rem; }

.contact__actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 2rem;
}
.contact__actions .btn { padding: 0.95rem 1.6rem; }
.contact__actions svg { flex-shrink: 0; }

/* Floating WhatsApp */
.fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 100;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
  animation: pulse 2.4s ease-in-out infinite;
}
.fab svg { width: 24px; height: 24px; }
.fab:hover { transform: scale(1.08); }

/* ---------- Clients ---------- */
.clients { border-top: 1px solid var(--line); display: none; }
.clients.has-logos { display: block; }
.clients__logos {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 3rem;
}
.clients__logos img {
  height: 36px; width: auto;
  filter: grayscale(1) brightness(1.8) opacity(0.5);
  transition: all 0.4s ease;
  object-fit: contain;
}
.clients__logos img:hover {
  filter: grayscale(0) brightness(1) opacity(1);
}

/* ---------- Blog ---------- */
.blog { border-top: 1px solid var(--line); }
.blog__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog__card {
  border: 1px solid var(--line);
  padding: 2rem 1.8rem;
  transition: all 0.4s ease;
  display: flex; flex-direction: column;
}
.blog__card:hover {
  border-color: var(--gold);
  background: rgba(201, 165, 89, 0.04);
  transform: translateY(-3px);
}
.blog__date {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.blog__card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 0.7rem;
}
.blog__card p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}
.blog__card .blog__read {
  display: inline-flex;
  align-items: center; gap: 0.4rem;
  margin-top: 1.2rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: gap 0.3s;
}
.blog__card:hover .blog__read { gap: 0.7rem; }
.blog__empty {
  max-width: var(--max); margin: 0 auto;
  text-align: center;
  color: var(--cream-dim);
  font-style: italic;
  padding: 2rem 0;
}

@media (max-width: 900px) { .blog__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog__grid { grid-template-columns: 1fr; } }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

.form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
  background: var(--navy-3); padding: 3rem;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
}
.form label { display: flex; flex-direction: column; gap: 0.5rem; }
.form .full { grid-column: 1 / -1; }
.form span {
  font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-soft); font-weight: 500;
}
.form input, .form select, .form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.7rem 0;
  color: var(--cream);
  font-family: var(--sans); font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--gold); }
.form select option { background: var(--navy-3); color: var(--cream); }
.form textarea { resize: vertical; }
.form button { margin-top: 0.8rem; justify-content: center; }
.form__msg {
  grid-column: 1 / -1;
  font-size: 0.88rem; color: var(--gold); min-height: 1.2em;
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .form { padding: 2rem; }
  .form { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.foot {
  background: var(--navy);
  border-top: 1px solid var(--line);
  padding: 5rem var(--pad) 2rem;
}
.foot__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.foot__brand img { width: 56px; border-radius: 6px; margin-bottom: 1.2rem; }
.foot__brand p { color: var(--cream-dim); max-width: 32ch; font-size: 0.9rem; }
.foot h5 {
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem; font-weight: 500;
}
.foot a, .foot p {
  display: block; color: var(--cream-dim);
  font-size: 0.9rem; margin-bottom: 0.6rem; transition: color .25s;
}
.foot a:hover { color: var(--gold); }
.foot__base {
  max-width: var(--max); margin: 2rem auto 0;
  display: flex; justify-content: space-between;
  font-size: 0.78rem; color: var(--cream-dim);
  letter-spacing: 0.08em;
}
@media (max-width: 800px) {
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__base { flex-direction: column; gap: 0.5rem; }
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes spin   { to { transform: rotate(360deg); } }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

::selection { background: var(--gold); color: var(--navy); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
