/* ============================================================
   WATERFORDS COCKTAILS — style.css
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --clr-spritz:       #FF6A0D;
  --clr-spritz-light: #FF8C42;
  --clr-spritz-dark:  #E55A00;
  --clr-navy:         #17315D;
  --clr-navy-light:   #1e3f78;
  --clr-navy-dark:    #0f2040;
  --clr-white:        #FFFFFF;
  --clr-off-white:    #F9F7F4;
  --clr-light-grey:   #F2F0ED;
  --clr-mid-grey:     #D8D4CE;
  --clr-text:         #1A1A1A;
  --clr-text-light:   #5A5550;
  --clr-text-muted:   #9A948E;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   8rem;
  --space-2xl: 12rem;
  --container:  1280px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-full: 999px;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration:   0.4s;
  --z-base:     1;
  --z-sticky:   50;
  --z-whatsapp: 90;
  --z-header:   100;
  --z-menu:     110;
  --z-toggle:   115;
  --z-modal:    200;
  --z-top:      300;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 500; }
h5 { font-size: 1rem; font-weight: 600; }
p { font-family: var(--font-sans); font-size: clamp(0.9rem, 1.2vw, 1.05rem); line-height: 1.75; color: var(--clr-text-light); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-md); }

.section-label { display: inline-block; font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clr-spritz); margin-bottom: var(--space-sm); }
.section-label--navy { color: var(--clr-navy); }
.section-label--white { color: rgba(255,255,255,0.7); }
.text-white { color: var(--clr-white); }
.text-navy  { color: var(--clr-navy); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
  min-height: 44px;
}
.btn-primary { background: var(--clr-spritz); color: var(--clr-white); border: 2px solid var(--clr-spritz); }
.btn-primary:hover { background: var(--clr-spritz-dark); border-color: var(--clr-spritz-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,106,13,0.3); }
.btn-outline { background: transparent; color: var(--clr-white); border: 1px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--clr-white); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--clr-navy); border: 1px solid var(--clr-navy); }
.btn-outline-dark:hover { background: var(--clr-navy); color: var(--clr-white); transform: translateY(-2px); }
.btn-arrow::after { content: '→'; transition: transform var(--duration) var(--ease-out); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  padding: 1.25rem 0;
  transition: background var(--duration) var(--ease-out), padding var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
  background: transparent;
}
.site-header.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 0.875rem 0; box-shadow: 0 1px 0 rgba(0,0,0,0.08); }
body.menu-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.header-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.header-logo { display: flex; align-items: center; flex-shrink: 0; transition: opacity var(--duration) var(--ease-out); }
.header-logo img { height: 44px; width: auto; transition: filter var(--duration) var(--ease-out), transform var(--duration) var(--ease-out); }
.header-logo:hover img { transform: scale(1.03); }

.site-header:not(.scrolled) .header-logo img { filter: none; }
.site-header.scrolled .header-logo img { filter: brightness(0) saturate(100%) invert(15%) sepia(60%) saturate(800%) hue-rotate(193deg) brightness(85%); }

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--duration) var(--ease-out);
  position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--clr-spritz); transition: width var(--duration) var(--ease-out); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.site-header.scrolled .nav-links a { color: var(--clr-navy); }
.nav-links a:hover { color: var(--clr-spritz); }
.site-header:not(.scrolled) .nav-links a:hover { color: var(--clr-white); }

/* ── FLAG ICONS (SVG) ── */
.flag-icon {
  display: inline-block;
  width: 22px;
  height: 14px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  flex-shrink: 0;
  line-height: 0;
}
.flag-icon svg { width: 100%; height: 100%; display: block; }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher { position: relative; display: flex; align-items: center; }
.lang-btn {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  background: transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  min-height: 44px;
  color: rgba(255,255,255,0.9);
}
.lang-btn .lang-label { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; }
.lang-btn .chevron { font-size: 0.55rem; margin-left: 2px; transition: transform var(--duration) var(--ease-out); }

.site-header.scrolled .lang-btn { color: var(--clr-navy); border-color: rgba(23,49,93,0.25); }
.lang-btn:hover { background: rgba(255,255,255,0.15); }
.site-header.scrolled .lang-btn:hover { background: var(--clr-light-grey); }
.lang-switcher.open .lang-btn .chevron { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--clr-white);
  border: 1px solid var(--clr-mid-grey);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 170px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
  z-index: var(--z-top);
}
.lang-switcher.open .lang-dropdown { opacity: 1; transform: translateY(0); pointer-events: all; }

