:root {
  --ink: #251b16;
  --soft-ink: #5e4a3d;
  --cream: #f6efe4;
  --paper: #fffaf2;
  --clay: #8f563b;
  --wine: #6d1f2b;
  --moss: #526143;
  --gold: #c49a58;
  --shadow: 0 24px 70px rgba(31, 20, 14, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

body.age-locked {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(37, 27, 22, 0.78), rgba(37, 27, 22, 0.86)),
    url("assets/klimat-spotkan.jpg");
  background-position: center;
  background-size: cover;
}

.age-gate[hidden] {
  display: none;
}

.age-gate-panel {
  width: min(560px, 100%);
  padding: clamp(30px, 5vw, 54px);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-logo {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--wine);
}

.age-logo svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.age-gate-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 6vw, 58px);
}

.age-gate-panel p:not(.eyebrow) {
  margin-inline: auto;
  max-width: 420px;
  color: var(--soft-ink);
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 250, 242, 0.86), rgba(255, 250, 242, 0.9)),
    url("https://images.unsplash.com/photo-1568213816046-0ee1c42bd559?auto=format&fit=crop&w=1600&q=75");
  background-size: cover;
  background-position: center;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--paper);
  transition: background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 242, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(37, 27, 22, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
}

.brand-mark svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.brand-mark svg path {
  vector-effect: non-scaling-stroke;
}

.brand-mark-old {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

.brand small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.header-action {
  transition: opacity 180ms ease, color 180ms ease;
}

.nav a:hover,
.header-action:hover {
  opacity: 0.72;
}

.header-action {
  justify-self: end;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 6vw, 84px) 56px;
  overflow: hidden;
  color: var(--paper);
}

.hero-bg,
.band-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(20, 12, 10, 0.78), rgba(20, 12, 10, 0.36) 52%, rgba(20, 12, 10, 0.18)),
    url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=2100&q=84");
}

.hero::after,
.occasion-band::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 20% 80%, rgba(196, 154, 88, 0.2), transparent 34%);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(72px, 12vw, 152px);
  font-weight: 700;
}

h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(38px, 6vw, 76px);
}

h3 {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(18px, 2.2vw, 25px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #26180f;
}

.button-ghost {
  color: var(--paper);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button-ghost-dark {
  color: var(--ink);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  bottom: 54px;
  display: grid;
  gap: 10px;
  width: min(330px, calc(100% - 40px));
  padding: 22px;
  border: 1px solid rgba(255, 250, 242, 0.34);
  background: rgba(37, 27, 22, 0.44);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel span {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.22);
  font-weight: 700;
}

.hero-panel span:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.section {
  padding: clamp(76px, 10vw, 130px) clamp(20px, 6vw, 84px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.section-copy p,
.band-content p,
.contact-copy p,
.feature p {
  color: var(--soft-ink);
  font-size: 17px;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img + img {
  min-height: 320px;
  margin-bottom: -40px;
}

.occasion-band {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
}

.band-bg {
  background-image:
    linear-gradient(90deg, rgba(28, 18, 13, 0.78), rgba(56, 34, 24, 0.4)),
    url("https://images.unsplash.com/photo-1601050056063-3a65f0781953?auto=format&fit=crop&w=1800&q=82");
}

.band-content {
  max-width: 720px;
}

.band-content p {
  color: rgba(255, 250, 242, 0.82);
}

.band-content .button {
  margin-top: 10px;
}

.spotlight {
  background: var(--paper);
}

.spotlight-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.spotlight-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.spotlight-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.spotlight-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.spotlight-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(transparent 22%, rgba(20, 12, 10, 0.86));
}

.spotlight-card span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--paper);
}

.spotlight-card small {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-weight: 900;
}

.spotlight-card strong,
.spotlight-card em,
.spotlight-card b {
  display: block;
}

.spotlight-card strong {
  max-width: 360px;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  font-style: normal;
  line-height: 1;
}

.spotlight-card em {
  max-width: 360px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.spotlight-card b {
  width: fit-content;
  margin-top: 16px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotlight-card:hover img {
  filter: saturate(1.08) brightness(0.82);
  transform: scale(1.045);
}

.gift-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(26px, 6vw, 76px);
  align-items: end;
  background:
    linear-gradient(rgba(246, 239, 228, 0.9), rgba(246, 239, 228, 0.95)),
    url("https://images.unsplash.com/photo-1547595628-c61a29f496f0?auto=format&fit=crop&w=1600&q=78");
  background-position: center;
  background-size: cover;
}

.gift-copy p {
  max-width: 760px;
  color: var(--soft-ink);
  font-size: 17px;
}

.gift-copy .button {
  margin-top: 10px;
}

.gift-note {
  padding: clamp(24px, 4vw, 38px);
  border-left: 4px solid var(--gold);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow);
}

.gift-note span {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gift-note strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.gallery {
  background: var(--paper);
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  content: "";
  background: linear-gradient(transparent, rgba(20, 12, 10, 0.74));
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--paper);
  font-weight: 800;
}

.gallery-item:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.gallery-premium img {
  object-position: center;
}

.inquiry {
  background:
    linear-gradient(rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.98)),
    url("assets/klimat-spotkan.jpg");
  background-position: center;
  background-size: cover;
}

.inquiry-heading {
  margin-bottom: 34px;
}

.inquiry-heading h2 {
  margin-bottom: 0;
}

.inquiry-form {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.62fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.inquiry-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.inquiry-card {
  position: relative;
  display: grid;
  min-height: 500px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.inquiry-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.inquiry-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.inquiry-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(transparent 28%, rgba(20, 12, 10, 0.82));
  transition: background 220ms ease, box-shadow 220ms ease;
}

.inquiry-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--paper);
  transition: transform 220ms ease;
}

