/* ============================================
   ARD FÌOR — Senior Advisory
   Brand-locked CSS
   Palette: Forest Green / Rose Gold / Ivory / Charcoal
   ============================================ */

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

:root {
  --green:        #01120E;
  --green-soft:   #031610;
  --rose-gold:    #D88A63;
  --rose-light:   #F5B38A;
  --rose-pale:    #FFD1B2;
  --ivory:        #F4EFE6;
  --charcoal:     #1C1C1A;
  --warm-grey:    #6B6660;
  --copper:       #9A4F35;

  --serif:        'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans:         'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max-w:        1100px;
  --margin:       clamp(24px, 5vw, 80px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.75;
  color: var(--charcoal);
}

a {
  color: var(--rose-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--rose-light); }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--margin);
}

.section {
  padding: clamp(60px, 8vw, 120px) 0;
}

.section--dark {
  background: var(--green);
  color: var(--ivory);
}

.section--dark p { color: var(--ivory); opacity: 0.85; }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--ivory); }

.divider {
  width: 48px;
  height: 1px;
  background: var(--rose-gold);
  margin: 24px 0;
}

.divider--centre {
  margin: 24px auto;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 1px solid rgba(216, 138, 99, 0.2);
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-wordmark-main {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--rose-gold);
  text-transform: uppercase;
}

.nav-wordmark-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--rose-pale);
  text-transform: uppercase;
  margin-top: 3px;
}

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

.nav-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rose-gold);
}

.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: 1px;
  background: var(--ivory);
  transition: all 0.3s ease;
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--green);
    flex-direction: column;
    padding: 24px var(--margin) 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(216, 138, 99, 0.2);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

/* ============================================
   PAGE HERO — HOME
   ============================================ */

.hero {
  background: var(--green);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(216, 138, 99, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(216, 138, 99, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(60px, 10vh, 120px) var(--margin);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-content {}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--rose-gold);
}

.hero h1 {
  color: var(--ivory);
  margin-bottom: 32px;
  font-style: italic;
}

.hero h1 em {
  font-style: normal;
  color: var(--rose-gold);
}

.hero-body {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.8;
  color: rgba(244, 239, 230, 0.78);
  margin-bottom: 48px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--rose-gold);
  color: var(--green);
}

.btn-primary:hover {
  background: var(--rose-light);
  color: var(--green);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(244, 239, 230, 0.3);
}

.btn-outline:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-monogram {
  width: clamp(240px, 30vw, 380px);
  height: clamp(240px, 30vw, 380px);
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 20px 60px rgba(216, 138, 99, 0.2));
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: left;
  }
  .hero-visual { order: -1; }
  .hero-monogram { width: 180px; height: 180px; }
}

/* ============================================
   HOME — WHAT WE DO
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(107, 102, 96, 0.15);
  margin-top: 60px;
}

.service-block {
  background: var(--ivory);
  padding: 40px 32px;
  transition: background 0.25s ease;
}

.service-block:hover {
  background: var(--green);
}

.service-block:hover h3,
.service-block:hover p {
  color: var(--ivory);
}

.service-block:hover .service-number {
  color: var(--rose-gold);
}

.service-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(216, 138, 99, 0.25);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.25s ease;
}

.service-block h3 {
  margin-bottom: 12px;
  color: var(--green);
  transition: color 0.25s ease;
}

.service-block p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--warm-grey);
  transition: color 0.25s ease;
}

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

/* ============================================
   HOME — WHY ARDFIOR
   ============================================ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 0;
}

.why-text h2 {
  color: var(--ivory);
  margin-bottom: 24px;
}

.why-text p {
  color: rgba(244, 239, 230, 0.78);
  margin-bottom: 16px;
  font-size: 1.0rem;
  line-height: 1.8;
}

.why-text .btn {
  margin-top: 16px;
}

.commitments {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.commitment {
  border-left: 1px solid var(--rose-gold);
  padding-left: 24px;
}

.commitment h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rose-gold);
  margin-bottom: 8px;
}

.commitment p {
  font-size: 0.9rem;
  color: rgba(244, 239, 230, 0.7);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   HOME — SECTORS
   ============================================ */

.sectors-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(107, 102, 96, 0.2);
  border-bottom: 1px solid rgba(107, 102, 96, 0.2);
}

.sector-item {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-grey);
  padding: 20px 32px 20px 0;
  white-space: nowrap;
}

.sector-item + .sector-item::before {
  content: '·';
  margin-right: 32px;
  color: var(--rose-gold);
}

/* ============================================
   HOME — CLOSING CTA
   ============================================ */

.home-cta {
  text-align: center;
  padding: clamp(80px, 10vw, 140px) var(--margin);
  background: var(--green);
}

.home-cta h2 {
  color: var(--ivory);
  font-style: italic;
  margin-bottom: 20px;
}

.home-cta p {
  color: rgba(244, 239, 230, 0.7);
  margin-bottom: 32px;
}

.home-cta a.cta-email {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--rose-gold);
  letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 1px solid rgba(216, 138, 99, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.home-cta a.cta-email:hover {
  border-color: var(--rose-gold);
}

/* ============================================
   PAGE HEADERS (interior pages)
   ============================================ */

.page-header {
  background: var(--green);
  padding: calc(72px + clamp(48px, 8vw, 100px)) var(--margin) clamp(48px, 6vw, 80px);
}

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

.page-header .eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-header .eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--rose-gold);
}

.page-header h1 {
  color: var(--ivory);
  max-width: 640px;
}

