/* ============================================================
   THE MOTHER INTERIOR
   Dark editorial — wine, charcoal, gold, cream
   ============================================================ */

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

:root {
  --wine: #3a0f15;
  --wine-deep: #240609;
  --wine-mid: #4a161d;
  --onyx: #0e0a0a;
  --charcoal: #1a1414;
  --gold: #c8a96a;
  --gold-soft: #a88950;
  --cream: #f5ede0;
  --cream-dim: #d8cdb9;
  --shadow: rgba(0,0,0,0.5);

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --script: 'Caveat', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--onyx);
  color: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 1.25rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(14, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 169, 106, 0.12);
}
.nav-brand img { height: 46px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 2.5rem; }
.nav-links {
  display: flex; gap: 2.2rem; list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-cta {
  font-family: var(--sans);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  background: var(--gold);
  color: var(--onyx);
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--cream); }
.nav-toggle {
  display: none;
  font-size: 1.6rem; color: var(--cream);
}
@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-toggle { display: block; }
  .nav-right {
    position: fixed; top: 70px; right: -100%;
    flex-direction: column; align-items: flex-start;
    background: var(--wine-deep);
    width: 80%; height: calc(100vh - 70px);
    padding: 2.5rem 2rem; gap: 1.5rem;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(200,169,106,0.15);
  }
  .nav-right.open { right: 0; }
  .nav-links { flex-direction: column; gap: 1.5rem; }
  .nav-cta { width: 100%; text-align: center; }
}

/* ============== SHARED TYPE / LAYOUT ============== */
section { padding: 6rem 3rem; }
@media (max-width: 768px) { section { padding: 4rem 1.5rem; } }

.section-tag {
  font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem; font-weight: 500;
}
.section-tag::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.section-tag.center { justify-content: center; }

.h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 0.95;
  letter-spacing: -0.02em; color: var(--cream);
}
.h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.02em; color: var(--cream);
}
em.gold {
  color: var(--gold);
  font-style: italic;
}
.script-gold {
  font-family: var(--script);
  color: var(--gold);
  font-weight: 500;
  font-style: normal;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 0.28em;
  text-transform: uppercase; font-weight: 500;
  padding: 1.1rem 2rem;
  border: 1px solid var(--gold);
  color: var(--cream);
  background: transparent;
  transition: all 0.4s ease;
  cursor: pointer;
}
.btn:hover { background: var(--gold); color: var(--onyx); }
.btn-filled {
  background: var(--gold); color: var(--onyx);
}
.btn-filled:hover { background: var(--cream); }

/* ============== HOME ============== */
.hero {
  min-height: 92vh;
  padding: 5rem 3rem 4rem;
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse at top left, rgba(58,15,21,0.6), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(138,58,35,0.3), transparent 50%),
    var(--onyx);
  position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1400px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 4rem; align-items: center;
}
.hero p {
  font-family: var(--serif);
  font-size: 1.15rem; font-style: italic;
  color: var(--cream-dim); line-height: 1.6;
  max-width: 480px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-visual {
  position: relative; height: 46.8vh; min-height: 336px;
  max-width: 60%; margin-left: auto;
}
.hero-photo {
  position: absolute; inset: 0; z-index: 2;
  overflow: hidden; border: 1px solid rgba(200,169,106,0.2);
  box-shadow: 0 30px 80px var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-stamp {
  position: absolute; bottom: 1.5rem; right: 1.5rem; z-index: 3;
  font-family: var(--script);
  color: var(--gold); font-size: 2rem;
  transform: rotate(-6deg);
  text-shadow: 0 2px 14px rgba(0,0,0,0.9);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 36vh; min-height: 240px; max-width: 100%; }
}

.pillars {
  background: var(--charcoal);
  padding: 5rem 3rem;
  border-top: 1px solid rgba(200,169,106,0.1);
  border-bottom: 1px solid rgba(200,169,106,0.1);
}
.pillars-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.pillar { padding: 3rem 2.5rem; border-right: 1px solid rgba(200,169,106,0.12); }
.pillar:last-child { border-right: none; }
.pillar-num {
  font-family: var(--serif); font-size: 0.85rem;
  font-style: italic; color: var(--gold);
  letter-spacing: 0.2em; margin-bottom: 1.5rem;
}
.pillar h3 {
  font-family: var(--serif); font-size: 1.8rem;
  font-weight: 400; margin-bottom: 1rem; color: var(--cream);
}
.pillar p { color: var(--cream-dim); font-size: 0.95rem; line-height: 1.7; }
@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(200,169,106,0.12); }
  .pillar:last-child { border-bottom: none; }
}

