/* Paramdhara — Premium Chakki Aata */
:root {
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #9a7b1a;
  --black: #0d0d0d;
  --black-soft: #1a1814;
  --cream: #f7f3eb;
  --cream-dark: #ebe4d4;
  --brown: #5c4a32;
  --green: #2d4a3e;
  --text: #2c261c;
  --text-muted: #6b5f4f;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(13, 13, 13, 0.12);
  --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", 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;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

address {
  font-style: normal;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Typography */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-label--light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.section-title--light {
  color: var(--cream);
}

.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.4);
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--block {
  width: 100%;
  margin-top: 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  border-radius: 50%;
  object-fit: cover;
}

.logo__text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.nav a:hover {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url("images/hero.jpg") center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.88) 0%,
    rgba(26, 24, 20, 0.75) 45%,
    rgba(45, 74, 62, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 3rem) 0 6rem;
  text-align: center;
  max-width: 780px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--black);
  color: var(--gold-light);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.3);
  text-align: center;
  box-shadow: var(--shadow);
}

.about__badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about__badge-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about__features {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about__features svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--gold-dark);
  margin-top: 2px;
}

.about__features strong {
  display: block;
  font-weight: 600;
  color: var(--black);
}

.about__features span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Quality */
.quality {
  background: linear-gradient(160deg, var(--black-soft) 0%, var(--green) 100%);
  position: relative;
}

.quality::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 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='%23c9a227' 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");
  opacity: 0.5;
  pointer-events: none;
}

.quality .container {
  position: relative;
  z-index: 1;
}

.quality__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.quality__intro {
  color: rgba(247, 243, 235, 0.7);
  font-size: 1.05rem;
}

.quality__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.quality-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform var(--transition), border-color var(--transition);
}

.quality-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.45);
}

.quality-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
}

.quality-card__icon svg {
  width: 100%;
  height: 100%;
}

.quality-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.65rem;
}

.quality-card p {
  font-size: 0.9rem;
  color: rgba(247, 243, 235, 0.65);
  line-height: 1.6;
}

/* Products */
.products {
  background: var(--white);
}

.products__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
}

.products__header p {
  color: var(--text-muted);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card__img img {
  transform: scale(1.05);
}

.product-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.product-card__tag--alt {
  background: var(--green);
  color: var(--cream);
}

.product-card__body {
  padding: 1.75rem 2rem 2rem;
}

.product-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.product-card__hi {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.product-card__body > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-card__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-card__points li {
  font-size: 0.88rem;
  color: var(--brown);
  padding-left: 1.25rem;
  position: relative;
}

.product-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Contact */
.contact {
  background: var(--cream-dark);
}

.contact__wrap {
  max-width: 560px;
  margin-inline: auto;
}

.contact__lead {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.contact-card__row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.contact-card__row:last-child {
  border-bottom: none;
}

.contact-card__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}

.contact-card__row strong,
.contact-card__row a {
  font-size: 1.05rem;
  color: var(--black);
}

.contact-card__row a:hover {
  color: var(--gold-dark);
}

.contact-card__gst {
  font-family: monospace;
  letter-spacing: 0.05em;
  font-size: 0.95rem !important;
}

.contact-card__row address {
  line-height: 1.7;
  color: var(--text);
}

.contact-card__note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Footer */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__brand img {
  border-radius: 50%;
}

.footer__brand strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.footer__brand span {
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
  color: var(--gold-light);
  transition: background var(--transition), border-color var(--transition);
}

.footer__social a:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.5rem;
}

/* Mobile nav */
@media (max-width: 900px) {
  .quality__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__badge {
    right: 1rem;
    bottom: -1rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 1rem 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    -webkit-tap-highlight-color: transparent;
  }

  .btn {
    min-height: 48px;
  }

  .footer__social a {
    min-width: 48px;
    min-height: 48px;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .quality__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__scroll {
    animation: none;
  }
}
