/* ===== Ambica Cattle Feed - Main Styles ===== */
:root {
  --primary: #1a5f2a;
  --primary-dark: #0d3d18;
  --primary-light: #2d8a3e;
  --accent: #d4a84b;
  --accent-light: #e8c97a;
  --cream: #f8f5ed;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #5a5a5a;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(26,95,42,0.15);
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Skip link – accessibility */
.skip-link {
  position: absolute;
  top: -3rem;
  left: 0.5rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius);
  transition: top var(--transition);
}
.skip-link:focus {
  top: 0.5rem;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Focus visible – keyboard users */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

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

a:hover { color: var(--primary-dark); }

/* ===== Header & Nav ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248,245,237,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.site-header.hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
}

.logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  display: block;
}

.logo-text { display: inline-block; }
.logo span { color: var(--accent); }
@media (max-width: 600px) {
  .logo-text { font-size: 1.3rem; }
  .logo-img { height: 40px; width: 40px; }
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.nav-links > li { position: relative; }

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--primary);
  color: var(--white);
}

/* Down arrow for About Us submenu */
.nav-has-dropdown > a::after {
  content: "▾";
  margin-left: 0.35rem;
  font-size: 0.8em;
  opacity: 0.9;
  vertical-align: middle;
}

/* About Us submenu */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  margin-top: 0.25rem;
  padding: 0.5rem 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 100;
  border: 1px solid rgba(26,95,42,0.12);
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  white-space: nowrap;
  border-radius: 0;
  border-left: 3px solid transparent;
}
.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: var(--cream);
  color: var(--primary);
  border-left-color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

.main-content { padding-top: 70px; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

/* Hero with client advt image – no overlay, no extra text; full image centered on desktop */
.hero--advt {
  background: var(--primary-dark);
}
/* Blurred same image as background – real element so path works from document */
.hero--advt .hero-bg-blur {
  position: absolute;
  inset: -20px;
  z-index: 0;
  overflow: hidden;
}
.hero--advt .hero-bg-blur img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  filter: blur(14px);
  opacity: 0.55;
}
.hero--advt .hero-picture {
  z-index: 1;
}
.hero--advt .hero-picture picture,
.hero--advt .hero-bg-blur picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero--advt .hero-bg-img--advt {
  opacity: 1;
  object-fit: contain;
  object-position: center;
  animation: heroImageEntrance 0.9s ease-out both, heroImageFloat 12s ease-in-out 1s infinite;
  will-change: transform, opacity;
}

/* Desktop: center image, show full (contain), no stretch */
@media (min-width: 769px) {
  .hero.hero--advt {
    min-height: auto;
    height: auto;
    max-height: none;
    display: block;
  }
  .hero--advt .hero-bg-blur {
    display: none;
  }
  .hero--advt .hero-picture {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    padding: 0;
  }
  .hero--advt .hero-bg-img--advt {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
    display: block;
  }
}

/* Mobile: full width, height auto, centered */
@media (max-width: 768px) {
  .hero.hero--advt {
    min-height: auto;
    height: auto;
    max-height: none;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
  }
  .hero--advt .hero-bg-blur {
    display: none;
  }
  .hero--advt .hero-picture {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    padding: 0;
  }
  .hero--advt .hero-bg-img--advt {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
    display: block;
  }
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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='%23ffffff' fill-opacity='0.05'%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;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.section { padding: 4rem 0; }
.section-alt { background: var(--white); box-shadow: var(--shadow); }

/* ===== Inauguration invitation section ===== */
.inauguration-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f4 100%);
}
.inauguration-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.inauguration-text h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}
.inauguration-text p {
  color: var(--text);
  margin-bottom: 0.9rem;
}
.invite-details {
  margin: 1rem 0 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: #f1f6f1;
  border: 1px solid rgba(26,95,42,0.14);
}
.invite-details p {
  margin-bottom: 0.45rem;
}
.invite-details p:last-child {
  margin-bottom: 0;
}
.invite-signoff {
  font-weight: 600;
}
.inauguration-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26,95,42,0.12);
}
.inauguration-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

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

