/* ════════════════════════════════════════════════════════
   Urban Yards Nagpur — v3 Redesign
   Direction   : Lush Botanical Luxury — Editorial Premium
   Typography  : Fraunces (display) + Outfit (body)
   Palette     : Deep Forest · Warm Amber · Terracotta · Ivory
   Designer    : Senior UI/UX Refresh — visibility-first
   ════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  /* Greens */
  --forest:    #1A4D2E;
  --forest-d:  #0E2D1C;
  --forest-m:  #247040;
  --forest-l:  #37A869;
  --forest-xl: #A8E6C3;
  --forest-bg: #EFF7F3;

  /* Golds */
  --gold:      #F5A623;
  --gold-d:    #D8890B;
  --gold-l:    #FDDFA4;
  --gold-bg:   #FFF8E8;

  /* Terracotta */
  --terra:     #C9614A;
  --terra-l:   #EBA890;

  /* Backgrounds */
  --ivory:     #FAFAF6;
  --ivory-d:   #F0EDE2;
  --cream:     #FFFFFF;
  --soft-green:#F4FAF6;

  /* Text — high contrast */
  --dark:      #0D1F14;
  --text:      #1A2C21;
  --text-m:    #3F5649;
  --text-l:    #718B7D;

  /* Gradients */
  --grad-hero:     linear-gradient(155deg, #0D1F14 0%, #1A4D2E 52%, #1E5732 100%);
  --grad-forest:   linear-gradient(135deg, #1A4D2E 0%, #247040 100%);
  --grad-gold:     linear-gradient(135deg, #F5A623 0%, #F8BB4F 100%);
  --grad-services: linear-gradient(155deg, #0D1F14 0%, #122E1E 55%, #1A4D2E 100%);
  --grad-testi:    linear-gradient(145deg, #080F0A 0%, #0D1F14 100%);

  /* Radii */
  --r:     18px;
  --r-sm:  10px;
  --r-lg:  32px;
  --r-pill:100px;

  /* Motion */
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.34, 1.40, 0.64, 1);
  --t:      all 0.35s var(--ease);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 17px;       /* ↑ from 16px — all rem scales up ~6% */
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.72;
}

/* Headings — Fraunces is an optical-size variable serif, warm & editorial */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  line-height: 1.15;
  color: var(--forest);
}

p { font-size: 1.05rem; color: var(--text-m); line-height: 1.75; margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--forest-xl); color: var(--forest-d); }

/* ─── CUSTOM CURSOR ─── */
.cursor-dot {
  width: 9px; height: 9px;
  background: var(--forest);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.1s, background 0.2s;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: all 0.18s var(--ease);
}

/* ─── PAGE LOADER ─── */
#pageLoader {
  position: fixed; inset: 0;
  background: var(--grad-hero);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity 0.55s ease, visibility 0.55s;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }
.logo-icon { width: 140px; height: 58px; object-fit: contain; }

.loader-text {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  margin: 14px 0 18px;
  letter-spacing: 0.07em;
}
.loader-bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px; overflow: hidden; margin: 0 auto;
}
.loader-fill {
  height: 100%; background: var(--gold); border-radius: 99px;
  animation: loadFill 1.8s ease forwards;
}
@keyframes loadFill { from { width: 0 } to { width: 100% } }
@keyframes loaderPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }

/* ─── HEADER ─── */
#siteHeader { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

.header-top-strip {
  background: var(--grad-forest);
  padding: 8px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 32px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  flex-wrap: wrap;
}
.header-top-strip i { color: var(--gold); margin-right: 5px; }
.header-top-strip a { color: rgba(255,255,255,0.85); }
.header-top-strip a:hover { color: var(--gold-l); }
.header-social { display: flex; gap: 12px; }
.header-social a {
  color: rgba(255,255,255,0.65); font-size: 0.9rem;
  transition: color 0.2s;
}
.header-social a:hover { color: var(--gold); }

#mainNav2 {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,77,46,0.08);
  padding: 2px 0;
  transition: var(--t);
}
#mainNav2.scrolled {
  /* background: rgba(13,29,20,0.97); */
  background: rgba(255,255,255,0.97);
  border-bottom-color: transparent;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.logo-wrap { display: flex; align-items: center; gap: 8px; }
.logo-name {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 550;
  font-size: 1.00rem;
  color: var(--forest);
  line-height: 0.8;
  letter-spacing: -0.01em;
}
.logo-city {
  display: block;
  font-size: 0.50rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-d);
}
#mainNav2.scrolled .logo-name { color: var(--forest); }
#mainNav2.scrolled .logo-city { color: var(--gold-d); }