.feature {
  background: var(--onyx); padding: 6rem 3rem;
}
.feature-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: center;
}
.feature-image { position: relative; }
.feature-image img {
  width: 100%; height: 620px; object-fit: cover;
  box-shadow: 0 25px 60px var(--shadow);
}
.feature-image::after {
  content: ''; position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--gold); z-index: -1;
}
.feature-content p {
  color: var(--cream-dim); font-size: 1.05rem;
  margin-bottom: 1.5rem; line-height: 1.8;
}
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; gap: 3rem; }
  .feature-image img { height: 420px; }
}

.podcast-quote {
  background: linear-gradient(135deg, var(--wine-deep) 0%, var(--charcoal) 100%);
  padding: 6rem 3rem; position: relative; overflow: hidden;
  text-align: center;
}
.podcast-quote::before {
  content: 'TMI';
  position: absolute; font-family: var(--serif);
  font-weight: 900; font-size: 24rem;
  color: rgba(200, 169, 106, 0.03);
  top: -6rem; right: -3rem; line-height: 1; pointer-events: none;
}
.podcast-quote-inner {
  max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 1;
}
.podcast-quote p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300; line-height: 1.4; color: var(--cream);
  max-width: 900px; margin: 0 auto 3rem;
}

.merch {
  background: var(--charcoal); padding: 6rem 3rem;
}
.merch-inner { max-width: 1400px; margin: 0 auto; }
.merch-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap;
  gap: 2rem; margin-bottom: 4rem;
}
.merch-head .description {
  max-width: 380px; color: var(--cream-dim);
  font-style: italic; font-family: var(--serif);
}
.merch-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
@media (max-width: 768px) { .merch-grid { grid-template-columns: 1fr; } }

.product {
  background: var(--onyx);
  border: 1px solid rgba(200,169,106,0.1);
  transition: transform 0.5s ease;
  position: relative;
}
.product:hover { transform: translateY(-8px); }
.product-img {
  width: 100%; aspect-ratio: 4/5;
  overflow: hidden; position: relative;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.product:hover .product-img img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 1.25rem; left: 1.25rem; z-index: 3;
  background: var(--gold); color: var(--onyx);
  padding: 0.5rem 0.9rem;
  font-family: var(--sans); font-size: 0.65rem;
  font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
}
.product-info {
  padding: 2rem 2rem 0.75rem;
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 1.5rem;
}
.product-info h3 {
  font-family: var(--serif); font-size: 1.3rem;
  font-weight: 400; margin-bottom: 0.5rem; color: var(--cream);
}
.product-style {
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase;
}
.product-price {
  font-family: var(--serif); font-size: 1.3rem; color: var(--gold);
}
.product-ships {
  padding: 0 2rem 1.25rem;
  font-family: var(--serif); font-style: italic;
  font-size: 0.85rem; color: var(--cream-dim);
}
.product-cta { padding: 0 2rem 2rem; }
.product-cta a {
  display: block; text-align: center;
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  padding: 1rem;
  background: var(--wine); color: var(--cream);
  border: 1px solid var(--gold);
  transition: all 0.4s ease;
}
.product-cta a:hover { background: var(--gold); color: var(--onyx); }
.merch-cta { text-align: center; margin-top: 4rem; }

/* ============== ABOUT ============== */
.about-hero {
  max-width: 1400px; margin: 0 auto;
  padding: 5rem 3rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-portrait {
  position: relative; height: 78vh; min-height: 560px;
}
.about-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  box-shadow: 0 30px 80px var(--shadow);
}
.about-portrait::after {
  content: ''; position: absolute;
  top: 30px; left: 30px; right: -30px; bottom: -30px;
  border: 1px solid var(--gold); z-index: -1;
}
.about-portrait .signature {
  position: absolute; bottom: -2rem; right: -1rem;
  font-family: var(--script); color: var(--gold);
  font-size: 3rem; transform: rotate(-6deg); z-index: 2;
}
.about-text .lede {
  font-family: var(--serif); font-style: italic;
  font-size: 1.2rem; color: var(--cream-dim);
  line-height: 1.6; margin: 1.5rem 0 2rem;
}
@media (max-width: 900px) {
  .about-hero { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .about-portrait { height: 60vh; min-height: 400px; }
}

.bio { padding: 4rem 3rem 6rem; }
.bio-inner { max-width: 900px; margin: 0 auto; }
.bio-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.05;
  text-align: center; margin-bottom: 3rem; color: var(--cream);
}
.bio-inner p {
  font-size: 1.05rem; color: var(--cream-dim);
  margin-bottom: 1.5rem; line-height: 1.8;
}
.dropcap::first-letter {
  font-family: var(--serif); font-size: 4.5rem;
  font-weight: 400; font-style: italic;
  float: left; line-height: 0.8;
  margin: 0.3rem 0.7rem 0 0; color: var(--gold);
}
.pullquote {
  font-family: var(--serif); font-style: italic;
  font-size: 1.8rem; color: var(--cream);
  text-align: center; padding: 3rem 2rem; margin: 3rem 0;
  border-top: 1px solid rgba(200,169,106,0.2);
  border-bottom: 1px solid rgba(200,169,106,0.2);
  line-height: 1.4;
}
.bio-img-break { margin: 4rem 0; }
.bio-img-break img {
  width: 100%; height: 600px; object-fit: cover;
  object-position: center 25%;
  box-shadow: 0 25px 60px var(--shadow);
}

