@font-face {
  font-family: "Lora";
  src: url("assets/fonts/lora-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --green: #506c6a;
  --sand: #f3eee4;
  --paper: #fbf9f3;
  --ink: #26302f;
  --line: rgba(80, 108, 106, 0.38);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --heading: "Lora", Georgia, serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--green);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--sand);
  color: var(--green);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  padding: 14px clamp(22px, 3vw, 42px);
  border-bottom: 1px solid transparent;
  color: var(--sand);
  background: transparent;
  transition: background-color 240ms ease, border-color 240ms ease;
}

.site-header.is-solid {
  border-color: rgba(243, 238, 228, 0.28);
  background: var(--green);
}

.wordmark {
  display: inline-flex;
  justify-self: start;
}

.wordmark img {
  display: block;
  width: clamp(145px, 14vw, 205px);
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
}

.desktop-nav a,
.header-reservation {
  padding: 8px 0 6px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: none;
  cursor: pointer;
  font-family: var(--heading);
  font-size: clamp(0.95rem, 1.25vw, 1.2rem);
  font-weight: 700;
}

.desktop-nav a:hover,
.header-reservation:hover {
  border-color: currentColor;
}

.header-reservation {
  justify-self: end;
}

.menu-button {
  display: none;
}

.mobile-menu {
  visibility: hidden;
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 108px 24px 36px;
  background: var(--green);
  color: var(--sand);
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(243, 238, 228, 0.32);
  font-family: var(--heading);
  font-size: clamp(2.2rem, 11vw, 4rem);
  font-weight: 700;
}

.mobile-menu button {
  display: flex;
  justify-content: space-between;
  margin-top: 38px;
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid var(--sand);
  background: none;
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--green);
  color: var(--sand);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
  border: 0;
  background: var(--green);
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(68px, 8vh, 96px);
  left: clamp(22px, 3vw, 42px);
}

.hero h1 {
  max-width: 980px;
  margin: 0 0 36px;
  font-family: var(--heading);
  font-size: clamp(3.4rem, 7.4vw, 7.8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.91;
  text-shadow: 0 3px 18px rgba(24, 29, 28, 0.78);
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 220px;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid var(--sand);
  background: transparent;
  color: var(--sand);
  cursor: pointer;
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.outline-button:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.hero-pagination {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 3vw, 42px);
  bottom: 22px;
  display: flex;
  gap: 16px;
}

.hero-pagination button {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: none;
  color: var(--sand);
  cursor: pointer;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.hero-pagination button.is-active {
  border-color: currentColor;
}

.reservation-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 96px;
  padding: 22px clamp(22px, 3vw, 42px);
  border-bottom: 1px solid var(--line);
  background: var(--sand);
}

.reservation-strip p {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 700;
}

.reservation-strip button,
.booking-callout button {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 12px 0 8px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  cursor: pointer;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 12px clamp(12px, 2vw, 24px) clamp(90px, 12vw, 180px);
}

.feature-image,
.portrait-image,
.wine-image,
.impression-image {
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.feature-image {
  aspect-ratio: 4 / 5;
}

.feature-image img,
.portrait-image img,
.wine-image img,
.impression-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card:first-child .feature-image img {
  object-position: center;
}

.feature-copy {
  padding: 26px 16px 0;
}

.feature-copy h2,
.wine-copy h2,
.editorial-copy h2,
.section-heading h2,
.visit-title h2,
.booking-callout h2 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.feature-copy h2 {
  font-size: clamp(2.1rem, 3.6vw, 4.2rem);
}

.feature-copy p {
  max-width: 600px;
  margin: 22px 0 18px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.65;
}

.feature-copy a,
.wine-copy a,
.editorial-copy a,
.visit-details a,
.footer-column a,
.footer-column button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 3px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  cursor: pointer;
  font-size: 0.88rem;
}

.wine-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: stretch;
  margin-bottom: clamp(100px, 14vw, 200px);
  background: var(--green);
  color: var(--sand);
}

.wine-copy {
  align-self: center;
  padding: clamp(74px, 9vw, 150px) clamp(38px, 7vw, 112px);
}

