:root {
  --gold: #c49a6c;
  --black: #000;
  --white: #fff;
  --ink: #080808;
  --line: rgba(255, 255, 255, 0.45);
  --fluid-16-24: max(1rem, calc(0.8889rem + 0.5556vw));
  --fluid-18-30: max(1.125rem, calc(0.9583rem + 0.8333vw));
  --fluid-24-48: max(1.5rem, calc(1.1667rem + 1.6667vw));
  --fluid-48-100: max(3rem, calc(2.2778rem + 3.6111vw));
  --body-type: var(--fluid-16-24);
  --award-title-type: var(--fluid-18-30);
  --small-type: max(0.875rem, calc(0.8194rem + 0.2778vw));
  --subheadline-type: var(--fluid-24-48);
  --headline-type: var(--fluid-48-100);
  --text-width: clamp(64vw, calc(5.7444rem + 58.7778vw), 87.5vw);
  --header-height: clamp(2.5rem, 6.8vw, 7.5rem);
  --space-section: max(2.5rem, calc(0.8333rem + 8.3333vw));
  --space-20-80: max(1.25rem, calc(0.4167rem + 4.1667vw));
  --space-20-40: max(1.25rem, calc(0.9722rem + 1.3889vw));
  --space-40-120: max(2.5rem, calc(1.3889rem + 5.5556vw));
}

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

html {
  scroll-behavior: smooth;
  background: var(--white);
  scrollbar-gutter: stable;
  scrollbar-color: var(--gold) var(--white);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
}

body {
  width: 100%;
  margin: 0;
  container-type: inline-size;
  color: var(--ink);
  background: var(--white);
  font-family: "adobe-garamond-pro", serif;
  font-size: var(--body-type, 1.125rem);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

html.booking-dialog-open,
body.booking-dialog-open {
  overflow: hidden;
  overscroll-behavior: none;
}

@supports (font-size: 1cqw) {
  body {
    --side: max(1.25rem, 6.25cqw);
    --column-gap: max(2.5rem, 8.33cqw);
  }
}

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

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--white);
  animation: loader-fade 700ms ease 2.35s forwards;
}

.page-loader.is-hidden {
  display: none;
}

.page-loader-sign {
  width: clamp(5.5rem, 6.2vw, 9.375rem);
  height: auto;
}

@keyframes loader-fade {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.reveal-text {
  opacity: 0;
  transform: translateY(clamp(2rem, 4cqw, 4.5rem));
  transition: opacity 860ms ease, transform 860ms ease;
  will-change: opacity, transform;
}

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

p,
h1,
h2,
h3,
figure,
dl,
dd {
  margin: 0;
}

button,
input,
select {
  font: inherit;
}

.section-pad {
  padding-inline: var(--side, max(1.25rem, 6.25vw));
}

.gold-section {
  background: var(--gold);
  color: var(--white);
}

.dark-section,
.dark-grid {
  background: var(--black);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding-inline: clamp(0.625rem, 2.3cqw, 2.5rem);
  background: var(--white);
  color: var(--gold);
  transform: translateY(0);
  transition: transform 260ms ease;
  will-change: transform;
}

body.header-hidden:not(.menu-open):not(.language-open) .site-header {
  transform: translateY(-100%);
}

.brand {
  display: inline-flex;
  justify-self: center;
  align-items: center;
}

.brand img {
  width: clamp(7.75rem, 6.0139rem + 8.6806vw, 15.5625rem);
  height: auto;
}

.menu-toggle {
  display: inline-grid;
  width: clamp(1.75rem, 3cqw, 2.5rem);
  height: clamp(1.5rem, 2.4cqw, 2rem);
  align-content: center;
  gap: clamp(0.375rem, 0.8cqw, 0.625rem);
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 0.188rem;
  border-radius: 0.125rem;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms ease;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(calc((clamp(0.375rem, 0.8cqw, 0.625rem) + 0.188rem) / 2)) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(calc((clamp(0.375rem, 0.8cqw, 0.625rem) + 0.188rem) / -2)) rotate(-45deg);
}

.language-switcher {
  position: relative;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--small-type, 0.875rem);
}

.language-current {
  line-height: 1;
}

