/* ── PR MARKETING AGENCY — GLOBAL STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Outfit:wght@300;400;500;600&display=swap');

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

:root {
  /* Logo-derived palette: deep navy ink + gold + warm cream */
  --ink:        #0D1117;
  --ink-soft:   #1A2332;
  --gold:       #C8973A;
  --gold-light: #E8C06A;
  --gold-pale:  #F5E8C8;
  --cream:      #FAF7F2;
  --cream-dark: #F0EBE0;
  --white:      #FFFFFF;
  --muted:      #6B7280;
  --muted-light:#9CA3AF;
  --border:     rgba(200,151,58,0.2);
  --border-soft:rgba(200,151,58,0.12);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Outfit', sans-serif;

  --radius-sm:  3px;
  --radius-md:  6px;
  --radius-lg:  12px;

  --shadow-card: 0 2px 20px rgba(13,17,23,0.08);
  --shadow-lift: 0 8px 40px rgba(13,17,23,0.14);

  --max-w: 1140px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ════════════════════════════════
   NAVIGATION
════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(200,151,58,0.25);
  display: flex;
  align-items: center;
  padding: 0 5vw;
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  font-weight: 600 !important;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  transition: background 0.2s !important;
  letter-spacing: 0.05em;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ════════════════════════════════
   PAGE HERO (dark)
════════════════════════════════ */
.page-hero {
  background: var(--ink);
  padding: 80px 5vw 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 60%, rgba(200,151,58,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 55% 65% at 85% 25%, rgba(200,151,58,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Decorative diagonal lines */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(200,151,58,0.025) 40px,
    rgba(200,151,58,0.025) 41px
  );
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,151,58,0.35);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(200,151,58,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--ink-soft);
}

/* ════════════════════════════════
   SECTION WRAPPERS
════════════════════════════════ */
.section {
  padding: 88px 5vw;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark  { background: var(--ink); }
.section-cream-dark { background: var(--cream-dark); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 52px;
}
.section-sub.light { color: rgba(255,255,255,0.55); }

/* ════════════════════════════════
   GOLD DIVIDER
════════════════════════════════ */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 48px;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.gold-divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.gold-divider span {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ════════════════════════════════
   CARDS
════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--border);
}

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testimonial-card {
  background: var(--ink-soft);
  border: 1px solid rgba(200,151,58,0.15);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 8px; left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ════════════════════════════════
   STATS BAR
════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--ff-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ════════════════════════════════
   CTA BAND
════════════════════════════════ */
.cta-band {
  background: var(--ink);
  padding: 80px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200,151,58,0.2);
  border-bottom: 1px solid rgba(200,151,58,0.2);
}

.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,151,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-band h2 em { font-style: italic; color: var(--gold-light); }

.cta-band p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  background: #070A0F;
  padding: 64px 5vw 32px;
  border-top: 1px solid rgba(200,151,58,0.2);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand img { height: 42px; margin-bottom: 18px; }

.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200,151,58,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all 0.2s;
  text-decoration: none;
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,151,58,0.08);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-col address {
  font-style: normal;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
}
.footer-col address a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col address a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════
   UTILITY
════════════════════════════════ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-auto { margin-top: auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ════════════════════════════════
   ANIMATIONS
════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.65s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
}

@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--ink); padding: 20px 5vw 28px; gap: 20px; border-bottom: 1px solid rgba(200,151,58,0.2); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