.wine-copy h2 {
  max-width: 780px;
  font-size: clamp(2.7rem, 4.9vw, 6.1rem);
}

.wine-copy p:not(.section-kicker) {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--sand);
  font-size: 0.98rem;
  line-height: 1.72;
}

.wine-copy .wine-intro {
  font-family: var(--heading);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
}

.wine-copy a {
  margin-top: 38px;
}

.wine-image {
  min-height: clamp(680px, 72vw, 980px);
  background: var(--green);
}

.wine-image img {
  object-position: center;
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(52px, 9vw, 150px);
  align-items: start;
  padding: 0 clamp(40px, 8vw, 130px) clamp(100px, 14vw, 200px);
}

.portrait-image {
  aspect-ratio: 2 / 3;
}

.portrait-figure {
  margin: 0;
}

.portrait-figure figcaption {
  max-width: 680px;
  margin-top: 14px;
  color: var(--ink);
  font-size: 0.76rem;
  line-height: 1.55;
}

.portrait-image img {
  object-position: center top;
}

.editorial-copy {
  position: sticky;
  top: 128px;
  padding-top: 30px;
}

.section-kicker {
  margin: 0 0 34px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.editorial-copy h2 {
  font-size: clamp(2.4rem, 4.1vw, 5.1rem);
}

.editorial-copy p:not(.section-kicker) {
  max-width: 580px;
  margin: 26px 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.72;
}

.editorial-copy .intro-text {
  color: var(--green);
  font-family: var(--heading);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
}

.editorial-copy a {
  margin-top: 34px;
}

.impressions-section {
  padding: clamp(90px, 12vw, 175px) clamp(12px, 2vw, 24px);
  border-top: 1px solid var(--line);
  background: var(--sand);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin: 0 16px clamp(58px, 8vw, 110px);
}

.section-heading h2 {
  font-size: clamp(3rem, 6.2vw, 7.4rem);
}

.impressions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-color: var(--green) transparent;
}

.impression-card {
  min-width: 0;
}

.impression-image {
  height: clamp(390px, 43vw, 630px);
}

.impression-image img {
  object-position: center;
}

.impression-card p {
  margin: 14px 0 0;
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.visit-section {
  padding: clamp(100px, 13vw, 190px) clamp(22px, 3vw, 42px) 0;
}

.visit-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(50px, 9vw, 140px);
  padding: clamp(62px, 8vw, 110px) 0 clamp(100px, 12vw, 170px);
}

.visit-title h2 {
  font-size: clamp(3rem, 5.5vw, 6.7rem);
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.visit-details article {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
}

.visit-details h3 {
  margin: 0 0 16px;
  font-family: var(--heading);
  font-size: 1.2rem;
}

.visit-details p {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.65;
}

.visit-details a {
  font-size: 0.83rem;
}

.booking-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  padding: clamp(70px, 9vw, 130px) clamp(22px, 3vw, 42px);
  border-top: 1px solid var(--line);
  background: var(--sand);
}