.nav-lnk {
  display: block;
  padding: 8px 15px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--black);
  border-radius: var(--r-sm);
  transition: var(--t);
  position: relative;
}
.nav-lnk::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 15px; right: 15px;
  height: 2px;
  background: var(--black);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
  border-radius: 2px;
}
.nav-lnk:hover::after, .nav-lnk.active::after { transform: scaleX(1); }
.nav-lnk:hover { color: var(--forest); }
#mainNav2.scrolled .nav-lnk { color: var(--forest); }
#mainNav2.scrolled .nav-lnk:hover { color: var(--forest); }

.nav-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad-gold);
  color: var(--forest-d) !important;
  font-weight: 700; font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: var(--r-pill);
  transition: var(--t);
  box-shadow: 0 4px 16px rgba(245,166,35,0.28);
}
.nav-btn:hover {
  background: var(--forest-m); color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,77,46,0.30);
}

/* Hamburger */
.navbar-toggler2 {
  background: transparent; border: none;
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.navbar-toggler2 span {
  display: block; width: 25px; height: 2px;
  background: var(--forest); border-radius: 99px;
  transition: var(--t);
}
#mainNav2.scrolled .navbar-toggler2 span { background: var(--forest); }

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--grad-gold);
  color: var(--forest-d);
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  padding: 7px 7px 7px 26px;
  border-radius: var(--r-pill);
  border: none; cursor: pointer;
  transition: var(--t);
  box-shadow: 0 4px 16px rgba(245,166,35,0.25);
  text-decoration: none;
}
.btn-gold:hover {
  background: var(--forest-m); color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,77,46,0.28);
}
.btn-circle {
  width: 40px; height: 40px;
  background: var(--forest);
  color: white; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.88rem;
  transition: var(--t); flex-shrink: 0;
}
.btn-gold:hover .btn-circle { background: var(--gold); color: var(--forest-d); }

.btn-ghost2 {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.45);
  padding: 12px 26px;
  border-radius: var(--r-pill);
  font-size: 0.95rem; font-weight: 600;
  transition: var(--t);
}
.btn-ghost2:hover {
  border-color: white; background: rgba(255,255,255,0.12); color: white;
}

/* ─── SECTION SHARED ─── */
.section2 { padding: 20px 0; }

.section2-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
}
.section2-label::before {
  content: ''; width: 36px; height: 2px;
  background: var(--terra); border-radius: 99px;
}
.light-label { color: var(--gold-l); }
.light-label::before { background: var(--gold-l); }

.section2-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500; color: var(--forest);
  margin-bottom: 13px; line-height: 1;
}
.section2-title em { color: var(--terra); font-style: italic; }
.light-title { color: white; }
.light-title em { color: var(--gold); }

.section2-sub {
  color: var(--text-m); max-width: 580px;
  margin: 0 auto; font-size: 1.1rem; line-height: 1.75;
}
.light-sub { color: rgba(255,255,255,0.68); }
.section2-head { margin-bottom: 64px; }

/* ─── SCROLL REVEAL ─── */
.fade-up {
  opacity: 0; transform: translateY(52px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero2 {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding-top: calc(38px + 48px);
}

/* Decorative botanical shapes */
.hero-deco { position: absolute; pointer-events: none; }
.deco-tl { top: -80px; left: -60px; width: 420px; opacity: 0.65; }
.deco-br { bottom: -40px; right: -30px; width: 260px; }

.hero2-grid {
  flex: 1; display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 60px 0 44px;
}

.hero2-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hero2-title {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 900; color: white;
  line-height: 1.1; margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero2-title em { color: var(--gold); font-style: italic; }

.hero2-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  line-height: 1.72; max-width: 470px;
  margin-bottom: 22px; font-family: 'Outfit', sans-serif;
}
.hero2-actions {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; margin-bottom: 56px;
}

.hero2-trust {
  display: flex; align-items: center; gap: 30px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 34px;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong {
  font-family: 'Fraunces', serif; font-size: 1.85rem;
  font-weight: 700; color: var(--gold); line-height: 1;
}
.trust-item span {
  font-size: 0.78rem; color: rgba(255,255,255,0.52);
  text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px;
}
.trust-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.14); }

/* Hero Visual */
.hero2-visual { display: flex; gap: 14px; align-items: flex-start; }
.hero2-img-frame { position: relative; flex: 1; }
.hero2-main-img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: 220px 220px var(--r) var(--r);
  box-shadow: 0 32px 90px rgba(13,29,20,0.50);
}
.hero2-badge-float {
  position: absolute;
  display: flex; align-items: center; gap: 9px;
  background: white; border-radius: var(--r-pill);
  padding: 11px 20px;
  font-size: 0.85rem; font-weight: 700; color: var(--forest);
  box-shadow: 0 10px 36px rgba(13,29,20,0.20);
  animation: floatBadge 3.2s ease-in-out infinite;
}
.hero2-badge-float i { color: var(--gold); }
.badge-f1 { top: 44px; right: -20px; animation-delay: 0s; }
.badge-f2 { bottom: 68px; right: -26px; animation-delay: 1.6s; }
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.hero2-side-imgs {
  display: flex; flex-direction: column; gap: 13px;
  width: 145px; padding-top: 44px;
}
.hero2-side-imgs img {
  width: 100%; height: 175px; object-fit: cover;
  border-radius: 90px 90px var(--r-sm) var(--r-sm);
  box-shadow: 0 10px 34px rgba(13,29,20,0.24);
}