.section-title h2 { color: var(--primary); }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
}
.section-title .underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left { transform: translateX(-40px); }
.reveal-left.revealed { transform: translateX(0); }
.reveal-right { transform: translateX(40px); }
.reveal-right.revealed { transform: translateX(0); }
.reveal-scale { transform: scale(0.95); }
.reveal-scale.revealed { transform: scale(1); }

.card-grid .card.reveal:nth-child(1) { transition-delay: 0.1s; }
.card-grid .card.reveal:nth-child(2) { transition-delay: 0.2s; }
.card-grid .card.reveal:nth-child(3) { transition-delay: 0.3s; }
.card-grid .card.reveal:nth-child(4) { transition-delay: 0.4s; }
.card-grid .card.reveal:nth-child(5) { transition-delay: 0.5s; }
.card-grid .card.reveal:nth-child(6) { transition-delay: 0.6s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes heroImageEntrance {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes heroImageFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.01); }
}

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

@keyframes pulse-soft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.02); }
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card-grid-three { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card-with-img .card-body { padding: 1.25rem; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(26,95,42,0.1);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

/* Product/Service card with image - aspect-ratio for CLS, responsive */
.card-img-wrap {
  aspect-ratio: 4 / 3;
  max-height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition);
}

.card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.card-body { padding: 1.25rem; }
.card h3 { color: var(--primary); margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Feature blocks ===== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
}

.feature-block:nth-child(even) .feature-text { order: 2; }
.feature-block:nth-child(even) .feature-visual { order: 1; }

.feature-visual {
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  animation: pulse-soft 4s ease-in-out infinite, float 5s ease-in-out infinite;
  position: relative;
}

.feature-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* About page The Beginning image should not be absolutely positioned */
.feature-visual img.md-photo {
  position: static;
  inset: auto;
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: var(--radius);
  border: 2px dashed rgba(255,255,255,0.6);
  background: linear-gradient(135deg, rgba(13,61,24,0.85), rgba(45,138,62,0.8));
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}

.feature-text h3 { color: var(--primary); margin-bottom: 0.75rem; }
.feature-text p { color: var(--text-muted); }

/* ===== Quote ===== */
.quote-block {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: '"';
  position: absolute;
  font-size: 8rem;
  opacity: 0.15;
  top: -1rem;
  left: 1rem;
  font-family: Georgia, serif;
}

.quote-block p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Stats strip ===== */
.stats-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.stat-item { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 0.95rem; opacity: 0.95; }

/* ===== Image grid (4 columns on desktop) ===== */
.image-grid-three {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.grid-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.grid-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.grid-img-wrap:hover img { transform: scale(1.05); }

/* ===== Trust strip (contact) ===== */
.trust-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.trust-strip-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 320px;
}
.trust-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trust-strip-text h3 { color: var(--primary); margin-bottom: 0.75rem; }
.trust-strip-text p { color: var(--text-muted); margin-bottom: 0.75rem; }

/* ===== Footer ===== */
.site-footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-inner h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-inner a { color: rgba(255,255,255,0.85); }
.footer-inner a:hover { color: var(--accent); }
.footer-inner ul { list-style: none; }
.footer-inner li { margin-bottom: 0.4rem; }

.footer-contact { margin-top: 0.5rem; font-size: 0.95rem; }
.footer-contact a { color: var(--accent); }
.footer-address { opacity: 0.9; }

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.9rem;
  opacity: 0.9;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { opacity: 0.9; font-size: 1.1rem; }

/* Sister concern hero (no logo, text + gradient/bg) */
.page-hero-sister {
  position: relative;
  padding: 5rem 0 4rem;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.page-hero-sister .hero-sister-label {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 0.75rem;
}
.page-hero-sister .hero-company-name {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.page-hero-sister .hero-tagline {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-top: 0.75rem;
}
/* Trikfeed hero: warm gradient */
.page-hero-sister.trikfeed-hero {
  background: linear-gradient(135deg, #2d1810 0%, #5c3820 40%, #8b5a3c 100%);
}
/* Amini hero: blue/teal gradient */
.page-hero-sister.amini-hero {
  background: linear-gradient(135deg, #0d2d3d 0%, #1a4d6d 40%, #247ba0 100%);
}

/* Front page sister logos - large and clear */
.sister-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.sister-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26,95,42,0.1);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}
.sister-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}
.sister-logo-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 120px;
  max-height: 200px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 1rem;
}
.sister-logo-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-align: center;
}
.sister-logo-cta {
  font-size: 0.9rem;
  color: var(--primary-light);
  font-weight: 600;
}
.sister-logo-card:hover .sister-logo-cta { color: var(--primary); }