.language-toggle {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-toggle img {
  width: 0.85em;
  transition: transform 180ms ease;
}

body.language-open .language-toggle img {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  display: grid;
  gap: 0.45rem;
  min-width: 4rem;
  padding: 0.65rem 0.8rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0.875rem 20.375rem rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.375rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.language-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu a[aria-current="true"] {
  text-decoration: underline;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-current:hover,
.language-current:focus-visible {
  text-decoration: underline;
}

.site-menu {
  --menu-gap: clamp(0.5rem, 1.5svh, 1rem);
  --menu-padding-block: clamp(2rem, 6svh, 5.375rem);
  position: fixed;
  top: var(--header-height);
  left: 0;
  display: grid;
  align-content: start;
  gap: var(--menu-gap);
  width: 100%;
  height: calc(100svh - var(--header-height));
  padding: var(--menu-padding-block) var(--side, max(1.25rem, 6.25vw));
  background: rgba(255, 255, 255, 0.98);
  color: var(--gold);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.menu-open .site-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-menu a,
.site-footer a,
.footer-link {
  width: fit-content;
}

.site-menu a {
  font-size: min(var(--headline-type), 8svh);
  font-style: italic;
  line-height: 1.15;
}

.site-menu a:focus-visible,
.site-menu a:hover,
.site-footer a:focus-visible,
.site-footer a:hover,
.footer-link:focus-visible,
.footer-link:hover,
.instagram-line a:hover,
.instagram-line a:focus-visible {
  text-decoration: underline;
}

.hero {
  position: relative;
  height: calc(100svh - var(--header-height));
  min-height: 31.25rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.22)),
    url("img2/perica-hero.jpg") center / cover no-repeat;
  color: var(--white);
}

.hero-content {
  display: grid;
  justify-items: center;
  width: min(30rem, calc(100% - 2.5rem));
  text-align: center;
}

.hero-mark {
  width: clamp(3.625rem, 4.82cqw, 5.3125rem);
  margin-bottom: clamp(1.125rem, 2cqw, 2.25rem);
}

.hero #hero-title {
  max-width: 28rem;
  font-size: var(--body-type);
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.hero #hero-title.reveal-text {
  transition-delay: 180ms;
}

.section-grid {
  display: grid;
  row-gap: max(2.5rem, calc(1.9444rem + 2.7778vw));
  padding-block: var(--space-section);
}

h1,
h2 {
  font-size: var(--headline-type);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
}

h3 {
  margin-bottom: clamp(0.875rem, 1.5cqw, 1.5rem);
  font-size: var(--subheadline-type);
  font-weight: 400;
  line-height: 1.2;
}

.image-grid {
  display: grid;
  overflow: hidden;
}

.image-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.image-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.booking-section {
  padding-block: var(--space-section);
}

.column-text {
  columns: 2;
  column-gap: var(--column-gap, max(2.5rem, 8.33vw));
  width: min(100%, var(--text-width));
  margin-inline: auto;
}

.column-text p {
  break-inside: avoid;
}

.column-text p + p {
  margin-top: 1.1em;
}

.booking-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: max(2rem, calc(1.1667rem + 4.1667vw)) var(--column-gap, max(2.5rem, 8.33vw));
  width: min(100%, var(--text-width));
  margin-inline: auto;
}

.booking-layout h2 {
  max-width: 13ch;
  font-size: var(--subheadline-type);
  line-height: 1.2;
}

.booking-lead {
  align-self: start;
  font-weight: 700;
}

.booking-copy {
  grid-column: 1 / -1;
}

.booking-details {
  display: grid;
  justify-items: center;
  gap: var(--space-20-40);
  max-width: 52.5rem;
  margin: var(--space-20-80) auto;
  text-align: center;
}

.booking-details strong,
.booking-details span {
  display: block;
}

.session-list {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: center;
  gap: 0.35rem clamp(1.5rem, 4cqw, 4rem);
  width: min(22.5rem, 100%);
  font-size: var(--body-type);
}

.session-list div {
  display: contents;
}

.session-list dt,
.session-list dd {
  text-align: left;
  white-space: nowrap;
}

.booking-open {
  margin-top: 0.25rem;
}

.booking-dialog {
  position: fixed;
  inset: 50% auto auto 50%;
  width: min(calc(100% - 2.5rem), 48rem);
  max-height: calc(100svh - 2.5rem);
  margin: 0;
  padding: clamp(1.5rem, 4cqw, 3rem);
  border: 0;
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 1.25rem 5rem rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  overflow: auto;
}

.booking-dialog::backdrop {
  background: rgba(0, 0, 0, 0.58);
}

.booking-dialog h3 {
  max-width: 16rem;
  margin-bottom: var(--space-20-40);
  font-size: var(--subheadline-type);
  font-style: italic;
  line-height: 1.15;
}

