:root {
  --yellow: #dfae22;
  --brown: #3a2418;
  --brown-soft: #6b4328;
  --paper: #fbf7ed;
  --white: #fffdf8;
  --line: rgba(58, 36, 24, 0.18);
  --text: #231812;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

@font-face {
  font-family: "Koloss Saor";
  src: url("font/Koloss.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 18px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px 12px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: block;
  flex: 0 0 auto;
  width: 128px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-menu {
  position: relative;
  flex: 0 0 auto;
  margin-left: auto;
}

.menu-toggle {
  position: relative;
  z-index: 31;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--brown);
  border-radius: 4px;
  background: var(--paper);
  color: var(--brown);
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: var(--brown);
  color: var(--paper);
}

.menu-toggle:active {
  transform: scale(0.96);
}

.menu-icon {
  display: grid;
  gap: 5px;
  width: 20px;
}

.menu-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  align-content: start;
  gap: 2px;
  width: min(300px, 84vw);
  padding: 92px 18px 24px;
  border-left: 1px solid var(--line);
  background: var(--white);
  color: var(--brown);
  box-shadow: -18px 0 44px rgba(35, 24, 18, 0.18);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.nav-menu.is-open {
  transform: translateX(0);
}

.nav-menu a,
.language-menu button {
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--brown);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-menu a {
  display: flex;
  align-items: center;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.is-active {
  background: var(--yellow);
  color: var(--brown);
}

.language-menu {
  display: grid;
  gap: 2px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.language-menu span {
  padding: 0 10px 3px;
  color: rgba(58, 36, 24, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: 54px 18px;
}

.hero {
  min-height: auto;
  display: grid;
  gap: 26px;
  align-items: center;
  border-bottom: 8px solid var(--yellow);
}

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

.hero-image,
.statement-image,
.menu-line figure,
.quote figure {
  margin: 0;
  overflow: hidden;
  background: var(--brown);
}

.hero-image {
  aspect-ratio: 4 / 5;
  min-height: 0;
  border: 1px solid var(--line);
}

.hero-image img,
.statement-image img,
.menu-line img,
.quote img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.hero-image:hover img,
.statement-image:hover img,
.menu-line figure:hover img,
.quote figure:hover img {
  transform: scale(1.035);
}

.small {
  margin: 0 0 14px;
  color: var(--brown-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--brown);
  font-family: "Koloss Saor", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 2.65rem;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.65rem;
}

h3 {
  margin-bottom: 8px;
  color: var(--brown);
  font-size: 24px;
  line-height: 1.1;
}

.lead {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(35, 24, 18, 0.78);
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--brown);
  border-radius: 4px;
  color: var(--brown);
  font-weight: 850;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.site-button--primary {
  background: var(--brown);
  color: var(--paper);
}

.site-button:hover,
.site-button:focus-visible,
.actions a:hover,
.actions a:focus-visible,
.map-placeholder button:hover,
.map-placeholder button:focus-visible,
.cookie-actions button:hover,
.cookie-actions button:focus-visible {
  transform: translateY(-2px);
}

.site-button--text {
  margin-top: 4px;
}

.site-button.is-disabled {
  cursor: default;
  border-color: rgba(58, 36, 24, 0.28);
  color: rgba(58, 36, 24, 0.46);
  background: transparent;
  pointer-events: none;
}

.statement {
  display: grid;
  gap: 24px;
  padding: 56px 18px;
  background: var(--brown);
  color: var(--paper);
}

.statement p {
  max-width: 880px;
  margin: 0;
  font-family: "Koloss Saor", Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 0.95;
  overflow-wrap: break-word;
}

.statement-image {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.split {
  display: grid;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.text {
  max-width: 680px;
  color: rgba(35, 24, 18, 0.78);
}

.text p {
  margin-bottom: 1rem;
}

.menu-line {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.menu-line article {
  padding: 30px 20px;
  border-top: 1px solid var(--line);
}

.menu-line span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.menu-line p {
  max-width: 420px;
  margin-bottom: 22px;
  color: rgba(35, 24, 18, 0.72);
  font-size: 0.98rem;
}

.menu-line figure {
  aspect-ratio: 1 / 1;
}

.quote {
  display: grid;
  gap: 24px;
  background: var(--yellow);
  color: var(--brown);
}

.quote-main {
  max-width: 850px;
  margin-bottom: 0;
  font-family: "Koloss Saor", Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 0.92;
  overflow-wrap: break-word;
}

.quote-sub {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(58, 36, 24, 0.76);
  font-size: 1.15rem;
  line-height: 1.28;
}

.quote figure {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.info {
  display: grid;
  gap: 26px;
  background: var(--white);
}

.info-box {
  border-top: 1px solid var(--line);
}

.map-card {
  position: relative;
  height: 320px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.map-placeholder {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  height: 100%;
  padding: 24px;
  color: var(--brown);
  background:
    linear-gradient(135deg, rgba(223, 174, 34, 0.2), transparent 55%),
    var(--paper);
}

.map-placeholder[hidden],
.map-card iframe[hidden] {
  display: none;
}

.map-placeholder strong {
  font-size: 1.15rem;
}

.map-placeholder span {
  max-width: 380px;
  color: rgba(35, 24, 18, 0.72);
}

.map-placeholder button,
.cookie-actions button,
.legal-links button {
  font: inherit;
}

.map-placeholder button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--brown);
  border-radius: 4px;
  background: var(--brown);
  color: var(--paper);
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.info-box p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-box strong {
  color: var(--brown);
}

.actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
  padding-top: 22px;
}

.actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--brown);
  border-radius: 4px;
  color: var(--brown);
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.actions a:first-child {
  background: var(--brown);
  color: var(--paper);
}

.actions .is-disabled {
  cursor: default;
  border-color: rgba(58, 36, 24, 0.28);
  color: rgba(58, 36, 24, 0.46);
  pointer-events: none;
}

.footer {
  padding: 30px 20px 38px;
  background: var(--brown);
  color: rgba(251, 247, 237, 0.78);
  font-size: 13px;
}

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

.footer p {
  margin-bottom: 16px;
}

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

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-links a,
.legal-links button {
  color: var(--paper);
}

.legal-links button {
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 50;
  display: grid;
  gap: 18px;
  max-width: 760px;
  padding: 18px;
  border: 1px solid rgba(251, 247, 237, 0.2);
  border-radius: 6px;
  background: var(--brown);
  color: var(--paper);
  box-shadow: 0 22px 80px rgba(35, 24, 18, 0.35);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.cookie-banner p {
  margin-bottom: 8px;
  color: rgba(251, 247, 237, 0.78);
}

.cookie-banner a {
  color: var(--paper);
}

.cookie-actions {
  display: grid;
  gap: 10px;
}

.cookie-actions button {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--paper);
  border-radius: 4px;
  color: var(--paper);
  background: transparent;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.cookie-actions button:last-child {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--brown);
}

.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 34px 20px 60px;
}

.legal-page h1 {
  font-size: 3rem;
}

.legal-page h2 {
  margin-top: 36px;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.legal-page p,
.legal-page li {
  color: rgba(35, 24, 18, 0.78);
}

.legal-language {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.legal-language a {
  color: var(--brown);
}

.legal-language strong {
  color: var(--yellow);
}

.back-link {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--brown);
  font-weight: 800;
  text-decoration: none;
}

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

.reveal-ready .menu-line article:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-ready .menu-line article:nth-child(3) {
  transition-delay: 160ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready .reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 520px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .lead {
    font-size: 1.35rem;
  }

  .statement p {
    font-size: 3.15rem;
  }

  .quote-main {
    font-size: 3.25rem;
  }

}

@media (min-width: 760px) {
  body {
    font-size: 17px;
  }

  .header {
    padding: 24px 42px 18px;
  }

  .logo {
    width: 210px;
  }

  .section,
  .statement {
    padding: 84px 42px;
  }
}

@media (min-width: 900px) {
  h1 {
    font-size: 5.25rem;
  }

  h2 {
    font-size: 4.75rem;
  }

  .lead {
    font-size: 1.65rem;
  }

  .statement p {
    font-size: 4.35rem;
  }

  .quote-main {
    font-size: 4.85rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(310px, 0.7fr);
    min-height: 72svh;
  }

  .hero-image {
    align-self: stretch;
    aspect-ratio: auto;
    min-height: 520px;
  }

  .statement {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
    align-items: center;
  }

  .statement-image {
    aspect-ratio: auto;
    min-height: 520px;
  }

  .split,
  .info {
    grid-template-columns: 0.8fr 1fr;
    align-items: start;
  }

  .quote {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
    align-items: center;
  }

  .quote figure {
    aspect-ratio: auto;
    min-height: 420px;
  }
}

@media (min-width: 980px) {
  .menu-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-line article {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-top: 0;
    border-right: 1px solid var(--line);
    padding: 38px 28px;
  }

  .menu-line figure {
    margin-top: auto;
  }

  .menu-line article:last-child {
    border-right: 0;
  }
}

@media (min-width: 1080px) {
  .footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 34px 42px 42px;
  }

  .cookie-banner {
    right: 28px;
    bottom: 28px;
    left: auto;
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: end;
  }
}