.inquiry-card strong,
.inquiry-card small {
  display: block;
}

.inquiry-card strong {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.inquiry-card small {
  color: rgba(255, 250, 242, 0.82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.inquiry-card:has(input:checked) {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.inquiry-card:has(input:checked)::after {
  background:
    linear-gradient(transparent 16%, rgba(20, 12, 10, 0.92)),
    rgba(109, 31, 43, 0.18);
  box-shadow: inset 0 0 0 999px rgba(109, 31, 43, 0.1);
}

.inquiry-card:has(input:checked) img {
  filter: saturate(1.08) brightness(0.72);
  transform: scale(1.045);
}

.inquiry-card:has(input:checked) span {
  transform: translateY(-6px);
}

.inquiry-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.04);
}

.message-panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 250, 242, 0.9);
  box-shadow: var(--shadow);
}

.message-panel label,
.message-panel label span {
  display: grid;
  gap: 8px;
}

.message-panel label span {
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.message-panel input,
.message-panel textarea {
  width: 100%;
  border: 1px solid rgba(37, 27, 22, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.message-panel textarea {
  resize: vertical;
}

.message-panel input:focus,
.message-panel textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 88, 0.18);
}

.message-panel .button {
  width: 100%;
  margin-top: 6px;
}

.form-hint {
  margin: 0;
  color: var(--soft-ink);
  font-size: 13px;
}

.website-field {
  display: none;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  background: var(--cream);
}

.contact h2 {
  max-width: 700px;
  margin-bottom: 14px;
}

.opening-hours {
  margin-bottom: 12px;
  font-weight: 700;
}

.reviews {
  background: var(--paper);
}

.reviews-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(37, 27, 22, 0.16);
  border-bottom: 1px solid rgba(37, 27, 22, 0.16);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 18px 48px rgba(31, 20, 14, 0.1);
}

.stars {
  margin-bottom: 32px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.review-card p {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.08;
}

.review-card span {
  display: block;
  margin-top: 22px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews-link {
  margin-top: 24px;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  font-family: Inter, system-ui, sans-serif;
}

.chat-toggle {
  min-height: 52px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0 20px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: grid;
  width: min(380px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 112px));
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.chat-panel[hidden] {
  display: none;
}

.chat-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: var(--ink);
  color: var(--paper);
}

.chat-head strong,
.chat-head small {
  display: block;
}

.chat-head strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  line-height: 1;
}

