/* ================================================================
   ATLANTIS BEVCO — v3.css
   Scope: v3.html only. Does NOT touch css/style.css.
   Design tokens match ATLANTIS_BEVCO_WEB_STYLE_GUIDE.md
   ================================================================ */

/* ---- Design Tokens -------------------------------------------- */
:root {
  --v3-blue:          #0B4F9F;
  --v3-blue-dark:     #0a3e7e;
  --v3-blue-deeper:   #08306a;
  --v3-white:         #ffffff;
  --v3-gold:          #E0B44C;
  --v3-gold-dark:     #c59b35;
  --v3-slate-navy:    #1F2A37;
  --v3-cool-gray:     #6B7280;
  --v3-light-gray:    #E5E7EB;
  --v3-off-white:     #F9FAFB;
  --v3-body-text:     #1F2A37;
  --v3-muted-text:    #4B5563;

  --v3-font-serif:    'Cinzel', 'Playfair Display', serif;
  --v3-font-sans:     'Inter', system-ui, -apple-system, sans-serif;

  --v3-max-width:     1200px;
  --v3-section-pad-y: 80px;
  --v3-section-pad-x: 24px;

  --v3-transition:    150ms ease;
  --v3-transition-md: 220ms ease;

  --v3-radius:        4px;
  --v3-radius-lg:     8px;
}

/* ---- Global Reset (v3 scope only) ----------------------------- */
.v3-skip-link,
.v3-navbar,
.v3-hero,
.v3-proof-strip,
.v3-spotlight,
.v3-credential-section,
.v3-brand-section,
.v3-contact-section,
.v3-footer {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* ---- Skip Link ------------------------------------------------- */
.v3-skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--v3-gold);
  color: var(--v3-blue);
  font-family: var(--v3-font-sans);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--v3-radius);
  text-decoration: none;
  transition: top var(--v3-transition);
}
.v3-skip-link:focus {
  top: 16px;
}

/* ---- Focus visible — gold ring -------------------------------- */
*:focus-visible {
  outline: 2px solid var(--v3-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---- Container ------------------------------------------------- */
.v3-container {
  max-width: var(--v3-max-width);
  margin: 0 auto;
  padding-left: var(--v3-section-pad-x);
  padding-right: var(--v3-section-pad-x);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.v3-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--v3-blue);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.v3-navbar-inner {
  max-width: var(--v3-max-width);
  margin: 0 auto;
  padding: 0 var(--v3-section-pad-x);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.v3-navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.v3-navbar-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.v3-navbar-logo-text {
  font-family: var(--v3-font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--v3-white);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.v3-navbar-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.v3-navbar-menu li a {
  font-family: var(--v3-font-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color var(--v3-transition);
  padding: 4px 0;
}
.v3-navbar-menu li a:hover {
  color: var(--v3-white);
}
.v3-nav-cta-item {
  margin-left: 8px;
}
.v3-nav-cta-link {
  display: inline-block;
  padding: 8px 18px !important;
  background: var(--v3-gold) !important;
  color: var(--v3-blue) !important;
  font-weight: 600 !important;
  border-radius: var(--v3-radius);
  transition: background var(--v3-transition), color var(--v3-transition) !important;
}
.v3-nav-cta-link:hover {
  background: var(--v3-gold-dark) !important;
  color: var(--v3-blue) !important;
}

/* Hamburger */
.v3-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--v3-radius);
}
.v3-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--v3-white);
  border-radius: 1px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.v3-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.v3-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.v3-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.v3-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--v3-blue-dark);
  padding: 8px 24px 16px;
  gap: 2px;
}
.v3-mobile-menu a {
  font-family: var(--v3-font-sans);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
  transition: color var(--v3-transition);
}
.v3-mobile-menu a:last-child { border-bottom: none; }
.v3-mobile-menu a:hover { color: var(--v3-white); }
.v3-mobile-menu-cta {
  margin-top: 8px;
  padding: 12px 0 !important;
  color: var(--v3-gold) !important;
  font-weight: 600 !important;
  border-bottom: none !important;
}
.v3-mobile-menu-link {
  color: rgba(255,255,255,0.7) !important;
}
.v3-mobile-menu.open {
  display: flex;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.v3-btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--v3-gold);
  color: var(--v3-blue);
  font-family: var(--v3-font-sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--v3-radius);
  border: none;
  cursor: pointer;
  transition: background var(--v3-transition), transform var(--v3-transition);
  letter-spacing: 0.02em;
}
.v3-btn-primary:hover {
  background: var(--v3-gold-dark);
  transform: translateY(-1px);
}
.v3-btn-primary:active {
  transform: translateY(0);
}

