/* ==========================================
   SIGN MAKERS PUNE — PREMIUM CSS v8
   Beige + Olive + Gold | Luxury Refined
========================================== */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap");

/* ===============================
   CSS VARIABLES
================================ */
:root {
  --olive:         #556b2f;
  --olive-dark:    #3f5220;
  --olive-light:   rgba(85,107,47,0.10);
  --olive-border:  rgba(85,107,47,0.28);

  --gold:          #c4a85a;
  --gold-soft:     rgba(196,168,90,0.22);
  --gold-border:   rgba(196,168,90,0.32);

  --beige-bg:      #f8f5ef;
  --beige-mid:     #f3ede2;
  --beige-card:    #ffffff;
  --text-dark:     #2c2c2c;
  --text-muted:    rgba(44,44,44,0.62);

  --shadow-soft:   0 6px 24px rgba(0,0,0,0.06);
  --shadow-hover:  0 18px 42px rgba(85,107,47,0.13);

  --radius:        18px;
  --radius-sm:     12px;
  --header-h:      80px;
  --touch-min:     48px;

  --font-display:  "Cormorant Garamond", Georgia, serif;
  --font-body:     "Jost", sans-serif;

  /* Animation durations — easier to slow down on mobile */
  --dur-fast:      0.28s;
  --dur-mid:       0.55s;
  --dur-slow:      0.82s;
  --ease-out:      cubic-bezier(0.22,1,0.36,1);
}

/* ===============================
   GRAIN — GPU-COMPOSITED LAYER
   Uses opacity only (no repaints)
================================ */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999998;
  opacity: 0.42;
  transform: translateZ(0);
  will-change: opacity;
}

/* ===============================
   RESET
================================ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--beige-bg);
  color: var(--text-dark);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
  overflow-x: hidden;
  width: 100%;
}
img, video { max-width: 100%; display: block; }

/* ===============================
   HEADER — PURE WHITE
================================ */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 100000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 max(28px, env(safe-area-inset-left));
  padding-right: max(28px, env(safe-area-inset-right));
 
  /* Pure white */
  background: #ffffff;
  border-bottom: 1px solid rgba(85,107,47,0.12);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: background var(--dur-mid) ease, box-shadow var(--dur-mid) ease;
  transform: translateZ(0);
  will-change: background;
}
 
/* Scrolled: stays white, shadow deepens, gold accent line appears */
.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 28px rgba(0,0,0,0.11);
}
 
.site-header.scrolled::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(196,168,90,0.45), rgba(85,107,47,0.35), transparent);
}
 
/* ── Logo — bigger & visible on white ── */
.logo {
  height: 72px; width: auto;
  user-select: none;
  -webkit-user-drag: none;
  /* No filter needed on white bg — let it render naturally */
  filter: none;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
}
.logo:hover { opacity: 0.82; transform: scale(1.04); }

