:root {
  --color-chalk: #faf7f2;
  --color-apricot: #f5e6d3;
  --color-terracotta: #c46a4a;
  --color-olive: #6b7a4a;
  --color-coral: #d9897a;
  --color-espresso: #3d2a1f;
  --color-muted: #8a7364;
  --color-paper: #fffdf9;
  --color-border: rgba(61, 42, 31, 0.14);
  --shadow-warm: 0 12px 32px rgba(61, 42, 31, 0.08);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --radius: 14px;
  --radius-pill: 999px;
  --space: clamp(1rem, 2vw, 1.75rem);
  --max: 1180px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-espresso);
  background:
    radial-gradient(ellipse at 12% 0%, rgba(217, 137, 122, 0.18), transparent 42%),
    radial-gradient(ellipse at 88% 8%, rgba(107, 122, 74, 0.12), transparent 40%),
    linear-gradient(180deg, var(--color-apricot) 0%, var(--color-chalk) 28%, var(--color-chalk) 100%);
  min-height: 100vh;
}

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

a {
  color: var(--color-terracotta);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-espresso);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn--terracotta {
  background: var(--color-terracotta);
  color: var(--color-espresso);
}

.btn--terracotta:hover {
  background: transparent;
  border-color: var(--color-terracotta);
  color: var(--color-espresso);
  text-decoration: underline;
}

.btn--olive {
  background: var(--color-olive);
  color: var(--color-chalk);
}

.btn--olive:hover {
  background: transparent;
  border-color: var(--color-olive);
  color: var(--color-espresso);
  text-decoration: underline;
}

.btn--ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-espresso);
}

.btn--ghost:hover {
  border-color: var(--color-espresso);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(250, 247, 242, 0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-solid {
  background: rgba(250, 247, 242, 0.96);
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 18px rgba(61, 42, 31, 0.05);
}

.site-header__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-espresso);
  text-decoration: none;
  white-space: nowrap;
}

.site-header__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__list a {
  color: var(--color-espresso);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-header__list a:hover {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.site-header__cta {
  background: var(--color-terracotta);
  color: var(--color-espresso) !important;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
}

.site-header__cta:hover {
  background: var(--color-olive);
  color: var(--color-chalk) !important;
  text-decoration: none !important;
}

.site-header__toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-paper);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.site-header__toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--color-espresso);
}

@media (max-width: 960px) {
  .site-header__toggle {
    display: flex;
  }

  .site-header__nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-paper);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.25rem 1.5rem;
    display: none;
  }

  .site-header__nav.is-open {
    display: block;
  }

  .site-header__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(61, 42, 31, 0.72) 0%, rgba(61, 42, 31, 0.35) 48%, rgba(61, 42, 31, 0.15) 100%),
    linear-gradient(0deg, rgba(61, 42, 31, 0.55), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  color: var(--color-chalk);
  max-width: 38rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin: 0 0 0.75rem;
  color: var(--color-chalk);
}

.hero__lead {
  font-size: 1.15rem;
  color: rgba(250, 247, 242, 0.9);
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--tight {
  padding-top: 2.5rem;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-olive);
  margin-bottom: 0.6rem;
}

.section__title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0 0 0.75rem;
}

.section__lead {
  max-width: 38rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.asymmetric {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

@media (max-width: 860px) {
  .asymmetric {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-warm);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(61, 42, 31, 0.12);
}

.card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.card__title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

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

.card__title a:hover {
  text-decoration: underline;
}

.card__meta {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

@media (max-width: 900px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.magazine-feature {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}

.magazine-feature__image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.magazine-feature__body {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 800px) {
  .magazine-feature {
    grid-template-columns: 1fr;
  }
}

.quote {
  border-left: 3px solid var(--color-coral);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 0 0 1.5rem;
}

.quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.4;
}

.quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 1rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 0.75rem;
}

.page-hero p {
  max-width: 40rem;
  color: var(--color-muted);
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 860px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
}

.side-panel {
  background: var(--color-apricot);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.35rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.side-panel dl {
  margin: 0;
}

.side-panel dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-top: 0.85rem;
}

.side-panel dd {
  margin: 0.2rem 0 0;
}

.form {
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-warm);
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font: inherit;
  background: var(--color-chalk);
  color: var(--color-espresso);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  color: #9a3b2a;
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
}

.form-status {
  margin-top: 0.85rem;
  font-weight: 600;
}

.form-status.is-success {
  color: var(--color-olive);
}

.form-status.is-error {
  color: #9a3b2a;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: var(--color-espresso);
  color: rgba(245, 230, 211, 0.85);
  margin-top: 3rem;
  padding: clamp(3rem, 7vw, 5rem) 0 1.5rem;
}

.site-footer a {
  color: rgba(245, 230, 211, 0.9);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  color: var(--color-apricot);
}

.site-footer__inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-footer__heading {
  color: var(--color-apricot);
  margin: 0 0 0.5rem;
}

.site-footer__text {
  max-width: 32rem;
  margin-bottom: 1rem;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}

@media (max-width: 700px) {
  .site-footer__cols {
    grid-template-columns: 1fr;
  }
}

.site-footer__label {
  color: var(--color-coral);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer__address {
  font-style: normal;
  line-height: 1.7;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 230, 211, 0.15);
  font-size: 0.9rem;
}

.site-footer__social {
  display: flex;
  gap: 1.25rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: end;
}

.newsletter-form .form-field {
  margin: 0;
  flex: 1 1 220px;
}

.newsletter-form label {
  color: var(--color-apricot);
}

.newsletter-form input {
  background: rgba(250, 247, 242, 0.08);
  border-color: rgba(245, 230, 211, 0.25);
  color: var(--color-apricot);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 420px;
  margin-right: auto;
}

.cookie-banner__inner {
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-warm);
  padding: 1.25rem;
}

.cookie-banner__title {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.cookie-banner__text {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-paper);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

th {
  background: var(--color-apricot);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.calendar-list {
  display: grid;
  gap: 1rem;
}

.calendar-item {
  display: grid;
  grid-template-columns: 10rem 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  box-shadow: var(--shadow-warm);
}

@media (max-width: 700px) {
  .calendar-item {
    grid-template-columns: 1fr;
  }
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--color-apricot);
  border: 1px solid var(--color-border);
  font-size: 0.82rem;
  font-weight: 600;
}

.badge--wait {
  background: rgba(196, 106, 74, 0.15);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.92rem;
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.stack-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.stack-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.price-row strong:last-child {
  white-space: nowrap;
  color: var(--color-olive);
}
