@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&family=Lora:ital,wght@0,400;0,500;1,400&family=Pacifico&display=swap');

@font-face {
  font-family: 'Corvetta';
  src: url('../fonts/CorvettaRegular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --cream:        #f1f4ef;
  --deep:         #1a201b;
  --forest:       #3a6648;
  --forest-dark:  #2d5238;
  --warm-gray:    #6b7869;
  --gold:         #b8912a;
  --light:        #d8dfd6;
  --white:        #f7faf5;
  --forest-light: #e6ede3;
  --ink:          #111711;
  --sage:         #6b8c6d;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Corvetta', 'Pacifico', cursive;
  --font-body:    'Lora', Georgia, serif;
  --font-ui:      'DM Sans', system-ui, sans-serif;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--deep); font-family: var(--font-body); }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── NAV ────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: rgba(241,244,239,0.97);
  box-shadow: 0 2px 20px rgba(26,32,27,0.07);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600;
  color: #fff; letter-spacing: 0.02em;
  transition: color 0.3s;
}
.site-nav.scrolled .nav-logo { color: var(--deep); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--font-ui); font-size: 12px;
  font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); transition: color 0.2s;
  padding-bottom: 2px; border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }
.site-nav.scrolled .nav-links a { color: var(--warm-gray); }
.site-nav.scrolled .nav-links a:hover,
.site-nav.scrolled .nav-links a.active { color: var(--forest); border-bottom-color: var(--forest); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; }
.site-nav.scrolled .nav-toggle span { background: var(--deep); }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-ui); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 32px; transition: all 0.2s;
}
.btn-white { background: #fff; color: var(--deep); }
.btn-white:hover { background: #eee; }
.btn-forest { background: var(--forest); color: var(--white); }
.btn-forest:hover { background: var(--forest-dark); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark {
  background: transparent; color: var(--deep);
  border: 1px solid var(--deep);
}
.btn-outline-dark:hover { background: var(--deep); color: var(--white); }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('../images/patrick.jpg');
  background-size: cover;
  background-position: left center;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    transparent 35%,
    rgba(20,30,22,0.45) 55%,
    rgba(20,30,22,0.68) 100%
  );
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  margin-left: auto;
  width: 50%; padding: 100px 56px 80px 40px;
  animation: fadeUp 0.8s ease both;
}
.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(26px, 3vw, 44px);
  color: #fff; line-height: 1.2; margin-bottom: 24px;
  font-weight: normal;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-body {
  font-family: var(--font-ui);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.85; color: rgba(255,255,255,0.92);
  margin-bottom: 40px; max-width: 440px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── THREE CARDS ────────────────────────────────────── */
.cards-section {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--ink);
}
.card {
  background: #1e2820; padding: 52px 40px;
  transition: background 0.2s; cursor: pointer;
}
.card:hover { background: #253227; }
.card-num {
  font-family: var(--font-ui); font-size: 10px;
  letter-spacing: 0.18em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 10px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500;
  color: var(--cream); line-height: 1; margin-bottom: 6px;
}
.card-subtitle {
  font-family: var(--font-ui); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); opacity: 0.75; margin-bottom: 18px;
}
.card-body {
  font-family: var(--font-body); font-size: 14px;
  line-height: 1.8; color: rgba(241,244,239,0.5);
  margin-bottom: 28px;
}
.card-link {
  font-family: var(--font-ui); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gold);
  padding-bottom: 2px; transition: opacity 0.2s;
}
.card-link:hover { opacity: 0.7; }

/* ─── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  padding: 120px 48px 56px;
  background: var(--cream);
}
.page-label {
  font-family: var(--font-ui); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 16px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 500; color: var(--deep);
  line-height: 1.05; margin-bottom: 24px;
}
.page-intro {
  font-family: var(--font-body); font-size: 16px;
  line-height: 1.85; color: var(--warm-gray);
  max-width: 540px;
}

/* ─── SPLIT SECTION ──────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-img { overflow: hidden; min-height: 480px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.split-content { padding: 64px 52px; background: var(--white); }

/* ─── BODY TEXT ──────────────────────────────────────── */
.body-p {
  font-family: var(--font-body); font-size: 17px;
  line-height: 1.9; color: var(--deep); margin-bottom: 22px;
}
.muted-p {
  font-family: var(--font-body); font-size: 16px;
  line-height: 1.85; color: var(--warm-gray);
}