/* Contact section 2-col grid on landing pages */
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.contact-cards-grid .card {
  margin-top: 0;
  padding: 1.5rem;
}

/* Intro section logo (sister concern pages) */
.feature-visual-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.intro-logo-wrap {
  width: 100%;
  max-width: 360px;
  padding: 2rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.intro-logo-wrap img {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info .card { padding: 1.5rem; }
.contact-info .card + .card { margin-top: 1rem; }

.contact-card-img { padding: 0; overflow: hidden; }
.contact-card-img .brand-card-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 280px;
  object-fit: cover;
  object-position: center;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea { min-height: 140px; resize: vertical; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    border-radius: 0 0 var(--radius) var(--radius);
    align-items: stretch;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links.open .nav-has-dropdown:hover .nav-dropdown,
  .nav-links.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: static;
    margin-top: 0.5rem;
    margin-left: 0.75rem;
    box-shadow: none;
    border: none;
    padding-top: 0;
    background: rgba(26,95,42,0.06);
    border-radius: var(--radius);
  }
  .nav-links.open .nav-dropdown a {
    padding: 0.5rem 1rem;
  }
  .feature-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature-block:nth-child(even) .feature-text,
  .feature-block:nth-child(even) .feature-visual { order: unset; }
  .feature-visual { font-size: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .sister-logos-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .inauguration-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  /* Show invitation image edge-to-edge on mobile */
  .inauguration-image-wrap {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    box-shadow: none;
    border: none;
  }
  .inauguration-image-wrap img {
    width: 100vw;
  }
  /* About page The Beginning image full-width on mobile */
  .feature-visual.md-photo-wrap {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    box-shadow: none;
    animation: none;
  }
  .feature-visual.md-photo-wrap img.md-photo {
    width: 100vw;
    max-width: none;
    border-radius: 0;
  }
  .hero { min-height: 85vh; }
  .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .image-grid-three { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 2.5rem 0; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}

/* ===== Lightbox (zoomable product images) ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-overlay .lightbox-content {
  max-width: 95vw;
  max-height: 90vh;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.lightbox-overlay.open .lightbox-content {
  transform: scale(1);
}
.lightbox-overlay .lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-overlay .lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: var(--white);
  color: var(--text);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--transition), color var(--transition);
}
.lightbox-overlay .lightbox-close:hover {
  background: var(--accent);
  color: var(--primary-dark);
}
.lightbox-zoom-hint {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  text-align: center;
}
.img-zoomable {
  cursor: zoom-in;
  transition: transform var(--transition);
}
.card-img-wrap:hover .img-zoomable {
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .hero--advt .hero-bg-img--advt {
    animation: none;
  }
}

/* Print */
@media print {
  .site-header.hidden { transform: none; }
  .skip-link, .nav-toggle, .hero-cta .btn-outline { display: none !important; }
  .hero { min-height: auto; padding: 2rem 0; }
  .hero-bg-img { opacity: 0.2; }
  body { background: #fff; }
  .card, .quote-block { box-shadow: none; border: 1px solid #ddd; }
}