/* ── Hamburger — olive on white ── */
.hamburger {
  font-size: 26px;
  cursor: pointer;
  background: none; border: none;
  color: var(--olive);
  z-index: 100001;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  touch-action: manipulation;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.hamburger:hover  { background: var(--olive-light); }
.hamburger:active { transform: scale(0.92); }
/* ===============================
   MOBILE MENU
================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: -100%;
  width: min(280px,82vw);
  height: 100dvh;
  background: rgba(254,252,246,0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 8px 0 36px rgba(0,0,0,0.12);
  padding-top: 94px;
  display: flex; flex-direction: column;
  transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 100002;
  list-style: none;
  border-right: 1px solid rgba(85,107,47,0.07);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateZ(0);
  will-change: left;
}
.mobile-menu.active { left: 0; }
.mobile-menu::before {
  content: "MENU";
  position: absolute; top: 26px; left: 26px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; color: var(--olive); opacity: 0.48;
}
.mobile-menu a {
  text-decoration: none;
  font-size: 15px; font-weight: 500;
  color: var(--text-dark);
  padding: 0 24px;
  height: var(--touch-min);
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: color var(--dur-fast), background var(--dur-fast), padding-left var(--dur-fast);
  touch-action: manipulation;
  position: relative;
}
.mobile-menu a:hover  { color: var(--olive); background: rgba(85,107,47,0.055); padding-left: 30px; }
.mobile-menu a:active { background: rgba(85,107,47,0.10); }
.mobile-menu a.active-page {
  color: var(--olive); font-weight: 600;
  background: rgba(85,107,47,0.055);
}
.mobile-menu a.active-page::after {
  content: "";
  position: absolute; left: 0; top: 0;
  height: 100%; width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--olive));
  border-radius: 0 2px 2px 0;
}
.close-menu {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  font-size: 20px; cursor: pointer; color: var(--olive);
  z-index: 999999;
  min-width: var(--touch-min); min-height: var(--touch-min);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  touch-action: manipulation;
  transition: color var(--dur-fast), transform 0.3s, background var(--dur-fast);
}
.close-menu:hover  { color: var(--olive-dark); transform: rotate(90deg); background: var(--olive-light); }
.close-menu:active { transform: rotate(90deg) scale(0.9); }

/* ===============================
   HERO
================================ */
.hero {
  height: calc(100svh - var(--header-h));
  min-height: 520px;
  display: flex; justify-content: center; align-items: center;
  text-align: center;
  position: relative;
  padding: 32px 24px;
  overflow: hidden;
  background: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1600&q=85&auto=format&fit=crop")
    no-repeat center center / cover;
  background-attachment: fixed;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(10,18,8,0.72) 0%, rgba(38,52,18,0.56) 55%, rgba(10,18,8,0.78) 100%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(108deg, transparent 44%, rgba(196,168,90,0.05) 45%, rgba(196,168,90,0.05) 46%, transparent 47%);
  pointer-events: none; z-index: 0;
}
.hero-content {
  position: relative; z-index: 1;
  width: 100%; max-width: 720px;
  padding: 52px;
  border-radius: 24px;
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.13), inset 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.76);
  opacity: 0; transform: translateY(28px);
  animation: heroReveal 1s var(--ease-out) 0.2s forwards;
}
.hero-content::before {
  content: "";
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px; opacity: 0.55;
}
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(30px,5.5vw,58px);
  font-weight: 400; color: #2a2a2a;
  line-height: 1.12; letter-spacing: -0.5px;
}
.hero-content h1 em { font-style: italic; color: var(--olive); }
.hero-content p {
  font-size: clamp(14px,2.2vw,17px);
  line-height: 1.82; color: var(--text-muted);
  margin-top: 16px; font-weight: 300;
}
.hero-btn {
  display: inline-flex; align-items: center;
  margin-top: 28px;
  padding: 14px 36px;
  background: var(--olive); color: #fff;
  font-family: var(--font-body);
  font-weight: 600; font-size: 14px; letter-spacing: 0.6px;
  border-radius: 50px; text-decoration: none;
  touch-action: manipulation;
  box-shadow: 0 6px 22px rgba(85,107,47,0.30);
  transition: background var(--dur-mid), transform var(--dur-mid), box-shadow var(--dur-mid);
  position: relative; overflow: hidden;
}
.hero-btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform var(--dur-slow) ease;
}
.hero-btn:hover::after { transform: translateX(120%); }
.hero-btn:hover  { background: var(--olive-dark); transform: translateY(-4px); box-shadow: 0 14px 32px rgba(85,107,47,0.40); }
.hero-btn:active { transform: translateY(-1px); }

/* ===============================
   SCROLL REVEAL
================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px) translateZ(0);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
  will-change: opacity, transform;
}
.reveal.revealed { opacity: 1; transform: translateY(0) translateZ(0); }

.reveal-group > * {
  opacity: 0;
  transform: translateY(24px) translateZ(0);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  will-change: opacity, transform;
}
.reveal-group.revealed > *:nth-child(1)  { opacity:1; transform:translateY(0) translateZ(0); transition-delay:0.04s; }
.reveal-group.revealed > *:nth-child(2)  { opacity:1; transform:translateY(0) translateZ(0); transition-delay:0.12s; }
.reveal-group.revealed > *:nth-child(3)  { opacity:1; transform:translateY(0) translateZ(0); transition-delay:0.20s; }
.reveal-group.revealed > *:nth-child(4)  { opacity:1; transform:translateY(0) translateZ(0); transition-delay:0.28s; }
.reveal-group.revealed > *:nth-child(5)  { opacity:1; transform:translateY(0) translateZ(0); transition-delay:0.36s; }
.reveal-group.revealed > *:nth-child(6)  { opacity:1; transform:translateY(0) translateZ(0); transition-delay:0.44s; }
.reveal-group.revealed > *:nth-child(n+7){ opacity:1; transform:translateY(0) translateZ(0); transition-delay:0.50s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-group > * { opacity:1; transform:none; transition:none; }
  .hero-content { opacity:1; transform:none; animation:none; }
  body::after { display:none; }
}

/* ===============================
   GLOBAL SECTIONS
================================ */
.section {
  padding: 96px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(30px,4vw,48px);
  font-weight: 400; color: var(--text-dark);
  letter-spacing: -0.4px; line-height: 1.1;
  margin-bottom: 16px;
}
.section h2::after {
  content: "";
  display: block; width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--olive), var(--gold));
  margin: 13px auto 0;
  border-radius: 2px; opacity: 0.65;
}
.section > p {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 16px; line-height: 1.9;
  color: var(--text-muted); font-weight: 300;
}