/* Hero Ticker */
.hero-ticker {
  background: var(--gold);
  padding: 5px 0; overflow: hidden; white-space: nowrap;
  margin-top: auto;
}
.ticker-track {
  display: inline-flex; gap: 36px;
  animation: ticker 26s linear infinite;
  font-size: 0.9rem; font-weight: 700;
  color: var(--forest-d); letter-spacing: 0.04em;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-track span { flex-shrink: 0; }

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about2 { background: var(--ivory); position: relative; padding-bottom: 25px; }

.about2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px; align-items: center;
}
.about-img-stack { position: relative; padding: 20px 20px 20px 0; }
.ab-img { border-radius: var(--r); }
.ab-main {
  width: 100%; height: 490px; object-fit: cover;
  box-shadow: 0 24px 70px rgba(26,77,46,0.18);
}
.ab-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 185px; height: 185px;
  border: 5px solid var(--ivory);
  box-shadow: 0 12px 44px rgba(0,0,0,0.16);
  border-radius: var(--r);
}
.ab-stat-card {
  position: absolute; top: 30px; left: -30px;
  background: var(--grad-gold); border-radius: var(--r);
  padding: 12px 16px;
  box-shadow: 0 8px 20px rgba(245,166,35,0.40);
  text-align: center;
}
.ab-stat-num {
  font-family: 'Fraunces', serif; font-size: 0.88rem; font-weight: 600;
  color: var(--forest-d); text-transform: uppercase; letter-spacing: 0.12em;
}
.ab-stat-yr {
  font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 700;
  color: var(--forest-d); line-height: 1;
}
.ab-stat-icon { color: var(--forest); font-size: 1.4rem; margin-top: 7px; }

.about2-text p { 
  color: var(--text-m); margin-bottom: 18px; line-height: 1.78;
  font-size: 1.05rem;
}

.about2-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; margin-top: 34px;
}
.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar-icon {
  width: 42px; height: 42px;
  background: var(--forest); border-radius: 12px;
  display: grid; place-items: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
  transition: var(--t);
}
.pillar:hover .pillar-icon { background: var(--gold); color: var(--forest); }
.pillar h6 {
  font-family: 'Outfit', sans-serif; font-size: 0.95rem;
  font-weight: 700; color: var(--forest); margin-bottom: 3px;
}
.pillar p { font-size: 0.88rem; color: var(--text-l); margin: 0; line-height: 1.55; }

.diagonal-cut {
  position: absolute; bottom: 0; left: 0; right: 0; height: 110px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services2 {
  background: var(--grad-services);
  position: relative; overflow: hidden;
}
.services2-bg-leaf {
  position: absolute; right: -80px; top: -60px;
  width: 520px; opacity: 1; pointer-events: none;
}

.services2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card2 {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r);
  padding: 38px 30px;
  position: relative; overflow: hidden;
  transition: var(--t);
}
.svc-card2::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--terra));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s ease;
}
.svc-card2:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.25);
}
.svc-card2:hover::before { transform: scaleX(1); }

.svc-featured {
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.30);
}
.svc-featured::before { transform: scaleX(1); background: var(--gold); }

