/* =================================================================
   NIGEL QUADROS — Personal Brand Website
   Design: Leadership Editorial · Charcoal · Warm Ivory · Brass Gold
   Pink: Buttons & micro-accents only
   ================================================================= */

@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=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

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

:root {
  /* Core Palette */
  --charcoal:     #1A1A1A;
  --charcoal-mid: #2C2C2C;
  --charcoal-soft:#404040;
  --ivory:        #FAF8F5;
  --ivory-mid:    #F2EFE9;
  --ivory-dark:   #E8E3DA;
  --warm-white:   #FFFFFF;
  --brass:        #9B8560;        /* Gold/brass — headings accent, borders */
  --brass-light:  #C4AA80;        /* Lighter brass for dividers */
  --brass-faint:  rgba(155,133,96,0.15);
  --pink:         #D4144E;        /* Brand pink — BUTTONS ONLY */
  --pink-hover:   #B81044;
  --text-primary: #1A1A1A;
  --text-body:    #4A4A4A;
  --text-muted:   #7A7A7A;
  --border:       rgba(26,26,26,0.1);
  --border-warm:  rgba(155,133,96,0.25);

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:   'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --max:    1300px;
  --gutter: 60px;
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--brass); }

/* ── TYPOGRAPHY SYSTEM ────────────────────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 16px;
}

h2, .h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 28px;
}
h2 em, .h2 em { font-style: italic; font-weight: 300; color: var(--charcoal-soft); }

h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.2;
}

p { font-size: 1rem; line-height: 1.85; color: var(--text-body); margin-bottom: 18px; }
p:last-child { margin-bottom: 0; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 110px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.section-center { text-align: center; }
.section-center p { max-width: 580px; margin-left: auto; margin-right: auto; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 1px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  border: 1px solid var(--pink);
}
.btn-primary:hover {
  background: var(--pink-hover);
  border-color: var(--pink-hover);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--charcoal);
  color: #fff;
  border: 1px solid var(--charcoal);
}
.btn-dark:hover {
  background: var(--charcoal-mid);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
}

.link-arrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s var(--ease);
}
.link-arrow::after { content: '→'; font-style: normal; }
.link-arrow:hover { gap: 16px; color: var(--brass); }

.inline-link {
  color: var(--charcoal);
  border-bottom: 1px solid var(--brass-light);
  transition: border-color 0.3s;
}
.inline-link:hover { border-color: var(--brass); }

/* ── HEADER ──────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s ease, border-color 0.4s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
#header.solid {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border-warm);
  backdrop-filter: blur(16px);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo: footer only — images/logo-white.png, height 36px */

.nav { display: flex; align-items: center; gap: 40px; }
.nav a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.8);
  transition: color 0.3s;
  position: relative;
}
#header.solid .nav a { color: rgba(26,26,26,0.6); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width 0.3s var(--ease);
}
.nav a:hover { color: var(--charcoal); }
#header.solid .nav a:hover { color: var(--charcoal); }
.nav a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--pink);
  padding: 10px 24px;
  border-radius: 1px;
  transition: background 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--pink-hover) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 26px; height: 1px; background: #fff; transition: background 0.3s; }
#header.solid .hamburger span { background: var(--charcoal); }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--charcoal);
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}
/* Hero BG image: 1920×1080px. Place at images/hero-bg.jpg */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-image: url('../images/hero-bg.jpg');
  opacity: 0.18;
}
.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,26,26,0.96) 0%, rgba(26,26,26,0.7) 60%, rgba(26,26,26,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-kicker span {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-light);
}
.hero-kicker::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--brass);
}
.hero-name {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.hero-name .line1 {
  display: block;
  font-size: clamp(5.5rem, 13vw, 11rem);
  color: rgba(250,248,245,0.12);
}
.hero-name .line2 {
  display: block;
  font-size: clamp(5.5rem, 13vw, 11rem);
  font-style: italic;
  color: var(--ivory);
}
.hero-desc {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.4);
  margin-bottom: 52px;
}
.hero-desc span {
  display: inline-block;
  margin: 0 14px;
  color: var(--brass);
  font-size: 0.55rem;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-scroll-indicator {
  position: absolute;
  right: var(--gutter);
  bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-indicator span {
  writing-mode: vertical-rl;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.3);
}
.scroll-bar {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--brass) 0%, transparent 100%);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { transform: scaleY(1); opacity: 0.5; }
  50%      { transform: scaleY(0.5); opacity: 1; }
}

