/* AGLO BEVERAGES — corporate site */
:root {
  --red: #c41e2a;
  --red-dark: #9a1520;
  --red-light: #e83545;
  --gold: #c9a227;
  --charcoal: #1a1a1a;
  --gray: #5c5c5c;
  --gray-light: #f4f2ef;
  --white: #ffffff;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --header-h: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

body.age-gate-active {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-intro {
  color: var(--gray);
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

/* —— Age gate —— */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.92), rgba(154, 21, 32, 0.88)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 1.5rem;
  transition: opacity var(--transition), visibility var(--transition);
}

.age-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate__card {
  background: var(--white);
  border-radius: 12px;
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.age-gate__logo {
  width: 140px;
  margin: 0 auto 1.5rem;
}

.age-gate__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.age-gate__tagline {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.age-gate__question {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.age-gate__legal {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.5;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: #ccc;
}

.btn--outline:hover {
  border-color: var(--charcoal);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.site-header.is-scrolled .nav-link {
  color: var(--charcoal);
}

.site-header.is-scrolled .nav-link:hover {
  color: var(--red);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--charcoal);
}

.site-header:not(.is-scrolled) .site-logo img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.site-logo img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link.is-active {
  color: var(--gold);
  position: relative;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
}

body.page-inner .site-header .nav-link {
  color: var(--charcoal);
}

body.page-inner .site-header .nav-link:hover,
body.page-inner .site-header .nav-link.is-active {
  color: var(--red);
}

body.page-inner .site-header .nav-link.is-active::after {
  background: var(--red);
}

body.page-inner .site-header .nav-toggle span {
  background: var(--charcoal);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: background var(--transition);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 26, 26, 0.75) 0%, rgba(154, 21, 32, 0.65) 100%),
    url("../images/hero-pattern.svg") center/cover;
  background-color: var(--charcoal);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201, 162, 39, 0.15), transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 3rem) 1.5rem 4rem;
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 2px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* —— Page banner (inner pages) —— */
.page-banner {
  position: relative;
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 26, 26, 0.85) 0%, rgba(154, 21, 32, 0.75) 100%),
    url("../images/hero-pattern.svg") center/cover;
  background-color: var(--charcoal);
}

.page-banner__content {
  position: relative;
  z-index: 1;
}

.page-banner__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-banner__text {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 36rem;
  margin-inline: auto;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.page-actions--center {
  justify-content: center;
  margin-top: 3rem;
}

.btn--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--light:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

/* —— Home product flyer —— */
.home-flyer {
  padding: 5rem 0;
  background: var(--gray-light);
}

.home-flyer__header {
  text-align: center;
  margin-bottom: 2rem;
}

.home-flyer__header .section-intro {
  margin-inline: auto;
}

.home-flyer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin-inline: auto;
}

.home-flyer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.home-flyer__col:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.home-flyer__visual {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.home-flyer__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.home-flyer__col:hover .home-flyer__image {
  transform: scale(1.05);
}

.home-flyer__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.home-flyer__type {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.home-flyer__caption {
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 600;
}

.home-flyer__caption a {
  color: var(--red);
  transition: color var(--transition);
}

.home-flyer__caption a:hover {
  color: var(--red-dark);
}

/* —— Home intro —— */
.home-intro {
  padding: 6rem 0;
  background: var(--white);
}

.home-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.home-brands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-brand-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: var(--gray-light);
  border: 1px solid #e8e4df;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.home-brand-card:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--red);
}

.home-brand-card__img {
  width: 72px;
  height: 96px;
  object-fit: contain;
  flex-shrink: 0;
}

.home-brand-card__name {
  flex: 1;
}

.home-brand-card__arrow {
  font-size: 1.5rem;
  color: var(--red);
  opacity: 0.85;
}

/* —— About —— */
.about {
  padding: 6rem 0;
  background: var(--white);
}

.about--page {
  padding: 4rem 0 6rem;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__logo-wrap {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__logo-wrap img {
  max-width: 280px;
}

.about__accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 120px;
  height: 120px;
  background: var(--red);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.15;
}

.about__text p + p {
  margin-top: 1rem;
  color: var(--gray);
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e8e4df;
}

.highlight__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.highlight__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* —— Products —— */
.products {
  padding: 6rem 0;
  background: var(--gray-light);
}

.products--page {
  padding: 4rem 0 6rem;
}

.products__showcase {
  margin-bottom: 3rem;
  text-align: center;
}

.products__both-image {
  max-width: 720px;
  width: 100%;
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.12));
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.product-card__visual {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--gray-light);
  padding: 1.5rem;
}

.product-card__image {
  width: 100%;
  height: 100%;
  max-height: 240px;
  object-fit: contain;
  transition: transform var(--transition);
}

.product-card:hover .product-card__image {
  transform: scale(1.04);
}

.product-card__body {
  padding: 2rem;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.product-card__desc {
  color: var(--gray);
  font-size: 0.95rem;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.product-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  background: var(--gray-light);
  border-radius: 2px;
  color: var(--charcoal);
}

/* —— Vision / Mission / Values —— */
.values-section {
  padding: 6rem 0;
  background: var(--charcoal);
  color: var(--white);
}

.values-section--page {
  padding: 4rem 0 6rem;
}

.values-section .section-label {
  color: var(--gold);
}

.values-section .section-title {
  color: var(--white);
}

.values-section .section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.vmv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.vmv-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
}

