/* ===========================================
   ADSVIO AGENCY — SHARED STYLES
   =========================================== */
:root {
  --navy: #0B1D35;
  --navy-deep: #071526;
  --navy-soft: #1a2d45;
  --gold: #C8A45A;
  --gold-light: #E2C07E;
  --gold-pale: #F8F2E6;
  --white: #FFFFFF;
  --off: #F9F7F4;
  --warm: #FAF7F2;
  --text: #1C1C2E;
  --muted: #6B7080;
  --border: #E8E4DC;
  --radius: 10px;
  --shadow-sm: 0 4px 16px rgba(11,29,53,0.06);
  --shadow-md: 0 12px 36px rgba(11,29,53,0.08);
  --shadow-lg: 0 20px 50px rgba(11,29,53,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── LOGO ── */
.logo-mark {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(11,29,53,0.06);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.btn-nav {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 7px;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  transition: background .2s, transform .15s !important;
}
.btn-nav:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  background: none;
  border: none;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-radius: 100px;
  transition: all .2s;
  font-family: inherit;
}
.lang-btn.active {
  background: var(--navy);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  display: block;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 15px 32px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 22px rgba(200,164,90,0.35);
  transition: all .2s;
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200,164,90,0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 15px 32px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(11,29,53,0.2);
  transition: all .2s;
  display: inline-block;
  text-align: center;
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  padding: 15px 32px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}
.btn-white:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* ── SECTIONS SHARED ── */
section { padding: 96px 5%; }
.container { max-width: 1180px; margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
}
.section-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
}
.section-p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .section-p { margin: 0 auto; }

/* ── PAGE HEADER (for sub-pages) ── */
.page-header {
  background: var(--navy);
  padding: 140px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,164,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .eyebrow { color: var(--gold); justify-content: center; }
.page-header .eyebrow::before { background: rgba(200,164,90,0.5); }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.page-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* ── FOOTER ── */
footer {
  background: #060E1C;
  padding: 56px 5% 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  text-decoration: none;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.soc {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  transition: all .2s;
}
.soc:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0; right: 0;
  background: var(--white);
  padding: 24px 5%;
  border-bottom: 1px solid var(--border);
  gap: 18px;
  z-index: 99;
}
nav.open .nav-links a.active::after { display: none; }

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  section { padding: 72px 5%; }
  .lang-toggle { display: none; }
  nav.open .lang-toggle { display: flex; margin-top: 14px; }
}
