*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #0083c0;
  --magenta: #e3158f;
  --yellow: #fadf06;
  --dark: #0a2a3d;
  --orange: #f55306;
  --mid: #0e4a6e;
  --light: #f4f8fb;
  --lighter: #ffffff;
  --muted: #5a7a8a;
  --border: #d8e8f0;
  --armygreen: #3f4d29;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--light);
  color: var(--dark);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

section,
.statement {
  scroll-margin-top: 97px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

/* ── NAV TOP BAR ── */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.nav-topbar {
  background: var(--blue);
  padding: 0.45rem 4rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.nav-topbar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-topbar-item:hover {
  color: var(--yellow);
}

.nav-topbar-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.nav-topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

/* ── NAV ── */
nav {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 4rem;
  background: var(--magenta);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 20px rgba(227, 21, 143, 0.3);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-cta-btn {
  background: var(--yellow) !important;
  color: var(--dark) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  transition:
    background 0.2s,
    color 0.2s !important;
}

.nav-cta-btn:hover {
  background: #e6cc00 !important;
  color: var(--dark) !important;
}

/* ── HERO SLIDESHOW ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 8s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-1 {
  background-image: url("./imgs/MIA_5_Cans_in_Sand.jpg");
}

.slide-2 {
  background-image: url("./imgs/Beers-Updated.jpg");
}


.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(0, 40, 70, 0.9) 0%,
      rgba(0, 40, 70, 0.25) 5%,
      rgba(0, 40, 70, 0.1) 100%
    ),
    linear-gradient(
      to right,
      rgba(0, 40, 70, 0.7) 0%,
      rgba(0, 40, 70, 0.7) 20%,
      transparent 50%
    );
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0, 131, 192, 0.12);
  border: 1.5px solid rgba(0, 131, 192, 0.4);
  color: #fff;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
  border-radius: 50%;
}

.slide-arrow:hover {
  background: rgba(227, 21, 143, 0.35);
  border-color: var(--magenta);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(227, 21, 143, 0.25);
}

.slide-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.slide-arrow.prev {
  left: 2rem;
}

.slide-arrow.next {
  right: 2rem;
}

.slide-dots {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.6rem;
}

.slide-dot {
  width: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.33, 0.66, 0.66, 1);
  border: none;
  padding: 0;
  border-radius: 2px;
}

.slide-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.slide-dot.active {
  background: var(--yellow);
  width: 48px;
  box-shadow: 0 2px 12px rgba(250, 223, 6, 0.4);
}

.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--yellow) 0%,
    var(--magenta) 50%,
    var(--blue) 100%
  );
  z-index: 5;
  width: 0%;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(250, 223, 6, 0.3);
}

.slide-caption {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 3;
  text-align: right;
  pointer-events: none;
}

.slide-caption-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(120px, 18vw, 260px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(250, 223, 6, 0.2);
  line-height: 0.9;
  letter-spacing: -0.02em;
  transition: opacity 0.6s ease;
}

.slide-caption-text.slide-change {
  opacity: 0.3;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 0.5rem;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    var(--yellow) 50%,
    #ffffff 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    fadeUp 0.9s ease 0.5s forwards,
    gradientShift 3s ease-in-out infinite;
}

.hero-title span {
  color: var(--yellow);
}

/* ── CONTACT (first definition) ── */
.contact {
  padding: 8rem 4rem;
  background: var(--light);
}

.contact-inner {
  max-width: 780px;
  margin: 0 auto;
}

.contact-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 0.04em;
  color: var(--dark);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.contact-heading span {
  color: var(--magenta);
}

.contact-sub {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 520px;
}

.contact-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 220px;
  background: var(--lighter);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}

.contact-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(0, 131, 192, 0.1);
}

.contact-card-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.contact-card-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--dark);
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.hero-tagline {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  color: #ffffff;
  margin-bottom: 2.8rem;
  max-width: 520px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.btn-primary {
  background: var(--magenta);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-primary:hover {
  background: #bf0e77;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid rgba(0, 131, 192, 0.6);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s,
    transform 0.15s;
}

.btn-ghost:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: fadeUp 1s ease 1.2s forwards;
}

.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: #fff;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── STATEMENT STRIP ── */
.statement {
  background: var(--blue);
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.statement-inner {
  display: inline-block;
  animation: marquee 22s linear infinite;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: #fff;
}

.statement-inner span {
  margin: 0 2.5rem;
  opacity: 0.4;
  color: var(--yellow);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── ABOUT ── */
.about {
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 1.8rem;
}

.about-body {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.about-body strong {
  color: var(--dark);
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat {
  border-left: 3px solid var(--magenta);
  padding-left: 1.2rem;
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

.about-visual {
  position: relative;
  height: 520px;
}

.about-visual-box {
  position: absolute;
  border-radius: 4px;
}

.av1 {
  inset: 0;
  background-image: url("./imgs/Beers-Updated.jpg");
  background-size: cover;
  background-position: center;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 131, 192, 0.25);
  overflow: hidden;
}

.av1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}

.av-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 1.2rem;
  padding: 3rem;
}

.av-icon {
  font-size: 5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.av-icon img {
  max-width: 35px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.av-quote {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 1.3rem;
  text-align: center;
  color: #fff;
  line-height: 1.6;
  opacity: 0.95;
}

.av-rule {
  width: 40px;
  height: 2px;
  background: var(--yellow);
}

/* ── SHARED SECTION LABELS ── */
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.875rem, 3.75vw, 3rem);
  letter-spacing: 0.05em;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-label {
  display: inline-block;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 0.3rem;
  margin-bottom: 1.5em;
}

/* ── BEER LIST ── */
.beers {
  max-width: 1980px;
  margin: 0 auto;
  padding: 60px 0;
}

.beers-header {
  text-align: center;
  margin-bottom: 5rem;
  padding: 0 4rem;
}

.beer-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 350px;
  max-height: 700px;
  position: relative;
  overflow: hidden;
}

.beer-item:nth-child(even) .beer-image {
  order: 2;
}

.beer-item:nth-child(even) .beer-info {
  order: 1;
}

.beer-image {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  height: 100%;
}

.beer-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.7s ease;
}

.beer-item:hover .beer-image img {
  transform: scale(1.05);
}

.beer-abv-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  background: var(--badge-color, var(--blue));
}

.beer-item:nth-child(even) .beer-abv-badge {
  left: 1.5rem;
  right: auto;
}

.beer-abv-badge .abv-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1;
}