.svc-num {
  font-family: 'Fraunces', serif; font-size: 3.2rem; font-weight: 700;
  color: rgba(255,255,255,0.065);
  position: absolute; top: 12px; right: 22px; line-height: 1;
}
.svc-icon2 {
  width: 56px; height: 56px;
  background: rgba(245,166,35,0.15);
  border-radius: 14px; display: grid; place-items: center;
  font-size: 1.35rem; color: var(--gold);
  margin-bottom: 20px; transition: var(--t);
}
.svc-card2:hover .svc-icon2 { background: var(--gold); color: var(--forest-d); }
.svc-card2 h4 { font-size: 1.15rem; color: white; margin-bottom: 12px; line-height: 1.3; }
.svc-card2 p { font-size: 0.95rem; color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 18px; }
.svc-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.svc-tags span {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.07em;
  color: var(--gold-l); background: rgba(245,166,35,0.14);
  padding: 4px 12px; border-radius: 50px;
}

/* ════════════════════════════════════════
   PRODUCTS
════════════════════════════════════════ */
.products2 { background: var(--cream); }

.prod-tabs {
  display: flex; gap: 9px; justify-content: center;
  margin-bottom: 52px; flex-wrap: wrap;
}
.prod-tab {
  background: transparent;
  border: 1.5px solid rgba(26,77,46,0.20);
  color: var(--text-m);
  padding: 10px 26px;
  border-radius: var(--r-pill);
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: var(--t);
  font-family: 'Outfit', sans-serif;
}
.prod-tab:hover { border-color: var(--forest); color: var(--forest); }
.prod-tab.active {
  background: var(--forest); border-color: var(--forest); color: white;
  box-shadow: 0 4px 16px rgba(26,77,46,0.28);
}

.products2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.prod-card2 {
  background: var(--ivory);
  border-radius: var(--r); overflow: hidden;
  border: 1px solid rgba(26,77,46,0.07);
  transition: var(--t); position: relative;
}
.prod-card2:hover {
  transform: translateY(-9px);
  box-shadow: 0 22px 56px rgba(26,77,46,0.13);
  border-color: rgba(26,77,46,0.12);
}
.prod-card2--featured {
  grid-column: span 2;
  display: grid; grid-template-columns: 1.2fr 1fr;
}
.prod-card2--featured .prod2-img { height: 100%; min-height: 290px; }

.prod2-img {
  position: relative; height: 290px; overflow: hidden;
}
.prod2-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.prod-card2:hover .prod2-img img { transform: scale(1.07); }
.prod2-tag {
  position: absolute; top: 13px; left: 13px;
  background: var(--terra); color: white;
  font-size: 0.73rem; font-weight: 700;
  padding: 5px 13px; border-radius: 50px; letter-spacing: 0.06em;
}
.prod2-tag.rare { background: var(--forest); }
.prod2-tag.eco { background: var(--forest-m); }
.prod2-tag.gift { background: #7B5EA7; }

.prod2-hover-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,29,20,0.90), transparent);
  color: rgba(255,255,255,0.88);
  font-size: 0.8rem; font-weight: 500;
  padding: 28px 16px 14px;
  transform: translateY(100%);
  transition: transform 0.32s ease;
}
.prod-card2:hover .prod2-hover-info { transform: translateY(0); }

.prod2-body { padding: 22px; }
.prod2-cat {
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 7px;
}
.prod2-body h3 { font-size: 1.1rem; color: var(--forest); margin-bottom: 9px; }
.prod2-body p { font-size: 0.92rem; color: var(--text-m); line-height: 1.65; margin-bottom: 16px; }
.prod2-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.88rem; font-weight: 700; color: var(--forest);
  transition: gap 0.22s;
}
.prod2-link:hover { gap: 12px; color: var(--terra); }

/* ════════════════════════════════════════
   SOLUTIONS
════════════════════════════════════════ */
.solutions2 { background: var(--soft-green); }

.solutions2-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 84px; align-items: center;
}
.sol-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 285px 205px;
  gap: 14px; position: relative;
}
.sol-m { border-radius: var(--r); object-fit: cover; width: 100%; height: 100%; }
.sol-m1 { grid-column: 1; grid-row: 1/3; }
.sol-m2 { grid-column: 2; grid-row: 1; }
.sol-m3 { grid-column: 2; grid-row: 2; }