.lang-option {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-text);
  cursor: pointer;
  min-height: 44px;
  transition: background var(--duration) var(--ease-out);
}
.lang-option:hover { background: var(--clr-light-grey); }
.lang-option.active { background: var(--clr-off-white); color: var(--clr-spritz); font-weight: 600; }

/* ── HAMBURGER ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 13px 10px;
  z-index: var(--z-toggle);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease-out);
  transform-origin: center;
}
.site-header.scrolled .menu-toggle span { background: var(--clr-navy); }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #17315D;
  background-color: #17315D;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: var(--z-menu);
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 3rem;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; opacity: 1; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0; margin-bottom: auto; }
.mobile-menu nav a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--clr-white);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--duration) var(--ease-out), padding var(--duration) var(--ease-out);
  opacity: 0;
  transform: translateX(20px);
}
.mobile-menu.open nav a {
  opacity: 1; transform: translateX(0);
  transition: color var(--duration) var(--ease-out), padding var(--duration) var(--ease-out), opacity 0.4s var(--ease-out) calc(var(--i, 0) * 0.06s), transform 0.4s var(--ease-out) calc(var(--i, 0) * 0.06s);
}
.mobile-menu nav a:hover { color: var(--clr-spritz); padding-left: 0.5rem; }

.mobile-menu-bottom { display: flex; flex-direction: column; gap: 1rem; padding-top: 2rem; }
.mobile-lang { display: flex; gap: 0.75rem; }
.mobile-lang button {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  background: transparent;
  min-height: 44px;
  transition: all var(--duration) var(--ease-out);
}
.mobile-lang button.active, .mobile-lang button:hover {
  color: var(--clr-white);
  border-color: var(--clr-spritz);
  background: rgba(255,106,13,0.15);
}
.mobile-menu-brand { font-size: 0.72rem; color: rgba(255,255,255,0.3); font-family: var(--font-sans); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.75rem; }

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; overflow: hidden; background: var(--clr-navy-dark); padding-top: 5rem; padding-bottom: 7rem; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0f2040 0%, #17315D 40%, #1a3d6e 70%, #0f2040 100%); z-index: 0; }
.hero-bg-image { position: absolute; inset: 0; z-index: 1; }
.hero-bg-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,32,64,0.85) 0%, rgba(23,49,93,0.6) 50%, rgba(255,106,13,0.08) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 860px; }

.hero-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--clr-spritz);
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero-label::before { content: ''; width: 24px; height: 1px; background: var(--clr-spritz); }
.hero h1 { color: var(--clr-white); margin-bottom: 0.25rem; opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s var(--ease-out) 0.35s forwards; }
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.65); }
.hero h1 .accent { color: var(--clr-spritz); font-style: italic; }
.hero-sub { max-width: 520px; color: rgba(255,255,255,0.65); font-size: clamp(0.95rem, 1.5vw, 1.1rem); margin: 1.5rem 0 2.5rem; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s var(--ease-out) 0.55s forwards; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s var(--ease-out) 0.7s forwards; }

.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  animation: fadeIn 1s var(--ease-out) 1.2s both;
}
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollLine 1.5s ease-in-out infinite; }

/* ── SECTIONS ── */
.section { padding: var(--space-xl) 0; }
.section-sm { padding: var(--space-lg) 0; }
.section-dark { background: var(--clr-navy-dark); }
.section-navy { background: var(--clr-navy); }
.section-light { background: var(--clr-off-white); }
.section-cream { background: var(--clr-light-grey); }

/* ── ABOUT SNIPPET ── */
.about-snippet { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-snippet-text h2 { margin-bottom: 1.25rem; color: var(--clr-navy); }
.about-snippet-text p { margin-bottom: 2rem; }
.about-snippet-visual { position: relative; }
.about-snippet-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; }
.about-snippet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.about-snippet-img:hover img { transform: scale(1.03); }

