/* Rachna Foods — shared stylesheet */

:root {
  --red: #A32025;
  --red-deep: #8E1B1F;
  --red-dark: #7A1518;
  --maroon: #5C1214;
  --gold: #E8A33D;
  --gold-soft: #F0C27E;
  --cream: #FBF3E3;
  --cream-card: #FFFDF6;
  --line: #E8D9B8;
  --ink: #3A2418;
  --ink-soft: #7A6650;
  --ink-muted: #8A7A5E;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Karla', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */

.site-header {
  background: var(--red);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand img { height: 48px; width: auto; }

.nav { display: flex; align-items: center; gap: 28px; }

.nav a {
  color: #F3D9C2;
  font-size: 15px;
  letter-spacing: .3px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.nav a:hover { color: #fff; }

.nav a.active {
  color: #fff;
  border-bottom-color: var(--gold);
}

.nav .nav-cta {
  background: var(--gold);
  color: var(--maroon);
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 4px;
  border-bottom: none;
}

.nav .nav-cta:hover { background: var(--gold-soft); color: var(--maroon); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

/* ---------- hero ---------- */

.hero {
  background: var(--red) url("../assets/bowl-red.jpg") center right / cover no-repeat;
  color: #FDF6E8;
  overflow: hidden;
}

.hero .wrap {
  padding-top: 56px;
  padding-bottom: 56px;
  max-width: 1120px;
}

.hero .hero-content { max-width: 48%; }

.hero-kicker {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero p.lead {
  color: #F3D9C2;
  font-size: 17px;
  max-width: 46ch;
  margin-bottom: 28px;
}


/* page hero (inner pages) */

.page-hero {
  background: var(--red);
  color: #FDF6E8;
  text-align: center;
  padding: 56px 24px 48px;
  border-bottom: 3px solid var(--gold);
}

.page-hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 42px);
}

.page-hero p {
  color: #F3D9C2;
  max-width: 60ch;
  margin: 12px auto 0;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 4px;
  transition: transform .15s, background .2s;
}

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

.btn-gold { background: var(--gold); color: var(--maroon); }
.btn-gold:hover { background: var(--gold-soft); }

.btn-outline { border: 1.5px solid var(--gold); color: #FDF6E8; }
.btn-outline:hover { background: rgba(232,163,61,.15); }

.btn-red { background: var(--red); color: #FDF6E8; }
.btn-red:hover { background: var(--red-deep); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- sections ---------- */

.section { padding: 64px 0; }

.section-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}

.section-head::before,
.section-head::after {
  content: "";
  height: 1px;
  background: var(--gold);
  flex: 1;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--red-deep);
  text-align: center;
  white-space: nowrap;
}

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 64ch;
  margin: -20px auto 40px;
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h3.sub {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--maroon);
  margin-bottom: 12px;
}

/* ---------- cards ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 0 0 8px 8px;
  padding: 26px 24px;
}

.card .ico {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 22px;
}

.card h3 {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--maroon);
  margin-bottom: 8px;
}

.card p { color: var(--ink-soft); font-size: 15px; }

/* ---------- product cards ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.product-grid.cols-4 .photo { height: 260px; }

.product-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(92,18,20,.12);
}

.product-card .photo {
  height: 330px;
  overflow: hidden;
  background: #F4EBD8;
}

.product-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.product-card .body { padding: 18px 20px 22px; flex: 1; }

.product-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--maroon);
}

.product-card .type {
  color: var(--red);
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 2px 0 10px;
}

.product-card .desc { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 14px; }

.spec { list-style: none; font-size: 13.5px; border-top: 1px solid var(--line); }

.spec li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.spec .k { color: var(--ink-muted); white-space: nowrap; }
.spec .v { color: var(--ink); text-align: right; }

.pack {
  margin-top: 12px;
  font-size: 13px;
  color: var(--maroon);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px 10px;
  display: inline-block;
}

/* ---------- band (red strip section) ---------- */

.band {
  background: var(--red-deep);
  color: #F3D9C2;
  padding: 56px 0;
}

.band h2 {
  font-family: var(--serif);
  color: #FDF6E8;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 10px;
}

.band .gold { color: var(--gold); }

/* badge strip */

.badge-strip {
  background: var(--red-dark);
  color: var(--gold);
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 16px;
}

/* ---------- stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.stat .num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
}

.stat .lbl { font-size: 13.5px; letter-spacing: 1px; text-transform: uppercase; }

/* ---------- figures / split content ---------- */

.figure {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(92,18,20,.12);
}

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

.prose p { margin-bottom: 14px; color: var(--ink-soft); font-size: 16px; }
.prose p strong { color: var(--maroon); }

blockquote.pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--red-deep);
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 20px 0;
}

/* ---------- quality steps ---------- */

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }

.step {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
}

.step .n {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
  font-weight: 700;
}

.step h4 { color: var(--maroon); font-size: 15px; margin: 6px 0 4px; }
.step p { font-size: 13px; color: var(--ink-muted); }

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; }

.info-list { list-style: none; }

.info-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}

.info-list .ic {
  width: 40px; height: 40px;
  flex: none;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}

.info-list a { color: var(--red-deep); }
.info-list a:hover { text-decoration: underline; }

form.contact-form { display: grid; gap: 14px; }

.contact-form label { font-size: 13.5px; color: var(--maroon); font-weight: 700; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream-card);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,163,61,.25);
}

.map-embed {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 48px;
}

.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-card);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(46, 9, 10, .88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: zoom-out;
  padding: 4vh 4vw;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: auto; }
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--red-deep);
  color: #F3D9C2;
  padding: 52px 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.site-footer img.f-logo { height: 56px; margin-bottom: 14px; }

.site-footer h4 {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 17px;
  margin-bottom: 12px;
}

.site-footer p, .site-footer li { font-size: 14.5px; }

.site-footer ul { list-style: none; }
.site-footer li { padding: 4px 0; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(232,163,61,.35);
  text-align: center;
  font-size: 13px;
  padding: 16px 0;
  color: #D9A98F;
}

/* ---------- reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero {
    background-image: linear-gradient(rgba(163,32,37,.82), rgba(163,32,37,.82)), url("../assets/bowl-red.jpg");
    background-position: center;
  }
  .hero .wrap { padding-top: 40px; padding-bottom: 40px; }
  .hero .hero-content { max-width: 100%; }
  .grid-3, .product-grid, .product-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--red-deep);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 14px;
    border-bottom: 3px solid var(--gold);
  }

  .nav.open { display: flex; }

  .nav a { padding: 12px 24px; border-bottom: none; }
  .nav .nav-cta { margin: 10px 24px 0; text-align: center; }

  .nav-toggle { display: block; }

  .grid-3, .product-grid, .product-grid.cols-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .section-head h2 { white-space: normal; }
}
