:root {
  --ink: #201b2f;
  --muted: #625d68;
  --paper: #fff7e8;
  --cream: #f6dfb8;
  --cream-deep: #e9c57c;
  --clay: #a74438;
  --olive: #30756b;
  --wine: #6f243d;
  --gold: #c58b2f;
  --line: rgba(32, 27, 47, 0.16);
  --white: #fffdf8;
  --shadow: 0 18px 48px rgba(55, 37, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fff7e8 0%, #fffdf8 42%, #f7ead3 100%);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

body::selection {
  background: var(--cream-deep);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
}

.brand img {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--wine);
}

.hero {
  min-height: calc(100vh - 79px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  padding: clamp(52px, 7vw, 90px) clamp(18px, 6vw, 86px) clamp(38px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(246, 223, 184, 0.9), rgba(255, 253, 248, 0.3) 48%, rgba(48, 117, 107, 0.14));
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--wine);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
  font-weight: 500;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
}

h2 {
  max-width: 860px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  text-align: center;
  margin: 0 auto;
}

.hero-copy h1 {
  text-align: left;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.22;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button.primary {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--paper);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(41, 35, 29, 0.16);
}

.button.secondary {
  background: transparent;
  border-color: rgba(111, 36, 61, 0.38);
  color: var(--wine);
}

.button.small {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 0.9rem;
}

.button.large {
  min-width: min(100%, 260px);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 16px clamp(16px, 4vw, 28px);
  background: rgba(32, 27, 47, 0.95);
  color: var(--paper);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.18);
}

.cookie-banner__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.cookie-banner__content p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  max-height: 72vh;
  filter: drop-shadow(0 24px 44px rgba(54, 43, 30, 0.16));
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 6vw, 86px);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 44px;
  text-align: left;
}

.section-heading .eyebrow {
  margin-bottom: 0;
  text-align: left;
}

.section-heading h2 {
  text-align: center;
  align-self: center;
  margin: 0;
}

.single-line {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.95rem, 3.4vw, 3.5rem);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 64px);
  margin-left: min(28vw, 360px);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(190px, 280px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
  max-width: 1040px;
  margin-left: min(28vw, 360px);
  padding: clamp(18px, 3vw, 30px);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(246, 223, 184, 0.72));
  border: 1px solid rgba(167, 68, 56, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-portrait {
  width: 100%;
  min-height: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 40px rgba(32, 27, 47, 0.18);
}

.about-content {
  padding: clamp(4px, 2vw, 18px) 0;
}

.about-kicker {
  margin: 0 0 10px;
  color: var(--wine);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-content h3 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.about-content p + p {
  margin-top: 16px;
}

.about-grid p,
.about-panel p,
.card p,
.book-item p,
.event-panel p,
.join-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.soft-band {
  background: linear-gradient(135deg, rgba(246, 223, 184, 0.85), rgba(255, 253, 248, 0.62));
}

.content-grid {
  display: grid;
  gap: 18px;
}

.content-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(167, 68, 56, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 68, 56, 0.42);
  box-shadow: 0 24px 58px rgba(54, 43, 30, 0.16);
}

.date {
  display: block;
  margin-bottom: 44px;
  color: var(--olive);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-card {
  display: flex;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  flex-direction: column;
}

.news-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--cream);
}

.news-card-copy {
  display: flex;
  min-height: 164px;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
}

.news-card .date {
  margin-bottom: 20px;
}

.news-card h3 a {
  color: inherit;
  text-decoration-color: rgba(167, 68, 56, 0.4);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.news-card h3 a:hover {
  color: var(--wine);
  text-decoration-color: var(--wine);
}

.card h3,
.book-item h3,
.event-panel h3 {
  margin-bottom: 12px;
}

.books-section {
  background: var(--paper);
}

.book-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.book-carousel__viewport {
  flex: 1;
  overflow: hidden;
}

.book-carousel__track {
  display: flex;
  transition: transform 280ms ease;
}

.book-carousel__slide {
  flex: 0 0 100%;
}

.book-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  width: 100%;
  margin: 0;
}