.page-header p {
  color: rgba(244, 239, 230, 0.72);
  max-width: 560px;
  margin-top: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-opening {
  max-width: 700px;
}

.about-opening h2 {
  color: var(--green);
  margin-bottom: 20px;
}

.about-opening p {
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.85;
}

.about-commitments {
  background: var(--green);
  padding: clamp(60px, 8vw, 100px) 0;
}

.about-commitments h2 {
  color: var(--ivory);
  margin-bottom: 12px;
}

.about-commitments .section-intro {
  color: rgba(244, 239, 230, 0.7);
  margin-bottom: 48px;
  font-size: 1rem;
}

.commitments-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.commitment-card {
  border-top: 1px solid var(--rose-gold);
  padding-top: 28px;
}

.commitment-card h3 {
  font-size: 1.15rem;
  color: var(--rose-gold);
  margin-bottom: 12px;
}

.commitment-card p {
  font-size: 0.9rem;
  color: rgba(244, 239, 230, 0.72);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .commitments-list { grid-template-columns: 1fr; gap: 32px; }
}

.principals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.principal {
  border-top: 1px solid rgba(107, 102, 96, 0.25);
  padding-top: 32px;
}

.principal h3 {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 4px;
}

.principal-role {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 20px;
}

.principal p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.principal-contact {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.principal-contact a {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--rose-gold);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .principals-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-location {
  background: var(--green);
}

.about-location h2 { color: var(--ivory); margin-bottom: 16px; }
.about-location p { color: rgba(244, 239, 230, 0.75); }

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-intro {
  max-width: 600px;
  margin-bottom: 64px;
}

.services-intro p {
  font-size: 1.02rem;
  line-height: 1.85;
}

.service-detail {
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid rgba(107, 102, 96, 0.2);
}

.service-detail:first-child { border-top: none; }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.service-label {
  position: sticky;
  top: 100px;
}

.service-tag {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 12px;
}

.service-label h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--green);
  line-height: 1.2;
}

.service-body p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 24px;
}

.service-body h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 16px;
  margin-top: 32px;
}

.service-examples {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.service-examples li {
  font-size: 0.9rem;
  color: var(--charcoal);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.service-examples li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rose-gold);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--rose-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(216, 138, 99, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.service-cta:hover { border-color: var(--rose-gold); color: var(--rose-gold); }

@media (max-width: 768px) {
  .service-detail-inner { grid-template-columns: 1fr; gap: 24px; }
  .service-label { position: static; }
}

.services-footer-note {
  background: var(--green);
  padding: clamp(60px, 8vw, 100px) 0;
}

.services-footer-note h2 {
  color: var(--ivory);
  margin-bottom: 20px;
  max-width: 560px;
}

.services-footer-note p {
  color: rgba(244, 239, 230, 0.75);
  max-width: 540px;
  margin-bottom: 12px;
}

/* ============================================
   INSIGHTS PAGE
   ============================================ */

.insights-intro {
  max-width: 600px;
  margin-bottom: 64px;
}

.insights-intro p {
  font-size: 1.02rem;
  line-height: 1.85;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 0;
}

.insight-card {
  border-top: 1px solid rgba(107, 102, 96, 0.25);
  padding-top: 28px;
}

.insight-category {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 12px;
}

.insight-card h3 {
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 12px;
  line-height: 1.3;
}

.insight-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--warm-grey);
  margin-bottom: 20px;
}

.insight-meta {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--warm-grey);
  opacity: 0.7;
}

.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-gold);
  text-decoration: none;
  margin-top: 16px;
}

.insight-link:hover { color: var(--rose-light); }

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

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

.insights-footer {
  background: var(--green);
  padding: clamp(60px, 8vw, 100px) 0;
}

.insights-footer h2 { color: var(--ivory); margin-bottom: 16px; }
.insights-footer p { color: rgba(244, 239, 230, 0.75); max-width: 500px; }

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-primary h2 {
  color: var(--green);
  margin-bottom: 20px;
}

.contact-primary p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-block {
  margin-top: 40px;
}

.contact-block-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 10px;
}

.contact-block-email {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--rose-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(216, 138, 99, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.contact-block-email:hover { border-color: var(--rose-gold); }

.contact-sidebar {
  background: var(--green);
  padding: 48px 40px;
}

.contact-sidebar h3 {
  color: var(--rose-gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.contact-sidebar p {
  color: rgba(244, 239, 230, 0.75);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.contact-sidebar address {
  font-style: normal;
  border-top: 1px solid rgba(216, 138, 99, 0.2);
  padding-top: 24px;
  margin-top: 24px;
}

.contact-sidebar address p {
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--green);
  border-top: 1px solid rgba(216, 138, 99, 0.15);
  padding: clamp(40px, 5vw, 64px) 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--margin);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.footer-brand {}

.footer-wordmark {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  margin-bottom: 20px;
}

.footer-details {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(244, 239, 230, 0.5);
  line-height: 1.8;
}

.footer-details a {
  color: rgba(244, 239, 230, 0.6);
  transition: color 0.2s;
}

.footer-details a:hover { color: var(--rose-gold); }

.footer-right {
  text-align: right;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-nav a {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--rose-gold); }

.footer-legal {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: rgba(244, 239, 230, 0.3);
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(216, 138, 99, 0.1);
  text-align: center;
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .footer-nav { align-items: flex-start; }
}

/* ============================================
   PULL QUOTE
   ============================================ */

.pull-quote {
  border-left: 2px solid var(--rose-gold);
  padding: 20px 0 20px 32px;
  margin: 40px 0;
}

.pull-quote p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: var(--green);
  line-height: 1.5;
}

.pull-quote--light p { color: var(--rose-light); }

/* ============================================
   PAGE TRANSITIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ACTIVE NAV STATE
   ============================================ */

.current-page { color: var(--rose-gold) !important; }
