:root {
  --ink: #0b0b0b;
  --muted: #65615a;
  --gold: #b88628;
  --gold-soft: #e4c470;
  --paper: #fffdf8;
  --line: rgba(184, 134, 40, 0.24);
  --glass: rgba(255, 255, 255, 0.68);
  --shadow: 0 24px 80px rgba(10, 9, 8, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(228, 196, 112, 0.16), transparent 28rem),
    linear-gradient(180deg, #fff 0%, var(--paper) 48%, #fff 100%);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

.ambient-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ambient-line {
  position: absolute;
  top: 18vh;
  right: -18vw;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(184, 134, 40, 0.14);
  border-radius: 50%;
  transform: translate3d(var(--mouse-x, 0), calc(var(--parallax-y, 0) + var(--mouse-y, 0)), 0);
}

.ambient-glow {
  position: absolute;
  top: 44vh;
  left: -12vw;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 196, 112, 0.22), transparent 62%);
  filter: blur(8px);
  transform: translate3d(calc(var(--mouse-x, 0) * -1), calc(var(--parallax-y, 0) + var(--mouse-y, 0)), 0);
}

body.locked {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 20px 24px auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(184, 134, 40, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(22px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  justify-content: center;
  width: 48px;
  height: 48px;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav {
  gap: 8px;
}

.nav a {
  padding: 11px 18px;
  border-radius: 999px;
  color: #2c2a27;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.nav a:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.section {
  position: relative;
  min-height: 100vh;
  padding: 110px clamp(22px, 5vw, 78px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "Above images are Concept 2D/3D render, for illustration only.";
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: clamp(18px, 4vw, 44px);
  z-index: 2;
  max-width: min(360px, calc(100% - 36px));
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(11, 11, 11, 0.7);
  font-size: 0.72rem;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.8) 42%, rgba(255,255,255,0.12) 76%),
    url("assets/hero-bottling.png") right center / cover no-repeat;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.05);
}

.gold-line {
  position: absolute;
  top: 18%;
  right: 39%;
  width: 1px;
  height: 58vh;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.hero-content {
  max-width: 720px;
  padding-top: 70px;
}

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

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

h1,
h2 {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.2vw, 6.9rem);
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 6vw, 6.4rem);
}

h3 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-copy,
.section-copy p,
.contact-panel p,
.capability p,
.team-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.btn.primary {
  background: var(--ink);
  color: #fff;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.4);
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
}

.hero-card {
  align-self: end;
  justify-self: end;
  width: min(310px, 90%);
  margin: 0 4vw 8vh 0;
  padding: 26px;
  border-radius: 8px;
}

.hero-card span,
.hero-card em,
.team-card span,
.capability-grid span {
  color: var(--gold);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin: 8px 0 4px;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.9;
}

.band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  min-height: auto;
  padding: 0 clamp(22px, 5vw, 78px) 80px;
}

.band div {
  padding: 34px 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 0.9;
}

.band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.editorial-intro {
  padding: 76px clamp(22px, 9vw, 170px) 44px;
  background: #fff;
}

.editorial-intro h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.35rem, 4.2vw, 5rem);
  line-height: 1.12;
}

.infrastructure-note {
  padding: 30px clamp(22px, 9vw, 170px) 68px;
  background: #fff;
}

.infrastructure-note h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 5.6rem);
  line-height: 1.08;
}

.visual-story {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
  padding: 58px clamp(22px, 5vw, 78px) 84px;
}

.story-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.story-large {
  grid-row: span 2;
  min-height: 888px;
}

.story-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(.2,.8,.2,1), filter 900ms ease;
}

.story-panel:hover img {
  transform: scale(1.1);
  filter: saturate(1.04) contrast(1.03);
}

.story-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.68));
}

.story-panel::before {
  content: "Above images are Concept 2D/3D render, for illustration only.";
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  max-width: min(330px, calc(100% - 36px));
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(11, 11, 11, 0.72);
  font-size: 0.68rem;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

.story-panel div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(24px, 4vw, 46px);
  color: #fff;
}

.story-panel span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.story-panel h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
}

.story-panel p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.marquee-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.marquee-band div {
  display: flex;
  width: max-content;
  gap: 48px;
  padding: 22px 0;
  animation: marquee 24s linear infinite;
}

.marquee-band span {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  min-height: auto;
  padding-top: 70px;
  padding-bottom: 70px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,253,248,0.82)),
    radial-gradient(circle at 12% 70%, rgba(228,196,112,0.18), transparent 24rem);
}

.split-copy h2 {
  font-size: clamp(3rem, 5.8vw, 7.2rem);
}

