@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@400;500;600&display=swap");

:root {
  --cream: #ffefb9;
  --cream-light: #fff8e8;
  --paper: rgba(255, 250, 239, 0.88);
  --wine: #7b0048;
  --wine-dark: #430029;
  --gold: #d8a72f;
  --ink: #351529;
  --muted: #6c5361;
  --line: rgba(67, 0, 41, 0.18);
  --shadow: 0 24px 70px rgba(67, 0, 41, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(216, 167, 47, 0.22), transparent 28rem),
    radial-gradient(circle at 92% 24%, rgba(123, 0, 72, 0.12), transparent 30rem),
    var(--cream);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--wine-dark);
  color: var(--cream-light);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 2.5rem, 76rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(67, 0, 41, 0.14);
  background: rgba(255, 248, 232, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand img {
  width: 4.6rem;
  height: 4.6rem;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.86rem;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:not(.button):hover {
  color: var(--wine);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--wine-dark);
  border-radius: 999px;
  background: var(--wine-dark);
  color: var(--cream-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--wine);
  transform: translateY(-2px);
}

.button--light {
  background: rgba(255, 248, 232, 0.64);
  color: var(--wine-dark);
}

.button--light:hover {
  background: var(--cream-light);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--wine-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100svh - 6.4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(19rem, 0.96fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.hero h1,
.article-hero h1 {
  margin-bottom: 1.5rem;
  color: var(--wine-dark);
  font-size: clamp(3.5rem, 8vw, 7.2rem);
  line-height: 0.92;
}

.accent {
  color: var(--wine);
}

.hero-lead {
  max-width: 37rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions,
.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 32rem;
  isolation: isolate;
}

.hero-mark::before,
.hero-mark::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.hero-mark::before {
  width: min(100%, 33rem);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.74), transparent 38%),
    linear-gradient(145deg, rgba(216, 167, 47, 0.34), rgba(123, 0, 72, 0.15));
  box-shadow: var(--shadow);
}

.hero-mark::after {
  right: 2%;
  bottom: 9%;
  width: 7.5rem;
  aspect-ratio: 1;
  border: 1px solid var(--wine);
  background: rgba(255, 248, 232, 0.72);
}

.hero-mark img {
  width: min(82%, 28rem);
  filter: drop-shadow(0 1.5rem 2.5rem rgba(67, 0, 41, 0.13));
}

.section {
  padding-block: clamp(5rem, 10vw, 8.5rem);
}

.section--paper {
  border-block: 1px solid var(--line);
  background: rgba(255, 248, 232, 0.74);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 3rem;
}

.section-heading h2,
.story-copy h2,
.support-card h2,
.closing-card h2 {
  margin-bottom: 1.2rem;
  color: var(--wine-dark);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1;
}

.section-heading p,
.story-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.value-card {
  min-height: 17rem;
  padding: 2rem;
  border-radius: 2rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.value-card:nth-child(2) {
  background: rgba(255, 238, 185, 0.88);
}

.value-card:nth-child(3) {
  background: rgba(243, 222, 232, 0.72);
}

.value-card h3 {
  margin-bottom: 1rem;
  color: var(--wine);
  font-size: 2.15rem;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.92fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.story-image {
  margin: 0;
  overflow: hidden;
  border-radius: clamp(2rem, 4vw, 3.5rem);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  aspect-ratio: 1493 / 1054;
  object-fit: cover;
}

.patronage-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 2.5rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(216, 167, 47, 0.34), transparent 19rem),
    var(--wine-dark);
  color: var(--cream-light);
  box-shadow: var(--shadow);
}

.patronage-strip h2 {
  margin-bottom: 0.8rem;
  color: var(--cream-light);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
}

.patronage-strip p {
  max-width: 43rem;
  margin-bottom: 0;
  color: rgba(255, 248, 232, 0.8);
}

.article-hero {
  max-width: 65rem;
  padding-block: clamp(5rem, 9vw, 8rem) clamp(3.5rem, 7vw, 6rem);
}

.article-hero h1 {
  max-width: 13ch;
  font-size: clamp(3.2rem, 7vw, 6.3rem);
}

.article-hero .hero-lead {
  max-width: 50rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.88fr);
  align-items: start;
  column-gap: clamp(2.5rem, 6vw, 6rem);
  row-gap: 0;
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.article-copy--lead {
  grid-column: 1;
  grid-row: 1;
}

.article-copy--continuation {
  grid-column: 1;
  grid-row: 2;
}

.article-copy {
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
}

.article-copy p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.article-copy p:first-child {
  color: var(--ink);
  font-size: 1.18em;
}

.support-card {
  position: sticky;
  top: 8rem;
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: clamp(1.7rem, 4vw, 2.6rem);
  border-radius: 2.3rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.support-card h2 {
  font-size: clamp(2.15rem, 4vw, 3rem);
}

.support-card p {
  color: var(--muted);
}

.support-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.support-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.7rem;
  border-radius: 1.2rem;
  background: rgba(255, 239, 185, 0.56);
  color: var(--ink);
}

.support-list li::before {
  content: "♪";
  position: absolute;
  left: 1rem;
  top: 0.72rem;
  color: var(--wine);
  font-size: 1.2rem;
}

.closing-card {
  margin-bottom: clamp(5rem, 10vw, 8rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 2.7rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 167, 47, 0.25), transparent 20rem),
    rgba(255, 248, 232, 0.74);
  box-shadow: var(--shadow);
  text-align: center;
}

.closing-card h2 {
  max-width: 18ch;
  margin-inline: auto;
  color: var(--wine);
}

.closing-card p {
  max-width: 50rem;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(67, 0, 41, 0.96);
  color: var(--cream-light);
}

.footer-inner {
  min-height: 11rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 248, 232, 0.72);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.86rem;
}

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

@media (max-width: 840px) {
  .header-inner {
    min-height: 5.4rem;
  }

  .brand img {
    width: 3.9rem;
    height: 3.9rem;
  }

  .brand-copy small,
  .nav-links a:not(.button) {
    display: none;
  }

  .hero,
  .story-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    order: 1;
  }

  .hero-mark {
    min-height: 25rem;
    order: 2;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 0;
  }

  .patronage-strip {
    grid-template-columns: 1fr;
  }

  .support-card {
    position: static;
  }

  .article-layout {
    row-gap: 2.5rem;
  }

  .article-copy--lead,
  .article-copy--continuation,
  .support-card {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 2rem, 76rem);
  }

  .brand-copy strong {
    font-size: 1.15rem;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links .button {
    min-height: 2.65rem;
    padding-inline: 0.95rem;
    font-size: 0.75rem;
  }

  .hero-mark {
    min-height: 21rem;
  }

  .hero-mark::after {
    width: 5.5rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