.about-cta {
  padding: 6rem 3rem; text-align: center;
  background: linear-gradient(135deg, var(--wine-deep) 0%, var(--charcoal) 100%);
  border-top: 1px solid rgba(200,169,106,0.15);
}
.about-cta p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.2rem; color: var(--cream-dim);
  max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.6;
}

/* ============== DESIGN ============== */
.design-hero {
  padding: 6rem 3rem 4rem; text-align: center;
  background: radial-gradient(ellipse at center, rgba(58,15,21,0.5), transparent 70%), var(--onyx);
}
.design-hero p {
  font-family: var(--serif); font-style: italic;
  color: var(--cream-dim); font-size: 1.2rem;
  max-width: 700px; margin: 1.5rem auto 0;
}
.projects {
  max-width: 1400px; margin: 0 auto;
  padding: 4rem 3rem 6rem;
}
.project {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-bottom: 6rem;
}
.project:nth-child(even) { direction: rtl; }
.project:nth-child(even) > * { direction: ltr; }
.project img {
  width: 100%; height: 520px; object-fit: cover;
  box-shadow: 0 25px 60px var(--shadow);
}
.project-num {
  font-family: var(--serif); font-style: italic;
  font-size: 5rem; color: var(--gold); opacity: 0.4;
  line-height: 1; margin-bottom: 1rem;
}
.project-style {
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.4em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.project-style::before {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.project h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300; font-style: italic;
  line-height: 1.1; margin-bottom: 1.5rem; color: var(--cream);
}
.project p { color: var(--cream-dim); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.projects-cta { text-align: center; margin-top: 4rem; }
@media (max-width: 900px) {
  .project, .project:nth-child(even) {
    grid-template-columns: 1fr; gap: 2.5rem; direction: ltr;
  }
  .project img { height: 400px; }
  .projects { padding: 2rem 1.5rem 4rem; }
}

/* ============== PODCAST ============== */
.podcast-hero {
  min-height: 90vh;
  padding: 5rem 3rem 4rem;
  display: flex; align-items: center;
  background: radial-gradient(ellipse at top left, rgba(58,15,21,0.6), transparent 60%), var(--onyx);
}
.podcast-hero-inner {
  max-width: 1400px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 4rem; align-items: center;
}
.podcast-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; letter-spacing: -0.03em;
  line-height: 0.95; margin-bottom: 2rem; color: var(--cream);
}
.tagline {
  font-family: var(--script); font-size: 1.8rem;
  color: var(--gold); margin-bottom: 2rem;
}
.podcast-hero .description {
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: var(--cream-dim);
  max-width: 500px; margin-bottom: 2.5rem; line-height: 1.6;
}
.podcast-set-visual {
  position: relative; height: 75vh; min-height: 560px;
}
.podcast-set-photo {
  position: absolute; inset: 0; z-index: 2;
  box-shadow: 0 30px 80px var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(200,169,106,0.25);
}
.podcast-set-photo img { width: 100%; height: 100%; object-fit: cover; }
.podcast-set-caption {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--wine-deep);
  padding: 1rem 1.5rem;
  border: 1px solid var(--gold);
  z-index: 3;
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem; color: var(--cream);
}
.podcast-set-caption strong { color: var(--gold); font-weight: 500; }
@media (max-width: 900px) {
  .podcast-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .podcast-set-visual { height: 60vh; min-height: 400px; }
}

.manifesto { max-width: 900px; margin: 0 auto; padding: 5rem 3rem 2rem; }
.manifesto p {
  font-family: var(--serif); font-size: 1.15rem;
  color: var(--cream-dim); line-height: 1.9; margin-bottom: 1.5rem;
}
.permission-slip {
  background: var(--wine-deep);
  padding: 4rem 3rem;
  margin: 4rem auto;
  max-width: 900px; text-align: center;
  border: 1px solid rgba(200,169,106,0.3);
  position: relative;
}
.permission-slip::before {
  content: ''; position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  border: 1px solid rgba(200,169,106,0.2); pointer-events: none;
}
.permission-slip h2 {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--cream); line-height: 1.3; font-weight: 300;
}
.permission-slip h2 em {
  font-family: var(--script); font-style: normal;
  color: var(--gold); font-size: 1.2em; display: block; margin-top: 0.5rem;
}