.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 110px; height: 110px;
  background: var(--clr-spritz);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--clr-white);
  box-shadow: 0 8px 24px rgba(255,106,13,0.35);
}
.about-badge .badge-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; line-height: 1; }
.about-badge .badge-text { font-family: var(--font-sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }

/* ── FLAVOURS ── */
.flavours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.flavour-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--clr-off-white);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.flavour-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
.flavour-card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.flavour-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.flavour-card:hover .flavour-card-img img { transform: scale(1.06); }
.flavour-card-body { padding: 1.75rem; }
.flavour-badge { display: inline-block; font-family: var(--font-sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: var(--radius-full); background: var(--clr-spritz); color: var(--clr-white); margin-bottom: 0.75rem; }
.flavour-card h3 { color: var(--clr-navy); margin-bottom: 0.75rem; }
.flavour-card p { font-size: 0.9rem; margin-bottom: 1.25rem; }
.flavour-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.flavour-tag { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500; padding: 0.3rem 0.75rem; border-radius: var(--radius-full); border: 1px solid var(--clr-mid-grey); color: var(--clr-text-light); background: var(--clr-white); }

/* ── COMING SOON SUBTLE NOTE ── */
.coming-soon-note {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-style: italic;
}
.coming-soon-note strong { color: var(--clr-spritz); font-weight: 600; font-style: normal; }

/* ── PRODUCT HERO ── */
.product-hero { background: linear-gradient(135deg, var(--clr-navy-dark) 0%, #1a3d6e 100%); padding: 8rem 0 6rem; position: relative; overflow: hidden; }
.product-hero::before { content: ''; position: absolute; right: -10%; top: -20%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,106,13,0.12) 0%, transparent 70%); pointer-events: none; }
.product-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.product-hero-text { color: var(--clr-white); }
.product-hero-text h1 { color: var(--clr-white); margin-bottom: 1.25rem; }
.product-hero-text h1 span { color: var(--clr-spritz); }
.product-hero-text p { color: rgba(255,255,255,0.7); max-width: 480px; margin-bottom: 2rem; }
.product-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.product-tag { display: flex; align-items: center; gap: 0.4rem; font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.5rem 1rem; border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); min-height: 44px; }
.product-hero-visual { position: relative; display: flex; justify-content: center; }
.product-can-img { position: relative; z-index: 1; }
.product-can-img img { max-height: 520px; width: auto; margin: 0 auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4)); transition: transform 0.6s var(--ease-out); }
.product-can-img:hover img { transform: translateY(-8px) rotate(2deg); }

/* ── VIDEO SECTION ── */
.video-section { position: relative; background: var(--clr-light-grey); padding: var(--space-xl) 0; }
.video-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.video-text h2 { color: var(--clr-navy); margin-bottom: 1rem; }
.video-text p { max-width: 420px; }
.video-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.15); background: #000; aspect-ratio: 16/9; }
.video-wrapper video { width: 100%; height: 100%; display: block; object-fit: cover; }
.video-play-btn { display: none; }

/* ── RETAILERS STRIP ── */
.retailers-section { padding: var(--space-lg) 0; }
.retailers-strip { overflow: hidden; position: relative; padding: 2rem 0; }
.retailers-strip::before, .retailers-strip::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.retailers-strip::before { left: 0; background: linear-gradient(to right, var(--clr-white), transparent); }
.retailers-strip::after { right: 0; background: linear-gradient(to left, var(--clr-white), transparent); }
.retailers-track { display: flex; align-items: center; gap: 0; animation: scrollTrack 24s linear infinite; width: max-content; }
.retailers-track:hover { animation-play-state: paused; }

/* Equal-width slots so every logo gets the same horizontal space */
.retailer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 220px;
  height: 80px;
  padding: 0 1rem;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out), filter var(--duration) var(--ease-out);
}
.retailer-logo:hover { opacity: 1; filter: none; transform: scale(1.05); }
.retailer-logo img { max-height: 50px; max-width: 100%; width: auto; height: auto; object-fit: contain; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--clr-spritz); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 70%); pointer-events: none; }
.cta-strip h2 { color: var(--clr-white); margin-bottom: 0.75rem; position: relative; z-index: 1; }
.cta-strip p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2rem; position: relative; z-index: 1; }

/* ── FOOTER ── */
.site-footer { background: var(--clr-navy-dark); color: var(--clr-white); padding: var(--space-xl) 0 var(--space-md); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: var(--space-lg); border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: var(--space-md); }
.footer-brand img { height: 50px; width: auto; filter: brightness(0) invert(1) opacity(0.9); margin-bottom: 1rem; transition: transform var(--duration) var(--ease-out); }
.footer-brand img:hover { transform: scale(1.03); }
.footer-tagline { font-family: var(--font-serif); font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.55); line-height: 1.5; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--duration) var(--ease-out);
}
.social-link:hover { background: var(--clr-spritz); border-color: var(--clr-spritz); color: var(--clr-white); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

.footer-col h5 { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clr-spritz); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--duration) var(--ease-out); }
.footer-col ul li a:hover { color: var(--clr-white); }
.footer-col address { font-style: normal; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col address a, .footer-col address span { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--duration) var(--ease-out); }
.footer-col address a:hover { color: var(--clr-white); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color var(--duration) var(--ease-out); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clr-navy); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.875rem 1rem;
  border: 1px solid var(--clr-mid-grey);
  border-radius: var(--radius-md);
  font-family: var(--font-sans); font-size: 0.9rem;
  color: var(--clr-text); background: var(--clr-white);
  transition: border-color var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
  min-height: 44px;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--clr-spritz); box-shadow: 0 0 0 3px rgba(255,106,13,0.12); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success { display: none; padding: 1rem 1.5rem; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); border-radius: var(--radius-md); color: #15803d; font-size: 0.9rem; font-weight: 500; }
