/* ============================================
   Bikundo Farm Fresh - Custom Styles
   Premium agricultural brand
   ============================================ */

:root {
  --primary: #30D5C8;
  --primary-dark: #26b8ad;
  --primary-light: #5aded4;
  --secondary: #5C3317;
  --secondary-dark: #4a2912;
  --secondary-light: #734321;
  --cream: #f8f6f0;
  --earth: #5C3317;
}

/* Base */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  position: relative;
  min-height: 100%;
  letter-spacing: 0.01em;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1024px) {
  body {
    font-size: 1.125rem;
  }
}

/* Full-page broiler background (same as hero) - behind all content */
.page-with-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url('https://images.unsplash.com/photo-1589922583749-6b8473a85048?w=1920&q=85');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Mobile: broiler image more visible - scroll attachment + lighter overlay below */
@media (max-width: 768px) {
  .page-with-bg::before {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }
}

/* Overlay so section content stays readable - lighter on mobile so broiler shows more */
.page-with-bg::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(28, 25, 23, 0.42) 0%,
    rgba(28, 25, 23, 0.48) 50%,
    rgba(28, 25, 23, 0.52) 100%
  );
  pointer-events: none;
}

@media (max-width: 768px) {
  .page-with-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(28, 25, 23, 0.26) 0%,
      rgba(28, 25, 23, 0.32) 50%,
      rgba(28, 25, 23, 0.38) 100%
    );
  }
}

@media (max-width: 480px) {
  .page-with-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(28, 25, 23, 0.22) 0%,
      rgba(28, 25, 23, 0.28) 50%,
      rgba(28, 25, 23, 0.34) 100%
    );
  }
}

/* Hero overlay - light enough so broilers show, text still clear via shadow */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(28, 25, 23, 0.35) 0%,
    rgba(28, 25, 23, 0.45) 40%,
    rgba(28, 25, 23, 0.52) 70%,
    rgba(28, 25, 23, 0.58) 100%
  );
}

/* Hero text - always visible on any background */
.hero-content {
  color: #fff;
}

.hero-content .hero-sub {
  color: var(--primary);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.hero-content .hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 0 32px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-content .hero-text {
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75), 0 0 20px rgba(0, 0, 0, 0.45);
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.65;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-content .hero-sub {
    font-size: 0.9375rem;
  }

  .hero-content .hero-text {
    font-size: 1.375rem;
    line-height: 1.6;
  }
}

@media (min-width: 1024px) {
  .hero-content .hero-text {
    font-size: 1.5rem;
  }
}

.hero-content .btn-secondary {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile: stronger hero contrast and spacing */
@media (max-width: 640px) {
  .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero-content .hero-title {
    font-size: 2.125rem;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
  }

  .hero-content .hero-text {
    font-size: 1.125rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
  }
}

/* Section spacing - premium generous padding */
.section-padding {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }
}

@media (max-width: 640px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* Section backgrounds - semi-transparent so broiler shows through */
#about {
  position: relative;
  background-color: rgba(248, 250, 249, 0.52);
  overflow: hidden;
}

/* Our Broilers — editorial showcase */
#broilers.broilers-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(250, 252, 251, 0.94) 38%,
    rgba(245, 250, 249, 0.93) 68%,
    rgba(255, 255, 255, 0.95) 100%
  );
}

#broilers.broilers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 0% 0%, rgba(48, 213, 200, 0.14), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 100%, rgba(92, 51, 23, 0.06), transparent 50%);
}

#broilers.broilers-section > .container {
  position: relative;
  z-index: 1;
}

#broilers .broilers-badge {
  letter-spacing: 0.24em;
  font-weight: 700;
  border-color: rgba(48, 213, 200, 0.45);
  box-shadow: 0 4px 24px rgba(92, 51, 23, 0.06);
}

#broilers .broilers-title {
  font-weight: 700;
  font-size: 2.375rem;
  letter-spacing: -0.035em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  #broilers .broilers-title {
    font-size: 3.25rem;
  }
}

@media (min-width: 1280px) {
  #broilers .broilers-title {
    font-size: 3.625rem;
  }
}

.broilers-lede {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .broilers-lede {
    font-size: 1.3125rem;
    max-width: 46ch;
  }
}

.broilers-showcase-frame {
  margin: 0;
}

.broilers-showcase-img-wrap {
  position: relative;
  padding: 0.4rem;
  border-radius: 1.75rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 249, 0.95) 45%,
    rgba(240, 249, 248, 0.9) 100%
  );
  border: 1px solid rgba(48, 213, 200, 0.35);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 40px 80px -20px rgba(92, 51, 23, 0.28),
    0 12px 28px -8px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(92, 51, 23, 0.06);
  overflow: hidden;
}

.broilers-showcase-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0.4rem;
  border-radius: 1.35rem;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.broilers-showcase-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.35rem;
  vertical-align: middle;
}

