:root {
  --navy-950: #07142f;
  --navy-900: #0a1d40;
  --navy-800: #003480;
  --navy-700: #0d4b98;
  --navy-section: #102b50;
  --navy-card: #17375f;
  --navy-footer: #0a1f3a;
  --gold-500: #f2cc12;
  --gold-400: #ffdd27;
  --gold-100: #fff4b7;
  --cream-50: #fffdf8;
  --cream-100: #f7f1e7;
  --cream-200: #ece1cf;
  --tobacco-700: #673819;
  --tobacco-800: #49250f;
  --ink: #171611;
  --muted: #665f54;
  --white: #ffffff;
  --border: rgba(7, 20, 47, 0.14);
  --shadow: 0 24px 70px rgba(7, 20, 47, 0.15);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --content: 1180px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream-100);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(242, 204, 18, 0.12), transparent 28rem),
    var(--cream-100);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.age-gate-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-900);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--navy-800);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section {
  width: min(var(--content), calc(100% - 3rem));
  margin-inline: auto;
  padding-block: clamp(4.5rem, 8vw, 8rem);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button--primary {
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: 0 14px 30px rgba(242, 204, 18, 0.24);
}

.button--primary:hover {
  background: var(--gold-400);
  box-shadow: 0 18px 38px rgba(242, 204, 18, 0.3);
}

.button--quiet {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.button--quiet:hover {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
}

/* Age gate */
.age-gate {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 1.25rem;
  overflow-y: auto;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 20, 47, 0.92), rgba(73, 37, 15, 0.84)),
    url("assets/age-background.webp") center / cover no-repeat;
}

.age-gate::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 221, 39, 0.18), transparent 28rem),
    linear-gradient(rgba(7, 20, 47, 0.08), rgba(7, 20, 47, 0.55));
}

.age-gate__panel {
  position: relative;
  width: min(640px, 100%);
  padding: clamp(1.5rem, 5vw, 3.25rem);
  border: 1px solid rgba(255, 221, 39, 0.48);
  border-radius: var(--radius-lg);
  background: rgba(7, 20, 47, 0.88);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.age-gate__brand {
  width: min(190px, 44vw);
  margin: 0 auto 1.8rem;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28));
}

.age-gate .eyebrow {
  color: var(--gold-400);
}

.age-gate h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.age-gate p:not(.eyebrow):not(.noscript-note) {
  max-width: 48ch;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.age-gate__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.noscript-note {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--navy-950);
  background: var(--gold-100);
  font-size: 0.9rem;
}

.site-shell[aria-hidden="true"] {
  visibility: hidden;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  width: 100%;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.3rem max(1.5rem, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid rgba(7, 20, 47, 0.09);
  background: rgba(255, 253, 248, 0.91);
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, padding 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(0.55rem, 0.9vw, 0.8rem);
  text-decoration: none;
  transition: gap 220ms ease;
}

.brand img {
  width: 116px;
  height: auto;
  transition: width 220ms ease;
}

.site-brand-text {
  display: grid;
  color: var(--navy-900);
  line-height: 1.1;
  white-space: nowrap;
}

.site-brand-name {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.48vw, 1.32rem);
  font-weight: 700;
}

.site-brand-subtitle {
  max-height: 1.2em;
  margin-top: 0.25rem;
  overflow: hidden;
  font-size: clamp(0.64rem, 0.79vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 220ms ease, margin 220ms ease, opacity 180ms ease, transform 220ms ease;
}

.site-header.is-compact {
  min-height: 60px;
  padding-block: 0.2rem;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 8px 24px rgba(7, 20, 47, 0.1);
}

.site-header.is-compact .brand {
  gap: 0.55rem;
}

.site-header.is-compact .brand img {
  width: 54px;
}

.site-header.is-compact .site-brand-subtitle {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  transform: translateY(-0.2rem);
}

#top,
#azogars,
#sortiment,
#partner,
#marken,
#kontakt {
  scroll-margin-top: 110px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
}