.sol-mosaic-badge {
  position: absolute; bottom: -22px; left: 22px;
  background: var(--grad-gold); border-radius: var(--r);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 14px 44px rgba(245,166,35,0.42);
  font-size: 0.88rem; font-weight: 700;
  color: var(--forest-d); line-height: 1.35;
}
.sol-mosaic-badge i { font-size: 1.35rem; }

.sol2-list { display: flex; flex-direction: column; gap: 24px; margin-top: 30px; }
.sol2-item { display: flex; gap: 18px; align-items: flex-start; }
.sol2-bullet {
  width: 44px; height: 44px; background: var(--forest);
  border-radius: 12px; display: grid; place-items: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
  transition: var(--t);
}
.sol2-item:hover .sol2-bullet { background: var(--gold); color: var(--forest); transform: rotate(-6deg) scale(1.05); }
.sol2-detail h6 {
  font-family: 'Outfit', sans-serif; font-size: 1rem;
  font-weight: 700; color: var(--forest); margin-bottom: 4px;
}
.sol2-detail p { font-size: 0.92rem; color: var(--text-m); margin: 0; line-height: 1.6; }

/* ════════════════════════════════════════
   GALLERY / MIYAWAKI
════════════════════════════════════════ */
.gallery2 { background: var(--cream); }

.gallery2-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: 14px;
}
.gal2-item {
  position: relative; overflow: hidden;
  border-radius: var(--r); display: block;
}
.gal2-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.gal2-item:hover img { transform: scale(1.08); }
.gal2-tall { grid-row: span 2; }
.gal2-wide { grid-column: span 2; }

.gal2-overlay {
  position: absolute; inset: 0;
  background: rgba(13,29,20,0);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 22px; color: white; opacity: 0;
  transition: var(--t);
}
.gal2-overlay i { font-size: 1.5rem; margin-bottom: 7px; }
.gal2-overlay span { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.gal2-item:hover .gal2-overlay { background: rgba(13,29,20,0.58); opacity: 1; }

/* ════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════ */
.why2 { background: var(--ivory); position: relative; overflow: hidden; }
.why2-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Fraunces', serif; font-size: 15vw; font-weight: 700;
  color: rgba(26,77,46,0.04); white-space: nowrap; pointer-events: none;
  letter-spacing: 0.1em;
}

.why2-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.why2-card {
  background: white; border-radius: var(--r);
  padding: 38px 30px;
  border: 1px solid rgba(26,77,46,0.07);
  transition: var(--t); position: relative; overflow: hidden;
}
.why2-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--forest-l), var(--gold));
  transform: scaleX(0); transition: transform 0.38s ease;
}
.why2-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 56px rgba(26,77,46,0.12);
}
.why2-card:hover::after { transform: scaleX(1); }
.why2-icon-wrap {
  width: 56px; height: 56px; background: var(--forest-bg);
  border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; color: var(--forest);
  margin-bottom: 20px; transition: var(--t);
}
.why2-card:hover .why2-icon-wrap { background: var(--forest); color: var(--gold); }
.why2-card h5 { font-size: 1.1rem; color: var(--forest); margin-bottom: 12px; }
.why2-card p { font-size: 0.95rem; color: var(--text-m); margin: 0; line-height: 1.7; }

/* ── Differentiator comparison ── */
.why2 .about2-grid { margin-top: 0; }
.why2 .about2-text { padding: 34px 36px; }
.why2 .about2-text:first-child { background: var(--ivory-d); border-radius: var(--r); }
.why2 .about2-text:last-child {
  background: var(--forest);
  border-radius: var(--r);
}
.why2 .about2-text:last-child .section2-title { color: white; }
.why2 .about2-text:last-child p { color: rgba(255,255,255,0.82); font-size: 1rem; margin-bottom: 10px; }
.why2 .about2-text p { font-size: 1rem; margin-bottom: 10px; }
.why2 .about2-text:first-child .section2-title { color: var(--terra); }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testi2 { background: var(--grad-testi); overflow: hidden; }

.testi2-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.testi2-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r); padding: 38px 30px;
  position: relative; transition: var(--t);
}
.testi2-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-5px); }
.testi2-featured { background: var(--gold); border-color: var(--gold); }
.testi2-featured:hover { background: var(--gold-d); }

.testi2-quote {
  font-family: 'Fraunces', serif; font-size: 5.5rem;
  color: rgba(255,255,255,0.11); line-height: 0.7; margin-bottom: 18px;
}
.testi2-featured .testi2-quote { color: rgba(13,29,20,0.14); }

