:root {
  --color-bg: #f3ece1;
  --color-bg-alt: #e8ddd0;
  --color-surface: #fffaf3;
  --color-ink: #1a1714;
  --color-ink-soft: #4f473e;
  --color-accent: #b8431f;
  --color-accent-dark: #8c3015;
  --color-forest: #24352c;
  --color-forest-mid: #3a5246;
  --color-line: #d4c8b8;
  --color-cream: #f7f1e8;
  --color-error: #7a1f14;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space: 1rem;
  --radius: 3px;
  --header-h: 4.35rem;
  --shadow: 0 10px 28px rgba(36, 53, 44, 0.08);
  --measure: 68rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
}

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

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

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

h1,
h2,
h3,
.header__name,
.footer__brand {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin: 0 0 0.6em;
}

h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  margin: 0 0 0.55em;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.15em;
}

.site-main {
  min-height: 60vh;
}

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

.wrap--wide {
  width: min(100% - 2rem, 86rem);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--color-forest);
  color: var(--color-cream);
  min-height: var(--header-h);
}

.header a {
  color: var(--color-cream);
  text-decoration: none;
}

.header a:hover,
.header a:focus-visible {
  color: #fff;
}

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

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}

.header__mark {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(247, 241, 232, 0.45);
  border-radius: var(--radius);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.header__name {
  font-size: 1.05rem;
  font-weight: 650;
}

.nav__toggle {
  display: none;
  background: transparent;
  color: var(--color-cream);
  border: 1px solid rgba(247, 241, 232, 0.4);
  border-radius: var(--radius);
  padding: 0.4rem 0.75rem;
  font: inherit;
  cursor: pointer;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-size: 0.95rem;
}

.nav__link[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.32em;
}

.js-error {
  margin: 0;
  padding: 0.5rem 1rem;
  background: #f6e1d8;
  color: var(--color-error);
  font-size: 0.92rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(88vh - var(--header-h));
  background: var(--color-forest);
  color: var(--color-cream);
}

.hero__panel {
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
}

.hero__kicker {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d8c4a8;
  margin: 0;
}

.hero h1 {
  color: var(--color-cream);
  max-width: 14ch;
}

.hero__panel p {
  max-width: 38ch;
  color: #e6ddd1;
}

.hero__log {
  display: flex;
  gap: 1.5rem;
  font-size: 0.88rem;
  border-top: 1px solid rgba(247, 241, 232, 0.18);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  background: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--color-accent-dark);
  color: #fff;
  border-color: var(--color-accent-dark);
}

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

.btn--ghost:hover {
  background: var(--color-bg-alt);
  color: var(--color-ink);
}

.btn--on-dark {
  background: var(--color-cream);
  color: var(--color-forest);
  border-color: var(--color-cream);
}

.btn--on-dark:hover {
  background: #fff;
  color: var(--color-forest);
}

.section {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--forest {
  background: var(--color-forest-mid);
  color: var(--color-cream);
}

.section--forest a {
  color: #f3d2c0;
}

.lede {
  font-size: 1.15rem;
  max-width: 48ch;
  color: var(--color-ink-soft);
}

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

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

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

.card__body h2,
.card__body h3 {
  margin-top: 0;
}

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

.prose {
  max-width: 66ch;
}

.prose h2 {
  margin-top: 1.6em;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

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

.portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius);
}

.quote-list {
  display: grid;
  gap: 1.25rem;
}

.quote {
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  padding: 1.2rem 1.3rem;
}

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

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

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

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

.rate-table th {
  background: var(--color-forest);
  color: var(--color-cream);
  font-weight: 600;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--color-surface);
}

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

.page-hero {
  padding: 2.5rem 0 1rem;
}

.page-hero--image {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--color-bg-alt);
}

.page-hero--image .wrap {
  padding: 2.5rem 0;
}

.banner-image {
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
}

.footer {
  background: #1b2922;
  color: #e8dfd3;
  padding: 3rem 0 2rem;
  font-size: 0.95rem;
}

.footer a {
  color: #f3d2c0;
}

.footer__inner {
  width: min(100% - 2rem, 86rem);
  margin-inline: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.footer__brand {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  color: var(--color-cream);
}

.footer__heading {
  font-weight: 600;
  margin: 0 0 0.6rem;
  color: var(--color-cream);
}

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

.footer__links li {
  margin-bottom: 0.35rem;
}

.footer__address,
.footer__phone,
.footer__email {
  margin-bottom: 0.35rem;
}

.footer__cta-wrap {
  margin-top: 1.1rem;
}

.footer__legal {
  border-top: 1px solid rgba(247, 241, 232, 0.14);
  padding-top: 1.4rem;
  display: grid;
  gap: 0.9rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #cfc4b6;
}

.footer__legal p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  z-index: 40;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-surface);
  border-top: 2px solid var(--color-forest);
  box-shadow: 0 -8px 24px rgba(26, 23, 20, 0.12);
}

.cookie-banner__inner {
  width: min(100% - 2rem, 86rem);
  margin: 1rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__title {
  font-weight: 650;
  font-family: var(--font-display);
  margin: 0 0 0.3rem;
}

.cookie-banner__copy {
  flex: 1 1 28rem;
}

.cookie-banner__copy p:last-child {
  margin-bottom: 0;
}

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

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-forest);
  color: var(--color-cream);
  display: grid;
  place-items: center;
  font-weight: 600;
}

.contact-block {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  padding: 1.4rem 1.5rem;
  max-width: 40rem;
}

.muted {
  color: var(--color-ink-soft);
}

@media (max-width: 72rem) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: #1b2922;
    padding: 0.75rem 1rem 1.1rem;
  }

  .nav.nav--open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    gap: 0.55rem;
  }

  .header {
    position: sticky;
  }
}

@media (max-width: 52rem) {
  .hero,
  .page-hero--image,
  .split,
  .card-grid,
  .footer__grid,
  .portrait-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