.dialog-close {
  position: absolute;
  top: clamp(0.75rem, 2cqw, 1.25rem);
  right: clamp(0.75rem, 2cqw, 1.25rem);
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-close:focus-visible,
.text-button:focus-visible {
  outline: 0.063rem solid currentColor;
  outline-offset: 0.35rem;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-20-40);
  width: min(100%, var(--text-width));
  margin-inline: auto;
}

.booking-dialog .booking-form {
  width: 100%;
}

.booking-step {
  display: grid;
  gap: var(--space-20-40);
}

.booking-step[hidden],
.time-panel[hidden],
.text-button[hidden] {
  display: none;
}

.booking-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20-40);
}

.booking-dialog .reveal-text,
.booking-dialog .booking-form,
.booking-dialog .booking-step,
.booking-dialog .field,
.booking-dialog input,
.booking-dialog select,
.booking-dialog .text-button,
.booking-dialog .form-status {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
}

.field input[readonly] {
  cursor: pointer;
}

.calendar-popover {
  position: fixed;
  inset: auto;
  display: none;
  width: min(21rem, calc(100vw - 2rem));
  margin: 0;
  padding: 1rem;
  border: 0;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.28);
  z-index: 80;
}

.calendar-popover:popover-open,
.calendar-popover.is-open {
  display: block;
}

.calendar-header {
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.calendar-header p {
  text-align: center;
  font-weight: 700;
}

.calendar-header button,
.calendar-day {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.calendar-header button {
  width: 2rem;
  height: 2rem;
  font-size: 1.6rem;
  line-height: 1;
}

.calendar-header button:disabled {
  color: rgba(8, 8, 8, 0.26);
  cursor: not-allowed;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

.calendar-weekdays {
  margin-bottom: 0.35rem;
  color: rgba(8, 8, 8, 0.62);
  font-size: 0.75rem;
  text-align: center;
}

.calendar-day {
  min-width: 0;
  aspect-ratio: 1;
  border: 0.063rem solid rgba(8, 8, 8, 0.12);
  font-size: 0.9rem;
}

.calendar-day.is-outside {
  visibility: hidden;
  pointer-events: none;
}

.calendar-day.is-available {
  background: rgba(196, 154, 108, 0.13);
}

.calendar-day.is-limited {
  background: rgba(196, 154, 108, 0.32);
  border-color: rgba(8, 8, 8, 0.28);
}

.calendar-day.is-unavailable,
.calendar-day:disabled {
  background: rgba(8, 8, 8, 0.1);
  color: rgba(8, 8, 8, 0.42);
  cursor: not-allowed;
}

.calendar-day.is-selected {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.calendar-day:focus-visible,
.time-option input:focus-visible + span {
  outline: 0.125rem solid var(--gold);
  outline-offset: 0.125rem;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
  margin-top: 0.85rem;
  font-size: 0.78rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.calendar-legend i {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border: 0.063rem solid rgba(8, 8, 8, 0.16);
}

.legend-available {
  background: rgba(196, 154, 108, 0.13);
}

.legend-limited {
  background: rgba(196, 154, 108, 0.32);
}

.legend-unavailable {
  background: rgba(8, 8, 8, 0.1);
}

.time-fieldset {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
  padding: 0;
  border: 0;
}

.time-fieldset legend {
  margin-bottom: 0.45rem;
  font-style: italic;
}

.time-panel {
  display: grid;
}

.time-panel .text-button {
  justify-self: center;
  margin-top: var(--space-20-40);
}

.time-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.time-option {
  display: grid;
  min-width: 0;
}

.time-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-option span {
  display: grid;
  gap: 0.1rem;
  min-height: 4.4rem;
  padding: 0.65rem 0.8rem;
  border: 0.063rem solid var(--line);
  color: var(--white);
  cursor: pointer;
}

.time-option strong,
.time-option small {
  display: block;
}

.time-option small {
  font-size: var(--small-type, 0.875rem);
  opacity: 0.82;
}

.time-option input:checked + span {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.time-option input:disabled + span {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.46);
  cursor: not-allowed;
}

.booking-actions {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: clamp(1.25rem, 3cqw, 2rem);
}

.booking-actions .text-button {
  grid-column: auto;
}

.field {
  position: relative;
  display: grid;
}

.field-label {
  position: absolute;
  width: 0.063rem;
  height: 0.063rem;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.field input,
.field select {
  min-width: 0;
  width: 100%;
  padding: 0.35rem 0 0.45rem;
  border: 0;
  border-bottom: 0.063rem solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  outline: none;
}

.field input::placeholder {
  color: var(--white);
  opacity: 1;
}

.field-date input {
  appearance: none;
  padding-right: 2.25em;
}

.field-date input::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.field-date::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.55rem;
  width: 1.25em;
  height: 1.25em;
  background: center / contain no-repeat;
  pointer-events: none;
}

.field-date::after {
  background-image: url("img2/icon-date.svg");
}

.field input:focus,
.field select:focus {
  border-color: var(--white);
}

.field select option {
  color: var(--ink);
}

.text-button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 3.75rem;
  padding: 0 0 0.35rem;
  border: 0;
  border-bottom: 0.063rem solid currentColor;
  background: transparent;
  color: var(--white);
  font-style: italic;
  cursor: pointer;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.5em;
  text-align: center;
  font-size: var(--small-type, 1rem);
}

.booking-form.is-complete .form-status {
  width: min(100%, 26rem);
  min-height: 0;
  margin: var(--space-20-40) auto 0;
  font-size: var(--body-type);
}

.oil-intro {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: var(--space-section);
}

.oil-mockup {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.oil-copy {
  position: relative;
  z-index: 1;
}

.oil-copy h2 {
  margin-bottom: var(--space-40-120);
}

.recommendation {
  width: min(100%, var(--text-width));
  margin: var(--space-20-40) auto;
}

.bottle-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  padding: var(--space-section) var(--side, max(1.25rem, 6.25vw));
  text-align: center;
}

.bottle-showcase figure {
  display: grid;
  justify-items: center;
}

.bottle-showcase figcaption {
  font-size: var(--subheadline-type);
  line-height: 1;
}

.production-section {
  padding-block: var(--space-section);
  background: var(--white);
}

.production-section h2 {
  margin-bottom: max(2.75rem, calc(1.2778rem + 7.3611vw));
}

.process-list {
  display: grid;
  gap: var(--space-section);
  width: min(100%, var(--text-width));
  margin-inline: auto;
}

.process-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--column-gap, 9vw);
}

.process-item img {
  justify-self: center;
}

.process-item div {
  max-width: 34rem;
}

.image-right img {
  order: 2;
}

.image-right div {
  order: 1;
}

.awards-section {
  padding-block: var(--space-section);
  background: var(--white);
}

.awards-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: var(--space-20-80);
}

.award-controls {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--gold);
}

