/* Rojaana Fresh Milk — Divyanshi Dairy */

:root {
  --blue-deep: #0a3d6b;
  --blue: #1565c8;
  --blue-light: #42a5f5;
  --sky: #e3f2fd;
  --green-dark: #145214;
  --green: #2e7d32;
  --green-bright: #43a047;
  --green-soft: #e8f5e9;
  --gold: #c9a227;
  --gold-soft: #fff8e1;
  --brown-warm: #5d4037;
  --cream: #f9f7f2;
  --text: #1a237e;
  --text-muted: #455a64;
  --white: #fff;
  --shadow: 0 12px 40px rgba(13, 71, 161, 0.12);
  --shadow-nav: 0 8px 32px rgba(13, 71, 161, 0.14);
  --shadow-gold: 0 8px 28px rgba(201, 162, 39, 0.22);
  --radius: 16px;
  --radius-pill: 999px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-hi: "Noto Sans Devanagari", "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, "Noto Serif Devanagari", serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-muted);
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201, 162, 39, 0.06), transparent),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h30v30H0zm30 30h30v30H30z' fill='%23c8e6c9' fill-opacity='0.12' fill-rule='evenodd'/%3E%3C/svg%3E");
  line-height: 1.6;
}

body.lang-hi {
  font-family: var(--font-hi);
}

.script-brand,
.hero-brand {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.65rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 248, 245, 0.94) 100%);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(21, 101, 192, 0.07);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-nav);
  border-bottom-color: rgba(21, 101, 192, 0.12);
}

.header-shell {
  position: relative;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
}