.book-carousel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(48, 117, 107, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--olive);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.book-carousel__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(54, 43, 30, 0.16);
}

.book-carousel__button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.book-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px;
  border-top: 1px solid var(--line);
}

.book-feature {
  grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
  align-items: center;
  padding: clamp(16px, 3vw, 24px);
  background: var(--white);
  border: 1px solid rgba(48, 117, 107, 0.18);
  border-left: 5px solid var(--olive);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.book-feature .date {
  margin-bottom: 14px;
}

.book-feature h3 {
  max-width: 620px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.book-image {
  width: 100%;
  max-width: 160px;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(54, 43, 30, 0.18);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 20px;
  padding: 9px 16px;
  border: 1px solid rgba(111, 36, 61, 0.32);
  border-radius: 6px;
  color: var(--wine);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.text-link:hover {
  background: var(--wine);
  color: var(--paper);
  transform: translateY(-2px);
}

.book-cover {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--clay), #c29678);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.book-cover.alt {
  background: linear-gradient(135deg, var(--olive), #a1a982);
}

.event-panel {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 36px);
  align-items: center;
  max-width: 880px;
  margin-left: min(28vw, 360px);
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid rgba(197, 139, 47, 0.28);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.event-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
  background: var(--cream);
}

.event-title-link {
  color: inherit;
  text-decoration: none;
}

.event-title-link:hover {
  color: var(--wine);
}

.event-date {
  display: grid;
  place-items: center;
  min-height: 128px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--clay);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.event-date span,
.event-date strong {
  display: block;
}

.event-date strong {
  color: var(--ink);
  font-size: 1.4rem;
}

.join-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, var(--paper), #fdefc1);
  color: var(--ink);
  border: 1px solid rgba(32, 27, 47, 0.12);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
}

.join-section .eyebrow {
  color: var(--wine);
}

.join-section p {
  color: var(--muted);
  margin-top: 12px;
}

.join-copy {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.join-section h2 {
  text-align: left;
  margin: 0;
  max-width: 100%;
}

.form-note {
  grid-column: 1 / -1;
  margin: -10px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contact-grid > * {
  min-height: 150px;
  margin: 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-style: normal;
}

.contact-grid strong,
.contact-grid a {
  display: block;
}

.contact-grid strong {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.contact-grid a {
  color: var(--clay);
  text-decoration: none;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
}

.social-link + .social-link {
  margin-top: 8px;
}

.social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px clamp(18px, 6vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  text-align: center;
  position: relative;
}

.site-footer-brand {
  position: absolute;
  left: clamp(18px, 6vw, 86px);
  bottom: 24px;
  color: var(--muted);
  text-align: left;
}

.site-footer-email {
  position: absolute;
  right: clamp(18px, 6vw, 86px);
  bottom: 24px;
  color: var(--wine);
  text-decoration: none;
}

.site-footer-email:hover {
  text-decoration: underline;
}

.site-footer p {
  margin: 0;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.site-footer-links a {
  color: var(--wine);
  text-decoration: none;
}

.site-footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 620px;
  }

  .hero-visual img {
    max-height: 420px;
  }

  .section-heading,
  .about-grid,
  .about-panel,
  .event-panel,
  .join-section {
    margin-left: 0;
    grid-template-columns: 1fr;
  }

  .book-carousel {
    margin-left: 0;
  }

  .content-grid.three,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .brand span {
    max-width: 220px;
  }

  h1 {
    font-size: clamp(2.9rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: 2rem;
  }

  .single-line {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }

  .hero-actions,
  .button,
  .button.large {
    width: 100%;
  }

  .content-grid.three,
  .contact-grid,
  .book-item,
  .about-panel,
  .book-list {
    grid-template-columns: 1fr;
  }

  .book-carousel {
    gap: 8px;
  }

  .book-carousel__button {
    display: none;
  }

  .event-panel {
    grid-template-columns: 1fr;
  }

  .news-card-copy {
    min-height: 132px;
  }

  .book-feature {
    padding: 18px;
  }

  .book-cover {
    width: 112px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}