.site-nav a {
  position: relative;
  padding-block: 0.75rem;
  color: var(--navy-900);
  font-size: clamp(0.94rem, 1.1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a:active::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-external-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-left: 1.15rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  color: var(--navy-950);
  background: rgba(255, 253, 248, 0.72);
  line-height: 1.2;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.site-nav .nav-external-link::after {
  display: none;
}

.site-nav .nav-external-link:hover {
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: 0 8px 20px rgba(242, 204, 18, 0.2);
}

.site-nav .nav-external-link:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

.site-header.is-compact .nav-external-link {
  padding: 0.4rem 0.75rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  overflow-clip-margin: 60px;
  min-height: min(850px, calc(100dvh - 78px));
  width: min(var(--content), calc(100% - 3rem));
  margin-inline: auto;
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: start;
  gap: 4rem;
}

.hero__copy {
  min-width: 0;
}

.hero-title {
  max-width: 10ch;
  margin: 0;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: clamp(3.15rem, 6.4vw, 6.65rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero-title span {
  display: block;
}

.hero-title span + span {
  margin-top: 0.06em;
}

.hero__lead {
  max-width: 57ch;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.25rem);
}

.hero__services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.hero-service-card {
  min-height: 132px;
  padding: 1.15rem 1.6rem;
  border-radius: var(--radius-sm);
  cursor: default;
  color: var(--white);
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  box-shadow: 0 8px 18px rgba(7, 20, 47, 0.08);
  transform: none;
}

.hero-service-card:nth-child(2) {
  background: linear-gradient(150deg, var(--tobacco-700), var(--tobacco-800));
}

.hero-service-card:nth-child(3) {
  color: var(--navy-950);
  background: linear-gradient(150deg, var(--gold-400), var(--gold-500));
}

.hero-service-card p {
  margin: 0;
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  opacity: 0.72;
}

.hero-service-card h2 {
  margin: 0.7rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 500;
  line-height: 1.05;
}

.hero-service-card span {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  line-height: 1.4;
  opacity: 0.72;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.25rem;
  color: var(--navy-900);
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(7, 20, 47, 0.32);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.hero__secondary-link span {
  transition: transform 160ms ease;
}

.hero__secondary-link:hover {
  color: var(--navy-700);
  text-decoration-color: currentColor;
}

.hero__secondary-link:hover span {
  transform: translateY(3px);
}

.hero__visual {
  --hero-halo-size: min(36vw, 470px);
  --hero-logo-size: min(29.6vw, 385px);
  position: relative;
  display: grid;
  min-height: min(38vw, 500px);
  min-width: 0;
  align-self: start;
  overflow: visible;
  place-items: start center;
}

.hero__halo {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--hero-halo-size);
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(255, 211, 0, 0.16) 0%,
    rgba(255, 211, 0, 0.06) 48%,
    rgba(255, 211, 0, 0) 72%
  );
  transform: translateX(-50%);
}

.hero__visual img {
  position: relative;
  z-index: 1;
  width: var(--hero-logo-size);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(7, 20, 47, 0.18));
}

/* Intro */
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(3rem, 5vw, 4.5rem);
  align-items: center;
  border-top: 1px solid var(--border);
}

.intro h2,
.recommendations h2,
.brand-gallery h2,
.contact h2,
.legal-main h1 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.intro__copy > p:last-child {
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.9vw, 1.24rem);
}

.story-image {
  width: 100%;
  max-width: 520px;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 38px rgba(7, 20, 47, 0.14);
}

.story-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Recommendations */
.recommendations {
  width: 100%;
  padding-inline: max(1.5rem, calc((100vw - var(--content)) / 2));
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 204, 18, 0.13), transparent 30rem),
    var(--navy-section);
}

.recommendations .eyebrow {
  color: var(--gold-400);
}

.recommendations h2 {
  color: var(--white);
}

.recommendations__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.3rem;
}

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