/* Section bg tints */
#about        { background: #fbf9f4; }
#services     { background: #f7f3ec; }
#products     { background: #f5f0e7; }
#projects     { background: #f3efe8; }
#testimonials { background: #f4f6f0; }
#contact      { background: #faf8f3; }

/* Utility: gold eyebrow label */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); opacity: 0.80;
  margin-bottom: 12px;
}

/* Utility: ornament divider */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 14px;
}
.ornament::before { content:""; height:1px; width:52px; background: linear-gradient(90deg, transparent, rgba(196,168,90,0.42)); }
.ornament::after  { content:""; height:1px; width:52px; background: linear-gradient(90deg, rgba(196,168,90,0.42), transparent); }
.ornament span { width:5px; height:5px; border-radius:50%; background: var(--gold); opacity:0.52; }

/* ===============================
   PARALLAX HELPERS
================================ */
.parallax-section { position: relative; overflow: hidden; }
.parallax-section .parallax-bg {
  position: absolute; inset: -30% 0;
  background-attachment: fixed;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  will-change: transform; pointer-events: none; z-index: 0;
}
.parallax-section .parallax-scrim {
  position: absolute; inset: 0;
  background: rgba(10,18,8,0.54); pointer-events: none; z-index: 1;
}
.parallax-section > *:not(.parallax-bg):not(.parallax-scrim) { position: relative; z-index: 2; }

.parallax-strip {
  position: relative; height: 340px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.parallax-strip .parallax-strip-bg {
  position: absolute; inset: -30% 0;
  background-attachment: fixed; background-size: cover;
  background-position: center; background-repeat: no-repeat;
  will-change: transform; pointer-events: none;
}
.parallax-strip::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(22,34,10,0.72) 0%, rgba(38,52,18,0.60) 55%, rgba(22,34,10,0.76) 100%);
  z-index: 1;
}
.parallax-strip .strip-label {
  position: relative; z-index: 2;
  color: #fff; font-family: var(--font-display);
  font-size: clamp(24px,4vw,44px); font-weight: 300; font-style: italic;
  text-align: center; text-shadow: 0 4px 22px rgba(0,0,0,0.32);
  padding: 0 24px; line-height: 1.25;
}
.parallax-strip .strip-label em { font-style: normal; color: rgba(196,168,90,0.88); }
.parallax-strip .strip-label span {
  display: block; font-family: var(--font-body);
  font-size: clamp(10px,1.4vw,13px); font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase;
  opacity: 0.62; margin-top: 14px;
}

/* ===============================
   GRIDS
================================ */
.grid, .services-grid, .contact-grid {
  margin-top: 52px;
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  max-width: 1080px;
  margin-left: auto; margin-right: auto;
}
.services-grid { grid-template-columns: repeat(3,1fr); max-width: 1000px; }

