/* elizabethannwest.com — main site
   "Golden Hour" — immersive sunset/twilight, soft & literary.
   Fraunces display + Inter body. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --night: #150f29;
  --twilight: #2a1d4a;
  --plum: #5a3a6e;
  --mauve: #8a5a8c;

  --coral: #ff7e5f;
  --peach: #ffae7a;
  --rose: #ff9ec4;
  --gold: #ffd49a;
  --lav: #c9b6f0;
  --teal: #8fe0db;

  --cream: #fff4ea;
  --cream-dim: rgba(255, 244, 234, 0.82);
  --cream-soft: rgba(255, 244, 234, 0.66);
  --cream-faint: rgba(255, 244, 234, 0.16);

  --sunset: linear-gradient(95deg, var(--coral), var(--rose) 45%, var(--lav) 78%, var(--teal));
  --warm: linear-gradient(95deg, var(--gold), var(--coral) 55%, var(--rose));

  --font-display: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream);
  background:
    radial-gradient(120% 80% at 82% -5%, rgba(255, 170, 120, 0.40), transparent 52%),
    radial-gradient(95% 70% at 8% 12%, rgba(255, 150, 200, 0.22), transparent 50%),
    radial-gradient(130% 95% at 50% 118%, rgba(255, 190, 130, 0.42), transparent 56%),
    linear-gradient(180deg, var(--night) 0%, var(--twilight) 48%, #3a2358 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--coral); color: var(--night); }

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

/* ============ HEADER ============ */
.head {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 26px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--cream);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.head nav {
  display: flex;
  gap: 30px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.head nav a {
  text-decoration: none;
  color: var(--cream);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}
.head nav a:hover { border-color: var(--rose); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero .photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 28%;
  z-index: 0;
}

.hero .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(21,15,41,0.28) 0%, rgba(21,15,41,0) 26%, rgba(21,15,41,0.42) 64%, rgba(21,15,41,0.93) 100%),
    linear-gradient(75deg, rgba(21,15,41,0.58) 0%, rgba(21,15,41,0) 56%);
}

.hero .inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 0 26px 78px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
}
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sunset); }

h1.title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(54px, 9.5vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
h1.title em {
  font-style: italic;
  background: var(--warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lede {
  max-width: 660px;
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.5;
  color: var(--cream);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
}

/* Home hero: wide landscape image — keep her head in frame, shorter to limit scroll */
.hero--home { min-height: 82vh; }
.hero--home .photo { background-position: center 24%; }

/* ============ SECTIONS ============ */
.section { padding: 90px 0; position: relative; }

.section-head { margin-bottom: 48px; max-width: 760px; }

.kicker {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

h2.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h2.section-title em {
  font-style: italic;
  background: var(--sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-sub {
  margin-top: 16px;
  font-size: 19px;
  color: var(--cream-dim);
  max-width: 620px;
}

/* ============ CARDS (text-only, vibrant) ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  padding: 34px 32px 30px;
  text-decoration: none;
  color: var(--ctext, var(--night));
  background: var(--cbg, var(--rose));
  border-radius: 22px;
  box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.75);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card .tag {
  align-self: flex-start;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: inherit;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(10, 15, 41, 0.16);
}

.card .k {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 35px;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.card .d { font-size: 18px; line-height: 1.45; opacity: 0.9; }

.card .go {
  margin-top: auto;
  padding-top: 12px;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.95;
}
.card .go span { display: inline-block; transition: transform 0.2s ease; }

.card:hover { transform: translateY(-7px); box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.85); }
.card:hover .go span { transform: translateX(7px); }

.card.ai    { --cbg: linear-gradient(135deg, #15c4c4, #46dcff); --ctext: #06232a; }
.card.books { --cbg: linear-gradient(135deg, #ff6f5e, #ff5f97); --ctext: #2c0a16; }
.card.speak { --cbg: linear-gradient(135deg, #8b5cff, #b98bff); --ctext: #fff4ea; }
.card.ffa   { --cbg: linear-gradient(135deg, #ffd06b, #ff9e5e); --ctext: #2c1a05; }
.card.press { --cbg: linear-gradient(135deg, #ff8fc0, #ffb98a); --ctext: #2c0f1f; }

.card.speak .tag { background: rgba(255, 255, 255, 0.22); }

/* ============ CHIPS ============ */
.chips { display: flex; flex-wrap: wrap; gap: 16px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--night);
  background: var(--cream);
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chip.ghost { background: transparent; color: var(--cream); border-color: var(--cream-faint); }
.chip:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.6); }
.chip.ghost:hover { border-color: var(--rose); }

/* ============ DIVIDER ============ */
.glow-rule {
  height: 1px; border: none;
  background: linear-gradient(90deg, transparent, var(--rose), var(--gold), transparent);
  opacity: 0.5; max-width: var(--maxw); margin: 0 auto;
}

/* ============ PRESS STRIP ============ */
.press-strip { text-align: center; padding: 64px 0 8px; }
.press-strip .lbl {
  font-weight: 600; font-size: 13.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 26px;
}
.press-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(30px, 6vw, 68px);
}
.press-row img {
  filter: brightness(0) invert(1);
  opacity: 0.86;
  transition: opacity 0.2s ease;
}
.press-row img:hover { opacity: 1; }
.press-row .l-nyt { height: 32px; }
.press-row .l-wired { height: 28px; }
.press-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.press-list li { font-size: 16px; line-height: 1.4; }
.press-list em { font-family: var(--font-display); font-style: italic; color: var(--cream-dim); }
.press-list span { color: var(--cream-soft); font-size: 14px; letter-spacing: 0.02em; }
.press-list a { color: inherit; text-decoration: none; }
.press-list a em { text-decoration: underline; text-decoration-color: var(--cream-faint); text-underline-offset: 3px; }
.press-list a:hover em { color: var(--rose); text-decoration-color: var(--rose); }

/* ============ ENGAGEMENTS ============ */
.eng-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }

.eng-block h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.eng-block .note { font-size: 15px; color: var(--cream-soft); margin-bottom: 18px; }

.eng-list { list-style: none; }
.eng-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-faint);
}
.eng-list li .name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19.5px;
  line-height: 1.25;
}
.eng-list li .yr {
  flex: none;
  font-weight: 600; font-size: 13px; letter-spacing: 0.03em;
  color: var(--gold);
  white-space: nowrap;
}