.beer-abv-badge .abv-label {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.beer-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3.5rem;
  position: relative;
  background: color-mix(in srgb, var(--accent-color, var(--blue)) 6%, #ffffff);
  border-top: 4px solid var(--accent-color, var(--blue));
}

.beer-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--border);
  position: absolute;
  top: 1rem;
  right: 2rem;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.beer-item:nth-child(even) .beer-number {
  right: auto;
  left: 2rem;
}

.beer-style-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-top: calc(1rem + 5rem + 4px);
  margin-bottom: 0.8rem;
  width: fit-content;
  position: relative;
  z-index: 1;
  background: rgba(from var(--tag-color, var(--blue)) r g b / 0.1);
  color: var(--tag-color, var(--blue));
}

.beer-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--dark);
  line-height: 0.95;
  margin-bottom: 0.3rem;
}

.beer-subtitle {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.beer-divider {
  display: none;
}

.beer-desc {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.beer-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.beer-meta-item {
  display: flex;
  flex-direction: column;
}

.beer-meta-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(
    in srgb,
    var(--accent-color, var(--muted)) 60%,
    var(--muted)
  );
  margin-bottom: 0.15rem;
}

.beer-meta-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--accent-color, var(--dark));
  white-space: normal;
  word-break: break-word;
}

@media (max-width: 900px) {
  .beer-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .beer-item:nth-child(even) .beer-image {
    order: 0;
  }

  .beer-item:nth-child(even) .beer-info {
    order: 1;
  }

  .beer-image {
    min-height: 260px;
  }

  .beer-info {
    padding: 2.5rem 1.5rem 2rem;
  }

  .beer-item:nth-child(odd) .beer-info {
    border-left: none;
    border-top: 4px solid var(--yellow);
  }

  .beer-item:nth-child(even) .beer-info {
    border-right: none;
    border-top: 4px solid var(--magenta);
  }

  .beer-number {
    font-size: 3rem;
    top: 0.8rem;
    right: 1rem;
    opacity: 0.6;
  }

  .beer-item:nth-child(even) .beer-number {
    right: auto;
    left: 1rem;
  }

  .beer-style-tag {
    margin-top: calc(0.8rem + 3rem + 3px);
  }

  .beers-header {
    padding: 0 1.5rem;
  }
}

