/* ============================================================
   GALLONE GLOBAL — WEBSITE STYLESHEET
   Brand Standard v1.0 · June 2026
   Colours: pixel-sampled from GG Brochure
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

/* ── CSS Variables (Brand Tokens) ── */
:root {
  /* PRIMARY */
  --navy:          #172236;   /* Primary background */
  --navy-card:     #212D40;   /* Card / elevated surface */
  --navy-mid:      #1E2B42;   /* Hover states */
  --gold:          #C4A855;   /* Primary accent */
  --gold-light:    #D4BC74;   /* Hover state */
  --gold-dark:     #9B8650;   /* Decorative dividers */

  /* LIGHT MODE */
  --parchment:     #F4EEE2;   /* Light background */
  --parchment-warm:#E7D8AD;   /* Section headers on light */

  /* TEXT SCALE */
  --white:         #FEFEFE;   /* Headlines, stats */
  --text-light:    #E9E9EB;   /* Card headings */
  --text-blue:     #8D98AA;   /* Body copy on dark */
  --text-mid:      #757677;   /* Captions */
  --text-navy:     #172236;   /* Body text on light bg */
  --text-body-light: #4A5568; /* Body copy on parchment */

  /* TYPOGRAPHY */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* LAYOUT */
  --max-w: 1200px;
  --ease:  0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--text-light);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.9rem); }
p  { font-size: 0.92rem; color: var(--text-blue); line-height: 1.85; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.italic { font-style: italic; }
.gold   { color: var(--gold); }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section        { padding: 6rem 0; }
.section--navy  { background: var(--navy); }
.section--card  { background: var(--navy-card); }
.section--parchment {
  background: var(--parchment);
  color: var(--text-navy);
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.divider--center { margin: 1.25rem auto; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  padding: 0.85rem 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(23,34,54,0.97);
  backdrop-filter: blur(14px);
  padding: 0.65rem 0;
  border-bottom-color: rgba(196,168,85,0.18);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: block;
  line-height: 0;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity var(--ease);
}
.nav__logo-img:hover { opacity: 0.88; }
.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-blue);
  transition: color var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav__cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold-dark) !important;
  color: var(--gold) !important;
  transition: background var(--ease), color var(--ease) !important;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero__deco-circle {
  position: absolute;
  top: 6rem; right: -4rem;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(196,168,85,0.22);
  pointer-events: none;
}
.hero__deco-blob {
  position: absolute;
  bottom: -5rem; left: -5rem;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--navy-card);
  opacity: 0.7;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero__tag {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.hero__tag::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero__tagline {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.hero__divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin-bottom: 1.75rem;
}
.hero__sub {
  font-size: 0.95rem;
  color: var(--text-blue);
  max-width: 560px;
  margin-bottom: 2.75rem;
  line-height: 1.85;
}
.hero__actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mid);
  z-index: 2;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  transition: all var(--ease);
  border: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover { background: var(--gold-light); }
.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
}
.btn--gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn--outline:hover {
  border-color: var(--gold-dark);
  color: var(--gold);
}

/* ── Stats Bar ── */
.stats {
  background: var(--navy-card);
  border-top: 1px solid rgba(196,168,85,0.14);
  border-bottom: 1px solid rgba(196,168,85,0.14);
  padding: 3.5rem 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.stats__grid::before,
.stats__grid::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 1px; height: 50px;
  background: var(--gold-dark);
  opacity: 0.5;
}
.stats__grid::before { left: 33.33%; }
.stats__grid::after  { left: 66.66%; }
.stat {
  text-align: center;
  padding: 0.5rem 2rem;
}
.stat h3 {
  font-family: var(--sans);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  line-height: 1;
}
.stat p {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-blue);
  margin: 0;
}

/* ── Section Header ── */
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header p { max-width: 560px; font-size: 0.95rem; }
.section-header--center p { margin: 0 auto; }
.section-header h2 { color: var(--white); }
.section--parchment .section-header h2,
.section--parchment h2 { color: var(--navy); }
.section--parchment .eyebrow { color: var(--gold-dark); }