/* ===============================
   PREMIUM CARDS
================================ */
.card, .service-box, .about-card, .contact-box, .product-card {
  padding: 34px 28px;
  border-radius: var(--radius);
  background: var(--beige-card);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative; overflow: hidden;
  will-change: transform;
  transition: transform var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid),
              box-shadow var(--dur-mid);
}
.card::before, .service-box::before, .about-card::before, .contact-box::before, .product-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--olive), transparent);
  opacity: 0; transition: opacity var(--dur-mid);
  border-radius: var(--radius) var(--radius) 0 0;
}
.card::after, .service-box::after, .about-card::after, .contact-box::after, .product-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(118deg, transparent 28%, rgba(255,255,255,0.44) 50%, transparent 72%);
  transform: translateX(-110%);
  transition: transform var(--dur-slow) ease;
  pointer-events: none; border-radius: var(--radius);
}
.card:hover::before, .service-box:hover::before, .about-card:hover::before,
.contact-box:hover::before, .product-card:hover::before { opacity: 1; }
.card:hover::after, .service-box:hover::after, .about-card:hover::after,
.contact-box:hover::after, .product-card:hover::after { transform: translateX(110%); }
.card:hover, .service-box:hover, .about-card:hover, .contact-box:hover, .product-card:hover {
  transform: translateY(-7px);
  border-color: var(--olive-border);
  box-shadow: var(--shadow-hover);
}
@media (hover: none) {
  .card:hover, .service-box:hover, .about-card:hover,
  .contact-box:hover, .product-card:hover { transform: none; box-shadow: var(--shadow-soft); }
  .card:active, .service-box:active, .about-card:active,
  .contact-box:active, .product-card:active { transform: scale(0.97); border-color: var(--olive-border); }
}
.card h3, .service-box h3, .about-card h3, .contact-box h3, .product-card h2 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600;
  margin-bottom: 10px; color: var(--olive);
  letter-spacing: -0.2px; line-height: 1.2;
}
.card p, .service-box p, .about-card p, .contact-box p, .product-card p {
  font-size: 14.5px; line-height: 1.78; color: var(--text-muted);
}

/* ===============================
   ABOUT — INTRO
================================ */
.about-intro { max-width: 700px; margin: 26px auto 0; text-align: center; }
.about-intro p { font-size: 15.5px; line-height: 1.92; color: var(--text-muted); margin-bottom: 12px; font-weight: 300; }
.about-intro b  { color: var(--olive); font-weight: 600; }

/* ===============================
   ABOUT — 2×2 HIGHLIGHT CARDS
================================ */
.about-highlights {
  display: grid !important;
  grid-template-columns: repeat(2,1fr) !important;
  gap: 22px !important;
  max-width: 920px;
  margin: 48px auto 0 !important;
  align-items: stretch;
}
.about-card { width:100%; min-height:200px; display:flex; flex-direction:column; justify-content:center; }
.about-card:nth-child(1) { border-top: 2px solid rgba(196,168,90,0.5); }
.about-card:nth-child(2) { border-top: 2px solid #a8b87a; }
.about-card:nth-child(3) { border-top: 2px solid #8faa6a; }
.about-card:nth-child(4) { border-top: 2px solid rgba(196,168,90,0.4); }

/* ===============================
   ABOUT — OUR EXPERTISE
================================ */
.about-services {
  margin-top: 72px;
  text-align: center;
}

.about-services-header {
  margin-bottom: 44px;
}
.about-services-header h3 {
  font-family: var(--font-display);
  font-size: clamp(26px,3.5vw,38px);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.4px;
  line-height: 1.1;
  display: inline-block;
}
.about-services-header h3::after {
  content: "";
  display: block; width: 44px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--olive));
  border-radius: 2px; margin: 11px auto 0; opacity: 0.68;
}
.about-services-header p {
  font-size: 15px; color: var(--text-muted); font-weight: 300;
  max-width: 520px; margin: 14px auto 0; line-height: 1.8;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 660px;
  margin: 0 auto 36px;
  list-style: none !important;
  padding: 0 !important;
}

.expertise-item {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.065);
  border-left: 3px solid var(--olive);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.045);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid),
              border-color var(--dur-mid);
  will-change: transform;
}
.expertise-item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(196,168,90,0.06) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform var(--dur-slow) ease;
  pointer-events: none;
}
.expertise-item:hover { transform: translateY(-4px); border-left-color: var(--gold); box-shadow: 0 10px 24px rgba(85,107,47,0.11); }
.expertise-item:hover::before { transform: translateX(120%); }

.expertise-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(85,107,47,0.10), rgba(196,168,90,0.12));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: background var(--dur-mid);
}
.expertise-item:hover .expertise-icon {
  background: linear-gradient(135deg, rgba(85,107,47,0.16), rgba(196,168,90,0.20));
}