.v3-btn-outline {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--v3-blue);
  border: 1.5px solid var(--v3-blue);
  font-family: var(--v3-font-sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--v3-radius);
  cursor: pointer;
  transition: background var(--v3-transition), color var(--v3-transition);
  letter-spacing: 0.02em;
}
.v3-btn-outline:hover {
  background: var(--v3-blue);
  color: var(--v3-white);
}

/* Audience split buttons */
.v3-btn-audience {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--v3-radius);
  text-decoration: none;
  transition: background var(--v3-transition), border-color var(--v3-transition);
  min-width: 180px;
}
.v3-btn-audience:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}
.v3-btn-audience-label {
  font-family: var(--v3-font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--v3-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.v3-btn-audience-action {
  font-family: var(--v3-font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--v3-white);
}

/* ================================================================
   HERO
   ================================================================ */
.v3-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 64px; /* navbar height */
  overflow: hidden;
}

.v3-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.v3-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,79,159,0.88) 0%, rgba(8,48,106,0.82) 100%);
}

.v3-hero-content {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 64px var(--v3-section-pad-x);
  max-width: 720px;
  padding-left: max(var(--v3-section-pad-x), calc((100vw - var(--v3-max-width)) / 2 + var(--v3-section-pad-x)));
}

.v3-hero-eyebrow {
  font-family: var(--v3-font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--v3-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.v3-hero-h1 {
  font-family: var(--v3-font-serif);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--v3-white);
  line-height: 1.1;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}

.v3-hero-sub {
  font-family: var(--v3-font-sans);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin: 0 0 28px 0;
  max-width: 580px;
}

.v3-hero-phone {
  margin-bottom: 32px;
}
.v3-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--v3-font-sans);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color var(--v3-transition);
}
.v3-phone-link:hover {
  color: var(--v3-gold);
}

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

.v3-hero-secondary-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ================================================================
   SOCIAL PROOF STRIP
   ================================================================ */
.v3-proof-strip {
  background: var(--v3-slate-navy);
  padding: 36px var(--v3-section-pad-x);
  text-align: center;
}

.v3-proof-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: var(--v3-max-width);
  margin: 0 auto 20px;
}

