﻿:root {
  --cream: #f4fbff;
  --ivory: #e7f2fb;
  --saffron: #2bb7d0;
  --copper: #1689c6;
  --clove: #123059;
  --onyx: #0c1a2b;
  --rose: #7cc6e6;
  --mist: rgba(255, 255, 255, 0.72);
  --shadow: rgba(9, 28, 51, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--onyx);
  background: radial-gradient(circle at top, #f6fcff 0%, #e7f2fb 45%, #dfeaf6 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  font: inherit;
  cursor: pointer;
  background: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(244, 251, 255, 0.85);
  border-bottom: 1px solid rgba(18, 48, 89, 0.12);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--saffron));
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
}

.brand-name {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.brand-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(12, 26, 43, 0.68);
}

.brand-logo {
  width: 112px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(12, 26, 43, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.header-inner {
  position: relative;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(18, 48, 89, 0.18);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 22px rgba(12, 26, 43, 0.12);
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(43, 183, 208, 0.45);
  outline-offset: 2px;
}

.nav-toggle-lines {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--clove);
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--clove);
  border-radius: 999px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.site-header[data-nav-open="true"] .nav-toggle-lines {
  transform: rotate(45deg);
}

.site-header[data-nav-open="true"] .nav-toggle-lines::before {
  top: 0;
  opacity: 0;
}

.site-header[data-nav-open="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(90deg);
}

.nav-open {
  overflow: hidden;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.25rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--copper);
  background: rgba(22, 137, 198, 0.12);
}

.hero {
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(43, 183, 208, 0.32), transparent 55%),
    radial-gradient(circle at 85% 25%, rgba(22, 137, 198, 0.32), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 600;
  margin: 1rem 0 1.5rem;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(12, 26, 43, 0.68);
  font-size: 0.85rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.stat-value {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2rem;
  color: var(--copper);
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: rgba(12, 26, 43, 0.68);
}

.hero-visual {
  display: grid;
  gap: 1.8rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 260px;
}

.hero-card.alt {
  transform: translateX(12px);
}

.hero-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-card-body {
  padding: 1.8rem;
  display: grid;
  gap: 0.7rem;
}

.card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: rgba(12, 26, 43, 0.6);
}

.collection {
  padding: 4.5rem 0;
}

.collection.alt {
  background: rgba(231, 242, 251, 0.7);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: rgba(12, 26, 43, 0.6);
}

.section-note {
  max-width: 360px;
  color: rgba(12, 26, 43, 0.68);
}

.price-note {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: rgba(12, 26, 43, 0.6);
}

.price-note {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(12, 26, 43, 0.6);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(18, 48, 89, 0.12);
  box-shadow: 0 14px 30px rgba(12, 26, 43, 0.1);
  display: grid;
  grid-template-rows: 240px 1fr;
  min-height: 460px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 14px;
  background: radial-gradient(circle at 25% 18%, rgba(43, 183, 208, 0.16), transparent 58%),
    radial-gradient(circle at 82% 12%, rgba(22, 137, 198, 0.14), transparent 64%),
    linear-gradient(180deg, #ffffff 0%, rgba(231, 242, 251, 0.6) 100%);
  border-bottom: 1px solid rgba(18, 48, 89, 0.08);
}

/* Masala + sherbet packs have large built-in margins; "contain" keeps them intact.
   Instead of cropping, give them a taller media area so the product stays fully visible. */
#masala .product-card,
#sherbet .product-card {
  grid-template-rows: 290px 1fr;
}

#masala .product-card img,
#sherbet .product-card img {
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: radial-gradient(circle at 30% 12%, rgba(255, 255, 255, 0.95), rgba(231, 242, 251, 0.6));
  filter: contrast(1.03) saturate(1.02);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(12, 26, 43, 0.2);
}

.product-body {
  padding: 1.5rem;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 0.7rem;
}

.badge {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.65rem;
  color: var(--copper);
}

.price {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.2rem;
  color: var(--clove);
}

.price {
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--clove);
}

.button {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--clove);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--clove), var(--copper));
}

.button.ghost {
  background: transparent;
  color: var(--clove);
  border: 1px solid rgba(18, 48, 89, 0.4);
}

.button.small {
  padding: 0.6rem 1.2rem;
  font-size: 0.7rem;
}

.button:hover {
  transform: translateY(-2px);
}

.story {
  padding: 4.5rem 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.story-panel {
  background: rgba(255, 255, 255, 0.85);
  padding: 2.2rem;
  border-radius: 24px;
  border: 1px solid rgba(18, 48, 89, 0.12);
  box-shadow: 0 18px 36px rgba(12, 26, 43, 0.14);
}

.story-panel ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.story-panel li {
  padding-left: 1.4rem;
  position: relative;
}

.story-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
}

.contact {
  padding: 4.5rem 0 6rem;
  background: linear-gradient(180deg, rgba(244, 251, 255, 0) 0%, rgba(214, 233, 247, 0.7) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(18, 48, 89, 0.12);
}

.contact-card p {
  margin: 0;
}

.contact-card .price-note {
  margin-bottom: 0.5rem;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(18, 48, 89, 0.15);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
}

.footer-contact {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(12, 26, 43, 0.75);
}

.footer-note {
  color: rgba(12, 26, 43, 0.6);
}

@media (max-width: 900px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-inner {
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    grid-template-rows: 220px 1fr;
    min-height: 440px;
  }

  #masala .product-card,
  #sherbet .product-card {
    grid-template-rows: 260px 1fr;
  }

  .product-card img {
    padding: 12px;
  }

  #masala .product-card img,
  #sherbet .product-card img {
    padding: 10px;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-card.alt {
    transform: none;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 1.18rem;
  }

  .brand-tag {
    font-size: 0.75rem;
    letter-spacing: 1.6px;
  }

  .brand-logo {
    width: 92px;
  }

  .js .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .js .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 18px;
    background: rgba(244, 251, 255, 0.97);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(18, 48, 89, 0.14);
    box-shadow: 0 20px 55px rgba(12, 26, 43, 0.18);
    max-height: min(70vh, 520px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .js .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: 14px;
  }

  .js .site-nav a::after {
    display: none;
  }

  .js .site-nav a:hover,
  .js .site-nav a:focus-visible {
    background: rgba(22, 137, 198, 0.1);
  }

  .js .site-nav .nav-cta {
    text-align: center;
    margin-top: 0.25rem;
    background: rgba(22, 137, 198, 0.14);
  }

  .js .site-header[data-nav-open="true"] .site-nav {
    display: flex;
    animation: navPop 0.18s ease both;
  }
}

@keyframes navPop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-rows: 240px 1fr;
    min-height: auto;
  }

  #masala .product-card,
  #sherbet .product-card {
    grid-template-rows: 280px 1fr;
  }

  .brand-logo {
    width: 84px;
  }

  .site-nav {
    gap: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    transition: none !important;
  }
}