.expertise-label {
  font-family: var(--font-body);
  font-size: 13.5px; font-weight: 600;
  color: var(--text-dark); letter-spacing: 0.1px;
  line-height: 1.3;
}
.expertise-label span {
  display: block; font-size: 11px; font-weight: 400;
  color: var(--text-muted); margin-top: 2px; letter-spacing: 0;
}

.expertise-grid li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 310px;
  margin: 0 auto;
  width: 100%;
}

.about-closing {
  font-family: var(--font-display);
  font-size: 16px !important;
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted) !important;
  max-width: 500px;
  margin: 0 auto !important;
  line-height: 1.88 !important;
}

/* ===============================
   PRODUCTS HERO
================================ */
.products-hero {
  padding: 90px 24px;
  text-align: center;
  background: #f5efe6;
  position: relative; overflow: hidden;
}
.products-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(196,168,90,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.products-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px,5.5vw,52px); font-weight: 400;
  color: #2b2b2b; letter-spacing: -0.5px; line-height: 1.1;
}
.products-hero p {
  font-size: 16px; max-width: 680px;
  margin: 16px auto 0; color: var(--text-muted); line-height: 1.85; font-weight: 300;
}

/* ===============================
   PRODUCTS SECTION
================================ */
.products-section {
  padding: 80px 60px; background: #faf7f2;
  display: grid; gap: 26px;
  grid-template-columns: 1fr;
  max-width: 800px; margin: 0 auto;
}

/* ===============================
   TESTIMONIALS
================================ */
.testimonial-slider {
  margin-top: 52px;
  max-width: 800px; margin-left: auto; margin-right: auto;
  width: 100%; padding: 0 4px;
}
.testimonial {
  display: none;
  padding: 50px 54px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  word-break: break-word; overflow-wrap: break-word;
}
.testimonial::before {
  content: "\201C";
  position: absolute; top: 8px; left: 24px;
  font-family: var(--font-display); font-size: 90px;
  color: var(--gold); opacity: 0.12; line-height: 1; pointer-events: none;
}
.testimonial::after {
  content: "";
  position: absolute; top: 0; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.42; border-radius: 2px;
}
.testimonial.active { display: block; }
.testimonial p {
  font-family: var(--font-display);
  font-size: 19px; font-style: italic; font-weight: 400;
  line-height: 1.95; color: rgba(44,44,44,0.80);
}
.testimonial h4 {
  margin-top: 22px;
  font-family: var(--font-body);
  font-size: 11.5px; font-weight: 600;
  color: var(--olive); text-transform: uppercase; letter-spacing: 1.5px;
}
.slider-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 24px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(196,168,90,0.25);
  cursor: pointer; border: none; padding: 0;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.slider-dot.active { background: var(--gold); transform: scale(1.32); }

/* ===============================
   CONTACT GRID
================================ */
.contact-grid {
  margin-top: 48px; display: grid; gap: 24px;
  max-width: 860px; margin-left: auto; margin-right: auto;
  grid-template-columns: repeat(2,1fr); align-items: stretch;
}
.contact-box { min-height: 185px; display: flex; flex-direction: column; justify-content: center; }

/* ===============================
   PROJECTS GRID
================================ */
.projects-grid {
  margin-top: 52px; display: grid; gap: 18px;
  max-width: 1160px; margin-left: auto; margin-right: auto;
  grid-template-columns: repeat(3,1fr); width: 100%;
}
.projects-grid img, .projects-grid video {
  width: 100%; height: 240px; object-fit: cover;
  background: #f0ece4; border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid);
  cursor: pointer; will-change: transform; display: block;
}
.projects-grid img:hover, .projects-grid video:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 40px rgba(85,107,47,0.16);
}

/* ===============================
   FOOTER
================================ */
footer {
  padding: 30px 20px;
  padding-bottom: max(30px, env(safe-area-inset-bottom));
  text-align: center; font-size: 13px;
  color: rgba(44,44,44,0.46);
  background: #fdfbf7;
  border-top: 1px solid rgba(196,168,90,0.12);
  letter-spacing: 0.3px; position: relative;
}
footer::before {
  content: "";
  position: absolute; top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,168,90,0.32), transparent);
}

