/* ============================================================
   SIDDIQUI FARMS — MODERN REDESIGN
   ============================================================ */

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

:root {
  --green:   #0f2b1a;
  --green2:  #1a4a2e;
  --gold:    #c9952a;
  --gold2:   #e8b84b;
  --cream:   #faf6ed;
  --white:   #ffffff;
  --text:    #111111;
  --muted:   #6b6b6b;
  --radius:  16px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: normal; color: var(--gold); }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* ── NAV ─────────────────────────────────────────── */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 0 40px;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
#nav.solid {
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}
.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#nav.solid .nav-wrap {
  height: 100px;
}
.brand {
  display: flex;
  align-items: center;
}
.nav-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: height 0.4s, filter 0.4s;
}
#nav.solid .nav-logo {
  height: 90px;
  filter: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold2); }
#nav.solid .nav-links a { color: var(--green); }
#nav.solid .nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--green) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold2) !important; transform: translateY(-1px); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: kenburns 12s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate(0,0); }
  to   { transform: scale(1.10) translate(-1%,-1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,22,13,0.62) 0%,
    rgba(8,22,13,0.70) 50%,
    rgba(8,22,13,0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 760px;
}
.hero-logo {
  height: 200px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 6px 32px rgba(0,0,0,0.5));
  margin: 0 auto 20px;
  display: block;
  animation: fadeDown 0.9s ease both;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-pill {
  display: inline-block;
  border: 1px solid rgba(201,149,42,0.6);
  background: rgba(201,149,42,0.12);
  backdrop-filter: blur(8px);
  color: var(--gold2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 em { color: var(--gold2); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}
.cta-btn {
  background: var(--gold);
  color: var(--green);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.cta-btn:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,149,42,0.4);
}
.wa-hero { background: #25D366; display: inline-flex; align-items: center; gap: 10px; }
.wa-hero:hover { background: #1ebe5d; }
.ghost-btn {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}
.ghost-btn:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.5);
}
.hero-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  flex-wrap: wrap;
}
.hero-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-info-item svg { opacity: 0.7; flex-shrink: 0; }
.dot { width: 4px; height: 4px; background: rgba(255,255,255,0.3); border-radius: 50%; flex-shrink: 0; }

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── HERO BRANDING TEXT ──────────────────────────── */
.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-vip-badge {
  display: inline-block;
  background: var(--green);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 8px 28px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.hero-tagline-script {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

/* ── MARQUEE ─────────────────────────────────────── */
.marquee-wrap {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.marquee span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0 28px;
}
.marquee .sep { color: var(--gold); padding: 0 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── STORY ───────────────────────────────────────── */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.story-img-col {
  position: relative;
  overflow: hidden;
}
.story-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.story-img-col:hover img { transform: scale(1.03); }
.story-stamp {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: var(--gold);
  color: var(--green);
  text-align: center;
  padding: 18px 22px;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.story-stamp span { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; display: block; }
.story-stamp strong { font-size: 1.1rem; font-family: var(--font-serif); display: block; margin: 3px 0; }
.story-text {
  background: var(--cream);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
  line-height: 1.15;
}
.story-text .lead {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 1.7;
}
.story-text p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.story-stats {
  display: flex;
  gap: 36px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 32px;
}
.story-stats div { text-align: center; }
.story-stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green);
}
.story-stats span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.05em; }

/* ── CHARACTERISTICS STRIP ───────────────────────── */
.chars-strip {
  background: var(--cream);
  padding: 48px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.chars-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.char-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 100px;
  text-align: center;
}
.char-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: var(--white);
  transition: background 0.25s, color 0.25s;
  flex-shrink: 0;
}
.char-item:hover .char-circle {
  background: var(--green);
  color: var(--white);
}
.char-item span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.3;
}
.char-divider {
  width: 1px;
  height: 60px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .chars-strip { padding: 36px 24px; }
  .chars-inner { gap: 24px; justify-content: center; }
  .char-divider { display: none; }
  .char-item { min-width: 80px; flex: none; }
}

/* ── ABOUT ───────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  position: relative;
  overflow: hidden;
}
.about-tree-deco {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 420px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}
.about-tree-img {
  width: 100%;
  height: auto;
  filter: brightness(0) sepia(1) saturate(3) hue-rotate(-10deg);
}
.about-img, .about-text { position: relative; z-index: 1; }
.about-img {
  position: relative;
  overflow: hidden;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-img:hover img { transform: scale(1.04); }
.about-tag {
  position: absolute;
  bottom: 28px; left: 28px;
  background: var(--gold);
  color: var(--green);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.about-text {
  background: var(--cream);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
  line-height: 1.15;
}
.about-text .lead {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green);
}
.badge-item svg { color: var(--gold); flex-shrink: 0; }

/* ── PACKING ─────────────────────────────────────── */
.packing { padding: 100px 40px; background: var(--white); }
.packing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.packing-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}
.packing-header p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.packing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}
.pack-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pack-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.10); }
.pack-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,149,42,0.18);
}
.pack-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.pack-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.pack-card:hover .pack-img img { transform: scale(1.06); }
.best-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.06em;
}
.pack-body { padding: 28px; }
.pack-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
}
.pack-body > p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.pack-body ul { margin-bottom: 24px; }
.pack-body li { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--text); padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.pack-body li:last-child { border: none; }
.pack-body li svg { color: var(--gold); flex-shrink: 0; }
.pack-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid var(--green);
  color: var(--green);
  transition: all 0.2s;
}
.pack-btn:hover { background: var(--green); color: var(--white); }
.pack-btn.primary { background: var(--gold); border-color: var(--gold); color: var(--green); }
.pack-btn.primary:hover { background: var(--gold2); border-color: var(--gold2); }