.contact-info h3 { color: var(--clr-navy); margin-bottom: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--clr-light-grey); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--clr-spritz); }
.contact-info-icon svg { width: 18px; height: 18px; fill: currentColor; }
.contact-info-text { display: flex; flex-direction: column; }
.contact-info-text strong { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clr-navy); margin-bottom: 0.2rem; }
.contact-info-text span, .contact-info-text a { font-size: 0.9rem; color: var(--clr-text-light); }
.contact-info-text a:hover { color: var(--clr-spritz); }
.map-wrapper { margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.map-wrapper iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ── WHERE TO BUY ── */
.channels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 3rem 0; }
.channel-card { padding: 2rem 1.5rem; border-radius: var(--radius-lg); background: var(--clr-off-white); border: 1px solid var(--clr-mid-grey); text-align: center; transition: all var(--duration) var(--ease-out); }
.channel-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: var(--clr-spritz); }
.channel-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--clr-spritz), var(--clr-spritz-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.4rem; }
.channel-card h4 { color: var(--clr-navy); margin-bottom: 0.5rem; }
.channel-card p { font-size: 0.85rem; }

/* ── ABOUT PAGE ── */
.about-intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.about-intro-text h1 { color: var(--clr-navy); margin-bottom: 1.5rem; }
.about-intro-text p { margin-bottom: 1.25rem; }
.about-img-stack { position: relative; height: 520px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 80%; height: 80%; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary { position: absolute; bottom: 0; right: 0; width: 55%; height: 55%; border-radius: var(--radius-lg); overflow: hidden; border: 4px solid var(--clr-white); }
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { padding: 2.5rem 2rem; background: var(--clr-white); border-radius: var(--radius-lg); border: 1px solid var(--clr-mid-grey); transition: all var(--duration) var(--ease-out); }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: var(--clr-spritz); }
.value-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 300; color: var(--clr-spritz); opacity: 0.4; line-height: 1; margin-bottom: 1rem; }
.value-card h4 { color: var(--clr-navy); margin-bottom: 0.5rem; }