.split-copy p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.split-image {
  position: relative;
  height: clamp(420px, 50vw, 620px);
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.group-profile {
  display: block;
  min-height: auto;
  padding-top: 70px;
  padding-bottom: 80px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,253,248,0.74)),
    radial-gradient(circle at 90% 20%, rgba(184, 134, 40, 0.12), transparent 28rem);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(320px, 720px);
  justify-content: center;
  gap: 18px;
}

.profile-card {
  position: relative;
  min-height: 520px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 60px rgba(10, 9, 8, 0.08);
  overflow: hidden;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), transparent);
}

.profile-card.featured {
  background: linear-gradient(160deg, rgba(12, 12, 12, 0.96), rgba(39, 31, 18, 0.92));
  color: #fff;
}

.profile-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.profile-card p,
.profile-card li {
  color: var(--muted);
  line-height: 1.75;
}

.profile-card.featured p,
.profile-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.profile-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.profile-card li {
  position: relative;
  padding-left: 22px;
}

.profile-card li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.section-copy {
  max-width: 650px;
}

.image-stack {
  position: relative;
}

.image-stack::after,
.partnership-media::after,
.split-image::after,
.contact::after {
  z-index: 1;
}

.image-stack::after,
.partnership-media::after,
.split-image::after {
  z-index: 3;
}

.contact-shell {
  position: relative;
  z-index: 2;
}

.image-stack::after,
.partnership-media::after,
.split-image::after,
.contact::after {
  content: "Above images are Concept 2D/3D render, for illustration only.";
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: min(330px, calc(100% - 36px));
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(11, 11, 11, 0.72);
  font-size: 0.68rem;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

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

.floating-note {
  position: absolute;
  left: -32px;
  bottom: 34px;
  width: min(300px, 82%);
  padding: 24px;
  border-radius: 8px;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.floating-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.capability {
  min-height: auto;
  padding-top: 90px;
}

.pin-copy {
  max-width: 880px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.capability-grid article {
  min-height: 290px;
  padding: 34px;
  border-radius: 8px;
  transition: transform 260ms ease, border-color 260ms ease;
}

.capability-grid article:hover,
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 134, 40, 0.5);
}

.team {
  min-height: auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,253,248,0.98)),
    radial-gradient(circle at 80% 10%, rgba(184, 134, 40, 0.14), transparent 30rem);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.team-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.team-card h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.team-card:hover {
  box-shadow: var(--shadow);
}

.partnership {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.95fr);
  gap: 0;
  align-items: stretch;
  min-height: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.partnership-media,
.partnership-copy {
  min-height: 560px;
}

.partnership-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow);
}

.partnership-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.partnership-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 76px);
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,253,248,0.84)),
    radial-gradient(circle at 100% 0%, rgba(184, 134, 40, 0.12), transparent 20rem);
}

.partnership-copy h2 {
  font-family: var(--sans);
  font-size: clamp(2.4rem, 4.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.partnership-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.advantage-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.advantage-list span {
  padding: 15px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #27231e;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.contact {
  display: grid;
  min-height: auto;
  place-items: center;
  position: relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.9) 52%, rgba(255,255,255,0.58)),
    url("assets/hero-bottling.png") center / cover fixed no-repeat;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 74px);
  width: min(1280px, 100%);
  padding: clamp(24px, 4vw, 46px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.contact-intro {
  padding: clamp(18px, 3vw, 34px);
}

.contact-intro h2 {
  font-size: clamp(3rem, 6.8vw, 7.8rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 34px;
}

.contact-grid a,
.contact-grid span {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  color: #2c2924;
  font-weight: 400;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 8px;
  background: #0b0b0b;
  color: #fff;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-weight: 300;
  padding: 16px;
  outline: 0;
}

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

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(228, 196, 112, 0.12);
}

.contact-form button {
  width: fit-content;
  min-height: 48px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--ink);
  padding: 0 42px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(184, 134, 40, 0.24);
}

.site-footer {
  padding: 0;
  border-top: 1px solid rgba(184, 134, 40, 0.16);
  background: #f2eddd;
  color: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) 0.85fr 0.9fr 1.25fr;
  gap: clamp(34px, 6vw, 98px);
  padding: 82px clamp(22px, 9.5vw, 180px) 74px;
}

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

.footer-brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: none;
}

.footer-brand p,
.footer-column p,
.footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.footer-brand p {
  max-width: 360px;
  font-size: 1.05rem;
}

.footer-brand a,
.footer-column a,
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-brand a::after,
.footer-column a::before,
.footer-cta::after {
  content: ">";
  color: var(--gold);
  font-weight: 900;
}

.footer-column a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
}

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

.footer-column h3 {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
}

.footer-column p {
  max-width: 360px;
  font-size: 1.02rem;
}