/* ── BRAND STRIP ─────────────────────────────────── */
.brand-strip {
  position: relative;
  width: 100%;
  max-height: 440px;
  overflow: hidden;
}
.brand-strip img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
}
.brand-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,22,13,0.62);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  padding: 40px 24px;
}
.brand-strip-overlay h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
}

/* ── DELIVERY ────────────────────────────────────── */
.delivery { background: var(--green); padding: 0; }
.delivery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.delivery-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.delivery-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.delivery-text > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.97rem;
  margin-bottom: 40px;
  line-height: 1.8;
}
.delivery-list { display: flex; flex-direction: column; gap: 20px; }
.delivery-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.delivery-list li:hover { background: rgba(255,255,255,0.10); }
.dl-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.delivery-list strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 3px; }
.delivery-list p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0; }
.delivery-img {
  overflow: hidden;
}
.delivery-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── ORDER ───────────────────────────────────────── */
.order-section { background: var(--cream); padding: 100px 40px; }
.order-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.order-left { padding-top: 10px; }
.order-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
  line-height: 1.15;
}
.order-left > p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  justify-content: center;
}
.whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-2px); }
.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid rgba(0,0,0,0.12);
  color: var(--text);
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}
.call-btn:hover { border-color: var(--gold); background: rgba(201,149,42,0.05); }

/* Form */
.order-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field:last-child { margin-bottom: 0; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--text); letter-spacing: 0.02em; }
.field input,
.field select,
.field textarea {
  padding: 12px 16px;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,149,42,0.12);
}
.field textarea { resize: vertical; min-height: 80px; }
.submit-btn {
  width: 100%;
  margin-top: 8px;
  background: var(--green);
  color: var(--white);
  padding: 15px 24px;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.submit-btn:hover { background: var(--green2); transform: translateY(-1px); }

/* ── CITIES VISUAL SECTION ───────────────────────── */
.cities-mango {
  position: absolute;
  width: 380px;
  height: auto;
  pointer-events: none;
  opacity: 0.13;
  filter: sepia(1) saturate(5) hue-rotate(-10deg) brightness(1.1);
}
.cities-mango-left  { top: -60px; left: -80px; transform: rotate(-20deg); }
.cities-mango-right { bottom: -60px; right: -80px; transform: rotate(160deg); }

.cities-section {
  background: var(--green);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.city-deco {
  position: absolute;
  pointer-events: none;
  width: 260px;
}
.city-deco-left  { top: -20px; left: -20px; }
.city-deco-right { bottom: -20px; right: -20px; transform: scaleX(-1); }
.cities-header { margin-bottom: 64px; }
.cities-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
}
.cities-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto 60px;
}
.city-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
}
.city-landmark { width: 100%; max-width: 300px; }
.landmark-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(201,149,42,0.25));
}
.landmark-img {
  width: 100%;
  height: auto;
  display: block;
  /* Lahore (white bg + dark paths): invert → bg black, paths light → gold; screen blend kills black bg */
  filter: invert(1) sepia(1) saturate(5) hue-rotate(-10deg) brightness(1.1);
  mix-blend-mode: screen;
}
.landmark-img--transparent {
  /* black paths: invert→white, darken to mid-tone first, then sepia+saturate = rich gold matching Lahore */
  mix-blend-mode: normal;
  filter: invert(1) brightness(0.62) sepia(1) saturate(6) hue-rotate(-10deg) brightness(1.15) drop-shadow(0 0 18px rgba(201,149,42,0.3));
}
.city-info h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.city-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.city-center-deco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding-bottom: 60px;
}
.city-center-line {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(201,149,42,0.4), transparent);
}
.city-center-badge {
  width: 56px; height: 56px;
  border: 1px solid rgba(201,149,42,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cities-cta { text-align: center; }

@media (max-width: 768px) {
  .cities-section { padding: 64px 24px; }
  .cities-grid { flex-direction: column; gap: 48px; }
  .city-center-deco { flex-direction: row; padding-bottom: 0; }
  .city-center-line { width: 80px; height: 1px; background: linear-gradient(to right, transparent, rgba(201,149,42,0.4), transparent); }
  .city-card { padding: 0 20px; }
  .city-landmark { max-width: 200px; }
}

/* ── TESTIMONIALS ────────────────────────────────── */
.testimonials { background: var(--cream); padding: 100px 40px; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testi-header { text-align: center; margin-bottom: 60px; }
.testi-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--green);
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.testi-top > div strong {
  display: block;
  font-weight: 600;
  color: var(--green);
  font-size: 0.95rem;
  margin-bottom: 1px;
}
.testi-top > div span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.testi-stars { display: flex; gap: 2px; }
.testi-card > p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
/* Third card — product image */
.testi-image-card {
  padding: 0;
  overflow: hidden;
  border-top: none;
  position: relative;
}
.testi-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  display: block;
  transition: transform 0.5s;
}
.testi-image-card:hover .testi-product-img { transform: scale(1.04); }
.testi-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,22,13,0.85), transparent);
  padding: 28px 24px 20px;
  color: var(--white);
}
.testi-img-label strong { display: block; font-family: var(--font-serif); font-size: 1.15rem; }
.testi-img-label span { font-size: 0.78rem; opacity: 0.75; }

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .testimonials { padding: 64px 24px; }
}

