/* ===== PRC GROUP - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #132240;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e9c8;
  --cream: #faf8f3;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #888;
  --border: rgba(201,168,76,0.25);
  --shadow: 0 4px 30px rgba(10,22,40,0.12);
  --shadow-strong: 0 12px 60px rgba(10,22,40,0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-socials { display: flex; gap: 14px; }
.topbar-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}
.topbar-socials a:hover { background: var(--gold); color: var(--navy); }
.topbar-cta a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 2px;
  transition: all 0.2s;
}
.topbar-cta a:hover { background: var(--gold); color: var(--navy); }

/* ===== NAVBAR ===== */
nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,22,40,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  transition: all 0.2s;
  display: block;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }
.nav-links > li > a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-strong);
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 10px 18px;
  display: block;
  border-bottom: 1px solid rgba(10,22,40,0.05);
  transition: all 0.15s;
}
.dropdown-menu li a:hover { background: var(--gold-pale); color: var(--gold); padding-left: 24px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); display: block; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.72) 40%, rgba(10,22,40,0.45));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}
.btn-gold {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 12px 32px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* ===== SECTION WRAPPERS ===== */
.section { padding: 80px 24px; }
.section-narrow { padding: 60px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
h2.section-title.white { color: var(--white); }
.section-lead {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 620px;
  font-weight: 300;
  line-height: 1.8;
}
.section-lead.white { color: rgba(255,255,255,0.8); }

/* ===== WELCOME SECTION ===== */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.9;
}
.welcome-image-stack {
  position: relative;
  height: 420px;
}
.welcome-image-stack img {
  position: absolute;
  border-radius: 2px;
  object-fit: cover;
}
.welcome-image-stack .img-main {
  width: 78%;
  height: 320px;
  top: 0; right: 0;
  box-shadow: var(--shadow-strong);
}
.welcome-image-stack .img-accent {
  width: 55%;
  height: 200px;
  bottom: 0; left: 0;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}

/* ===== SERVICES GRID ===== */
.services-bg { background: var(--navy); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.15);
  margin-top: 48px;
}
.service-card {
  background: var(--navy-mid);
  padding: 32px 28px;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
}
.service-card:hover { background: rgba(201,168,76,0.1); }
.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  text-decoration: none;
}
.service-card .card-link::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .card-link::after { transform: translateX(4px); }

/* ===== TESTIMONIALS ===== */
.testimonials-bg { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow);
}
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card blockquote::before {
  content: '"';
  font-size: 64px;
  color: var(--gold-pale);
  font-style: normal;
  line-height: 1;
  position: absolute;
  top: -12px;
  left: -8px;
  font-family: 'Cormorant Garamond', serif;
}
.testimonial-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== NEWSLETTER ===== */
.newsletter-bg { background: var(--navy); }
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.newsletter-text h2 { color: var(--white); margin-bottom: 8px; }
.newsletter-text p { color: rgba(255,255,255,0.6); font-size: 15px; }
.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.newsletter-form input {
  padding: 14px 20px;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  width: 280px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 60px 24px 24px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.footer-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  line-height: 1.7;
}
.footer-contact a {
  color: var(--gold);
  text-decoration: none;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== PAGE CONTENT ===== */
.page-section { padding: 70px 24px; }
.page-section.bg-white { background: var(--white); }
.page-section.bg-cream { background: var(--cream); }
.page-section.bg-navy { background: var(--navy); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.content-grid.flip { direction: rtl; }
.content-grid.flip > * { direction: ltr; }

.content-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.content-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  margin-top: 28px;
}
.content-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}
.content-text ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 16px;
}
.content-text ul li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid rgba(10,22,40,0.04);
}
.content-text ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 9px;
}
.content-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-strong);
}
.content-image.tall img { height: 520px; }

/* Numbered service items */
.service-items { margin-top: 24px; }
.service-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(10,22,40,0.06);
}
.service-item:last-child { border-bottom: none; }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.service-item-content h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-item-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* CTA Strip */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::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='%23c9a84c' fill-opacity='0.04'%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");
}
.cta-strip .container { position: relative; }
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-strip p { color: rgba(255,255,255,0.65); margin-bottom: 28px; font-size: 15px; }
.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  margin-top: 28px;
}
.contact-info p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}
.contact-info a { color: var(--gold); text-decoration: none; }
.contact-socials { display: flex; gap: 10px; margin-top: 12px; }
.contact-socials a {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.contact-socials a:hover { background: var(--gold); color: var(--navy); }

.contact-form-box {
  background: var(--white);
  padding: 44px;
  box-shadow: var(--shadow);
}
.contact-form-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(10,22,40,0.15);
  background: var(--cream);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; color: #2d7a52; background: #e6f4ee; padding: 14px 18px; font-size: 14px; margin-top: 16px; border-radius: 2px; }

/* Agri Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.product-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.product-card:hover { transform: translateY(-4px); }
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.product-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 14px 16px;
  text-align: center;
}

/* Trading Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
  width: 100%;
}
.partner-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: all 0.2s;
}
.partner-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.partner-card img { max-width: 200px; max-height: 70px; object-fit: contain; }

/* Gold page cards */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.approach-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.approach-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.approach-card:hover::before { transform: scaleX(1); }
.approach-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.approach-card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }

/* Video embed */
.video-section { padding: 70px 24px; background: var(--navy); }
.video-wrapper {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
}
.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

/* Photo gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 40px 0;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.gallery-grid img:hover { opacity: 0.85; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .welcome-grid,
  .content-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.flip { direction: ltr; }
  .welcome-image-stack { display: block; height: 280px; margin-top: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); padding: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 16px; }
  .dropdown-menu { position: static; box-shadow: none; border-top: none; opacity: 1; visibility: visible; transform: none; padding-left: 16px; background: var(--cream); }
  .hamburger { display: flex; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-box { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 16px; }
  .topbar-inner { flex-direction: column; gap: 8px; }
}

/* Image logo in nav */
.nav-logo-img { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img img { height: 50px; width: auto; }
.footer-brand img { max-height: 60px; width: auto; margin-bottom: 12px; }
