:root {
  --ink: #1c1917;
  --ink-soft: #4a433c;
  --paper: #f6f1ea;
  --paper-deep: #efe6d9;
  --cream: #fbf8f3;
  --line: #d9cfc2;
  --olive: #3d4a32;
  --olive-deep: #2c3524;
  --terracotta: #b85c38;
  --terracotta-deep: #8f4328;
  --gold: #c4a35a;
  --white: #fffcf7;
  --danger: #8f2d2d;
  --ok: #2f5d3a;
  --shadow: 0 18px 50px rgba(28, 25, 23, 0.08);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space: 1.25rem;
  --wide: 72rem;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

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

a {
  color: var(--olive);
}

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

h1,
h2,
h3,
.lede {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0 0 0.75rem;
}

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

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 234, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__skip {
  position: absolute;
  left: -999px;
}

.site-header__skip:focus {
  left: 1rem;
  top: 0.75rem;
  background: var(--white);
  padding: 0.4rem 0.7rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-header__mark {
  width: 0.7rem;
  height: 0.7rem;
  background: var(--terracotta);
  transform: rotate(45deg);
}

.site-header__toggle {
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 0.4rem 0.8rem;
  font-family: inherit;
  cursor: pointer;
}

.site-header__nav {
  margin-left: auto;
}

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

.site-header__list a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
}

.site-header__cta {
  border: 1px solid var(--ink);
  padding: 0.4rem 0.75rem;
}

.site-footer {
  background: var(--olive-deep);
  color: var(--paper);
  padding: 3rem 1.25rem 1.5rem;
  margin-top: 4rem;
}

.site-footer a {
  color: var(--paper);
}

.site-footer__inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr;
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.site-footer__heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-body);
}

.site-footer__address {
  font-style: normal;
}

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

.site-footer__legal {
  max-width: var(--wide);
  margin: 2rem auto 0;
  border-top: 1px solid rgba(239, 230, 217, 0.2);
  padding-top: 1rem;
  font-size: 0.9rem;
}

.wrap {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 78vh;
  border-bottom: 1px solid var(--line);
}

.hero__panel {
  padding: 4.5rem 3rem 3rem;
  background:
    linear-gradient(180deg, rgba(61, 74, 50, 0.06), transparent 40%),
    var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.hero__aside {
  margin: 0;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

.hero__figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 28rem;
}

.hero__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--white);
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
  border-left: 3px solid var(--gold);
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--ink);
  padding: 0.7rem 1.15rem;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
}

.btn--primary {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--terracotta-deep);
  color: var(--white);
}

.btn--ghost {
  background: var(--white);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.section {
  padding: 3.5rem 1.25rem;
}

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

.section--olive a {
  color: var(--gold);
}

.section__inner {
  max-width: var(--wide);
  margin: 0 auto;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.25rem;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  flex-direction: column;
}

.card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.card__body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.card a {
  text-decoration: none;
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 2rem 0;
}

.quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.quote--reserved {
  font-size: 1.1rem;
  font-family: var(--font-body);
}

.meta {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.prose {
  max-width: 44rem;
}

.prose--wide {
  max-width: 52rem;
}

.media-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.figure-frame {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.6rem;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 38rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 500;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.form textarea {
  min-height: 9rem;
}

.form__error,
.form__status {
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
}

.form__error {
  color: var(--danger);
  background: #f8ecec;
}

.form__status--ok {
  color: var(--ok);
  background: #e7f0e8;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.table th,
.table td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.story {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.4rem;
  margin: 1.5rem 0;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 40;
  background: var(--cream);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
}

.cookie-banner__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.page-hero {
  padding: 3.5rem 1.25rem 1.5rem;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  max-width: var(--wide);
  margin: 0 auto;
}

.detail-hero img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
}

.list-plain {
  list-style: none;
  padding: 0;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  counter-increment: step;
  padding-left: 2.6rem;
  position: relative;
  margin-bottom: 1rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

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

.team img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

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

  .hero__panel {
    padding: 2.5rem 1.25rem;
  }

  .site-header__toggle {
    display: inline-block;
  }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.4rem;
  }

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

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

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (min-width: 901px) {
  .site-header__toggle {
    display: none;
  }
}