/* CSS / SVG brand logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  max-width: min(52vw, 280px);
}

.brand-logo:hover {
  text-decoration: none;
}

.brand-logo:hover .logo-name {
  filter: brightness(1.05);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(21, 101, 192, 0.28));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 0.05rem;
}

.logo-name {
  font-weight: 700;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #1e5799 0%, var(--blue-deep) 50%, var(--green-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: filter 0.2s ease;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
}

.logo-company {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0.35rem;
}

.nav-link {
  position: relative;
  font-family: var(--font-hi);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--blue-light), var(--green));
  transform: translateX(-50%);
  transition: width 0.22s ease;
}

.nav-link:hover {
  color: var(--blue-deep);
  text-decoration: none;
  background: rgba(21, 101, 192, 0.06);
}

.nav-link:hover::after {
  width: 55%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  padding: 3px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(21, 101, 192, 0.14);
  box-shadow: 0 2px 10px rgba(13, 71, 161, 0.06);
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--text-muted);
  font-family: var(--font-hi);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lang-btn:hover {
  color: var(--blue-deep);
}

.lang-btn.is-active {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-deep));
  color: var(--white);
  box-shadow: 0 2px 10px rgba(21, 101, 192, 0.35);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.55rem 1rem 0.55rem 0.75rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(145deg, var(--green-bright) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(27, 94, 32, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(27, 94, 32, 0.42);
}

.header-cta-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: none;
  border-radius: 12px;
  background: rgba(21, 101, 192, 0.08);
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}

.nav-toggle:hover {
  background: rgba(21, 101, 192, 0.14);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .header-cta-num {
    display: none;
  }

  .header-cta {
    padding: 0.55rem;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.5rem 0;
  }

  .header-bar {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .header-actions {
    order: 3;
    margin-left: 0.25rem;
  }

  .site-nav {
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 0.5rem;
    margin: 0 -0.5rem;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
  }

  .site-nav.is-open {
    max-height: 420px;
    opacity: 1;
    padding: 0.75rem 0.5rem 0.25rem;
    pointer-events: auto;
  }

  .nav-link {
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .logo-company {
    display: none;
  }
}

@media (min-width: 769px) {
  .site-nav {
    flex: 1;
    justify-content: center;
    max-width: 560px;
    margin-inline: auto;
  }

  .brand-logo {
    order: 0;
  }

  .site-nav {
    order: 1;
  }

  .header-actions {
    order: 2;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(255, 193, 7, 0.12), transparent),
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(66, 165, 245, 0.16), transparent),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(46, 125, 50, 0.14), transparent),
    linear-gradient(180deg, #f0f7ff 0%, var(--cream) 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-copy h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2.1rem, 5vw, 3.15rem);
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-brand {
  display: inline-block;
  margin-right: 0.15em;
}

.hero-fresh {
  font-style: normal;
  font-family: var(--font-display);
  color: var(--green-dark);
  background: linear-gradient(135deg, var(--green-bright), var(--green-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-fresh-wrap {
  display: inline-block;
}

.eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.hero-tag-hi {
  margin: 0 0 1rem;
  font-family: var(--font-hi);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue);
}

.hero-lead {
  margin: 0 0 1.5rem;
  max-width: 36ch;
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-hi);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.28s ease,
    border-color 0.22s ease,
    background 0.28s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn:focus-visible {
  outline: 3px solid rgba(66, 165, 245, 0.55);
  outline-offset: 4px;
}

.btn-primary {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(155deg, #64b5f6 0%, #1e88e5 45%, #1565c0 100%);
  box-shadow:
    0 4px 16px rgba(21, 101, 192, 0.35),
    0 2px 6px rgba(13, 71, 161, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -40%;
  width: 40%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-18deg) translateX(-120%);
  transition: transform 0.55s ease;
  z-index: 0;
  pointer-events: none;
}

.btn-primary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 8px 28px rgba(21, 101, 192, 0.42),
    0 2px 8px rgba(13, 71, 161, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary:hover::after {
  transform: skewX(-18deg) translateX(380%);
}

.btn-ghost {
  color: var(--green-dark);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border: 2px solid var(--gold);
  box-shadow:
    0 3px 0 rgba(201, 162, 39, 0.35),
    0 8px 22px rgba(201, 162, 39, 0.18);
}

.btn-ghost:hover {
  background: linear-gradient(180deg, #fffef8 0%, #fff8e6 100%);
  border-color: #d4af37;
  box-shadow:
    0 3px 0 rgba(201, 162, 39, 0.25),
    0 12px 28px rgba(201, 162, 39, 0.28);
}

/* Hero — premium order CTA */
.btn-cta-premium {
  position: relative;
  z-index: 0;
  gap: 0;
  padding: 0.35rem 0.45rem 0.35rem 0.4rem;
  min-height: 54px;
  border: 2px solid rgba(255, 213, 79, 0.65);
  border-radius: 100px;
  color: #fff;
  background: linear-gradient(
    155deg,
    #1b5e20 0%,
    #2e7d32 28%,
    #1565c0 72%,
    #0d47a1 100%
  );
  box-shadow:
    0 4px 0 rgba(12, 59, 20, 0.45),
    0 14px 36px rgba(21, 101, 192, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 28px rgba(201, 162, 39, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-cta-premium::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(135deg, #ffd54f, #43a047, #42a5f5, #ffd54f);
  background-size: 300% 300%;
  opacity: 0.55;
  filter: blur(10px);
}

.btn-cta-premium-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.btn-cta-premium-shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    95deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 90%
  );
  transform: rotate(12deg) translateX(-20%);
  transition: transform 0.65s ease;
}

.btn-cta-premium:hover .btn-cta-premium-shine::after {
  transform: rotate(12deg) translateX(280%);
}

.btn-cta-premium-inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.2rem 1.15rem 0.2rem 0.35rem;
}

.btn-cta-premium-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.btn-cta-premium-label {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.98rem;
  white-space: nowrap;
}

.btn-cta-premium-chev {
  display: flex;
  align-items: center;
  opacity: 0.95;
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
  flex-shrink: 0;
}

.btn-cta-premium:hover {
  border-color: #ffecb3;
  box-shadow:
    0 3px 0 rgba(12, 59, 20, 0.35),
    0 18px 44px rgba(21, 101, 192, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 0 40px rgba(255, 213, 79, 0.45);
}

.btn-cta-premium:hover .btn-cta-premium-chev {
  transform: translateX(5px);
}

.btn-cta-premium:focus-visible {
  outline: 3px solid rgba(255, 213, 79, 0.9);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: no-preference) {
  .btn-cta-premium::before {
    animation: cta-premium-border 5s ease infinite;
  }
}

@keyframes cta-premium-border {
  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.5;
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.65;
  }
}

body.lang-en .btn {
  font-family: var(--font);
}