.testi2-card > p {
  font-size: 1rem; color: rgba(255,255,255,0.80);
  line-height: 1.75; margin-bottom: 26px; font-style: italic;
}
.testi2-featured > p { color: var(--forest-d); }

.testi2-footer { display: flex; align-items: center; gap: 14px; }
.testi2-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1rem; color: white; flex-shrink: 0;
}
.testi2-footer strong {
  display: block; color: white; font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
}
.testi2-featured .testi2-footer strong { color: var(--forest-d); }
.testi2-footer span { font-size: 0.8rem; color: rgba(255,255,255,0.52); }
.testi2-featured .testi2-footer span { color: rgba(13,29,20,0.60); }
.testi2-stars { color: var(--gold); font-size: 0.9rem; margin-top: 2px; }
.testi2-featured .testi2-stars { color: var(--forest); }

/* ════════════════════════════════════════
   HOURS
════════════════════════════════════════ */
.hours2 { background: var(--grad-services); padding: 84px 0; }
.hours2-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 28px; padding: 64px;
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 64px; align-items: center;
}
.hours2-left p { color: rgba(255,255,255,0.68); margin-top: 10px; font-size: 1rem; }
.hours2-right { display: flex; flex-direction: column; gap: 16px; }
.hours2-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 17px 26px;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  transition: var(--t);
}
.hours2-row:hover { background: rgba(255,255,255,0.13); }
.hours2-special { background: rgba(245,166,35,0.13) !important; border-color: rgba(245,166,35,0.28) !important; }
.hours2-day { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.82); font-size: 0.95rem; font-weight: 600; }
.hours2-day i { color: var(--gold); }
.hours2-time { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 700; color: white; }
.golden { color: var(--gold) !important; }
.special-chip {
  background: var(--gold); color: var(--forest-d);
  font-size: 0.68rem; font-weight: 700;
  padding: 3px 9px; border-radius: 50px;
  margin-left: 6px; letter-spacing: 0.08em;
}
.hours2-note { font-size: 0.82rem; color: rgba(255,255,255,0.42); margin-top: 4px; font-style: italic; }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact2 { background: var(--ivory); }
.contact2-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start;
}

.contact2-info { display: flex; flex-direction: column; gap: 26px; }
.cinfo-block { display: flex; gap: 18px; align-items: flex-start; }
.cinfo-icon {
  width: 48px; height: 48px; background: var(--forest);
  border-radius: 13px; display: grid; place-items: center;
  color: var(--gold); font-size: 1.15rem; flex-shrink: 0;
  transition: var(--t);
}
.cinfo-block:hover .cinfo-icon { background: var(--gold); color: var(--forest); transform: rotate(-5deg); }
.cinfo-block h6 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 5px;
  font-family: 'Outfit', sans-serif;
}
.cinfo-block p { font-size: 0.95rem; color: var(--text-m); margin: 0; line-height: 1.65; }
.cinfo-block a { color: var(--text-m); transition: color 0.2s; }
.cinfo-block a:hover { color: var(--forest); }

.cinfo-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.csoc {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: var(--r-pill);
  font-size: 0.88rem; font-weight: 700; transition: var(--t);
}
.csoc i { font-size: 0.95rem; }
.csoc-fb { background: #1877F2; color: white; }
.csoc-ig { background: linear-gradient(135deg,#F09433,#E6683C,#DC2743,#CC2366,#BC1888); color: white; }
.csoc:hover { transform: translateY(-3px); box-shadow: 0 9px 22px rgba(0,0,0,0.22); }

.map2-wrap iframe { border-radius: var(--r); display: block; }

.contact2-form-wrap {
  background: white; border-radius: var(--r);
  padding: 52px;
  box-shadow: 0 22px 64px rgba(26,77,46,0.10);
}
.contact2-form h4 { font-size: 1.75rem; color: var(--forest); margin-bottom: 34px; }

.form2-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.form2-group label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-m);
  font-family: 'Outfit', sans-serif;
}
.form2-group input,
.form2-group select,
.form2-group textarea {
  border: 1.5px solid rgba(26,77,46,0.14);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  font-size: 0.97rem;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--ivory);
  transition: var(--t); outline: none;
}
.form2-group input:focus,
.form2-group select:focus,
.form2-group textarea:focus {
  border-color: var(--forest); background: white;
  box-shadow: 0 0 0 3.5px rgba(26,77,46,0.10);
}
textarea { resize: vertical; }
.form2-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact2-form .btn-gold { width: 100%; justify-content: center; padding: 10px 20px; font-size: 1rem; }
.form2-success {
  background: rgba(55,168,105,0.10); border: 1px solid rgba(55,168,105,0.30);
  border-radius: var(--r-sm); padding: 15px 20px;
  color: var(--forest); font-weight: 600;
  display: flex; align-items: center; gap: 10px; margin-top: 18px;
  font-size: 0.80rem;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer2 { background: var(--dark); }
.footer2-top { padding: 84px 0 64px; position: relative; overflow: hidden; }
.footer2-leaf-deco { position: absolute; right: -40px; top: -60px; width: 420px; pointer-events: none; }

.footer2-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.f2-name {
  display: block; font-family: 'Fraunces', serif; font-size: 1.4rem;
  font-weight: 700; color: white; line-height: 1;
}
.f2-city {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.footer2-desc {
  font-size: 0.93rem; color: rgba(255,255,255,0.50);
  line-height: 1.75; max-width: 310px;
}
.footer2-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer2-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07); border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.65); font-size: 0.95rem;
  transition: var(--t);
}
.footer2-socials a:hover { background: var(--gold); color: var(--forest-d); transform: translateY(-3px); }