.award-controls button {
  min-width: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: var(--subheadline-type);
  line-height: 1;
  cursor: pointer;
}

.award-counter {
  font-size: var(--small-type, 1rem);
}

.award-slider {
  --award-gap: clamp(1.875rem, 4.55cqw, 5rem);
  width: min(100%, var(--text-width));
  margin-inline: auto;
  overflow: hidden;
}

.award-list {
  display: flex;
  gap: var(--award-gap);
  transition: transform 320ms ease;
  will-change: transform;
}

.award-card {
  display: grid;
  flex: 0 0 calc((100% - var(--award-gap) - var(--award-gap)) / 3);
  gap: var(--space-20-40);
}

.award-year {
  font-weight: 700;
}

.award-card h3 {
  max-width: 16rem;
  margin: 0;
  font-size: var(--award-title-type);
  font-weight: 400;
  line-height: 1.2;
}

.about-hero {
  padding-block: var(--space-section);
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)),
    url("img2/perica-about.jpg") center / cover no-repeat;
  color: var(--white);
}

.about-overlay {
  display: grid;
  gap: var(--space-20-80);
}

.about-varieties {
  padding-block: var(--space-section);
  background: var(--white);
}

.about-varieties p {
  width: min(100%, var(--text-width));
  margin-inline: auto;
}

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

.about-copy {
  padding-block: var(--space-section);
  background: var(--white);
}

.map-section {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.map-canvas {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 1760 / 679;
  min-height: 22.5rem;
  background: url("img2/map.png") center / cover no-repeat;
  font-family: inherit;
}

.map-canvas img {
  max-width: none;
}

.map-canvas .leaflet-popup-content-wrapper,
.map-canvas .leaflet-popup-tip {
  border-radius: 0;
}

.map-canvas .leaflet-popup-content {
  margin: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
}

.contact-section {
  padding-top: var(--space-section);
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: clamp(2.5rem, 6.8cqw, 11.25rem);
}

address {
  font-style: normal;
}

.instagram-line {
  font-size: var(--subheadline-type);
  margin-top: var(--space-section);  
  font-style: italic;
}

.instagram-line a {
  color: var(--gold);
  text-decoration: underline;
}

.instagram-grid {
  background: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: space-between;
  align-items: start;
  padding-top: var(--space-20-80);
  padding-bottom: var(--space-40-120);
  color: var(--gold);
  background: var(--white);
  font-size: var(--body-type);
}

.footer-column {
  display: grid;
  gap: 0.7rem;
}

.footer-instagram {
  justify-self: end;
}

.footer-instagram img {
  width: clamp(1.875rem, 2.3cqw, 2.5rem);
}

.footer-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.legal-dialog {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--gold);
  color: var(--white);
  overflow: hidden;
}