.pod-list li { align-items: flex-start; }
.pod-list .name { display: flex; flex-direction: column; gap: 3px; }
.pod-list .ep { font-style: italic; font-weight: 400; font-size: 16px; color: var(--cream-soft); }
.pod-list .yr { padding-top: 3px; }

/* ============ FOOTER ============ */
footer {
  background: linear-gradient(180deg, transparent, rgba(10, 6, 22, 0.7));
  padding: 60px 0 68px; margin-top: 44px;
}
footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }
footer .fmark { font-family: var(--font-display); font-size: 25px; font-weight: 500; }
footer .flinks { font-size: 14.5px; letter-spacing: 0.03em; color: var(--cream-dim); }
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { color: var(--rose); }

/* ============ SPEAKING HERO (image LEFT, text RIGHT) ============ */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  padding: 132px 0 88px;
}
.split .copy .back {
  display: block; width: fit-content; margin-bottom: 24px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none; color: var(--cream);
  border-bottom: 2px solid var(--rose); padding-bottom: 2px;
}
.split .copy h1.title { font-size: clamp(46px, 6.2vw, 88px); }
.split .copy .lede { color: var(--cream-dim); text-shadow: none; max-width: none; font-size: clamp(18px, 2vw, 22px); }

.portrait-frame {
  border-radius: 26px; overflow: hidden;
  border: 1px solid var(--cream-faint);
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.85);
  aspect-ratio: 4 / 5;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ============ TOPICS ============ */
.topics {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(266px, 1fr)); gap: 18px;
}
.topics li {
  padding: 24px 26px;
  background: rgba(255, 244, 234, 0.06);
  border: 1px solid var(--cream-faint);
  border-radius: 18px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-display); font-weight: 500; font-size: 21px; line-height: 1.25;
  border-left: 5px solid var(--accent2, var(--rose));
}
.topics li:nth-child(6n+1) { --accent2: var(--coral); }
.topics li:nth-child(6n+2) { --accent2: var(--lav); }
.topics li:nth-child(6n+3) { --accent2: var(--teal); }
.topics li:nth-child(6n+4) { --accent2: var(--rose); }
.topics li:nth-child(6n+5) { --accent2: var(--gold); }
.topics li:nth-child(6n+6) { --accent2: var(--peach); }

/* ============ CTA ============ */
.cta-box {
  text-align: center; padding: 68px 34px; border-radius: 28px;
  border: 1px solid var(--cream-faint);
  background:
    radial-gradient(120% 130% at 50% 0%, rgba(255, 158, 196, 0.22), transparent 60%),
    rgba(255, 244, 234, 0.05);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.cta-box h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 5vw, 54px); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 18px;
}
.cta-box h2 em { font-style: italic; background: var(--warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-box p { font-size: 18px; color: var(--cream-dim); max-width: 560px; margin: 0 auto 32px; }

.btn-xl {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 19px 38px;
  font-weight: 600; font-size: 18px; letter-spacing: 0.02em;
  text-decoration: none; color: var(--night);
  background: var(--warm); border-radius: 999px;
  box-shadow: 0 18px 40px -16px rgba(255, 126, 95, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-xl span { display: inline-block; transition: transform 0.2s ease; }
.btn-xl:hover { transform: translateY(-3px); box-shadow: 0 26px 54px -18px rgba(255, 126, 95, 0.85); }
.btn-xl:hover span { transform: translateX(6px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 34px; padding-top: 120px; }
  .split .portrait-frame { max-width: 440px; order: 2; }
  .split .copy { order: 1; }
  .eng-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  body { font-size: 16.5px; }
  .head { padding: 18px 20px; }
  .head nav { display: none; }
  .wrap { padding: 0 20px; }
  .eyebrow { font-size: 12.5px; letter-spacing: 0.1em; flex-wrap: wrap; }
  .hero { min-height: 86vh; }
  .hero--home .photo { background-position: 72% 22%; }
  .hero .inner { padding: 0 20px 56px; }
  .hero h1.title { font-size: clamp(32px, 8.2vw, 44px); overflow-wrap: break-word; }
  .hero h1.title .brk { display: none; }
  .split .copy h1.title { font-size: clamp(30px, 7.6vw, 42px); overflow-wrap: break-word; }
  .section { padding: 60px 0; }
  .card .k { font-size: 26px; }
  .press-row { gap: 30px; }
  .press-row .l-nyt { height: 22px; }
  .press-row .l-wired { height: 19px; }
  .press-list li { font-size: 15px; }
  footer .wrap { flex-direction: column; align-items: flex-start; }
}