.footer2-heading {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.17em; color: white; margin-bottom: 22px;
  font-family: 'Outfit', sans-serif;
}
.footer2-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer2-list a {
  color: rgba(255,255,255,0.50); font-size: 0.93rem;
  transition: color 0.2s; display: flex; align-items: center; gap: 7px;
}
.footer2-list a::before {
  content: '→'; font-size: 0.72rem; color: var(--gold);
  opacity: 0; transform: translateX(-6px); transition: all 0.2s;
}
.footer2-list a:hover { color: white; }
.footer2-list a:hover::before { opacity: 1; transform: translateX(0); }

.footer2-contact { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.footer2-contact li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.93rem; color: rgba(255,255,255,0.50); }
.footer2-contact li i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer2-contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer2-contact a:hover { color: white; }

.footer2-bottom {
  background: rgba(0,0,0,0.30);
  padding: 22px 0; text-align: center;
  font-size: 0.88rem; color: rgba(255,255,255,0.32);
}
.footer2-bottom i { color: var(--terra); }

/* ════════════════════════════════════════
   SCROLL TO TOP & WHATSAPP
════════════════════════════════════════ */
#scrollTop2 {
  position: fixed; bottom: 34px; right: 34px;
  width: 52px; height: 52px;
  background: var(--grad-gold);
  color: var(--forest-d); border: none;
  border-radius: 50%; font-size: 1.05rem;
  cursor: pointer; z-index: 1000;
  box-shadow: 0 6px 26px rgba(245,166,35,0.44);
  transition: var(--t); opacity: 0; pointer-events: none;
}
#scrollTop2.visible { opacity: 1; pointer-events: all; }
#scrollTop2:hover {
  background: var(--forest-m); color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(26,77,46,0.35);
}

.wa-float2 {
  position: fixed; bottom: 96px; right: 34px;
  width: 54px; height: 54px; background: #25D366; color: white;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 1.6rem; z-index: 1000;
  box-shadow: 0 6px 26px rgba(37,211,102,0.48);
  transition: var(--t);
  animation: waPulse2 2.6s ease-in-out infinite;
}
.wa-float2:hover { transform: scale(1.13); color: white; }
@keyframes waPulse2 {
  0%,100%{box-shadow:0 6px 26px rgba(37,211,102,0.48)}
  50%{box-shadow:0 6px 44px rgba(37,211,102,0.78)}
}

/* ════════════════════════════════════════
   RESPONSIVE — Tablet & Mobile
════════════════════════════════════════ */
@media (max-width:1199px) {
  .products2-grid { grid-template-columns: repeat(3,1fr); }
  .prod-card2--featured { grid-column: span 3; grid-template-columns: 1fr 1fr; }
  .services2-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width:991px) {
  html { font-size: 16px; }
  .section2 { padding: 80px 0; }
  .hero2-grid { grid-template-columns: 1fr; padding: 40px 0 0; text-align: center; }
  .hero2-content { display: flex; flex-direction: column; align-items: center; }
  .hero2-sub { text-align: center; }
  .hero2-visual { justify-content: center; max-width: 520px; margin: 0 auto; }
  .hero2-main-img { height: 420px; }
  .hero2-side-imgs { width: 110px; }
  .about2-grid, .solutions2-grid, .contact2-grid { grid-template-columns: 1fr; }
  .about-img-stack { max-width: 520px; margin: 0 auto; }
  .sol-mosaic { max-width: 500px; margin: 0 auto; }
  .testi2-track { grid-template-columns: 1fr 1fr; }
  .testi2-card:last-child { grid-column: span 2; }
  .hours2-card { grid-template-columns: 1fr; gap: 42px; }
  .why2-grid { grid-template-columns: repeat(2,1fr); }
  .gallery2-masonry { grid-template-columns: repeat(2,1fr); }
  .gal2-tall { grid-row: span 1; }
  .products2-grid { grid-template-columns: repeat(2,1fr); }
  .prod-card2--featured { grid-column: span 2; }
  .why2 .about2-grid { grid-template-columns: 1fr; }
  .why2 .about2-text { padding: 28px 24px; }
}