/* ─── TAGS ───────────────────────────────────────────── */
.tags { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 36px; }
.tag {
  font-family: var(--font-ui); font-size: 11px;
  letter-spacing: 0.06em; padding: 6px 13px;
  border: 1px solid var(--light); color: var(--warm-gray);
}

/* ─── THINKERS LIST ──────────────────────────────────── */
.thinkers-section {
  padding: 80px 48px; background: var(--cream);
  display: grid; grid-template-columns: 280px 1fr; gap: 72px;
}
.thinkers-intro h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 500;
  color: var(--deep); line-height: 1.15; margin-bottom: 16px;
}
.thinker-row {
  display: flex; gap: 24px; padding: 20px 0;
  border-bottom: 1px solid var(--light); align-items: flex-start;
}
.thinker-num {
  font-family: var(--font-ui); font-size: 10px;
  letter-spacing: 0.12em; color: var(--forest);
  min-width: 22px; padding-top: 4px;
}
.thinker-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--deep); margin-bottom: 4px;
}
.thinker-note {
  font-family: var(--font-ui); font-size: 13px;
  color: var(--warm-gray); line-height: 1.55;
}

/* ─── DARK SECTION ───────────────────────────────────── */
.dark-section {
  background: var(--deep); padding: 72px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
}
.dark-section h2 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500;
  color: var(--cream); margin-bottom: 28px;
}
.dark-list-item {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px;
}
.dark-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--forest); margin-top: 9px; flex-shrink: 0;
}
.dark-list-item p {
  font-family: var(--font-body); font-size: 15px;
  line-height: 1.75; color: rgba(241,244,239,0.7);
}
.dark-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 17px 0; border-bottom: 1px solid rgba(241,244,239,0.08);
}
.dark-label {
  font-family: var(--font-ui); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--forest);
}
.dark-value {
  font-family: var(--font-body); font-size: 14px;
  color: rgba(241,244,239,0.65); text-align: right; max-width: 55%;
}

/* ─── CONTENT GRID (2 col light) ─────────────────────── */
.content-grid {
  padding: 80px 48px; background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.tinted-box { background: var(--forest-light); padding: 44px 40px; }
.tinted-box .box-label {
  font-family: var(--font-ui); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 22px;
}
.tinted-box-item {
  font-family: var(--font-body); font-size: 16px;
  color: var(--deep); padding: 13px 0;
  border-bottom: 1px solid var(--light); line-height: 1.4;
}

/* ─── FORMATS GRID ───────────────────────────────────── */
.formats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--light); margin-bottom: 72px;
}
.format-card { background: var(--white); padding: 40px 36px; }
.format-header {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 12px;
}
.format-title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600; color: var(--deep);
}
.format-time {
  font-family: var(--font-ui); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest);
}
.format-desc {
  font-family: var(--font-body); font-size: 14px;
  line-height: 1.8; color: var(--warm-gray);
}

/* ─── TOPICS LIST ────────────────────────────────────── */
.topics-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.topic-row {
  display: flex; gap: 20px; padding: 18px 0;
  border-bottom: 1px solid var(--light); align-items: flex-start;
}
.topic-num {
  font-family: var(--font-ui); font-size: 10px;
  color: var(--forest); letter-spacing: 0.1em; min-width: 22px; padding-top: 3px;
}
.topic-name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600; color: var(--deep); margin-bottom: 3px;
}
.topic-sub {
  font-family: var(--font-ui); font-size: 12px;
  color: var(--warm-gray); line-height: 1.5;
}