/* ── FOOTER ──────────────────────────────────────── */
.footer { background: var(--green); position: relative; overflow: hidden; }
.footer-tree-watermark {
  position: absolute;
  right: -80px;
  bottom: -60px;
  width: 520px;
  height: auto;
  pointer-events: none;
  opacity: 0.07;
  filter: brightness(0) invert(1);
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
.footer-bottom { position: relative; z-index: 1; }
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-logo {
  height: 160px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-brand p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-links, .footer-contact {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a, .footer-contact a, .footer-contact span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding: 20px 40px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 1024px) {
  .delivery-text { padding: 60px 48px; }
}

@media (max-width: 900px) {
  /* About */
  .about { grid-template-columns: 1fr; }
  .about-img { height: 320px; }
  .about-text { padding: 48px 32px; }

  /* Packing */
  .packing-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  /* Delivery */
  .delivery-inner { grid-template-columns: 1fr; }
  .delivery-img { height: 280px; order: -1; }
  .delivery-text { padding: 48px 32px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .testimonials { padding: 64px 24px; }

  /* Footer */
  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-links, .footer-contact { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 768px) {
  /* Nav */
  #nav { padding: 0 20px; }
  .nav-wrap { height: 80px; }
  #nav.solid .nav-wrap { height: 70px; }
  .nav-logo { height: 60px; }
  #nav.solid .nav-logo { height: 52px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--green);
    flex-direction: column;
    padding: 24px 28px;
    gap: 20px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem !important; color: rgba(255,255,255,0.85) !important; }
  #nav.solid .nav-links { top: 70px; }
  .nav-cta { font-size: 0.9rem !important; }
  .burger { display: flex; }
  .burger span { background: white; }
  #nav.solid .burger span { background: var(--green); }

  /* Hero */
  .hero { min-height: 100svh; padding: 100px 20px 60px; }
  .hero-logo { height: 110px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 1rem; }
  .hero-vip-badge { font-size: 0.7rem; padding: 6px 18px; }
  .hero-tagline-script { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .cta-btn,
  .hero-actions .ghost-btn { width: 100%; justify-content: center; }
  .hero-info { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .dot { display: none; }

  /* Marquee */
  .marquee-wrap { padding: 12px 0; }

  /* Characteristics strip */
  .chars-strip { padding: 32px 20px; }
  .chars-inner { gap: 20px; justify-content: center; }
  .char-divider { display: none; }
  .char-item { min-width: 70px; flex: none; width: calc(33% - 16px); }
  .char-circle { width: 54px; height: 54px; }
  .char-item span { font-size: 0.68rem; }

  /* About */
  .about-img { height: 260px; }
  .about-text { padding: 36px 24px; }
  .about-badges { gap: 8px; }
  .badge-item { font-size: 0.75rem; padding: 6px 12px; }

  /* Packing */
  .packing { padding: 56px 20px; }
  .packing-header { margin-bottom: 36px; }

  /* Brand strip */
  .brand-strip img { height: 300px; }
  .brand-strip-overlay h2 { font-size: 1.8rem; }

  /* Delivery */
  .delivery-text { padding: 40px 24px; }
  .delivery-list li { padding: 14px; gap: 12px; }

  /* Testimonials */
  .testi-grid { max-width: 100%; }
  .testi-image-card { min-height: 240px; }

  /* Order section */
  .order-section { padding: 56px 20px; }
  .order-form-wrap { padding: 24px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer-top { padding: 36px 24px; }
  .footer-bottom { padding: 16px 24px; }
  .footer-logo { height: 90px; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero-logo { height: 90px; }
  .hero h1 { font-size: 1.9rem; }

  /* Chars strip — 2 per row on tiny screens */
  .char-item { width: calc(50% - 16px); }

  /* Story stats */
  .story-stats { flex-wrap: wrap; gap: 16px; }
  .story-stats div { min-width: 80px; }

  /* Packing cards */
  .pack-body { padding: 20px; }

  /* Delivery */
  .delivery-list li { flex-direction: row; }

  /* Footer */
  .footer-links, .footer-contact { flex-direction: column; gap: 12px; }
  .footer-logo { height: 80px; }
}