.recommendation-card {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.recommendation-card:hover {
  border-color: rgba(255, 221, 39, 0.54);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.recommendation-card img {
  width: 100%;
  height: 265px;
  object-fit: contain;
  padding: 0.6rem;
  background: linear-gradient(145deg, #ffffff, #f4eee1);
}

.recommendation-card--type img {
  object-fit: contain;
  padding: 0.45rem;
  background: linear-gradient(145deg, #efe7da, #ffffff);
}

.recommendation-card > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.6rem;
}

.recommendation-card strong {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
}

.recommendation-card small {
  max-width: 46ch;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.recommendation-card b {
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--gold-400);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* Brand gallery */
.brand-gallery {
  overflow-x: clip;
  padding-bottom: clamp(3.75rem, 6.5vw, 6.5rem);
}

.brand-gallery__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.brand-gallery__heading p:last-child {
  max-width: 56ch;
  margin: 1rem 0 0;
  color: var(--muted);
}

.brand-gallery__controls {
  display: flex;
  gap: 0.6rem;
}

.gallery-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  transition: background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.gallery-button:hover:not(:disabled) {
  color: var(--white);
  background: var(--navy-800);
}

.gallery-button:disabled {
  cursor: default;
  opacity: 0.35;
}

.brand-gallery__track {
  display: grid;
  grid-auto-columns: minmax(210px, 1fr);
  grid-auto-flow: column;
  gap: 0.9rem;
  margin: 0;
  padding: 0 0 0.8rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--navy-800) var(--cream-200);
  list-style: none;
}

.brand-gallery__track li {
  display: block;
  min-height: 182px;
  scroll-snap-align: start;
}

.brand-card {
  display: grid;
  width: 100%;
  min-height: 182px;
  height: 100%;
  place-items: center;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 9px 28px rgba(7, 20, 47, 0.06);
  text-decoration: none;
}

a.brand-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.brand-card:hover {
  border-color: rgba(242, 204, 18, 0.75);
  box-shadow: 0 15px 34px rgba(7, 20, 47, 0.13);
  transform: translateY(-3px);
}

a.brand-card:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

.brand-card--static {
  cursor: default;
}

.brand-gallery__track img {
  max-width: 100%;
  max-height: 125px;
  object-fit: contain;
}

/* Ackermann Weinevents */
.partner-related {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.partner-related-label {
  margin: 0 0 0.8rem;
  color: var(--gold-400);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.weinevents__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
  padding: clamp(1.25rem, 2.2vw, 1.65rem) clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 204, 18, 0.13), transparent 20rem),
    var(--cream-50);
  box-shadow: 0 16px 46px rgba(7, 20, 47, 0.12);
}

.weinevents__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: #7a2638;
}

.weinevents__card > * {
  position: relative;
  z-index: 1;
}

.weinevents__card .eyebrow {
  color: #7a2638;
}

.weinevents__card h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.weinevents__card p:last-child {
  max-width: 62ch;
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.weinevents__button {
  color: var(--navy-950);
  background: var(--gold-400);
  box-shadow: 0 12px 28px rgba(242, 204, 18, 0.22);
  white-space: nowrap;
}

.weinevents__button:hover {
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: 0 16px 34px rgba(242, 204, 18, 0.28);
}

.weinevents__button:focus-visible {
  outline: 3px solid var(--navy-950);
  outline-offset: 3px;
}

/* Contact */
.contact {
  border-top: 1px solid var(--border);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 2.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  align-items: start;
  gap: 1rem;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(7, 20, 47, 0.07);
}

.contact-card--bank {
  padding: clamp(2rem, 3.5vw, 2.5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 221, 39, 0.19), transparent 18rem),
    var(--navy-card);
}

.bank-kicker {
  margin: 0;
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.contact-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.contact-identity > p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.contact-identity .contact-business {
  margin-top: 0.2rem;
  font-size: 0.94rem;
}

.contact-address {
  margin-top: 1.55rem;
}

.contact-address-label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--navy-800);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-address address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  overflow-wrap: anywhere;
}

.bank-field {
  display: grid;
  gap: 0.3rem;
  margin-top: 1.25rem;
}

.bank-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bank-value {
  color: var(--white);
  overflow-wrap: anywhere;
}

.bank-field--iban .bank-value {
  color: var(--gold-400);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 750;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.bank-copy {
  min-height: 2.75rem;
  margin-top: 1.6rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(255, 221, 39, 0.55);
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--gold-400);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 750;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.bank-copy:hover {
  background: var(--gold-500);
  box-shadow: 0 10px 24px rgba(242, 204, 18, 0.2);
}

.contact-card dl {
  margin: 1.7rem 0 0;
}

.contact-card dl > div {
  display: grid;
  grid-template-columns: minmax(80px, 0.32fr) 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
}

.contact-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-card dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: calc(1.5rem + env(safe-area-inset-right, 0px));
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--gold-400);
  background: var(--navy-950);
  box-shadow: 0 12px 28px rgba(7, 20, 47, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, background 160ms ease;
}

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