.hero-visual {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 22px;
  overflow: visible;
  box-shadow:
    0 24px 48px rgba(13, 71, 161, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.hero-visual-ring {
  position: absolute;
  inset: -5px;
  border-radius: 26px;
  background: linear-gradient(145deg, var(--blue-light) 0%, var(--blue-deep) 45%, var(--green) 100%);
  opacity: 0.92;
  z-index: 0;
  filter: blur(0);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual:hover img {
  transform: scale(1.02);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-hi);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--blue-deep);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

/* Products */
.products {
  background: var(--white);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.04);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.product-card {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(21, 101, 192, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card-wide {
  grid-column: 1 / -1;
}

@media (min-width: 700px) {
  .product-card-wide {
    grid-column: span 2;
  }
}

.product-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0.75rem;
}

.product-icon svg {
  width: 100%;
  height: 100%;
}

.product-card h3 {
  margin: 0 0 0.15rem;
  font-family: var(--font-hi);
  font-size: 1.2rem;
  color: var(--text);
}

.product-card-en {
  margin: 0 0 0.5rem;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card p:last-of-type {
  margin: 0;
  font-size: 0.95rem;
}

/* Trust / USP strip */
.trust-strip {
  background:
    linear-gradient(165deg, rgba(20, 82, 20, 0.97) 0%, var(--green-dark) 40%, #0d260d 100%);
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(201, 162, 39, 0.15), transparent);
  pointer-events: none;
}

.trust-strip .container {
  position: relative;
  z-index: 1;
}

.section-head-light h2 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.section-head-light p {
  color: rgba(255, 255, 255, 0.85);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.trust-card {
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.trust-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-hi);
  font-size: 1.05rem;
  color: var(--white);
}

.trust-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 0.85rem;
  border: 2px solid rgba(201, 162, 39, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.trust-icon-leaf {
  background: linear-gradient(145deg, var(--green-bright), var(--green-dark));
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.12), var(--shadow-gold);
}

.trust-icon-farm {
  background: linear-gradient(145deg, #5d4037, #3e2723);
}

.trust-icon-shield {
  background: linear-gradient(145deg, var(--blue-light), var(--blue-deep));
}

.trust-icon-drop {
  background: linear-gradient(145deg, var(--gold), #a67c00);
}

/* Pack showcase */
.packs {
  background: linear-gradient(180deg, var(--white) 0%, var(--gold-soft) 45%, var(--cream) 100%);
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.pack-card-span {
  grid-column: 1 / -1;
}

.pack-card-frame-banner {
  min-height: 180px;
  padding: 1.25rem 1.5rem 0.75rem;
  background: linear-gradient(180deg, #f0f7ff 0%, #f5faf6 50%, var(--white) 100%);
}

.pack-card-span .pack-card-frame-banner img {
  max-height: min(52vw, 380px);
  width: 100%;
  object-fit: contain;
}

@media (min-width: 900px) {
  .pack-card-span .pack-card-frame-banner img {
    max-height: 420px;
  }
}

.pack-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 16px 40px rgba(13, 71, 161, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.3s ease;
}

.pack-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(13, 71, 161, 0.14), var(--shadow-gold);
}

.pack-card-frame {
  background: linear-gradient(180deg, #f5f9f6 0%, var(--white) 100%);
  padding: 1rem 1rem 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 280px;
}

.pack-card-frame img {
  max-height: 320px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
}

.pack-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  border-top: 3px solid var(--gold);
  background: linear-gradient(180deg, var(--white), #fafafa);
}

.pack-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--green-soft);
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.pack-badge-gold {
  background: linear-gradient(135deg, #fff3c4, var(--gold));
  color: #4a3700;
}

.pack-card-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display), var(--font);
  font-size: 1.35rem;
  color: var(--blue-deep);
}

.pack-tagline {
  margin: 0 0 0.5rem;
  font-family: var(--font-hi);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-dark);
}

.pack-desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

body.lang-en .pack-tagline {
  font-family: var(--font);
}

/* About */
.about {
  background: linear-gradient(180deg, var(--green-soft) 0%, var(--cream) 100%);
}

.about-page {
  max-width: min(920px, 94vw);
  margin-inline: auto;
}

.about-section-head {
  margin-bottom: 2.25rem;
}

.about-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-dark);
}

.about-page-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 700;
  color: var(--blue-deep);
  font-family: var(--font-display), var(--font-hi), serif;
}

.about-tagline-lead {
  margin: 0;
  font-family: var(--font-hi);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue);
  font-style: italic;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 280px);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-card-sticky {
    position: static;
  }
}