/* ── INTRO STATEMENT ─────────────────────────────────────────── */
#statement {
  background: var(--charcoal);
  padding: 100px var(--gutter);
  border-top: 1px solid rgba(250,248,245,0.06);
}
.statement-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}
.statement-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  padding-top: 14px;
  border-top: 1px solid rgba(155,133,96,0.35);
  padding-top: 20px;
}
.statement-text {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3.1rem);
  font-weight: 300;
  line-height: 1.32;
  color: var(--ivory);
  letter-spacing: 0.01em;
}
.statement-text em {
  font-style: italic;
  color: var(--brass-light);
}

/* ── ABOUT ───────────────────────────────────────────────────── */
#about { background: var(--ivory); }
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 100px;
  align-items: center;
}
/* Profile image: 600×750px. Place at images/profile.jpg */
.about-img {
  position: relative;
}
.about-img-inner {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ivory-dark);
}
.about-img-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory-dark);
}
.about-img-ph span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #BBBBBB;
}
.about-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 24px 28px;
  text-align: center;
}
.accent-num {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ivory);
}
.accent-num sup { font-size: 1.2rem; }
.accent-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-top: 6px;
}
.about-content { padding-top: 12px; }
.about-divider {
  width: 48px;
  height: 1px;
  background: var(--brass);
  margin: 32px 0;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  margin: 36px 0;
  padding: 28px 0;
}
.about-stats .stat { text-align: center; }
.about-stats .stat + .stat {
  border-left: 1px solid var(--border-warm);
}
.stat-n {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-l {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── EXPERTISE ───────────────────────────────────────────────── */
#expertise { background: var(--warm-white); }
.expertise-header { margin-bottom: 64px; }
.expertise-header .h2 { max-width: 560px; }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-warm);
}
.exp-item {
  padding: 48px 40px;
  border-right: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  position: relative;
  transition: background 0.3s;
}
.exp-item:nth-child(3n) { border-right: none; }
.exp-item:nth-child(n+4) { border-bottom: none; }
.exp-item:hover { background: var(--ivory); }
.exp-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brass);
  transition: width 0.4s var(--ease);
}
.exp-item:hover::before { width: 100%; }
.exp-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--ivory-dark);
  line-height: 1;
  margin-bottom: 20px;
}
.exp-item h3 { font-size: 1.3rem; margin-bottom: 12px; }
.exp-item p { font-size: 0.9rem; line-height: 1.72; color: var(--text-muted); margin: 0; }

/* ── MEDIA SCROLLER ──────────────────────────────────────────── */
#press { background: var(--ivory); padding: 80px 0; overflow: hidden; }
.press-label {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 var(--gutter);
}
.scroller-mask {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.scroller-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marquee 32s linear infinite;
  padding: 12px 0;
}
.scroller-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.press-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Media logos: 180×60px greyscale PNG. Place at images/media-logo-N.png */
.press-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.35);
  transition: filter 0.3s;
}
.press-logo:hover img { filter: grayscale(0%) opacity(0.9); }
.press-logo-ph {
  height: 36px;
  min-width: 140px;
  background: var(--ivory-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
}
.press-logo-ph span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C0C0C0;
}

/* ── SPEAKING ────────────────────────────────────────────────── */
#speaking { background: var(--warm-white); }
.speaking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.speaking-topics { margin: 28px 0 44px; }
.speaking-topics li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.5;
}
.speaking-topics li::before {
  content: '';
  flex-shrink: 0;
  width: 32px;
  height: 1px;
  background: var(--brass);
  margin-top: 12px;
}
/* Speaking photo: 640×420px. Place at images/speaking.jpg */
.speaking-visual { display: flex; flex-direction: column; gap: 24px; }
.speaking-photo-ph {
  background: var(--ivory);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-warm);
}
.speaking-photo-ph span { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: #C0C0C0; }
.speaking-photo-ph img { width: 100%; height: 100%; object-fit: cover; }
.pull-quote {
  border-left: 2px solid var(--brass);
  padding: 20px 28px;
  background: var(--ivory);
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.58;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.pull-quote cite {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ── AGENCY ──────────────────────────────────────────────────── */
#agency {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#agency::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brass), transparent);
}
.agency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.agency-copy {
  padding: 100px var(--gutter) 100px;
  max-width: 560px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.agency-copy .label { color: var(--brass-light); }
.agency-copy .h2 { color: var(--ivory); }
.agency-copy .h2 em { color: var(--brass-light); }
.agency-copy p { color: rgba(250,248,245,0.65); }
.agency-services { margin: 28px 0 44px; }
.agency-services li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(250,248,245,0.08);
  font-size: 0.93rem;
  color: rgba(250,248,245,0.75);
}
.agency-services li::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--brass);
  flex-shrink: 0;
}
/* Agency image: 700×800px. Place at images/agency.jpg */
.agency-visual {
  position: relative;
  overflow: hidden;
}
.agency-img-fill {
  width: 100%; height: 100%;
  min-height: 640px;
  background: var(--charcoal-mid);
  display: flex; align-items: center; justify-content: center;
}
.agency-img-fill img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.agency-img-fill span { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.agency-stat {
  position: absolute;
  background: var(--charcoal);
  border: 1px solid rgba(155,133,96,0.3);
  padding: 20px 26px;
  text-align: center;
}
.agency-stat-1 { bottom: 80px; left: -2px; }
.agency-stat-2 { top: 80px;    right: 40px; }
.agency-stat .big-n {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--brass-light);
  line-height: 1;
}
.agency-stat .small-l {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.4);
  margin-top: 5px;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