/* ─── BOOKING BOX ────────────────────────────────────── */
.booking-box { background: var(--deep); padding: 52px 44px; }
.booking-box h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500;
  color: var(--cream); margin-bottom: 16px; line-height: 1.2;
}
.booking-box p {
  font-family: var(--font-body); font-size: 15px;
  line-height: 1.8; color: rgba(241,244,239,0.65); margin-bottom: 28px;
}
.booking-row {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid rgba(241,244,239,0.08);
}
.booking-row-label {
  font-family: var(--font-ui); font-size: 12px;
  color: var(--cream); letter-spacing: 0.04em;
}
.booking-row-note {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(241,244,239,0.5);
}

/* ─── CTA BAND ───────────────────────────────────────── */
.cta-band {
  background: var(--deep); padding: 56px 48px;
  display: flex; justify-content: space-between;
  align-items: center; gap: 32px; flex-wrap: wrap;
}
.cta-band h3 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500; color: var(--cream); margin-bottom: 10px;
}
.cta-band p {
  font-family: var(--font-body); font-size: 15px;
  line-height: 1.75; color: rgba(241,244,239,0.55); max-width: 480px;
}

/* ─── CONTACT PAGE ───────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
}
.contact-left {
  background: var(--deep); padding: 100px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-left h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 58px); font-weight: 500;
  color: var(--cream); line-height: 1.1; margin-bottom: 28px; margin-top: 16px;
}
.contact-left p {
  font-family: var(--font-body); font-size: 15px;
  line-height: 1.85; color: rgba(241,244,239,0.58);
  max-width: 340px; margin-bottom: 48px;
}
.contact-detail { margin-bottom: 22px; }
.contact-detail-label {
  font-family: var(--font-ui); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 6px;
}
.contact-detail-val {
  font-family: var(--font-body); font-size: 14px;
  color: rgba(241,244,239,0.62);
}
.contact-right {
  background: var(--white); padding: 100px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-right h2 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500; color: var(--deep); margin-bottom: 36px;
}
.form-field { margin-bottom: 24px; }
.form-label {
  display: block; font-family: var(--font-ui); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--warm-gray); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 10px 0;
  font-family: var(--font-body); font-size: 15px; color: var(--deep);
  background: transparent; border: none;
  border-bottom: 1px solid var(--light);
  outline: none; transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-bottom-color: var(--forest); }
.form-input::placeholder,
.form-textarea::placeholder { color: #c2b8ad; }
.form-textarea { resize: none; }

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--forest-light);
  padding: 64px 48px 40px;
}
.footer-quote {
  text-align: center; max-width: 560px;
  margin: 0 auto 48px;
}
.footer-quote blockquote {
  font-family: var(--font-display);
  font-size: 24px; font-style: italic;
  font-weight: 400; line-height: 1.65;
  color: var(--deep); margin-bottom: 12px;
}
.footer-quote cite {
  font-family: var(--font-ui); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm-gray); font-style: normal;
}
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 20px;
  border-top: 1px solid var(--light); padding-top: 28px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600; color: var(--deep);
}
.footer-nav { display: flex; gap: 28px; list-style: none; }
.footer-nav a {
  font-family: var(--font-ui); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--warm-gray); transition: color 0.2s;
}
.footer-nav a:hover { color: var(--forest); }

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav { padding: 18px 24px; }
  .nav-links { display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--sage); padding: 16px 24px; }
  .site-nav.scrolled .nav-links { background: var(--white); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .site-nav.scrolled .nav-links a { border-bottom-color: var(--light); }
  .nav-toggle { display: flex; }

  .hero {
    align-items: flex-end;
    background-position: left top;
  }
  .hero::before {
    background: linear-gradient(
      to top,
      rgba(20,30,22,0.82) 0%,
      rgba(20,30,22,0.5) 40%,
      rgba(20,30,22,0.1) 70%,
      transparent 100%
    );
  }
  .hero-content { width: 100%; padding: 40px 24px 52px; margin-left: 0; }
  .hero-tagline { font-size: clamp(28px, 8vw, 44px); }

  .cards-section { grid-template-columns: 1fr; }

  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 300px; }
  .split-content { padding: 48px 24px; }

  .thinkers-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .dark-section { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .formats-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 60px 24px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 48px 24px; }
  .page-hero { padding: 100px 24px 48px; }
  .site-footer { padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