.legal-dialog::backdrop {
  background: var(--gold);
}

.legal-dialog-close {
  position: fixed;
  top: clamp(0.75rem, 2cqw, 1.5rem);
  right: clamp(0.75rem, 2cqw, 1.5rem);
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.legal-dialog-close:focus-visible {
  outline: 0.063rem solid currentColor;
  outline-offset: 0.35rem;
}

.legal-dialog-content {
  height: 100%;
  overflow-y: auto;
  padding: var(--space-section) var(--side, max(1.25rem, 6.25vw));
}

.legal-dialog-content h2,
.legal-dialog-copy {
  width: min(100%, var(--text-width));
  margin-inline: auto;
}

.legal-dialog-content h2 {
  margin-bottom: var(--space-20-80);
}

.legal-dialog-copy {
  display: grid;
  gap: 1.1em;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem var(--side, max(1.25rem, 6.25vw));
  background: var(--black);
  color: var(--white);
  box-shadow: 0 -0.5rem 2rem rgba(0, 0, 0, 0.18);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner p {
  font-size: var(--body-type, 1.125rem);
}

.cookie-banner button {
  min-width: 3rem;
  padding: 0 0 0.25rem;
  border: 0;
  border-bottom: 0.063rem solid currentColor;
  background: transparent;
  color: inherit;
  font-style: italic;
  cursor: pointer;
}

.cookie-banner button:focus-visible {
  outline: 0.063rem solid currentColor;
  outline-offset: 0.35rem;
}

@media (max-width: 900px) {
  :root {
    --header-height: 3.75rem;
  }

  .section-grid,
  .booking-layout,
  .process-item,
  .contact-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 32.5rem;
  }

  .hero-mark {
    width: 3.5rem;
  }

  .section-grid > h1,
  .section-grid > h2,
  .booking-layout,
  .award-slider,
  .contact-grid > h2,
  .process-item div,
  .column-text,
  .recommendation {
    width: 100%;
    margin-inline: 0;
  }

  .image-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-layout h2 {
    max-width: none;
  }

  .column-text {
    columns: 1;
  }

  .text-button {
    justify-self: center;
  }

  .oil-intro {
    padding-bottom: 0;
  }

  .bottle-showcase {
    display: flex;
    flex-direction: column;
    padding-inline: 0;
    align-items: center;
  }

  .oil-mockup {
    position: relative;
    order: 2;
    width: calc(100% + 2.5rem);
    height: auto;
    margin: 1.875rem -1.25rem 0;
    object-fit: contain;
  }

  .oil-copy {
    order: 1;
  }

  .bottle-small {
    height: 43.75rem;
  }

  .bottle-large {
    height: 51.5rem;
  }

  .process-item img,
  .process-item div {
    order: initial;
  }

  .process-item img {
    width: 10rem;
  }

  .process-item div {
    max-width: none;
  }

  .process-item {
    gap: 1.5rem;
  }

  .award-slider {
    --award-gap: 2rem;
  }

  .award-card {
    flex-basis: 100%;
  }

  .map-canvas {
    aspect-ratio: 320 / 320;
    min-height: 31.25rem;
  }

  .contact-grid {
    gap: 2.5rem;
  }

  .site-footer {
    justify-content: start;
    gap: 0.7rem;
  }

  .grove-image {
    aspect-ratio: 1;
  }

  .process-list {
    width: 100%;
  }

  .award-card h3 {
    max-width: 100%;
  }

  .about-varieties p {
    width: 100%;
  }

  .booking-form {
    width: 100%;
  }

  .booking-field-grid,
  .time-options {
    grid-template-columns: 1fr;
  }

  .footer-instagram {
    justify-self: start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 35rem) {
  body {
    --side: 1.25rem;
    --column-gap: 2rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .page-loader {
    animation-duration: 1ms;
    animation-delay: 250ms;
  }

  .reveal-text {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