#testimonials { background: var(--ivory); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border-warm);
  border: 1px solid var(--border-warm);
  margin-top: 64px;
}
.testi-item {
  background: var(--warm-white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Testimonial avatar: 80×80px. Place at images/testi-N.jpg */
.testi-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ivory-dark);
  overflow: hidden;
  border: 1px solid var(--border-warm);
  display: flex; align-items: center; justify-content: center;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-avatar span { font-family: var(--serif); font-size: 1.1rem; color: var(--brass); font-weight: 400; }
.testi-item blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--charcoal);
  flex: 1;
}
.testi-name { font-size: 0.9rem; font-weight: 500; color: var(--charcoal); margin-bottom: 2px; }
.testi-role { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); }

/* ── CONTACT ─────────────────────────────────────────────────── */
#contact { background: var(--warm-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 100px;
  align-items: start;
}
.contact-intro .about-divider { margin: 24px 0 32px; }
.contact-meta { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.contact-meta-item {}
.contact-meta-label {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 5px;
  display: block;
}
.contact-meta-val { font-size: 0.95rem; color: var(--text-body); }
.contact-meta-val a { color: var(--charcoal); border-bottom: 1px solid var(--border-warm); transition: border-color 0.3s; }
.contact-meta-val a:hover { border-color: var(--brass); }

/* Contact Form */
.contact-form {
  background: var(--ivory);
  border: 1px solid var(--border-warm);
  padding: 52px 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group .req { color: var(--pink); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--warm-white);
  border: 1px solid var(--border-warm);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 0.93rem;
  padding: 14px 18px;
  border-radius: 1px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #CCCCCC; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brass); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B8560' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--warm-white); color: var(--charcoal); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.68rem; color: var(--text-muted); text-align: center; margin-top: 12px; line-height: 1.6; }

/* ── FOOTER ──────────────────────────────────────────────────── */
#footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(155,133,96,0.2);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px var(--gutter) 64px;
  max-width: var(--max);
  margin: 0 auto;
}
/* Footer logo: images/logo-white.png — same transparent PNG, height 36px */
.footer-logo { height: 36px; width: auto; margin-bottom: 24px; display: block; }
.footer-about { font-size: 0.88rem; line-height: 1.75; color: rgba(250,248,245,0.38); margin-bottom: 32px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(250,248,245,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,248,245,0.4);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-link svg { width: 15px; height: 15px; fill: currentColor; }
.social-link:hover { border-color: var(--brass); color: var(--brass-light); background: rgba(155,133,96,0.08); }

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.88rem; color: rgba(250,248,245,0.4); transition: color 0.3s; }
.footer-col a:hover { color: rgba(250,248,245,0.9); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--gutter);
  border-top: 1px solid rgba(250,248,245,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(250,248,245,0.24); }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --gutter: 40px; }
  .about-grid, .speaking-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img { max-width: 480px; }
  .about-accent { right: 0; }
  .expertise-grid { grid-template-columns: repeat(2,1fr); }
  .exp-item:nth-child(2n) { border-right: none; }
  .exp-item:nth-child(3n) { border-right: 1px solid var(--border-warm); }
  .exp-item:nth-child(3n+3) { border-right: none; }
  .exp-item:nth-child(n+5) { border-bottom: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .agency-grid { grid-template-columns: 1fr; }
  .agency-copy { max-width: 100%; padding: 80px var(--gutter); }
  .agency-img-fill { min-height: 360px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .statement-inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  :root { --gutter: 24px; }
  .section { padding: 72px var(--gutter); }
  .nav { display: none; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); padding: 32px 24px; gap: 24px; border-top: 1px solid var(--border-warm);
    backdrop-filter: blur(16px); }
  .nav.open { display: flex; }
  .nav a { color: rgba(26,26,26,0.7) !important; font-size: 0.85rem; }
  .hamburger { display: flex; }
  #hero { padding-bottom: 72px; }
  .hero-name .line1, .hero-name .line2 { font-size: clamp(4rem, 18vw, 6rem); }
  .expertise-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  #statement { padding: 72px var(--gutter); }
}