.v3-proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.v3-proof-number {
  font-family: var(--v3-font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--v3-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.v3-proof-label {
  font-family: var(--v3-font-sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.v3-proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.v3-proof-accounts {
  font-family: var(--v3-font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin: 0 auto;
  max-width: 680px;
  line-height: 1.6;
}

/* ================================================================
   SPOTLIGHT — City Lights Shine
   ================================================================ */
.v3-spotlight {
  background: var(--v3-white);
  padding: var(--v3-section-pad-y) var(--v3-section-pad-x);
}

.v3-spotlight-inner {
  max-width: var(--v3-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-radius: var(--v3-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,79,159,0.10);
}

.v3-spotlight-image {
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.v3-spotlight-content {
  background: var(--v3-blue);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.v3-spotlight-label {
  font-family: var(--v3-font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--v3-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v3-spotlight-title {
  font-family: var(--v3-font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--v3-white);
  margin: 0;
  line-height: 1.15;
}

.v3-spotlight-body {
  font-family: var(--v3-font-sans);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin: 0;
}

/* ================================================================
   CREDENTIAL SECTION — John Paddon
   ================================================================ */
.v3-credential-section {
  background: var(--v3-off-white);
  padding: var(--v3-section-pad-y) var(--v3-section-pad-x);
}

.v3-credential-card {
  max-width: var(--v3-max-width);
  margin: 0 auto 40px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: var(--v3-white);
  border: 1px solid var(--v3-light-gray);
  border-top: 3px solid var(--v3-gold);
  border-radius: var(--v3-radius-lg);
  padding: 48px;
  box-shadow: 0 2px 12px rgba(11,79,159,0.06);
}

.v3-credential-mark {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224,180,76,0.08);
  border-radius: 50%;
  border: 1px solid rgba(224,180,76,0.2);
}

.v3-credential-content {
  flex: 1;
  min-width: 0;
}

.v3-credential-name {
  font-family: var(--v3-font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--v3-blue);
  margin: 0 0 6px 0;
  letter-spacing: 0.02em;
}

.v3-credential-title {
  font-family: var(--v3-font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--v3-gold-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.v3-credential-divider {
  width: 48px;
  height: 2px;
  background: var(--v3-gold);
  margin-bottom: 20px;
}

.v3-credential-body {
  font-family: var(--v3-font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--v3-muted-text);
  line-height: 1.75;
  margin: 0 0 16px 0;
  max-width: 640px;
}

.v3-credential-sub {
  font-family: var(--v3-font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--v3-cool-gray);
  margin: 0;
}

/* Wine brand tags below the credential card */
.v3-wine-brands {
  max-width: var(--v3-max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.v3-wine-tag {
  display: inline-block;
  padding: 7px 14px;
  font-family: var(--v3-font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--v3-blue);
  background: rgba(11,79,159,0.05);
  border: 1px solid rgba(11,79,159,0.18);
  border-radius: var(--v3-radius);
  text-decoration: none;
  transition: background var(--v3-transition), border-color var(--v3-transition);
}
.v3-wine-tag:hover {
  background: rgba(11,79,159,0.12);
  border-color: var(--v3-blue);
}

/* ================================================================
   BRAND GRID SECTION
   ================================================================ */
.v3-brand-section {
  background: var(--v3-white);
  padding: var(--v3-section-pad-y) var(--v3-section-pad-x);
}

.v3-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.v3-section-header h2 {
  font-family: var(--v3-font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--v3-blue);
  margin: 0 0 12px 0;
  letter-spacing: 0.02em;
}
.v3-section-header p {
  font-family: var(--v3-font-sans);
  font-size: 16px;
  color: var(--v3-muted-text);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.v3-section-divider {
  width: 48px;
  height: 2px;
  background: var(--v3-gold);
  margin: 0 auto 20px;
}

/* Filter Tabs */
.v3-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.v3-filter-tab {
  padding: 9px 22px;
  background: transparent;
  border: 1.5px solid var(--v3-light-gray);
  border-radius: 100px;
  font-family: var(--v3-font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--v3-cool-gray);
  cursor: pointer;
  transition: background var(--v3-transition), color var(--v3-transition), border-color var(--v3-transition);
  letter-spacing: 0.03em;
}
.v3-filter-tab:hover {
  border-color: var(--v3-blue);
  color: var(--v3-blue);
}
.v3-filter-tab.active,
.v3-filter-tab[aria-selected="true"] {
  background: var(--v3-blue);
  border-color: var(--v3-blue);
  color: var(--v3-white);
}

/* Brand Grid */
.v3-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.v3-brand-card {
  background: var(--v3-white);
  border: 1px solid var(--v3-light-gray);
  border-radius: var(--v3-radius-lg);
  overflow: hidden;
  transition: box-shadow var(--v3-transition-md), transform var(--v3-transition-md), border-color var(--v3-transition-md);
}
.v3-brand-card:hover {
  box-shadow: 0 6px 20px rgba(11,79,159,0.12);
  transform: translateY(-2px);
  border-color: rgba(11,79,159,0.25);
}
.v3-brand-card.v3-hidden {
  display: none;
}

.v3-brand-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 16px;
  text-decoration: none;
  min-height: 160px;
  gap: 12px;
}
.v3-brand-card img {
  max-width: 100%;
  height: 120px;
  object-fit: contain;
  display: block;
  /* NO grayscale filter — full color per spec */
}
.v3-brand-name {
  font-family: var(--v3-font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--v3-cool-gray);
  text-align: center;
  line-height: 1.4;
}

/* Light-logo brands: white/near-white logos need a dark card background */
.v3-brand-card[data-logo-light="true"] {
  background: var(--v3-blue);
}
.v3-brand-card[data-logo-light="true"] .v3-brand-name {
  color: rgba(255,255,255,0.75);
}
.v3-brand-card[data-logo-light="true"]:hover {
  box-shadow: 0 6px 20px rgba(11,79,159,0.35);
  border-color: rgba(224,180,76,0.4);
}

.v3-no-results {
  text-align: center;
  font-family: var(--v3-font-sans);
  color: var(--v3-cool-gray);
  padding: 40px 0;
  font-size: 15px;
}

.v3-brand-cta {
  text-align: center;
  margin-top: 16px;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.v3-contact-section {
  background: var(--v3-off-white);
  padding: var(--v3-section-pad-y) var(--v3-section-pad-x);
}

.v3-contact-inner {
  max-width: var(--v3-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.v3-contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}
.v3-contact-detail h3 {
  font-family: var(--v3-font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--v3-gold-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 6px 0;
}
.v3-contact-detail address {
  font-style: normal;
  font-family: var(--v3-font-sans);
  font-size: 14px;
  color: var(--v3-muted-text);
  line-height: 1.7;
}
.v3-contact-detail p {
  font-family: var(--v3-font-sans);
  font-size: 14px;
  color: var(--v3-muted-text);
  margin: 0;
}
.v3-contact-phone {
  font-family: var(--v3-font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--v3-blue);
  text-decoration: none;
  transition: color var(--v3-transition);
}
.v3-contact-phone:hover {
  color: var(--v3-gold-dark);
}

/* Contact Form */
.v3-contact-form {
  background: var(--v3-white);
  border: 1px solid var(--v3-light-gray);
  border-radius: var(--v3-radius-lg);
  padding: 40px;
  box-shadow: 0 2px 12px rgba(11,79,159,0.05);
}

.v3-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.v3-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.v3-form-group:last-child {
  margin-bottom: 0;
}

.v3-form-group label {
  font-family: var(--v3-font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--v3-body-text);
  letter-spacing: 0.01em;
}
.v3-form-group label span {
  color: var(--v3-gold-dark);
  margin-left: 2px;
}

.v3-form-group input,
.v3-form-group select,
.v3-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--v3-font-sans);
  font-size: 14px;
  color: var(--v3-body-text);
  background: var(--v3-white);
  border: 1.5px solid var(--v3-light-gray);
  border-radius: var(--v3-radius);
  outline: none;
  transition: border-color var(--v3-transition);
  -webkit-appearance: none;
  appearance: none;
  min-height: 44px; /* touch target */
}
.v3-form-group input::placeholder,
.v3-form-group textarea::placeholder {
  color: #9CA3AF;
}
.v3-form-group input:focus,
.v3-form-group select:focus,
.v3-form-group textarea:focus {
  border-color: var(--v3-blue);
}
.v3-form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.v3-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.v3-form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.v3-form-note {
  font-family: var(--v3-font-sans);
  font-size: 12px;
  color: var(--v3-cool-gray);
  margin: 0;
}

#v3-submit-btn {
  min-width: 140px;
  cursor: pointer;
}
#v3-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.v3-form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(11,79,159,0.06);
  border: 1px solid rgba(11,79,159,0.2);
  border-radius: var(--v3-radius);
  font-family: var(--v3-font-sans);
  font-size: 14px;
  color: var(--v3-blue);
  font-weight: 500;
}
.v3-form-success svg {
  flex-shrink: 0;
  stroke: var(--v3-blue);
}
.v3-form-error {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: var(--v3-radius);
  font-family: var(--v3-font-sans);
  font-size: 14px;
  color: #991b1b;
}
.v3-form-error a {
  color: var(--v3-blue);
  font-weight: 600;
}

/* ================================================================
   FOOTER
   ================================================================ */
.v3-footer {
  background: var(--v3-blue);
  color: var(--v3-white);
  padding: 56px var(--v3-section-pad-x) 0;
}

.v3-footer-inner {
  max-width: var(--v3-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.v3-footer-brand img {
  display: block;
  max-width: 140px;
  height: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}
.v3-footer-brand p {
  font-family: var(--v3-font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.6;
}

.v3-footer-nav h4,
.v3-footer-contact h4 {
  font-family: var(--v3-font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--v3-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}
.v3-footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v3-footer-nav ul a {
  font-family: var(--v3-font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--v3-transition);
}
.v3-footer-nav ul a:hover {
  color: var(--v3-white);
}

.v3-footer-contact address {
  font-style: normal;
  font-family: var(--v3-font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 12px;
}
.v3-footer-phone {
  display: block;
  font-family: var(--v3-font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--v3-gold);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color var(--v3-transition);
}
.v3-footer-phone:hover {
  color: var(--v3-white);
}

.v3-footer-social {
  display: flex;
  gap: 16px;
}
.v3-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background var(--v3-transition), border-color var(--v3-transition), color var(--v3-transition);
}
.v3-footer-social a:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: var(--v3-white);
}

.v3-footer-bottom {
  max-width: var(--v3-max-width);
  margin: 0 auto;
  padding: 20px 0;
}
.v3-footer-bottom p {
  font-family: var(--v3-font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  text-align: center;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
  .v3-contact-inner {
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }
  .v3-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .v3-footer-brand {
    grid-column: 1 / -1;
  }
}

/* Tablet */
@media (max-width: 768px) {
  :root {
    --v3-section-pad-y: 56px;
  }

  /* Nav */
  .v3-navbar-menu {
    display: none;
  }
  .v3-hamburger {
    display: flex;
  }

  /* Hero */
  .v3-hero-content {
    padding-left: var(--v3-section-pad-x);
    padding-right: var(--v3-section-pad-x);
    max-width: 100%;
  }
  .v3-hero-secondary-btns {
    flex-direction: column;
  }
  .v3-btn-audience {
    min-width: auto;
    width: 100%;
    max-width: 280px;
  }

  /* Proof strip */
  .v3-proof-strip-inner {
    gap: 0;
  }
  .v3-proof-stat {
    padding: 0 20px;
  }
  .v3-proof-number {
    font-size: 28px;
  }

  /* Spotlight */
  .v3-spotlight-inner {
    grid-template-columns: 1fr;
  }
  .v3-spotlight-image {
    min-height: 240px;
  }
  .v3-spotlight-content {
    padding: 40px 32px;
  }

  /* Credential */
  .v3-credential-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
  }

  /* Contact */
  .v3-contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .v3-contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .v3-contact-detail {
    min-width: 140px;
  }

  /* Footer */
  .v3-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .v3-footer-brand {
    grid-column: auto;
  }
}

/* Mobile */
@media (max-width: 480px) {
  :root {
    --v3-section-pad-y: 48px;
    --v3-section-pad-x: 16px;
  }

  .v3-hero {
    min-height: 100svh;
  }

  /* Proof strip — 2x2 on mobile */
  .v3-proof-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .v3-proof-divider {
    display: none;
  }
  .v3-proof-stat {
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.08);
  }

  /* Spotlight */
  .v3-spotlight-content {
    padding: 32px 24px;
  }
  .v3-spotlight-title {
    font-size: 28px;
  }

  /* Brand grid — 2 columns */
  .v3-brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Form rows go single column */
  .v3-form-row {
    grid-template-columns: 1fr;
  }
  .v3-contact-form {
    padding: 24px 20px;
  }

  /* Form submit */
  .v3-form-submit {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .v3-btn-primary {
    width: 100%;
    text-align: center;
  }

  /* Filter tabs */
  .v3-filter-tabs {
    gap: 6px;
  }
  .v3-filter-tab {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .v3-brand-card,
  .v3-btn-primary,
  .v3-btn-audience,
  .v3-wine-tag,
  .v3-filter-tab {
    transition: none;
  }
  .v3-btn-primary:hover {
    transform: none;
  }
  .v3-brand-card:hover {
    transform: none;
  }
}