.broilers-showcase-caption {
  margin-top: 1.25rem;
  padding: 0 0.25rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--secondary);
  opacity: 0.85;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.broilers-caption-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-dark);
  opacity: 0.95;
  margin-bottom: 0.4rem;
}

.broilers-editorial-lead {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .broilers-editorial-lead {
    font-size: 1.625rem;
    line-height: 1.52;
  }
}

.broilers-editorial-body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.88;
  color: var(--secondary);
  opacity: 0.92;
  font-weight: 500;
}

@media (min-width: 768px) {
  .broilers-editorial-body {
    font-size: 1.125rem;
    line-height: 1.86;
  }
}

.broilers-editorial-body + .broilers-editorial-body {
  margin-top: 0.25rem;
}

.broilers-stats {
  list-style: none;
  margin: 0;
  padding: 0;
}

.broilers-stat {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.35rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1.125rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(48, 213, 200, 0.22);
  box-shadow: 0 8px 32px rgba(92, 51, 23, 0.07), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.broilers-stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.625rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.broilers-stat-unit {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  opacity: 0.65;
  vertical-align: super;
}

.broilers-stat-label {
  flex-basis: 100%;
  margin-top: 0.65rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--secondary);
  opacity: 0.9;
}

.broilers-pillar-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(48, 213, 200, 0.18), rgba(48, 213, 200, 0.06));
  border: 1px solid rgba(48, 213, 200, 0.25);
  margin-bottom: 1.15rem;
}

#broilers .broiler-pillar {
  box-shadow: 0 12px 40px rgba(92, 51, 23, 0.08), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

#broilers .broiler-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(48, 213, 200, 0.35);
  box-shadow: 0 24px 48px rgba(92, 51, 23, 0.1), 0 0 0 1px rgba(48, 213, 200, 0.12);
}

#broilers .broilers-pillar-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.3125rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  #broilers .broilers-pillar-title {
    font-size: 1.4375rem;
  }
}

#broilers .broiler-pillar p {
  font-size: 1rem;
  line-height: 1.65;
}

@media (min-width: 768px) {
  #broilers .broiler-pillar p {
    font-size: 1.0625rem;
  }
}

section.section-padding.bg-cream {
  background-color: rgba(240, 249, 248, 0.82);
}

/* Who We Supply - turquoise tint over broiler */
#supply {
  background-color: rgba(48, 213, 200, 0.88);
}

/* WhatsApp order section - brown tint over broiler */
#whatsapp-order {
  background-color: rgba(92, 51, 23, 0.9);
}

/* Contact - turquoise over broiler */
#contact {
  background-color: rgba(48, 213, 200, 0.88);
}

/* Footer - dark over broiler */
footer {
  background-color: rgba(92, 51, 23, 0.92);
}

/* Section badges - premium label */
.section-badge {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.15rem;
  padding: 0.5rem 1.15rem;
  border: 1px solid rgba(48, 213, 200, 0.4);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  .section-badge {
    font-size: 0.875rem;
    padding: 0.55rem 1.25rem;
  }
}

.section-badge-light {
  color: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Section titles - Playfair Display for premium feel */
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.125rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.35rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.125rem;
    margin-bottom: 1.6rem;
  }
}

@media (min-width: 1280px) {
  .section-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: 2rem;
    line-height: 1.14;
  }
}

/* Section titles on dark backgrounds (supply, contact, whatsapp-order) */
#supply .section-title,
#contact .section-title,
#whatsapp-order .section-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.15);
  font-weight: 700;
}

.section-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--secondary);
  opacity: 0.95;
  line-height: 1.75;
  letter-spacing: 0.015em;
  max-width: min(48rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.25rem;
    line-height: 1.72;
  }
}

@media (max-width: 640px) {
  .section-subtitle {
    font-size: 1.0625rem;
    line-height: 1.72;
  }
}

#supply .section-subtitle,
#contact .section-subtitle,
#whatsapp-order .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
}

/* Card and body text - strong contrast on light sections (mobile readability) */
#about .about-card h3,
#about .about-card p,
#broilers .broiler-card h3,
#broilers .broiler-card p {
  color: var(--secondary);
}

#about .about-card p,
#broilers .broiler-card p {
  opacity: 0.9;
}

/* Sticky header - scrolled state (logo turquoise) */
header.scrolled {
  background: rgba(48, 213, 200, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header.scrolled .nav-link,
header.scrolled a:first-child {
  color: #fff;
}

header.scrolled .btn-whatsapp-nav {
  color: var(--secondary);
  background: #fff;
}

header.scrolled .btn-whatsapp-nav:hover {
  background: var(--cream);
}

/* Hero animations - initial state for JS */
.hero-sub,
.hero-title,
.hero-text,
.animate-cta {
  opacity: 0;
  transform: translateY(20px);
}

/* Scroll reveal - initial state + transition */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* About section - bold typography, broiler shows through */
#about .section-badge {
  font-weight: 700;
  letter-spacing: 0.24em;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  #about .section-badge {
    font-size: 0.875rem;
  }
}