/* ── TIMO ── */
.founder-section { padding: var(--space-xl) 0; }
.founder-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: center; }
.founder-portrait { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 4; position: relative; }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-text h2 { color: var(--clr-navy); margin-bottom: 0.25rem; }
.founder-name-sub { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clr-spritz); margin-bottom: 1.5rem; }
.founder-text p { margin-bottom: 1rem; }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--clr-navy-dark) 0%, #1a3d6e 100%); padding: 9rem 0 5rem; position: relative; overflow: hidden; text-align: center; }
.page-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: var(--clr-white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero h1 { color: var(--clr-white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto; }

/* ── PRIVACY ── */
.privacy-content { max-width: 760px; margin: 0 auto; }
.privacy-content h2 { font-size: 1.5rem; color: var(--clr-navy); margin: 2.5rem 0 0.75rem; }
.privacy-content p { margin-bottom: 1rem; }
.privacy-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-content ul li { font-size: 0.9rem; color: var(--clr-text-light); margin-bottom: 0.4rem; }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; max-width: 480px; background: var(--clr-navy-dark); color: var(--clr-white); padding: 1.25rem 1.5rem; border-radius: var(--radius-lg); box-shadow: 0 16px 48px rgba(0,0,0,0.25); z-index: var(--z-modal); display: flex; flex-direction: column; gap: 1rem; animation: slideUp 0.5s var(--ease-out) 1s both; }
.cookie-banner.hidden { display: none; }
.cookie-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.cookie-btns { display: flex; gap: 0.75rem; }
.cookie-btns button { flex: 1; padding: 0.65rem 1rem; border-radius: var(--radius-full); font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; min-height: 44px; transition: all var(--duration) var(--ease-out); }
.cookie-accept { background: var(--clr-spritz); color: var(--clr-white); border: 2px solid var(--clr-spritz); }
.cookie-accept:hover { background: var(--clr-spritz-dark); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); }
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--clr-white); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollLine { 0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 1; } 50% { transform: scaleY(1); transform-origin: top; opacity: 0.6; } }
@keyframes scrollTrack { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes slideUp { from { transform: translateY(120%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.tilt-card { transform-style: preserve-3d; transition: transform 0.15s ease; }

/* Footer bottom — drie kolommen: copy links, credit gecentreerd, privacy rechts */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.footer-copy { justify-self: start; }
.footer-credit {
  justify-self: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}
.footer-credit a:hover {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
}
.footer-legal { justify-self: end; }

@media (max-width: 768px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-copy,
  .footer-credit,
  .footer-legal { justify-self: center; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-intro-grid { gap: 3rem; }
  .founder-inner { gap: 3rem; }
  .product-hero-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .section { padding: var(--space-lg) 0; }
  .section-sm { padding: var(--space-md) 0; }

  /* About snippet — stack with visual ON TOP (centered) */
  .about-snippet { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .about-snippet-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .about-snippet-text { display: flex; flex-direction: column; align-items: center; }
  .about-snippet-text .btn { align-self: center; }
  .about-badge { right: 0; bottom: -1rem; width: 90px; height: 90px; }
  .about-badge .badge-num { font-size: 1.5rem; }

  .video-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .video-text { order: 1; }
  .video-text p { margin-left: auto; margin-right: auto; }
  .video-wrapper { order: 2; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .channels-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* About page */
  .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .about-intro-text { display: flex; flex-direction: column; align-items: center; }
  .about-intro-text .btn { align-self: center; }
  .about-img-stack { height: 320px; order: -1; max-width: 420px; margin: 0 auto; width: 100%; }

  /* Founder: portrait on top, centered */
  .founder-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .founder-portrait { aspect-ratio: 3/4; max-width: 320px; margin: 0 auto; width: 100%; }
  .founder-text { display: flex; flex-direction: column; align-items: center; }
  .founder-text .btn { align-self: center; }

  /* Product page */
  .product-hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .product-hero-visual { order: -1; }
  .product-can-img img { max-height: 320px; }
  .product-badges { justify-content: center; }

  /* Flavours page — center text + images */
  .product-gallery { grid-template-columns: 1fr !important; grid-template-rows: auto !important; max-width: 480px; margin: 0 auto; }
  .product-gallery-main { grid-row: 1 !important; aspect-ratio: 4/3 !important; }

  /* Section heading containers always centered */
  .section > .container > .reveal,
  .section > .container > div[style*="text-align"] { text-align: center; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand img { margin: 0 auto 1rem; }
  .footer-col address { align-items: center; }
  .footer-col ul { align-items: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .page-hero { padding: 8rem 0 4rem; }
  .retailer-logo { width: 160px; height: 60px; }
  .retailer-logo img { max-height: 38px; }
}

@media (max-width: 480px) {
  :root { --space-lg: 3rem; --space-xl: 5rem; }
  .container { padding: 0 1.25rem; }
  .channels-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .flavours-grid { grid-template-columns: 1fr; }
  .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .about-img-stack { height: 260px; }
  .about-img-secondary { width: 48%; height: 48%; }
  .retailer-logo { width: 140px; height: 56px; }
}

/* ============================================================
   AANPASSINGEN — header rand, hero titel, page-hero boog,
   partner grid, mobiele logo's
   ============================================================ */

/* Header randje onderzijde (standaard wit, gescrolld navy) */
.site-header {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.site-header.scrolled {
  border-bottom: 1px solid rgba(23,49,93,0.12);
}

/* Hero titel "Waterfords Cocktails" groter */
.hero-label--lg {
  font-size: 0.95rem !important;
  letter-spacing: 0.22em;
}

/* Page-hero boog lager zodat tekst niet te dicht bij rand eindigt */
.page-hero { padding: 9rem 0 7rem !important; }
.page-hero::after { height: 45px !important; }

/* Partner grid op where-to-buy (5 logo's, gelijke afstand) */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

/* Mobiele logo's groter — retailers strip op homepage */
@media (max-width: 768px) {
  .retailer-logo { width: 200px !important; height: 90px !important; }
  .retailer-logo img { max-height: 64px !important; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 480px) {
  .retailer-logo { width: 180px !important; height: 80px !important; }
  .retailer-logo img { max-height: 58px !important; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}