.chat-head small {
  margin-top: 6px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.chat-head button {
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 330px;
  overflow-y: auto;
  padding: 16px;
}

.chat-message {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 11px 13px;
  font-size: 14px;
  line-height: 1.45;
}

.chat-message.bot {
  background: var(--cream);
  color: var(--ink);
}

.chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 54px;
  min-height: 40px;
}

.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(37, 27, 22, 0.48);
  animation: chatTyping 1s ease-in-out infinite;
}

.chat-typing span:nth-child(2) {
  animation-delay: 0.14s;
}

.chat-typing span:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes chatTyping {
  0%,
  80%,
  100% {
    opacity: 0.36;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.chat-message.user {
  justify-self: end;
  background: var(--wine);
  color: var(--paper);
}

.chat-prompts {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px 14px;
}

.chat-prompts button {
  flex: 0 0 auto;
  border: 1px solid rgba(37, 27, 22, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.92);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
}

.chat-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 12px;
}

.chat-choice-row button {
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(196, 154, 88, 0.12);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(37, 27, 22, 0.14);
}

.chat-form input {
  min-width: 0;
  border: 1px solid rgba(37, 27, 22, 0.22);
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
}

.chat-form button {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 14px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 84px);
  background: var(--ink);
  color: rgba(255, 250, 242, 0.78);
  font-size: 13px;
}

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: rgba(255, 250, 242, 0.86);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.form-hint a {
  color: var(--wine);
  font-weight: 800;
}

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

.legal-header {
  position: sticky;
}

.legal-main {
  padding: 120px clamp(20px, 6vw, 84px) 70px;
}

.legal-document {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin-bottom: 10px;
  font-size: clamp(64px, 9vw, 138px);
  line-height: 0.9;
}

.legal-document h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.legal-document p,
.legal-document li {
  color: var(--soft-ink);
  line-height: 1.75;
}

.legal-document a {
  color: var(--wine);
  font-weight: 800;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-updated {
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 900px) {
  .mobile-hidden {
    display: none !important;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 110px;
  }

  .hero-panel {
    position: static;
    margin-top: 34px;
  }

  .intro,
  .gift-section,
  .inquiry-form,
  .contact {
    grid-template-columns: 1fr;
  }

  .image-stack {
    display: flex;
    gap: 14px;
    margin-inline: -20px;
    overflow-x: auto;
    padding: 0 20px 16px;
    scroll-padding: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .image-stack img,
  .image-stack img + img {
    flex: 0 0 min(82vw, 380px);
    min-height: 360px;
    margin-bottom: 0;
    scroll-snap-align: start;
  }

  .spotlight-track {
    display: flex;
    gap: 14px;
    margin-inline: -20px;
    overflow-x: auto;
    padding: 0 20px 16px;
    scroll-padding: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .spotlight-card {
    flex: 0 0 min(82vw, 380px);
    min-height: 390px;
    scroll-snap-align: start;
  }

  .reviews-grid {
    display: flex;
    gap: 14px;
    margin-inline: -20px;
    overflow-x: auto;
    padding: 0 20px 16px;
    scroll-padding: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .review-card {
    flex: 0 0 min(82vw, 380px);
    scroll-snap-align: start;
  }

  .gallery-grid {
    display: flex;
    gap: 14px;
    margin-inline: -20px;
    overflow-x: auto;
    padding: 0 20px 16px;
    scroll-padding: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .inquiry-options {
    display: flex;
    gap: 14px;
    margin-inline: -20px;
    overflow-x: auto;
    padding: 0 20px 16px;
    scroll-padding: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .inquiry-card {
    flex: 0 0 min(82vw, 380px);
    min-height: 340px;
    scroll-snap-align: start;
  }

  .gallery-item,
  .gallery-large {
    flex: 0 0 min(82vw, 380px);
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .chat-toggle {
    min-height: 48px;
    padding: 0 16px;
    font-size: 13px;
  }

  .chat-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 74px;
    width: auto;
    max-height: calc(100vh - 106px);
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    font-size: 13px;
  }

  h1 {
    font-size: 68px;
  }

  .gallery-item {
    min-height: 360px;
  }

  .button {
    width: 100%;
  }
}