#about .section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.035em;
  color: var(--secondary);
}

@media (min-width: 768px) {
  #about .section-title {
    font-size: 3.25rem;
  }
}

@media (min-width: 1280px) {
  #about .section-title {
    font-size: 3.625rem;
  }
}

#about .about-intro.section-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1875rem;
  line-height: 1.72;
  color: var(--secondary);
  opacity: 1;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  max-width: min(44rem, 100%);
}

@media (min-width: 768px) {
  #about .about-intro.section-subtitle {
    font-size: 1.3125rem;
    line-height: 1.7;
  }
}

#about .about-headline.section-title {
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

/* About cards - premium glass, bold headings, readable on broiler */
.about-card {
  font-family: 'Plus Jakarta Sans', sans-serif;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 32px rgba(92, 51, 23, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

.about-card:hover {
  border-color: rgba(48, 213, 200, 0.35);
  box-shadow: 0 24px 48px rgba(92, 51, 23, 0.14), 0 0 0 1px rgba(48, 213, 200, 0.15);
}

.about-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--secondary);
}

@media (min-width: 768px) {
  .about-card h3 {
    font-size: 1.5rem;
  }
}

.about-card p {
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--secondary);
  opacity: 0.92;
}

@media (min-width: 768px) {
  .about-card p {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}

/* Broiler cards - premium */
.broiler-card {
  font-family: 'Plus Jakarta Sans', sans-serif;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(92, 51, 23, 0.06), 0 1px 2px rgba(0, 0, 0, 0.03);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.broiler-card:hover {
  border-color: rgba(48, 213, 200, 0.2);
  box-shadow: 0 16px 36px rgba(92, 51, 23, 0.08);
}

.broiler-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.125rem;
}

/* Order steps - optional connector line on desktop */
@media (min-width: 768px) {
  .order-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(50% + 2rem);
    width: calc(100% - 4rem);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0.3;
  }

  .order-step {
    position: relative;
  }
}

/* Gallery items */
.gallery-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-img {
  min-height: 140px;
}

/* Lightbox */
#lightbox {
  transition: opacity 0.3s ease;
}

#lightbox.show {
  display: flex !important;
  opacity: 1;
}

#lightbox img {
  animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Supply cards - premium glass on turquoise */
.supply-card {
  font-family: 'Plus Jakarta Sans', sans-serif;
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.supply-card:hover {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.supply-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .supply-card h3 {
    font-size: 1.3125rem;
  }
}

#supply .supply-card p {
  font-size: 1.0625rem;
  line-height: 1.62;
  font-weight: 500;
}

@media (min-width: 768px) {
  #supply .supply-card p {
    font-size: 1.125rem;
  }
}

#supply .supply-card {
  padding: 1.5rem 1.35rem;
}

@media (min-width: 768px) {
  #supply .supply-card {
    padding: 1.75rem 1.5rem;
  }
}

/* Trust section - premium pill badges */
.trust-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(48, 213, 200, 0.25);
  box-shadow: 0 2px 12px rgba(92, 51, 23, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(92, 51, 23, 0.1);
}

.trust-badge span:last-child {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1.0625rem;
}

@media (min-width: 768px) {
  .trust-badge span:last-child {
    font-size: 1.125rem;
  }
}

/* WhatsApp CTA - premium button */
.whatsapp-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.02em;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35);
}

/* Contact block text */
#contact h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
}

@media (min-width: 768px) {
  #contact h3 {
    font-size: 1.3125rem;
  }
}

#contact .grid > div > p {
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 500;
}

/* Office address — match premium section scale */
#office-address .section-subtitle {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  #office-address .section-subtitle {
    font-size: 1.3125rem;
    line-height: 1.72;
  }
}

#office-address h3.font-semibold {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

#office-address .rounded-2xl p {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
}

@media (min-width: 768px) {
  #office-address h3.font-semibold {
    font-size: 1.3125rem;
  }

  #office-address .rounded-2xl p {
    font-size: 1.125rem;
  }
}

/* WhatsApp order strip */
#whatsapp-order .container > p {
  font-size: 1.25rem;
  line-height: 1.65;
  font-weight: 500;
}

@media (min-width: 768px) {
  #whatsapp-order .container > p {
    font-size: 1.375rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Footer - refined */
footer {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

footer a[href="#"] img {
  filter: brightness(1.05);
}

/* Scroll to top button - visible state */
#scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Lazy loading placeholder */
.lazy-img {
  background-color: rgba(26, 95, 60, 0.08);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* Print */
@media print {
  header,
  #scroll-top,
  .btn-primary,
  .btn-secondary,
  .whatsapp-cta,
  footer a[href*="wa.me"] {
    box-shadow: none !important;
  }

  .hero-overlay {
    background: rgba(45, 74, 62, 0.95);
  }
}