.about-longform {
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-longform > p {
  margin: 0 0 1.05rem;
}

.about-subh {
  margin: 1.85rem 0 0.85rem;
  font-family: var(--font-hi);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  padding-bottom: 0.35rem;
  border-bottom: 2px solid rgba(46, 125, 50, 0.2);
}

body.lang-en .about-subh {
  font-family: var(--font);
}

.about-list {
  margin: 0 0 1.1rem;
  padding-left: 1.25rem;
}

.about-list-dairy {
  list-style: disc;
  color: var(--text-muted);
}

.about-list-dairy li {
  margin: 0.35rem 0;
  padding-left: 0.25rem;
}

.about-list-check {
  list-style: none;
  padding-left: 0;
}

.about-list-check li {
  position: relative;
  margin: 0.5rem 0;
  padding-left: 1.65rem;
}

.about-list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-weight: 800;
  color: var(--green);
}

.about-divider {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid rgba(21, 101, 192, 0.14);
}

.about-close-box {
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(227, 242, 253, 0.9) 0%, rgba(232, 245, 233, 0.95) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow);
}

.about-close-brand {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--blue-deep);
}

.about-close-tagline {
  margin: 0;
  font-family: var(--font-hi);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-dark);
}

.about-company-note {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.quote-hi {
  font-family: var(--font-hi);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--green-dark);
}

body.lang-en .about-close-tagline,
body.lang-en .about-tagline-lead {
  font-family: var(--font);
  font-style: normal;
}

.about-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
}

.about-card-sticky {
  position: sticky;
  top: 5.5rem;
}

.about-card-legal {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.about-card h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--green-dark);
}

.reg-list {
  margin: 0;
}

.reg-list div {
  margin-bottom: 0.75rem;
}

.reg-list dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.reg-list dd {
  margin: 0.2rem 0 0;
  font-weight: 600;
  color: var(--text);
  word-break: break-all;
}

/* Directors */
.directors {
  background: var(--white);
}

.director-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 640px;
  margin-inline: auto;
  align-items: stretch;
}

@media (max-width: 600px) {
  .director-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

.director-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 100%;
  padding: 1.35rem 1.25rem 1.75rem;
  background: var(--sky);
  border-radius: var(--radius);
  border: 1px solid rgba(21, 101, 192, 0.12);
  transition: box-shadow 0.25s ease;
}

.director-visual-slot {
  width: 100%;
  max-width: 280px;
  flex: 0 0 auto;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.director-photo-wrap {
  width: 100%;
  height: 280px;
  max-width: 280px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow:
    0 12px 32px rgba(13, 71, 161, 0.18),
    0 0 0 1px rgba(21, 101, 192, 0.1);
  line-height: 0;
  background: var(--white);
}

.director-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.director-card-photo:last-child .director-photo {
  object-position: center 15%;
}

.director-card-photo:hover .director-photo {
  transform: scale(1.03);
}

.director-placeholder-wrap {
  width: 100%;
  height: 280px;
  max-width: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow:
    0 12px 32px rgba(13, 71, 161, 0.14),
    0 0 0 1px rgba(21, 101, 192, 0.1);
  background: var(--white);
}

.director-placeholder-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.director-card-footer {
  margin-top: auto;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .director-card-photo:hover .director-photo {
    transform: none;
  }
}

.director-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  color: var(--text);
}

.director-card p {
  margin: 0;
  font-family: var(--font-hi);
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Contact */
.contact {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.92);
}

.contact h2,
.contact h3 {
  color: var(--white);
}

.contact a {
  color: #b3e5fc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-lead {
  margin: 0 0 1.25rem;
  opacity: 0.95;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 0.75rem;
}

.contact-address {
  font-style: normal;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
}