.vmv-card__icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.vmv-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.vmv-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.core-values__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition), border-color var(--transition);
}

.value-item:hover {
  background: rgba(196, 30, 42, 0.2);
  border-color: rgba(196, 30, 42, 0.4);
}

.value-item__icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.value-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* —— CTA banner —— */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.cta-banner__text {
  opacity: 0.9;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

/* —— Contact —— */
.contact {
  padding: 6rem 0;
  background: var(--white);
}

.contact--page {
  padding: 4rem 0 6rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact__item-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact__item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 0.2rem;
}

.contact__item a {
  color: var(--charcoal);
  transition: color var(--transition);
}

.contact__item a:hover {
  color: var(--red);
}

.contact__phones li + li,
.contact__social li + li {
  margin-top: 0.35rem;
}

.contact__social {
  font-size: 0.95rem;
}

.contact__social a {
  color: var(--charcoal);
}

.contact__social-platform {
  font-weight: 600;
}

.contact__social-alt {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.15rem;
  margin-left: 0;
}

.contact__order-link {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e4df;
  font-weight: 600;
}

.contact__order-link a {
  color: var(--red);
}

.footer__address,
.footer__gps {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.footer__gps {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: var(--white);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--red);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* —— Footer —— */
.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand img {
  height: 64px;
  margin-bottom: 1rem;
  filter: brightness(1.1);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links li + li {
  margin-top: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer__bottom p + p {
  margin-top: 0.5rem;
}

/* —— Place order —— */
.container--narrow {
  width: min(720px, 92vw);
}

.order-section {
  padding: 4rem 0 6rem;
  background: var(--white);
}

.order-alert {
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.order-alert--error {
  background: #fde8ea;
  border: 1px solid #f5c2c7;
  color: #842029;
}

.order-alert ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.order-form__section {
  border: none;
  margin: 0 0 2.5rem;
  padding: 0;
}

.order-form__legend {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding: 0;
  width: 100%;
}

.order-form__hint {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.order-products {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.order-product {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: var(--gray-light);
  border-radius: 12px;
  border: 1px solid #e8e4df;
}

.order-product__image-wrap {
  width: 88px;
  height: 110px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-product__image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.order-product__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.order-product__qty-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 0.35rem;
}

.order-product__qty {
  width: 100px;
  padding: 0.6rem 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.order-product__qty:focus {
  outline: none;
  border-color: var(--red);
}

.order-form__summary {
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--gray-light);
  border-radius: 8px;
  font-weight: 600;
  color: var(--charcoal);
}

.order-form__summary--error {
  background: #fde8ea;
  color: #842029;
}

.order-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.order-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.order-field .required {
  color: var(--red);
}

.order-field input,
.order-field textarea,
.order-field select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: var(--white);
}

.order-field input:focus,
.order-field textarea:focus,
.order-field select:focus {
  outline: none;
  border-color: var(--red);
}

.order-field--full {
  grid-column: 1 / -1;
}

.order-form__notice {
  padding: 1.25rem;
  background: var(--gray-light);
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.btn--block {
  width: 100%;
}

.order-success {
  padding: 5rem 0 6rem;
  background: var(--gray-light);
}

.order-success__card {
  background: var(--white);
  border-radius: 12px;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.order-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--red);
  color: var(--white);
  font-size: 2rem;
  line-height: 64px;
  border-radius: 50%;
}

.order-success__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.order-success__ref {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--red);
}

.order-success__text {
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.order-success__summary {
  text-align: left;
  background: var(--gray-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.order-success__summary h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.order-success__summary ul {
  list-style: none;
}

.order-success__summary li + li {
  margin-top: 0.35rem;
}

.order-success__total {
  margin-top: 1rem;
  font-weight: 700;
}

.order-success__help {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.order-success__help a {
  color: var(--red);
  font-weight: 600;
}

.order-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .order-form__grid {
    grid-template-columns: 1fr;
  }

  .order-product {
    flex-direction: column;
    text-align: center;
  }
}

/* —— Underage page —— */
.underage-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  padding: 2rem;
  text-align: center;
}

.underage-card {
  background: var(--white);
  border-radius: 12px;
  padding: 3rem;
  max-width: 480px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.underage-card img {
  width: 100px;
  margin: 0 auto 1.5rem;
}

.underage-card h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.underage-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* —— Animations —— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Responsive —— */
@media (max-width: 992px) {
  .about__grid,
  .contact__grid,
  .vmv-grid,
  .home-intro__grid,
  .home-flyer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .values-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__contact {
    grid-column: 1 / -1;
  }

  .about__highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav .nav-link {
    color: var(--charcoal);
    padding: 0.875rem 0;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.is-scrolled .nav-toggle span,
  .site-header .nav-toggle span {
    background: var(--white);
  }

  .site-header.is-scrolled .nav-toggle span {
    background: var(--charcoal);
  }

  .values-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about__highlights {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .values-list {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }
}