/* ── DRAFT & CANS SECTION ── */
.draft-cans {
  width: 100%;
  margin: 0 auto;
  /* padding: 6rem 4rem; */
  background: var(--light);
}

.draft-cans-inner {
  width: 100%;
  /* max-width: 1000px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.draft-cans-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 2.5rem;
  line-height: 1.1;
}

.draft-cans-image {
  width: 100%;
  /* max-width: 800px; */
}

.draft-cans-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* ── CONTACT ── */
.contact {
  padding: 7rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 0.05em;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.contact-heading span {
  color: var(--magenta);
}

.contact-sub {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-input {
  background: var(--lighter);
  border: 1.5px solid var(--border);
  color: var(--dark);
  font-size: 0.9rem;
  padding: 1rem 1.2rem;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
  border-radius: 3px;
}

.form-input::placeholder {
  color: #aac0cd;
}

.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 131, 192, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  background: var(--lighter);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  padding: 1rem 1.2rem;
  padding-right: 2.8rem;
  outline: none;
  width: 100%;
  cursor: pointer;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a7a8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  border-radius: 3px;
}

.form-select:focus {
  border-color: var(--blue);
}

.form-submit {
  background: var(--blue);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 3rem;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  border-radius: 3px;
  transition:
    background 0.2s,
    transform 0.15s;
}

.form-submit:hover {
  background: var(--magenta);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--blue);
  border-top: 4px solid var(--blue);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: var(--yellow);
}

.footer-copy {
  font-size: 0.75rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  width: 100%;
  text-align: center;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}

.footer-contact-item:hover {
  color: var(--yellow);
}

.footer-contact-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--yellow);
}

/* ── PRODUCT DISPLAY ── */
.product-display {
  width: 100%;
  background: linear-gradient(135deg, #f4f8fb 0%, #ffffff 50%, #fdf0f8 100%);
}

.product-hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}

.product-hero-content {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 4rem 4rem 6%;
  color: var(--magenta);
}

.product-info {
  max-width: 80%;
  width: 100%;
}

.product-hero-image {
  flex: 0 0 50%;
  align-self: stretch;
  overflow: hidden;
}

.product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-title,
.product-description,
.product-name-label,
.product-name,
.product-tagline,
.detail-label,
.detail-value {
  color: var(--armygreen);
}

.product-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--armygreen);
}

.product-description {
  font-family: "Lora", serif;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.product-name-label {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.product-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-top: 1px solid var(--armygreen);
  border-bottom: 1px solid var(--armygreen);
  margin-bottom: 1.5rem;
}

.product-details {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(63, 77, 41, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(63, 77, 41, 0.3);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  min-width: 120px;
}

.detail-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.detail-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-topbar {
    padding: 0.4rem 1rem;
    gap: 1rem;
  }

  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 0 1.5rem 4rem;
  }

  .slide-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .slide-arrow.prev {
    left: 0.8rem;
  }

  .slide-arrow.next {
    right: 0.8rem;
  }

  .slide-caption-text {
    font-size: 30vw;
  }

  .about {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  .about-visual {
    height: 280px;
  }

  .contact {
    padding: 4rem 1.5rem;
  }

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

  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .product-hero {
    flex-direction: column;
    min-height: auto;
  }

  .product-hero-image {
    order: 1;
    flex: none;
    width: 100%;
    height: 320px;
  }

  .product-hero-content {
    order: 2;
    flex: none;
    width: 100%;
    padding: 2rem 1.5rem 3rem;
    justify-content: center;
    text-align: center;
  }

  .product-info {
    max-width: 100%;
  }

  .product-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .product-description {
    font-size: 1.1rem;
  }

  .product-details {
    justify-content: center;
    gap: 1rem;
  }

  .detail-item {
    padding: 0.75rem 1rem;
    min-width: 100px;
  }

  .detail-value {
    font-size: 1.25rem;
  }
}