.back-to-top:hover {
  background: var(--navy-800);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Footer */
.site-footer {
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem max(1.5rem, calc((100vw - var(--content)) / 2));
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-footer);
}

.site-footer__brand img {
  width: 118px;
}

.site-footer p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
  font-size: 0.85rem;
}

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

.health-note {
  margin: 0;
  padding: 0.8rem 1.5rem;
  color: var(--navy-950);
  background: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 760;
  text-align: center;
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  background: var(--cream-100);
}

.legal-header {
  position: static;
}

.legal-header > a:last-child {
  color: var(--navy-800);
  font-size: 0.88rem;
  font-weight: 750;
}

.legal-main {
  width: min(820px, calc(100% - 3rem));
  margin: 0 auto;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.legal-main h1 {
  margin-bottom: 2.5rem;
}

.legal-main h2 {
  margin: 2.7rem 0 0.7rem;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

.legal-main p,
.legal-main address {
  color: #4f493f;
  font-style: normal;
}

.legal-main code {
  padding: 0.1rem 0.35rem;
  border-radius: 5px;
  background: var(--cream-200);
}

.info-box {
  margin: 1.2rem 0;
  padding: 1.2rem 1.3rem;
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--white);
}

.info-box p {
  margin-bottom: 0;
}

/* Responsive */
@media (min-width: 901px) and (max-width: 1100px) {
  .site-nav {
    gap: clamp(0.8rem, 1.5vw, 1.25rem);
  }

  .site-nav .nav-external-link {
    margin-left: 0.25rem;
    padding-inline: 0.7rem;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero__top {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .hero__visual {
    --hero-halo-size: min(62vw, 440px);
    --hero-logo-size: min(50vw, 360px);
    min-height: min(62vw, 440px);
  }
}

@media (max-width: 880px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-image {
    max-width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
    padding-inline: 1rem;
  }

  .brand img {
    width: 106px;
  }

  .site-header.is-compact {
    min-height: 60px;
    padding-block: 0.15rem;
  }

  .site-header.is-compact .brand img {
    width: 58px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0;
    padding: 0.65rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.6rem);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-nav a {
    padding: 0.85rem 0.9rem;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: var(--cream-100);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-external-link {
    width: 100%;
    margin: 0.65rem 0 0;
    padding: 0.75rem 0.9rem;
    justify-content: center;
    text-align: center;
  }

  .site-nav .nav-external-link:hover {
    background: var(--gold-500);
  }
}

@media (max-width: 760px) {
  .section,
  .hero {
    width: min(100% - 2rem, var(--content));
  }

  .hero {
    padding-block: 3.5rem 4.5rem;
  }

  .hero-title {
    font-size: clamp(3rem, 13.8vw, 4.9rem);
  }

  .hero-service-card {
    min-height: 0;
  }

  .hero__visual {
    min-height: min(62vw, 390px);
  }

  .recommendations__grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .weinevents__card {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 1.5rem;
  }

  .weinevents__button {
    width: 100%;
  }

  .recommendation-card {
    min-height: 405px;
  }

  .brand-gallery__heading {
    align-items: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    text-align: center;
  }

  .site-footer__brand {
    justify-self: center;
  }

  .site-footer nav {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .site-brand-name {
    font-size: 1.05rem;
  }

  .site-brand-subtitle {
    display: none;
  }

  .age-gate__actions,
  .hero__actions {
    display: grid;
  }

  .age-gate__actions .button,
  .hero__actions .button {
    width: 100%;
  }

  .age-gate__panel {
    border-radius: var(--radius-md);
  }

  .story-image {
    border-radius: var(--radius-md);
  }

  .hero__visual {
    --hero-halo-size: min(82vw, 330px);
    --hero-logo-size: min(66vw, 265px);
    min-height: min(82vw, 330px);
  }

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

  .back-to-top {
    right: calc(1rem + env(safe-area-inset-right, 0px));
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    width: 44px;
    height: 44px;
  }

  .recommendations__heading,
  .brand-gallery__heading {
    display: block;
  }

  .brand-gallery__controls {
    margin-top: 1.4rem;
  }

  .contact-card dl > div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