.booking-callout h2 {
  font-size: clamp(3.2rem, 7vw, 8rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.65fr repeat(4, minmax(130px, 1fr));
  gap: clamp(32px, 5vw, 74px);
  padding: clamp(70px, 9vw, 120px) clamp(22px, 3vw, 42px) 34px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.back-to-top {
  align-self: start;
  font-family: var(--heading);
  font-size: 2rem;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.footer-column h2 {
  margin: 0 0 12px;
  font-family: var(--heading);
  font-size: 1.05rem;
}

.footer-column p,
.footer-column a,
.footer-column button {
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-brand {
  grid-column: 1 / span 2;
  width: clamp(220px, 28vw, 430px);
  aspect-ratio: 1754 / 591;
  margin-top: 56px;
  background: var(--green);
  -webkit-mask: url("assets/kollektur-logo-sand.png") center / contain no-repeat;
  mask: url("assets/kollektur-logo-sand.png") center / contain no-repeat;
}

.footer-legal {
  grid-column: 3 / -1;
  align-self: end;
  justify-self: end;
  margin: 0;
  color: var(--ink);
  font-size: 0.66rem;
}

.booking-modal {
  visibility: hidden;
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(38, 48, 47, 0.84);
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.booking-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.booking-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100svh - 36px);
  overflow: auto;
  background: var(--sand);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--sand);
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  background: var(--green);
}

.modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.reservation-frame {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
}

.booking-consent {
  display: grid;
  align-content: center;
  min-height: min(720px, calc(100svh - 36px));
  padding: clamp(72px, 10vw, 120px) clamp(28px, 8vw, 90px);
  color: var(--green);
}

.booking-consent[hidden],
.reservation-frame[hidden] {
  display: none;
}

.booking-consent h2 {
  max-width: 620px;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.booking-consent > p:not(.section-kicker) {
  max-width: 590px;
  margin: 28px 0;
  color: var(--ink);
  line-height: 1.7;
}

.booking-consent a {
  border-bottom: 1px solid currentColor;
}

.booking-consent button {
  justify-self: start;
  padding: 14px 18px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--sand);
  cursor: pointer;
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  position: static;
  background: var(--green);
}

.legal-main {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 0;
  color: var(--ink);
}

.legal-main h1,
.legal-main h2 {
  color: var(--green);
  font-family: var(--heading);
  letter-spacing: -0.035em;
}

.legal-main h1 {
  margin: 0 0 60px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.95;
}

.legal-main h2 {
  margin: 48px 0 14px;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.legal-main h3 {
  margin: 30px 0 10px;
  color: var(--green);
  font-family: var(--heading);
}

.legal-main p,
.legal-main li {
  line-height: 1.75;
}

.legal-main a,
.legal-footer a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px clamp(22px, 3vw, 42px);
  border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-reservation {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 74px;
  }

  .menu-button {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
  }

  .menu-button span {
    position: absolute;
    right: 4px;
    left: 4px;
    height: 1px;
    background: var(--sand);
    transition: transform 220ms ease, top 220ms ease;
  }

  .menu-button span:first-child { top: 17px; }
  .menu-button span:last-child { top: 26px; }
  .menu-button[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

  .editorial-section {
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    padding-right: 42px;
    padding-left: 42px;
  }

  .wine-section {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  }

  .wine-copy {
    padding-right: 42px;
    padding-left: 42px;
  }

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

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

  .back-to-top {
    grid-column: 1 / -1;
  }

  .footer-brand {
    grid-column: 1 / span 2;
  }

  .footer-legal {
    grid-column: 3 / -1;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 74px;
  }

  .wordmark img {
    width: 145px;
  }

  .hero {
    min-height: max(680px, 100svh);
  }

  .hero-copy {
    bottom: 74px;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 360px;
  }

  .outline-button {
    min-width: 0;
    min-height: 52px;
  }

  .reservation-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .reservation-strip button {
    justify-self: start;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 72px;
    padding-bottom: 110px;
  }

  .feature-copy {
    padding-right: 10px;
    padding-left: 10px;
  }

  .feature-copy h2 {
    font-size: 2.8rem;
  }

  .editorial-section {
    grid-template-columns: 1fr;
    padding-right: 22px;
    padding-left: 22px;
  }

  .wine-section {
    grid-template-columns: 1fr;
    margin-bottom: 110px;
  }

  .wine-copy {
    padding: 82px 22px;
  }

  .wine-copy h2 {
    font-size: 3.4rem;
  }

  .wine-image {
    min-height: 620px;
  }

  .portrait-image {
    width: min(100%, 520px);
  }

  .editorial-copy {
    position: static;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading h2 {
    font-size: 3.5rem;
  }

  .impressions-grid {
    grid-template-columns: repeat(4, minmax(285px, 80vw));
  }

  .impression-image {
    height: 440px;
  }

  .visit-section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .visit-content {
    gap: 60px;
  }

  .visit-title h2 {
    font-size: 3.6rem;
  }

  .visit-details {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .booking-callout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .booking-callout h2 {
    font-size: 3.7rem;
  }

  .booking-callout button {
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 46px 28px;
  }

  .back-to-top,
  .footer-brand,
  .footer-legal {
    grid-column: 1 / -1;
  }

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

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