/* ===============================
   MENU OVERLAY BACKDROP
================================ */
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(10,14,8,0.38);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  z-index: 100001;
  opacity: 0; pointer-events: none;
  transition: opacity 0.36s ease;
}
.menu-overlay.active { opacity: 1; pointer-events: all; }

/* ════════════════════════════════
   RESPONSIVE ≤ 1024px
════════════════════════════════ */
@media (max-width: 1024px) {
  .section { padding: 80px 40px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
}

/* ════════════════════════════════
   RESPONSIVE ≤ 768px
════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --header-h: 66px;
    --dur-mid:  0.38s;
    --dur-slow: 0.55s;
  }

  body { overflow-x: hidden; }
  .logo { height: 50px; }

  .mobile-menu { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(254,252,246,0.99); }

  .hero,
  .parallax-section .parallax-bg,
  .parallax-strip .parallax-strip-bg { background-attachment: scroll; }

  .card, .service-box, .about-card, .contact-box, .product-card,
  .expertise-item, .projects-grid img, .projects-grid video { will-change: auto; }

  .section { padding: 60px 18px; }
  .section h2 { font-size: 26px; }
  .section > p { font-size: 14.5px; }

  .hero { height: auto; min-height: calc(100svh - var(--header-h)); padding: 28px 16px; }
  .hero-content { width:100%; max-width:100%; padding: 30px 22px; border-radius: 18px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .hero-btn { padding: 13px 28px; font-size: 14px; min-height: var(--touch-min); }

  .parallax-strip { height: 200px; }

  .services-grid { grid-template-columns: 1fr !important; max-width: 440px !important; margin-left: auto !important; margin-right: auto !important; gap: 14px !important; }

  .about-highlights { grid-template-columns: 1fr !important; gap: 14px !important; margin-top: 32px !important; }
  .about-card { min-height: auto; padding: 24px 18px; }

  .expertise-grid { grid-template-columns: 1fr !important; gap: 10px !important; max-width: 440px; }
  .expertise-grid li:last-child:nth-child(odd) { grid-column: auto; max-width: 100%; }
  .expertise-item { padding: 14px 16px; }
  .about-services-header h3 { font-size: 24px; }

  .projects-grid { grid-template-columns: repeat(2,1fr) !important; gap: 10px; }
  .projects-grid img, .projects-grid video { height: 150px; border-radius: 12px; }

  .testimonial { padding: 28px 20px; }
  .testimonial p { font-size: 16px; line-height: 1.85; }

  .contact-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .contact-box { min-height: 155px; padding: 22px 18px; }

  .products-section { padding: 46px 16px; }
  .products-hero { padding: 60px 16px; }

  .grid { grid-template-columns: 1fr !important; gap: 14px !important; }

  /* ── EMOJI SIZE REDUCTION ON MOBILE ── */

  /* About & service cards — was 32px inline style */
  .about-card > div[style*="font-size:32px"],
  .service-box > div[style*="font-size:32px"],
  .card > div[style*="font-size:32px"] {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }

  /* Contact page emojis */
  .contact-emoji {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }

  /* Expertise icon emojis */
  .expertise-icon {
    font-size: 13px !important;
    width: 28px !important;
    height: 28px !important;
  }
}

/* ════════════════════════════════
   RESPONSIVE ≤ 420px
════════════════════════════════ */
@media (max-width: 420px) {
  :root { --header-h: 62px; }
  .logo { height: 44px; }
  .section { padding: 48px 12px; }
  .section h2 { font-size: 23px; }
  .hero-content { padding: 22px 14px; }
  .projects-grid { grid-template-columns: 1fr !important; gap: 10px; }
  .projects-grid img, .projects-grid video { height: 210px; }
  .testimonial { padding: 22px 14px; }
  .about-card { padding: 20px 14px; }
  .about-services ul li { font-size: 13px; padding: 12px 14px; }
  .parallax-strip { height: 170px; }

  /* Even smaller on very small phones */
  .about-card > div[style*="font-size:32px"],
  .service-box > div[style*="font-size:32px"],
  .card > div[style*="font-size:32px"] {
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }

  .contact-emoji {
    font-size: 17px !important;
    margin-bottom: 8px !important;
  }

  .expertise-icon {
    font-size: 11px !important;
    width: 24px !important;
    height: 24px !important;
  }
}