.footer-brand a:hover,
.footer-column a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.socials a {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: none;
  box-shadow: 0 16px 40px rgba(10, 9, 8, 0.06);
}

.socials a::before,
.socials a::after {
  content: none;
}

.socials svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.socials svg path:not(.cut) {
  fill: currentColor;
  stroke: none;
}

.socials svg .cut {
  fill: #fff;
  stroke: none;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 30px clamp(22px, 9.5vw, 180px) 34px;
  background: #000;
  color: #fff;
  font-size: 0.88rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.footer-bottom a {
  color: #fff;
  font-weight: 600;
}

.footer-warning {
  grid-column: 1 / -1;
  justify-self: center;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    url("assets/hero-bottling.png") center / cover no-repeat;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.age-gate.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.age-panel {
  width: min(430px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  padding: clamp(22px, 3.5vw, 36px);
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  animation: gateIn 700ms cubic-bezier(.2,.8,.2,1) both;
}

.age-logo {
  width: 78px;
  height: 78px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.age-panel h1 {
  margin: 0 auto 22px;
  font-family: var(--sans);
  font-size: clamp(1.8rem, 4.2vw, 2.45rem);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.age-form {
  text-align: left;
}

.age-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
}

.age-row {
  display: grid;
  grid-template-columns: 1fr 104px;
  gap: 14px;
  align-items: end;
}

.age-row input {
  width: 100%;
  height: 56px;
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  outline: 0;
}

.age-row button {
  height: 62px;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.remember {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: #24211e;
  font-weight: 400;
  line-height: 1.5;
}

.remember input {
  width: 22px;
  height: 22px;
  accent-color: var(--gold);
}

.age-error {
  min-height: 24px;
  margin: 14px 0 0;
  color: #9f1d1d;
  font-weight: 700;
}

.responsible {
  margin: 14px 0 10px;
  color: #3b3834;
  line-height: 1.6;
}

.conditions {
  display: inline-block;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  font-weight: 400;
}

.country {
  padding: 14px;
  border: 1px solid var(--ink);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 800ms ease var(--delay, 0ms), transform 800ms cubic-bezier(.2,.8,.2,1) var(--delay, 0ms);
}

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

@keyframes gateIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1120px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .group-profile,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .partnership,
  .split-feature,
  .contact-shell {
    grid-template-columns: 1fr;
  }

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

  .story-large {
    grid-row: auto;
    min-height: 520px;
  }

  .split-image {
    height: 420px;
  }

  .partnership-media,
  .partnership-copy {
    min-height: auto;
  }

  .partnership-media {
    min-height: 380px;
    border-radius: 8px 8px 0 0;
  }

  .partnership-copy {
    border-left: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
  }

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

@media (max-width: 820px) {
  .site-header {
    inset: auto !important;
    top: 12px !important;
    right: 12px !important;
    bottom: auto !important;
    left: 12px !important;
    width: auto;
    height: 58px !important;
    min-height: 58px;
    max-height: 58px;
    padding: 8px 10px 8px 12px;
    border-radius: 999px;
    align-items: center;
    box-sizing: border-box;
    overflow: visible;
  }

  .brand {
    width: 42px;
    height: 42px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(230px, calc(100vw - 24px));
    display: grid;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  .nav a {
    text-align: center;
  }

  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .contact-shell {
    padding: 16px;
  }

  .contact-intro {
    padding: 8px;
  }

  .contact-intro h2 {
    font-size: clamp(2.6rem, 12vw, 4.4rem);
  }

  .hero {
    padding-top: 130px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.74) 52%, rgba(255,255,255,0.28) 100%),
      url("assets/hero-bottling.png") 62% center / cover no-repeat;
  }

  .hero-card {
    justify-self: start;
    margin: 20px 0 0;
  }

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

  .editorial-intro {
    padding: 72px 18px 34px;
  }

  .visual-story {
    padding: 34px 18px 58px;
  }

  .story-panel,
  .story-large {
    min-height: 420px;
  }

  .image-stack img {
    min-height: 360px;
  }

  .floating-note {
    left: 16px;
  }

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

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

  .profile-card {
    min-height: auto;
  }

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

  .footer-main {
    padding-top: 62px;
    padding-bottom: 56px;
  }

  .footer-bottom nav {
    gap: 14px 20px;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 96px 18px;
  }

  h1 {
    font-size: 2.85rem;
    line-height: 1.12;
  }

  h2 {
    font-size: 2.7rem;
  }

  .brand span {
    display: none;
  }

  .band {
    grid-template-columns: 1fr;
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .age-row button {
    height: 62px;
  }

  .age-panel {
    max-height: 86vh;
  }
}

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

  .parallax-layer {
    transform: none !important;
  }
}