.contact-address p {
  margin: 0.5rem 0 0;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: #0d3312;
  color: rgba(255, 255, 255, 0.85);
  padding: 1.25rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-brand {
    order: 1;
  }

  .footer-tagline {
    order: 2;
    flex: 1;
    text-align: center;
    width: auto;
  }

  .footer-company {
    order: 3;
    text-align: right;
  }

  .footer-rights {
    order: 4;
    flex-basis: 100%;
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.footer-logo-mark {
  width: 10px;
  height: 14px;
  background: linear-gradient(180deg, var(--blue-light), var(--blue-deep));
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
}

.footer-tagline {
  margin: 0;
  font-family: var(--font-hi);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 220, 150, 0.95);
  width: 100%;
}

.footer-company {
  margin: 0;
  font-size: 0.9rem;
}

.footer-rights {
  margin: 0.35rem 0 0;
  width: 100%;
  max-width: 52rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

body.lang-en .footer-tagline {
  font-family: var(--font);
}

body.lang-en .footer-rights {
  font-family: var(--font);
}

/* --- Animations: hero entrance, scroll reveal, micro-interactions --- */
@keyframes anim-fade-up {
  from {
    opacity: 0;
    transform: translateY(1.65rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes anim-hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes anim-cta-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.92;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy-entrance .eyebrow {
    animation: anim-fade-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.06s;
  }

  .hero-copy-entrance h1 {
    animation: anim-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.14s;
  }

  .hero-copy-entrance .hero-tag-hi {
    animation: anim-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.24s;
  }

  .hero-copy-entrance .hero-lead {
    animation: anim-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.34s;
  }

  .hero-copy-entrance .hero-cta {
    animation: anim-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.44s;
  }

  .hero-visual-entrance {
    animation: anim-fade-up 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
  }

  .hero-visual-entrance .hero-visual-ring {
    animation: anim-hero-float 8s ease-in-out 1.2s infinite;
  }

  .header-cta-icon {
    animation: anim-cta-ring 2.4s ease-in-out infinite;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.trust-grid .reveal:nth-child(1) {
  --reveal-delay: 0ms;
}
.trust-grid .reveal:nth-child(2) {
  --reveal-delay: 75ms;
}
.trust-grid .reveal:nth-child(3) {
  --reveal-delay: 150ms;
}
.trust-grid .reveal:nth-child(4) {
  --reveal-delay: 225ms;
}

.product-grid .reveal:nth-child(1) {
  --reveal-delay: 0ms;
}
.product-grid .reveal:nth-child(2) {
  --reveal-delay: 65ms;
}
.product-grid .reveal:nth-child(3) {
  --reveal-delay: 130ms;
}
.product-grid .reveal:nth-child(4) {
  --reveal-delay: 195ms;
}
.product-grid .reveal:nth-child(5) {
  --reveal-delay: 260ms;
}
.product-grid .reveal:nth-child(6) {
  --reveal-delay: 325ms;
}

.pack-grid .reveal:nth-child(1) {
  --reveal-delay: 0ms;
}
.pack-grid .reveal:nth-child(2) {
  --reveal-delay: 55ms;
}
.pack-grid .reveal:nth-child(3) {
  --reveal-delay: 110ms;
}
.pack-grid .reveal:nth-child(4) {
  --reveal-delay: 165ms;
}
.pack-grid .reveal:nth-child(5) {
  --reveal-delay: 220ms;
}
.pack-grid .reveal:nth-child(6) {
  --reveal-delay: 275ms;
}
.pack-grid .reveal:nth-child(7) {
  --reveal-delay: 330ms;
}
.pack-grid .reveal:nth-child(8) {
  --reveal-delay: 385ms;
}

.about-layout .reveal:nth-child(1) {
  --reveal-delay: 0ms;
}
.about-layout .reveal:nth-child(2) {
  --reveal-delay: 110ms;
}

.director-grid .reveal:nth-child(1) {
  --reveal-delay: 0ms;
}
.director-grid .reveal:nth-child(2) {
  --reveal-delay: 95ms;
}

.contact-grid .reveal:nth-child(1) {
  --reveal-delay: 0ms;
}
.contact-grid .reveal:nth-child(2) {
  --reveal-delay: 110ms;
}

.nav-link {
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .nav-link:hover {
    transform: translateY(-2px);
  }

  .lang-btn {
    transition: transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1);
  }

  .lang-btn:active {
    transform: scale(0.94);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual:hover img {
    transform: none;
  }

  .hero-copy-entrance .eyebrow,
  .hero-copy-entrance h1,
  .hero-copy-entrance .hero-tag-hi,
  .hero-copy-entrance .hero-lead,
  .hero-copy-entrance .hero-cta,
  .hero-visual-entrance {
    animation: none !important;
  }

  .header-cta-icon,
  .hero-visual-entrance .hero-visual-ring {
    animation: none !important;
  }

  .btn-primary::after {
    display: none;
  }

  .btn-cta-premium::before {
    animation: none !important;
  }

  .btn-cta-premium-shine::after {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