@media (max-width:767px) {
  html { font-size: 15.5px; }
  .section2 { padding: 64px 0; }
  .hero2-title { font-size: 2.7rem; }
  .testi2-track { grid-template-columns: 1fr; }
  .testi2-card:last-child { grid-column: span 1; }
  .why2-grid { grid-template-columns: 1fr; }
  .services2-grid { grid-template-columns: 1fr; }
  .about2-pillars { grid-template-columns: 1fr; }
  .hours2-card { padding: 38px 26px; }
  .contact2-form-wrap { padding: 32px 22px; }
  .form2-row { grid-template-columns: 1fr; }
  .header-top-strip { gap: 16px; font-size: 0.75rem; }
  .hero2-visual { display: none; }
  .gallery2-masonry { grid-template-columns: 1fr 1fr; }
  .gal2-wide { grid-column: span 2; }
  .products2-grid { grid-template-columns: 1fr 1fr; }
  .prod-card2--featured { grid-column: span 2; grid-template-columns: 1fr; }
}

@media (max-width:480px) {
  html { font-size: 15px; }
  .products2-grid { grid-template-columns: 1fr; }
  .prod-card2--featured { grid-column: span 1; grid-template-columns: 1fr; }
  .gallery2-masonry { grid-template-columns: 1fr; }
  .gal2-wide, .gal2-tall { grid-column: span 1; }
  .hero2-trust { gap: 22px; }
  .trust-item strong { font-size: 1.5rem; }
  .hero2-actions { flex-direction: column; align-items: flex-start; }
}

/* ─── MOBILE NAVBAR — clean base for tablet/mobile ─── */
@media (max-width:991px) {
  #mainNav2 {
    background: rgba(255,255,255,0.97) !important;
    border-bottom-color: transparent !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
  }
  .navbar-toggler2 span { background: var(--forest); }
}

/* ─── About section title smaller ─── */
.about2-title {
  font-size: clamp(1.1rem, 2.5vw, 1.55rem) !important;
  margin-bottom: 16px;
}

/* ─── PRINT OPTIMIZATION ─── */
@media print {
  #pageLoader, #scrollTop2, .wa-float2, .cursor-dot, .cursor-ring { display: none !important; }
  #siteHeader { position: relative; }
  .section2 { padding: 40px 0; }
}



/* ════════════════════════════════════════
   MOBILE HEADER — AUTHORITATIVE OVERRIDE
   Fixes: logo size, hamburger size, layout
════════════════════════════════════════ */
@media (max-width: 991px) {

  /* ── Header frame ── */
  #mainNav2 {
    padding: 8px 0;
    min-height: 64px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  }

  .container { position: relative; }

  /* ── Logo image ── */
  .logo-icon {
    width: 90px;
    height: auto;
    object-fit: contain;
  }

  /* ── Logo text — show on mobile ── */
  .logo-name {
    display: block !important;
    font-size: 0.85rem !important;
    font-weight: 700;
    color: var(--forest);
    white-space: nowrap;
    line-height: 1.1;
  }

  .logo-city {
    display: block !important;
    font-size: 0.58rem !important;
    letter-spacing: 0.11em;
    color: var(--gold-d);
    white-space: nowrap;
  }

  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* ── Hamburger — compact, visible ── */
  .navbar-toggler2 {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
  }

  .navbar-toggler2 span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--forest) !important;
    border-radius: 99px;
    transition: var(--t);
  }

  /* ── Dropdown menu ── */
  #navMenu2 {
    background: white;
    padding: 12px 16px;
    border-top: 1px solid rgba(26,77,46,0.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  body { cursor: auto; }
}