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

:root {
  --white: #FBF9F4;
  --cream: #F3EEE1;
  --navy: #1D3557;
  --navy-deep: #12233B;
  --blue: #457B9D;
  --gold: #C9A227;
  --gold-light: #E8D9A0;
  --gold-pale: #F4EBC8;
  --text: #22314B;
  --text-muted: #5C6B82;
  --shadow: 0 18px 40px rgba(29, 53, 87, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin: 0 0 0.6em;
  font-weight: 600;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.9em;
  display: inline-block;
}

.gold-rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 1.2em 0;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 244, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(29, 53, 87, 0.08);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.monogram {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--navy);
  font-weight: 600;
}

.brand-tag {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

nav.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

nav.main-nav a {
  font-size: 14.5px;
  letter-spacing: 0.04em;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}

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

nav.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.nav-cta {
  color: var(--gold) !important;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-cta:hover { color: var(--navy) !important; }

.logo-mark {
  height: 40px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 500;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover { background: var(--navy); color: var(--white); }
.btn-outline {
  border-color: rgba(251, 249, 244, 0.55);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-navy {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 68%, #274a72 100%);
  color: var(--white);
  padding: 110px 0 130px;
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  font-size: 52px;
  margin-bottom: 0.25em;
}

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

.hero p.lede {
  font-size: 18px;
  color: rgba(251, 249, 244, 0.82);
  max-width: 460px;
  margin-bottom: 2em;
}

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

.arch-frame {
  position: relative;
  border-radius: 220px 220px 12px 12px;
  overflow: hidden;
  border: 6px solid rgba(232, 217, 160, 0.35);
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}
.arch-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-deco {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(232, 217, 160, 0.18);
  border-radius: 50%;
}

/* Section spacing */
section { padding: 96px 0; }
section.cream { background: var(--cream); }
.section-head { max-width: 640px; margin: 0 auto 3.2em; text-align: center; }
.section-head.left { margin: 0 0 3.2em; text-align: left; }

/* Two column content */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.pull-card {
  background: var(--white);
  border: 1px solid rgba(29, 53, 87, 0.1);
  border-radius: 12px;
  padding: 44px;
  box-shadow: var(--shadow);
  position: relative;
}
.pull-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 90px;
  color: var(--gold-light);
  position: absolute;
  top: -6px;
  left: 24px;
  line-height: 1;
}

.pull-card blockquote {
  margin: 0.4em 0 0;
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.script-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(29, 53, 87, 0.1);
  padding: 40px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.script-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.script-card .badge {
  display: inline-block;
  background: var(--gold-pale);
  color: #7A5F0E;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  font-weight: 600;
}
.script-card h3 { font-size: 23px; margin-bottom: 0.5em; }
.script-card p.logline { color: var(--text-muted); font-size: 15.5px; }
.script-card .meta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(29,53,87,0.08);
  font-size: 13.5px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Podcast panel */
.podcast-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.podcast-panel h2, .podcast-panel h3 { color: var(--white); }
.podcast-panel p { color: rgba(251,249,244,0.78); }
.ep-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,217,160,0.12);
  border: 1px solid rgba(232,217,160,0.35);
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.spotify-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.spotify-note .btn-primary { white-space: nowrap; }
.spotify-note span { font-size: 13.5px; color: rgba(251,249,244,0.6); }

.audio-block {
  margin-top: 26px;
  padding: 16px 18px;
  background: rgba(232, 217, 160, 0.08);
  border: 1px solid rgba(232, 217, 160, 0.3);
  border-radius: 10px;
}
.audio-block audio { border-radius: 6px; }
.audio-block audio::-webkit-media-controls-panel {
  background-color: rgba(232, 217, 160, 0.12);
}

/* Footer */
footer.site-footer {
  background: var(--navy-deep);
  color: rgba(251,249,244,0.75);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(251,249,244,0.12);
}
footer.site-footer h4 {
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  margin-bottom: 1.1em;
}
footer.site-footer a:hover { color: var(--gold-light); }
.footer-line { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14.5px; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(251,249,244,0.45);
  flex-wrap: wrap;
  gap: 10px;
}
.social-row { display: flex; gap: 16px; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid rgba(251,249,244,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold-light); }

/* Contact page */
.contact-hero {
  background: var(--cream);
  padding: 90px 0 70px;
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.contact-card {
  background: var(--white);
  border: 1px solid rgba(29,53,87,0.1);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
}
.contact-card .icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
}
.contact-card h3 { font-size: 17px; margin-bottom: 0.3em; }
.contact-card p { color: var(--text-muted); font-size: 14.5px; margin: 0; }

.form-panel {
  background: var(--white);
  border: 1px solid rgba(29,53,87,0.1);
  border-radius: 16px;
  padding: 52px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-row input, .form-row textarea {
  width: 100%;
  border: 1px solid rgba(29,53,87,0.18);
  border-radius: 4px;
  padding: 13px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  background: var(--white);
  color: var(--text);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.map-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 14.5px;
}

@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero .arch-frame { max-width: 340px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .podcast-panel { grid-template-columns: 1fr; padding: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 38px; }
  section { padding: 64px 0; }
}