/* ── Sector Grid ── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: rgba(196,168,85,0.08);
}
.sector-card {
  background: var(--navy-card);
  padding: 2.25rem;
  transition: background var(--ease);
  position: relative;
  overflow: hidden;
}
.sector-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.sector-card:hover::before { height: 100%; }
.sector-card:hover { background: #253351; }
.sector-card__number {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.sector-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}
.sector-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.sector-card__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(196,168,85,0.22);
  color: var(--text-mid);
}

/* ── About Intro (home) ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}
.about-intro__frame {
  aspect-ratio: 4/5;
  background: var(--navy-card);
  border: 1px solid rgba(196,168,85,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-intro__frame-glyph {
  font-family: var(--serif);
  font-size: 7rem;
  color: rgba(196,168,85,0.06);
  font-style: italic;
  user-select: none;
}
.about-intro__badge {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-family: var(--sans);
}
.about-intro__badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-intro__badge span {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.about-intro__content blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

/* ── Pillars ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
.pillar { text-align: center; }
.pillar__icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(196,168,85,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
}
.pillar h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.pillar p { font-size: 0.88rem; }

/* ── CTA Band ── */
.cta-band {
  background: var(--navy-card);
  border-top: 1px solid rgba(196,168,85,0.14);
  border-bottom: 1px solid rgba(196,168,85,0.14);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(196,168,85,0.12);
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { max-width: 480px; margin: 0 auto 2.25rem; font-size: 0.95rem; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 11rem 0 5.5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(196,168,85,0.12);
}
.page-hero__circle {
  position: absolute;
  top: 3rem; right: -3rem;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(196,168,85,0.18);
}
.page-hero__blob {
  position: absolute;
  bottom: -4rem; left: -4rem;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--navy-card);
  opacity: 0.6;
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-top: 0.5rem; }
.page-hero p {
  font-size: 1rem;
  max-width: 560px;
  margin-top: 1.25rem;
  line-height: 1.85;
}

/* ── Services Detail ── */
.service-full {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-full:last-child { border-bottom: none; }
.service-full__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
.service-full__aside {
  position: sticky;
  top: 8rem;
}
.service-full__number {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service-full h2 {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-full__markets {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.service-full__market {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-full__market::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--gold-dark);
}
.service-full__body p {
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.service-full__body h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.cert-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cert {
  background: rgba(196,168,85,0.06);
  border: 1px solid rgba(196,168,85,0.2);
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.75rem;
}

/* ── About Page ── */
.about-profile {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.profile-card {
  background: var(--navy-card);
  border: 1px solid rgba(196,168,85,0.12);
  padding: 2.25rem;
  position: sticky;
  top: 8rem;
}
.profile-card__emblem {
  aspect-ratio: 1;
  background: var(--navy);
  border: 1px solid rgba(196,168,85,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  font-family: var(--serif);
  font-size: 4rem;
  color: rgba(196,168,85,0.15);
  font-style: italic;
}
.profile-card h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.profile-card__title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.profile-card__detail {
  font-size: 0.85rem;
  color: var(--text-blue);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.profile-card__detail:last-of-type { border-bottom: none; }
.profile-card__detail strong { color: var(--text-light); font-weight: 500; text-align: right; }
.credentials-list { margin: 2rem 0; }
.credential {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.credential__year {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: block;
}
.credential h4 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.credential p { font-size: 0.82rem; }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info__item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-info__item:first-child { padding-top: 0; }
.contact-info__item h4 {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-info__item p { font-size: 0.9rem; color: var(--text-light); }
.contact-form {
  background: var(--navy-card);
  border: 1px solid rgba(196,168,85,0.1);
  padding: 2.75rem;
}
.form-group { margin-bottom: 1.75rem; }
.form-group label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-blue);
  margin-bottom: 0.55rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--ease);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-dark); }
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-group select option { background: var(--navy-card); }

/* ── Glossary ── */
.glossary {
  background: #0f1720;
  padding: 3rem 0;
  border-top: 1px solid rgba(196,168,85,0.08);
}
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.4rem 3rem;
  margin-top: 1.5rem;
}
.glossary p { font-size: 0.8rem; }
.glossary p strong { color: var(--text-light); }

/* ── Footer ── */
.footer {
  background: #0f1720;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(196,168,85,0.1);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer__logo-img {
  height: 58px;
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
}
.footer__brand p {
  font-size: 0.85rem;
  max-width: 280px;
}
.footer__col h5 {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__col ul li { margin-bottom: 0.55rem; }
.footer__col ul li a {
  font-size: 0.85rem;
  color: var(--text-blue);
  transition: color var(--ease);
}
.footer__col ul li a:hover { color: var(--text-light); }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p { font-size: 0.75rem; color: var(--text-mid); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-intro         { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro__badge  { right: 0; }
  .pillars             { grid-template-columns: 1fr; gap: 2rem; }
  .service-full__inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-full__aside { position: static; }
  .about-profile       { grid-template-columns: 1fr; gap: 3rem; }
  .profile-card        { position: static; }
  .contact-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner       { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav__links          { display: none; }
  .sectors-grid        { grid-template-columns: 1fr; }
  .stats__grid         { grid-template-columns: 1fr; }
  .stats__grid::before,
  .stats__grid::after  { display: none; }
  .footer__inner       { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom      { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── Mobile Navigation (Hamburger) ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform-origin: center;
}
/* Animate to X when open */
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: rgba(23,34,54,0.98);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(196,168,85,0.18);
    border-bottom: 1px solid rgba(196,168,85,0.18);
    padding: 0.5rem 0;
  }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    padding: 0.85rem 2.5rem;
    font-size: 0.72rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav__cta {
    margin: 0.5rem 2.5rem 0.75rem;
    display: block;
    text-align: center;
    padding: 0.75rem 1.4rem !important;
  }
}
