:root {
  color-scheme: dark;
  --header-height: 100px;
  --content-width: 880px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --text: #fff;
  --ink: #151515;
  --accent: #f2a33a;
  --header: #050505;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  padding-top: var(--header-height);
  background: #000;
  color: var(--text);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

h1,
h2 {
  margin: 0 0 1.35rem;
  font-family: "Segoe UI Light", "Segoe UI", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.08;
  text-wrap: balance;
}

h1,
.section-title {
  font-size: clamp(2.35rem, 6vw, 3.15rem);
}

.columns h2 {
  margin-top: 1.8rem;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
}

p {
  margin: 0 0 1.15rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.6rem 0.85rem;
  transform: translateY(-200%);
  background: #fff;
  color: #000;
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  background: rgba(5, 5, 5, 0.97);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.48);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(100% - (2 * var(--gutter)), var(--content-width));
  height: 100%;
  margin-inline: auto;
}

.brand {
  position: absolute;
  top: 0.35rem;
  left: 0;
  width: 145px;
}

.brand img {
  width: 100%;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 3vw, 2.25rem);
  margin-top: 2.4rem;
}

.site-navigation a {
  font-size: 0.94rem;
  font-weight: 400;
  text-decoration: none;
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
  text-decoration: underline;
}

.site-navigation .language-link {
  padding-left: 1rem;
  border-left: 1px solid #555;
}

.menu-toggle {
  display: none;
}

.story-section {
  position: relative;
  isolation: isolate;
  min-height: 42rem;
  background-color: #171717;
  background-image: var(--background-large);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.hero {
  --background-large: url("images/bg01.jpg");
  --background-small: url("images/bg01-950.jpg");
  min-height: 50rem;
  background-color: #242021;
}

.resource-section {
  --background-large: url("images/bg02.jpg");
  --background-small: url("images/bg02-950.jpg");
  background-color: #231f20;
}

.about-section {
  --background-large: url("images/bg03.jpg");
  --background-small: url("images/bg03-950.jpg");
  background-color: #fff;
}

.harvest-section {
  --background-large: url("images/bg04a.jpg");
  --background-small: url("images/bg04a-950.jpg");
  min-height: 58rem;
  background-color: #000;
}

.kitchen-section {
  --background-large: url("images/bg05.jpg");
  --background-small: url("images/bg05-950.jpg");
  min-height: 48rem;
  background-color: #fff;
}

.contact-section {
  --background-large: url("images/bg07.jpg");
  --background-small: url("images/bg07-950.jpg");
  min-height: 38rem;
  background-color: #000;
}

.section-content {
  width: min(100%, calc(var(--content-width) + (2 * var(--gutter))));
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter) clamp(10rem, 25vw, 19rem);
}

.hero .section-content {
  padding-bottom: clamp(12rem, 30vw, 23rem);
}

.section-overlay {
  min-height: inherit;
}

.section-overlay-dark {
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.2) 0%, rgba(8, 8, 8, 0.5) 52%, rgba(0, 0, 0, 0.95) 100%);
}

.section-overlay-light {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.89) 0%, rgba(255, 255, 255, 0.94) 58%, rgba(255, 255, 255, 0.99) 100%);
  color: var(--ink);
}

.columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
}

.card-columns > article {
  display: flex;
  flex-direction: column;
}

.card-columns img {
  width: 100%;
  margin-top: auto;
}

.video-button {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}

.video-button img {
  width: 100%;
}

.feature-image {
  overflow: hidden;
  margin: 0;
  max-height: 44rem;
  background: #000;
}

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

.content-image {
  width: 100%;
  margin-top: 1.5rem;
}

.panorama {
  display: block;
  background: #000;
}

.panorama img {
  width: 100%;
}

.contact-content {
  padding-bottom: clamp(12rem, 28vw, 20rem);
}

address {
  font-style: normal;
}

address span {
  display: inline-block;
  min-width: 3.8rem;
  color: #c9c9c9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.site-footer {
  width: min(100% - (2 * var(--gutter)), var(--content-width));
  margin-inline: auto;
  padding: 3rem 0 5rem;
  color: #ddd;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  transform: translateY(6rem);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-size: 1.45rem;
  transition: transform 180ms ease;
}

.back-to-top.is-visible {
  transform: translateY(0);
}

.video-dialog {
  width: min(92vw, 960px);
  max-width: none;
  padding: 0;
  border: 1px solid #555;
  background: #090909;
  color: #fff;
}

.video-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

.video-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
}

.video-dialog-header h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.video-dialog-header button {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 950px) {
  .story-section {
    background-image: var(--background-small);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 90px;
  }

  .brand {
    width: 125px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem;
    cursor: pointer;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-toggle-icon,
  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: currentColor;
  }

  .menu-toggle-icon {
    position: relative;
  }

  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .menu-toggle-icon::before {
    top: -0.45rem;
  }

  .menu-toggle-icon::after {
    top: 0.45rem;
  }

  .site-navigation {
    position: absolute;
    top: calc(100% - 0.4rem);
    right: 0;
    display: none;
    width: min(21rem, 100%);
    margin: 0;
    border: 1px solid #3a3a3a;
    background: #050505;
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.5);
  }

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

  .site-navigation a {
    display: block;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #2d2d2d;
  }

  .site-navigation a:last-child {
    border-bottom: 0;
  }

  .site-navigation .language-link {
    padding-left: 1rem;
    border-left: 0;
  }

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

  .story-section,
  .hero,
  .harvest-section,
  .kitchen-section,
  .contact-section {
    min-height: 0;
  }

  .section-content,
  .hero .section-content,
  .contact-content {
    padding-top: 3.5rem;
    padding-bottom: clamp(12rem, 58vw, 25rem);
  }

  .harvest-section .section-content {
    padding-bottom: 13rem;
  }

  .card-columns > article {
    display: block;
  }

  .card-columns img {
    margin-top: 1.5rem;
  }
}

@media (max-width: 420px) {
  .menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .section-content,
  .hero .section-content,
  .contact-content {
    padding-bottom: 12rem;
  }
}

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

  .back-to-top {
    transition: none;
  }
}