.power-line {
  padding: 4rem 3rem 6rem; text-align: center;
}
.power-line p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.6rem; color: var(--cream);
  max-width: 700px; margin: 0 auto 2rem; line-height: 1.5;
}

.listen-on {
  padding: 5rem 3rem; text-align: center;
  background: var(--charcoal);
}
.listen-on h3 {
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.4em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 2rem;
}
.platforms {
  display: flex; justify-content: center;
  gap: 3rem; flex-wrap: wrap; margin-bottom: 3rem;
}
.platforms a {
  font-family: var(--serif); font-style: italic;
  font-size: 1.4rem; color: var(--cream);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px; transition: all 0.3s ease;
}
.platforms a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ============== CONTACT ============== */
.contact-hero {
  padding: 6rem 3rem 4rem; text-align: center;
  background: radial-gradient(ellipse at center, rgba(58,15,21,0.5), transparent 70%), var(--onyx);
}
.contact-hero p {
  font-family: var(--serif); font-style: italic;
  color: var(--cream-dim); font-size: 1.2rem;
  max-width: 700px; margin: 1.5rem auto 0; line-height: 1.6;
}

.contact-cards {
  max-width: 1200px; margin: 0 auto;
  padding: 3rem 3rem 5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.contact-card {
  background: var(--charcoal); padding: 2.5rem 2rem;
  border: 1px solid rgba(200,169,106,0.15);
  text-align: center;
}
.contact-card h3 {
  font-family: var(--serif); font-size: 1.4rem;
  font-weight: 400; margin-bottom: 1rem; color: var(--cream);
}
.contact-card p {
  color: var(--cream-dim); font-size: 0.95rem;
  line-height: 1.7; margin-bottom: 1.5rem;
}
.contact-card a {
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.25em; color: var(--gold);
  text-transform: uppercase; border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
@media (max-width: 768px) { .contact-cards { grid-template-columns: 1fr; } }

.forms-section {
  background: var(--charcoal); padding: 6rem 3rem;
  border-top: 1px solid rgba(200,169,106,0.1);
  border-bottom: 1px solid rgba(200,169,106,0.1);
}
.forms-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
}
@media (max-width: 900px) { .forms-grid { grid-template-columns: 1fr; gap: 3rem; } }

form .field { margin-bottom: 1.5rem; }
form label {
  display: block;
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.28em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.6rem;
  font-weight: 500;
}
form input, form textarea, form select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(245, 237, 224, 0.04);
  border: 1px solid rgba(200, 169, 106, 0.25);
  color: var(--cream);
  font-family: var(--sans); font-size: 0.95rem;
  outline: none; transition: border-color 0.3s ease;
}
form input:focus, form textarea:focus, form select:focus {
  border-color: var(--gold);
}
form textarea { resize: vertical; min-height: 120px; }
form select { appearance: none; cursor: pointer; }
form button[type="submit"] {
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  background: var(--gold); color: var(--onyx);
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
  font-weight: 500;
}
form button[type="submit"]:hover { background: var(--cream); }

.closing-note {
  padding: 5rem 3rem; text-align: center;
  background: linear-gradient(135deg, var(--wine-deep) 0%, var(--charcoal) 100%);
}
.closing-note p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.4rem; color: var(--cream);
  max-width: 700px; margin: 0 auto; line-height: 1.6;
}

/* ============== FOOTER ============== */
footer {
  background: var(--wine-deep);
  padding: 5rem 3rem 2rem;
  border-top: 1px solid rgba(200,169,106,0.15);
}
.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer-brand img { height: 60px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
  font-family: var(--serif); font-style: italic;
  color: var(--cream-dim); font-size: 0.95rem; max-width: 320px;
  margin-top: 1rem;
}
.footer-col h4 {
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem; font-weight: 500;
}
.footer-col a {
  display: block; color: var(--cream-dim);
  margin-bottom: 0.75rem; font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,169,106,0.12);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
  font-family: var(--sans); font-size: 0.75rem;
  color: var(--cream-dim); letter-spacing: 0.05em;
}
.footer-credit {
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-credit a {
  color: var(--gold);
  font-style: italic;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.footer-credit a:hover { border-bottom-color: var(--gold); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 3rem 1.5rem 2rem; }
}
