/* ================================================================
   R.A.M. PAPAD — B2B MANUFACTURER WEBSITE
   Design: Serious, industrial-premium, trust-heavy
   Palette: Deep Brown + Saffron Gold + Cream White
   Typography: Cormorant Garamond (display) + Outfit (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --brown:      #1C0E04;
  --brown-2:    #2E1608;
  --brown-3:    #4A2210;
  --saffron:    #C96A14;
  --saffron-lt: #E8943A;
  --amber:      #F0B429;
  --cream:      #FAF3E8;
  --cream-2:    #F0E4CE;
  --white:      #FFFFFF;
  --text:       #2A1A0E;
  --muted:      #7A6050;
  --green:      #1B6B3A;
  --green-lt:   #27AE60;
  --border:     rgba(201,106,20,.14);
  --bdr-lt:     rgba(255,255,255,.10);

  --sh-xs: 0 1px 6px rgba(28,14,4,.07);
  --sh-sm: 0 4px 18px rgba(28,14,4,.10);
  --sh-md: 0 10px 36px rgba(28,14,4,.13);
  --sh-lg: 0 20px 64px rgba(28,14,4,.17);

  --r:    10px;
  --r-lg: 18px;
  --t:    .27s cubic-bezier(.4,0,.2,1);
  --fd:   'Cormorant Garamond', Georgia, serif;
  --fb:   'Outfit', system-ui, sans-serif;
  --nav:  64px;
  --max:  1240px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--white); color: var(--text); line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: var(--t); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── LAYOUT ── */
.wrap   { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.sec    { padding: 96px 0; }
.sec-sm { padding: 60px 0; }

/* ── EYEBROW / TITLES ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--saffron); margin-bottom: 12px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; width: 24px; height: 1.5px; background: var(--saffron); opacity: .5;
}
.eyebrow-center { justify-content: center; }
.sec-title {
  font-family: var(--fd); font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700; color: var(--brown); line-height: 1.18; margin-bottom: 13px;
}
.sec-sub  { font-size: .97rem; color: var(--muted); line-height: 1.72; }
.sec-hdr  { margin-bottom: 52px; }
.sec-hdr.c{ text-align: center; }
.sec-hdr.c .sec-sub { max-width: 600px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 8px; font-size: .89rem; font-weight: 600; transition: var(--t); white-space: nowrap; cursor: pointer; }
.btn-primary  { background: var(--saffron); color: var(--white); box-shadow: 0 4px 16px rgba(201,106,20,.30); }
.btn-primary:hover  { background: #a85510; transform: translateY(-2px); box-shadow: 0 7px 24px rgba(201,106,20,.40); }
.btn-outline  { border: 2px solid var(--saffron); color: var(--saffron); }
.btn-outline:hover  { background: var(--saffron); color: var(--white); transform: translateY(-2px); }
.btn-white    { background: var(--white); color: var(--brown); box-shadow: var(--sh-sm); }
.btn-white:hover    { background: var(--cream); transform: translateY(-2px); }
.btn-ghost    { border: 2px solid rgba(255,255,255,.35); color: var(--white); }
.btn-ghost:hover    { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.6); }
.btn-wa       { background: #25D366; color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,.28); }
.btn-wa:hover { background: #1dba59; transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: .97rem; }
.btn-sm { padding: 9px 17px; font-size: .8rem; }

/* ================================================================
   HEADER
   ================================================================ */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav); background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
#hdr.scrolled { box-shadow: var(--sh-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
  height: 64px;
}

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img {
  height: 46px; width: auto; flex-shrink: 0;
  object-fit: contain;
}
.logo-name  { font-family: var(--fd); font-size: 1.3rem; font-weight: 700; color: var(--brown); line-height: 1.1; }
.logo-name em { color: var(--saffron); font-style: normal; }
.logo-tag   { font-size: .6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; color: var(--muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 1;
  flex-wrap: nowrap;
}
.nav-links > a, .nav-dd > summary {
  padding: 8px 10px; font-size: 0.85rem; font-weight: 500;
  color: var(--text); border-radius: 7px; transition: var(--t);
  display: flex; align-items: center; gap: 4px; list-style: none; cursor: pointer;
  white-space: nowrap;
}
.nav-links > a {
  white-space: nowrap;
}
.nav-links > a:hover, .nav-dd > summary:hover, .nav-links > a.active { color: var(--saffron); background: rgba(201,106,20,.07); }
.nav-dd { position: relative; }
.nav-dd summary::after { content: '▾'; font-size: .68rem; opacity: .55; }
.nav-dd summary::-webkit-details-marker { display: none; }
.dd-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--sh-md); min-width: 210px; padding: 7px; z-index: 200;
  opacity: 0; visibility: hidden; transform: translateY(-5px); transition: var(--t); pointer-events: none;
}
.nav-dd[open] .dd-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
.dd-menu a { display: block; padding: 9px 13px; font-size: .845rem; color: var(--text); border-radius: 6px; transition: var(--t); }
.dd-menu a:hover { background: var(--cream); color: var(--saffron); padding-left: 18px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-phone    { font-size: .8rem; font-weight: 600; color: var(--brown); line-height: 1.2; }
.nav-phone span { display: block; font-size: .66rem; font-weight: 400; color: var(--muted); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--brown); border-radius: 2px; transition: var(--t); }

.mob-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--white); padding: 86px 28px 40px;
  overflow-y: auto; transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.mob-nav.open { transform: translateX(0); }
.mob-nav a   { display: block; padding: 14px 0; font-size: 1rem; font-weight: 600; color: var(--brown); border-bottom: 1px solid var(--border); }
.mob-nav a:hover { color: var(--saffron); }
.mob-close   { position: absolute; top: 22px; right: 22px; width: 36px; height: 36px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--brown); cursor: pointer; }

/* ================================================================
   HERO — Heavy B2B tone
   ================================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav); position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--brown) 0%, var(--brown-2) 55%, #3A1B09 100%);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 10% 60%, rgba(201,106,20,.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 15%, rgba(240,180,41,.06) 0%, transparent 50%);
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(201,106,20,.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
  align-items: center; padding: 80px 0 72px; position: relative; z-index: 1;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,106,20,.15); border: 1px solid rgba(201,106,20,.30);
  border-radius: 100px; padding: 6px 15px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--saffron-lt); margin-bottom: 20px;
}
.hero-pill-dot { width: 6px; height: 6px; background: var(--saffron-lt); border-radius: 50%; animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-tagline {
  font-family: var(--fd);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-style: italic;
  color: var(--saffron-lt);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  opacity: 0.92;
  line-height: 1.5;
}
.hero-h1 {
  font-family: var(--fd); font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700; color: var(--white); line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -.01em;
}
.hero-h1 em { color: var(--saffron-lt); font-style: normal; display: block; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,.66); line-height: 1.75; max-width: 500px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-rule  { width: 56px; height: 2px; background: rgba(201,106,20,.45); margin-bottom: 28px; }
.hero-kpis  { display: flex; gap: 32px; flex-wrap: wrap; }
.kpi-n  { font-family: var(--fd); font-size: 2rem; font-weight: 700; color: var(--saffron-lt); line-height: 1; }
.kpi-l  { font-size: .72rem; color: rgba(255,255,255,.48); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }

/* Hero right panel */
.hero-panel {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 26px; display: flex; flex-direction: column; gap: 14px;
}
.hp-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.35); margin-bottom: 2px; }
.hp-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,106,20,.22);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.hp-facts::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,106,20,.12), rgba(74,34,16,.35));
  pointer-events: none;
  z-index: 0;
}
.hp-fact {
  position: relative; z-index: 1;
  padding: 18px 18px 16px;
  background: rgba(36,18,8,.55);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hp-fact-ico { font-size: 1.25rem; margin-bottom: 2px; opacity: .9; }
.hp-fact-v {
  font-family: var(--fd);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--saffron-lt);
  line-height: 1.05;
  letter-spacing: -.01em;
}
.hp-fact-v span {
  display: inline-block;
  margin-left: 5px;
  font-family: var(--fb);
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  vertical-align: middle;
}
.hp-fact-l {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.hp-snap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(201,106,20,.22);
  background: rgba(36,18,8,.45);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.hp-snap-img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.hp-snap-cap {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(28,14,4,.7);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 8px 11px;
}
.hp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hp-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px; padding: 13px 14px; transition: var(--t);
}
.hp-card:hover { background: rgba(201,106,20,.12); border-color: rgba(201,106,20,.25); }
.hp-card-ico   { font-size: 1.3rem; margin-bottom: 4px; }
.hp-card-title { font-size: .78rem; font-weight: 700; color: var(--white); }
.hp-card-sub   { font-size: .68rem; color: rgba(255,255,255,.42); }
.hp-badge {
  background: rgba(27,107,58,.15); border: 1px solid rgba(27,107,58,.28);
  border-radius: 8px; padding: 10px 13px;
  display: flex; align-items: center; gap: 9px;
}
.hp-badge-dot { width: 8px; height: 8px; background: var(--green-lt); border-radius: 50%; flex-shrink: 0; animation: pulse-dot 2s ease infinite; }
.hp-badge-txt { font-size: .76rem; color: rgba(255,255,255,.62); font-weight: 500; }
.hp-badge-txt strong { color: var(--green-lt); }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar { background: var(--brown-2); padding: 16px 0; border-bottom: 1px solid rgba(201,106,20,.18); }
.trust-inner { display: flex; align-items: center; justify-content: space-around; gap: 18px; flex-wrap: wrap; }
.t-item { display: flex; align-items: center; gap: 8px; }
.t-ico  { font-size: 1rem; }
.t-txt  { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.65); white-space: nowrap; }
.t-txt strong { color: var(--saffron-lt); }
.t-sep  { width: 1px; height: 22px; background: rgba(255,255,255,.09); }

/* ================================================================
   SECTION: B2B SEGMENTS
   ================================================================ */
.seg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.seg-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px; transition: var(--t); position: relative; overflow: hidden;
}
.seg-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--saffron), var(--saffron-lt));
  transform: scaleX(0); transform-origin: left; transition: var(--t);
}
.seg-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: rgba(201,106,20,.28); }
.seg-card:hover::after { transform: scaleX(1); }
.seg-ico   { font-size: 2rem; margin-bottom: 14px; }
.seg-title { font-family: var(--fd); font-size: 1.15rem; font-weight: 700; color: var(--brown); margin-bottom: 7px; }
.seg-desc  { font-size: .855rem; color: var(--muted); line-height: 1.62; margin-bottom: 14px; }
.seg-link  { font-size: .8rem; font-weight: 700; color: var(--saffron); display: inline-flex; align-items: center; gap: 5px; transition: var(--t); }
.seg-link:hover { gap: 9px; }

/* ================================================================
   STATS
   ================================================================ */
.stats-sec {
  background: var(--brown); padding: 84px 0; position: relative; overflow: hidden;
}
.stats-sec::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(201,106,20,.08) 0%, transparent 55%);
}
.stats-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; position: relative; }
.stat-box { text-align: center; padding: 28px 16px; border-right: 1px solid rgba(255,255,255,.07); }
.stat-box:last-child { border-right: none; }
.stat-n { font-family: var(--fd); font-size: 3rem; font-weight: 700; color: var(--saffron-lt); line-height: 1; margin-bottom: 5px; }
.stat-l { font-size: .73rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .1em; }

/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 38px; }
.cat-tab {
  padding: 9px 19px; border-radius: 100px; font-size: .83rem; font-weight: 600;
  border: 2px solid var(--border); color: var(--muted); background: var(--white);
  cursor: pointer; transition: var(--t);
}
.cat-tab:hover, .cat-tab.active { background: var(--saffron); border-color: var(--saffron); color: var(--white); box-shadow: 0 4px 14px rgba(201,106,20,.28); }

.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px,1fr)); gap: 22px; }
.prod-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: var(--t); box-shadow: var(--sh-xs); }
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: rgba(201,106,20,.3); }
.prod-img {
  aspect-ratio: 4/3;
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.prod-card:hover .prod-img img {
  transform: scale(1.04);
}
/* emoji fallback sizing (cards still using emoji placeholders) */
.prod-img:not(:has(img)) {
  font-size: 3.2rem;
}
.prod-export { position: absolute; top: 10px; left: 10px; background: var(--green); color: var(--white); font-size: .62rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; text-transform: uppercase; letter-spacing: .05em; z-index: 2; }
.prod-body  { padding: 17px 19px 19px; }
.prod-name  { font-family: var(--fd); font-size: 1.08rem; font-weight: 700; color: var(--brown); margin-bottom: 5px; }
.prod-desc  { font-size: .82rem; color: var(--muted); margin-bottom: 11px; line-height: 1.55; }
.prod-sizes { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 13px; }
.prod-size  { background: var(--cream); color: var(--brown-3); font-size: .7rem; font-weight: 600; padding: 3px 8px; border-radius: 5px; }
.prod-foot  { display: flex; align-items: center; justify-content: space-between; padding-top: 11px; border-top: 1px solid var(--border); }
.moq-l      { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.moq-v      { font-size: .86rem; font-weight: 700; color: var(--saffron); }

/* ================================================================
   WHY RAM PAPAD
   ================================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-img-w { position: relative; }
.why-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  aspect-ratio: 4/5;
  display: block;
  border: 1px solid var(--border);
}
.why-float {
  position: absolute;
  bottom: -22px;
  right: -22px;
  z-index: 3;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(74, 34, 16, .22), 0 4px 12px rgba(74, 34, 16, .08);
  padding: 18px 22px 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(201, 106, 20, .18);
  min-width: 220px;
  border-left: 4px solid var(--saffron);
  animation: why-float-pop .6s cubic-bezier(.34, 1.56, .64, 1) .2s both;
}
@keyframes why-float-pop {
  0%   { opacity: 0; transform: translateY(12px) scale(.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.wf-ico {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(240, 180, 41, .22), rgba(201, 106, 20, .18));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(201, 106, 20, .14);
}
.wf-v {
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.05;
  letter-spacing: -.005em;
}
.wf-l {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 4px;
}

.why-feats { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.wf-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px; border: 1px solid var(--border); border-radius: var(--r); transition: var(--t); background: var(--white); }
.wf-item:hover { border-color: var(--saffron); box-shadow: var(--sh-sm); }
.wf-icon { width: 42px; height: 42px; border-radius: 9px; background: rgba(201,106,20,.09); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.wf-title { font-weight: 700; font-size: .9rem; color: var(--brown); margin-bottom: 3px; }
.wf-desc  { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ================================================================
   PROCESS STEPS
   ================================================================ */
.proc-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.proc-grid::before { content:''; position:absolute; top:35px; left:10%; right:10%; height:2px; background:linear-gradient(90deg,var(--saffron),var(--amber)); z-index:0; }
.proc-step { text-align: center; padding: 0 8px; position: relative; z-index: 1; }
.proc-num  { width: 70px; height: 70px; border-radius: 50%; background: var(--white); border: 3px solid var(--saffron); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 16px; box-shadow: var(--sh-sm); }
.proc-title { font-weight: 700; font-size: .85rem; color: var(--brown); margin-bottom: 5px; }
.proc-desc  { font-size: .77rem; color: var(--muted); line-height: 1.55; }

/* ================================================================
   CERTIFICATIONS
   ================================================================ */
.cert-row { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.cert-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--r-lg); padding: 24px 28px; text-align: center; min-width: 148px; transition: var(--t); }
.cert-card:hover { border-color: var(--saffron); box-shadow: var(--sh-md); transform: translateY(-4px); }
.cert-ico  { font-size: 2.2rem; margin-bottom: 7px; }
.cert-name { font-weight: 800; font-size: .88rem; color: var(--brown); }
.cert-sub  { font-size: .7rem; color: var(--muted); margin-top: 2px; }

/* ================================================================
   EXPORT SECTION
   ================================================================ */
.export-sec { background: var(--brown); }
.export-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.country-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.c-chip { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 10px 8px; text-align: center; transition: var(--t); }
.c-chip:hover { background: rgba(201,106,20,.14); border-color: rgba(201,106,20,.28); }
.c-flag { font-size: 1.3rem; margin-bottom: 3px; }
.c-name { font-size: .7rem; color: rgba(255,255,255,.5); font-weight: 600; }
.export-txt h2 { font-family: var(--fd); font-size: clamp(1.7rem,2.8vw,2.4rem); font-weight: 700; color: var(--white); margin-bottom: 14px; }
.export-txt h2 span { color: var(--saffron-lt); }
.export-txt p  { font-size: .9rem; color: rgba(255,255,255,.58); line-height: 1.78; margin-bottom: 24px; }
.export-feats  { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.export-feat   { font-size: .86rem; color: rgba(255,255,255,.68); display: flex; align-items: center; gap: 9px; }
.export-feat::before { content:'✓'; color: var(--green-lt); font-weight:700; flex-shrink:0; }

/* ================================================================
   OEM SECTION
   ================================================================ */
.oem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.oem-steps { display: flex; flex-direction: column; }
.oem-step  { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.oem-step:last-child { border-bottom: none; }
.oem-n  { width: 34px; height: 34px; border-radius: 50%; background: var(--saffron); color: var(--white); font-size: .82rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.oem-st { font-weight: 700; font-size: .9rem; color: var(--brown); margin-bottom: 3px; }
.oem-sd { font-size: .82rem; color: var(--muted); line-height: 1.55; }
.oem-panel { background: linear-gradient(135deg,var(--cream-2),var(--cream)); border-radius:var(--r-lg); padding:32px; border:1px solid var(--border); }
.oem-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.oem-card  { background: var(--white); border-radius: var(--r); padding: 18px; text-align: center; border: 1px solid var(--border); transition: var(--t); }
.oem-card:hover { border-color: var(--saffron); box-shadow: var(--sh-sm); }
.oem-card-ico   { font-size: 1.7rem; margin-bottom: 6px; }
.oem-card-title { font-weight: 700; font-size: .85rem; color: var(--brown); }
.oem-card-sub   { font-size: .72rem; color: var(--muted); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-track-wrap { overflow: hidden; border-radius: var(--r-lg); }
.testi-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testi-slide { flex: 0 0 100%; }
.testi-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 38px 42px; display: grid; grid-template-columns: 1fr 260px; gap: 36px; align-items: center;
}
.testi-q {
  font-family: var(--fd); font-size: clamp(1.05rem,1.8vw,1.25rem);
  font-style: italic; color: var(--text); line-height: 1.72; margin-bottom: 22px;
  position: relative; padding-left: 22px;
}
.testi-q::before { content:'"'; position:absolute; left:0; top:-8px; font-size:3.2rem; color:var(--saffron); opacity:.22; line-height:1; }
.testi-name { font-weight: 800; font-size: .92rem; color: var(--brown); }
.testi-role { font-size: .78rem; color: var(--muted); }
.testi-co   { font-size: .78rem; color: var(--saffron); font-weight: 600; }
.testi-side { background: linear-gradient(135deg,var(--cream-2),var(--cream)); border-radius: var(--r); padding: 22px; border: 1px solid var(--border); text-align: center; }
.testi-side-ico { font-size: 2.2rem; margin-bottom: 6px; }
.testi-side-v   { font-family: var(--fd); font-size: 1.5rem; font-weight: 700; color: var(--saffron); }
.testi-side-l   { font-size: .73rem; color: var(--muted); }
.testi-ctrl { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 22px; }
.t-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cream-2); cursor: pointer; transition: var(--t); border: none; padding: 0; }
.t-dot.active { background: var(--saffron); width: 22px; border-radius: 4px; }
.t-arr { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--t); color: var(--brown); font-size: .85rem; background: var(--white); }
.t-arr:hover { border-color: var(--saffron); color: var(--saffron); }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list { display: flex; flex-direction: column; gap: 9px; max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 17px 20px; background: var(--white); font-size: .9rem; font-weight: 600; color: var(--brown); text-align: left; cursor: pointer; transition: var(--t); gap: 10px; }
.faq-q:hover { background: var(--cream); }
.faq-q.open  { background: var(--saffron); color: var(--white); }
.faq-ico { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--brown); transition: transform var(--t), background var(--t); }
.faq-q.open .faq-ico { background: rgba(255,255,255,.2); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-a.open { max-height: 260px; }
.faq-ai { padding: 15px 20px; font-size: .86rem; color: var(--muted); line-height: 1.72; background: var(--cream); }

/* ================================================================
   INQUIRY FORM
   ================================================================ */
.inq-form-wrap { background: var(--white); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--sh-md); border: 1px solid var(--border); }
.f2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg    { display: flex; flex-direction: column; gap: 4px; }
.fg.s2 { grid-column: 1/-1; }
.flbl  { font-size: .8rem; font-weight: 600; color: var(--brown); }
.fctl  { padding: 11px 13px; border: 1.5px solid var(--border); border-radius: 7px; font-size: .875rem; color: var(--text); background: var(--white); transition: var(--t); outline: none; }
.fctl:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(201,106,20,.08); }
.fctl::placeholder { color: #BAA898; }
textarea.fctl { resize: vertical; min-height: 96px; }
select.fctl   { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6050' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px; }
.f-note { font-size: .74rem; color: var(--muted); text-align: center; margin-top: 8px; }

/* ================================================================
   MODAL
   ================================================================ */
.modal-ov { position: fixed; inset: 0; background: rgba(0,0,0,.58); backdrop-filter: blur(5px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: var(--t); }
.modal-ov.open { opacity: 1; visibility: visible; }
.modal { background: var(--white); border-radius: var(--r-lg); padding: 36px; width: 100%; max-width: 510px; position: relative; transform: scale(.95); transition: var(--t); max-height: 92vh; overflow-y: auto; }
.modal-ov.open .modal { transform: scale(1); }
.modal-x { position: absolute; top: 13px; right: 13px; width: 32px; height: 32px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: .95rem; color: var(--brown); transition: var(--t); }
.modal-x:hover { background: var(--saffron); color: var(--white); }
.modal-eye { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--saffron); margin-bottom: 5px; }
.modal-h2  { font-family: var(--fd); font-size: 1.5rem; font-weight: 700; color: var(--brown); margin-bottom: 4px; }
.modal-sub { font-size: .8rem; color: var(--muted); margin-bottom: 24px; }

/* ================================================================
   FLOATING WHATSAPP + STICKY CTA
   ================================================================ */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 990; display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.wa-tip   { background: var(--white); border-radius: 7px; padding: 7px 13px; font-size: .76rem; font-weight: 700; color: var(--brown); box-shadow: var(--sh-md); white-space: nowrap; }
.wa-btn   { width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; color: var(--white); box-shadow: 0 5px 22px rgba(37,211,102,.38); transition: var(--t); animation: wa-bob 3s ease-in-out infinite; }
.wa-btn:hover { transform: scale(1.1) !important; animation: none; }
@keyframes wa-bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--brown); padding: 12px 28px; z-index: 800; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 2px solid var(--saffron); transform: translateY(100%); transition: transform .38s cubic-bezier(.4,0,.2,1); }
.sticky-bar.show { transform: translateY(0); }
.sb-txt  { font-size: .85rem; color: rgba(255,255,255,.72); }
.sb-txt strong { color: var(--saffron-lt); }
.sb-btns { display: flex; gap: 9px; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.pg-hero { background: linear-gradient(152deg,var(--brown) 0%,var(--brown-2) 55%,#3A1B09 100%); padding: calc(var(--nav) + 52px) 0 52px; position: relative; overflow: hidden; }
.pg-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 80% 50%,rgba(201,106,20,.07) 0%,transparent 50%); }
.pg-inner { position: relative; z-index: 1; }
.bc       { display: flex; align-items: center; gap: 6px; font-size: .76rem; color: rgba(255,255,255,.38); margin-bottom: 13px; }
.bc a     { color: rgba(255,255,255,.52); }
.bc a:hover { color: var(--saffron-lt); }
.bc-sep   { color: rgba(255,255,255,.22); }
.pg-h1    { font-family: var(--fd); font-size: clamp(1.9rem,3.8vw,2.9rem); font-weight: 700; color: var(--white); margin-bottom: 11px; }
.pg-h1 em { color: var(--saffron-lt); font-style: normal; }
.pg-sub   { font-size: .94rem; color: rgba(255,255,255,.58); max-width: 540px; line-height: 1.72; }

/* ================================================================
   FOOTER
   ================================================================ */
#ftr { background: var(--brown); color: rgba(255,255,255,.62); padding: 76px 0 0; }
.ftr-grid { display: grid; grid-template-columns: 1.9fr 1.2fr 1.2fr 1.5fr; gap: 44px; margin-bottom: 56px; }
.ftr-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 12px;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  transition: var(--t);
  max-width: 240px;
}
.ftr-logo:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.30); }
.ftr-logo img { display: block; height: 44px; width: auto; object-fit: contain; }
.ftr-desc { font-size: .865rem; line-height: 1.72; color: rgba(255,255,255,.48); margin: 18px 0 20px; max-width: 275px; }
.ftr-certs { display: flex; gap: 7px; flex-wrap: wrap; }
.ftr-cert  { background: rgba(201,106,20,.11); border: 1px solid rgba(201,106,20,.2); color: var(--saffron-lt); font-size: .66rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; letter-spacing: .04em; }
.ftr-hd  { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; color: var(--saffron-lt); margin-bottom: 16px; }
.ftr-lnk a { display: block; font-size: .845rem; color: rgba(255,255,255,.52); margin-bottom: 8px; transition: var(--t); }
.ftr-lnk a:hover { color: var(--saffron-lt); padding-left: 4px; }
.ftr-ci  { display: flex; align-items: flex-start; gap: 8px; font-size: .845rem; color: rgba(255,255,255,.52); margin-bottom: 11px; }
.fci-ico { color: var(--saffron); flex-shrink: 0; margin-top: 1px; }
.soc-row { display: flex; gap: 9px; margin-top: 18px; }
.soc-btn { width: 34px; height: 34px; border-radius: 7px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-size: .86rem; color: rgba(255,255,255,.52); transition: var(--t); }
.soc-btn:hover { background: var(--saffron); color: var(--white); }
.ftr-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: .76rem; color: rgba(255,255,255,.32); flex-wrap: wrap; gap: 8px; }

/* ================================================================
   BENEFIT CARDS (distributor/oem pages)
   ================================================================ */
.bcard-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.bcard { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; transition: var(--t); }
.bcard:hover { border-color: var(--saffron); box-shadow: var(--sh-sm); transform: translateY(-4px); }
.bcard-ico   { font-size: 1.9rem; margin-bottom: 12px; }
.bcard-title { font-weight: 700; font-size: .92rem; color: var(--brown); margin-bottom: 5px; }
.bcard-desc  { font-size: .83rem; color: var(--muted); line-height: 1.62; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-heritage {
  background:
    radial-gradient(ellipse at 10% 15%, rgba(201,106,20,.1) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 85%, rgba(240,180,41,.08) 0%, transparent 42%);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 52px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
  min-height: 420px;
  background: linear-gradient(145deg, #fffdf9 0%, #f8efe4 100%);
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(28,14,4,.02), rgba(28,14,4,.24));
  z-index: 1;
  pointer-events: none;
}
.about-visual-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  background: rgba(28,14,4,.82);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px;
  padding: 8px 14px;
}
.about-badge-top { top: 18px; left: 18px; }
.about-badge-bottom { bottom: 18px; left: 18px; }
.about-lead {
  font-size: .94rem;
  color: var(--brown);
  line-height: 1.75;
  margin-bottom: 12px;
}
.about-copy-p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.about-kpi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 12px 10px;
  text-align: center;
}
.about-kpi-v {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--saffron);
}
.about-kpi-l {
  font-size: .64rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.about-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: var(--t);
}
.about-pillar:hover {
  border-color: rgba(201,106,20,.35);
  transform: translateY(-4px);
  box-shadow: var(--sh-sm);
}
.about-pillar-ico {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(201,106,20,.1);
  margin-bottom: 13px;
}
.about-pillar-title {
  font-family: var(--fd);
  font-size: 1.14rem;
  color: var(--brown);
  margin-bottom: 6px;
}
.about-pillar-desc {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) 1.25fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 30px;
}
.quick-contact-card {
  background: linear-gradient(150deg, var(--brown) 0%, var(--brown-2) 70%, #3A1B09 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 30px;
  color: var(--white);
  box-shadow: var(--sh-md);
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--saffron-lt);
  background: rgba(201,106,20,.15);
  border: 1px solid rgba(201,106,20,.28);
  border-radius: 100px;
  padding: 5px 10px;
  margin-bottom: 14px;
}
.quick-contact-title {
  font-family: var(--fd);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.quick-contact-sub {
  font-size: .84rem;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  margin-bottom: 18px;
}
.contact-primary { display: grid; gap: 9px; margin-bottom: 14px; }
.contact-primary-link {
  font-family: var(--fd);
  font-size: 1.17rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}
.contact-primary-link:hover { color: var(--saffron-lt); }
.contact-secondary {
  font-size: .82rem;
  color: rgba(255,255,255,.54);
  margin-bottom: 10px;
}
.contact-hours {
  font-size: .82rem;
  color: rgba(255,255,255,.76);
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 12px;
}

.address-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--sh-xs);
}
.address-panel-title {
  font-family: var(--fd);
  font-size: 1.42rem;
  color: var(--brown);
  margin-bottom: 16px;
}
.address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.address-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  min-height: 145px;
}
.address-label {
  font-size: .69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--saffron);
  margin-bottom: 8px;
}
.address-line {
  font-size: .84rem;
  color: var(--brown);
  line-height: 1.65;
}
.contact-form-wrap {
  border: 1px solid var(--border);
  box-shadow: var(--sh-xs);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fu { opacity: 0; transform: translateY(24px); transition: opacity .52s ease, transform .52s ease; }
.fu.in { opacity: 1; transform: translateY(0); }
.fu.d1 { transition-delay: .1s; } .fu.d2 { transition-delay: .18s; } .fu.d3 { transition-delay: .26s; }
.fu.d4 { transition-delay: .34s; } .fu.d5 { transition-delay: .42s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media(max-width:1100px){
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
}
@media(max-width:900px){
  :root { --nav: 66px; }
  .nav-links, .nav-actions .btn:not(.btn-sm) { display: none; }
  .hamburger { display: flex; }
  .mob-nav { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .why-grid, .oem-grid, .export-grid { grid-template-columns: 1fr; }
  .seg-grid, .bcard-grid { grid-template-columns: 1fr 1fr; }
  .proc-grid { grid-template-columns: repeat(3,1fr); }
  .proc-grid::before { display: none; }
  .testi-card { grid-template-columns: 1fr; }
  .testi-side { display: none; }
  .country-grid { grid-template-columns: repeat(3,1fr); }
  .about-hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 18px; }
  .address-grid { grid-template-columns: 1fr 1fr; }
  .sticky-bar { display: none; }
}
@media(max-width:640px){
  .sec { padding: 60px 0; }
  .seg-grid, .bcard-grid, .stats-grid { grid-template-columns: 1fr; }
  .f2col { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-kpis { gap: 18px; }
  .country-grid { grid-template-columns: repeat(2,1fr); }
  .ftr-grid { grid-template-columns: 1fr; }
  .oem-cards { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .cert-row { gap: 10px; }
  .testi-card { padding: 22px; }
  .about-visual { min-height: 320px; }
  .about-visual-img { min-height: 320px; }
  .about-kpis { grid-template-columns: 1fr 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-pillar { padding: 22px; }
  .quick-contact-card, .address-panel, .contact-form-wrap { padding: 22px; }
  .address-grid { grid-template-columns: 1fr; }
  .address-block { min-height: 0; }
  .contact-primary-link { font-size: 1.06rem; }
  .inq-form-wrap { padding: 22px; }
  .ftr-bottom { flex-direction: column; text-align: center; }
}

/* ================================================================
   GALLERY (responsive masonry-like grid with consistent tiles)
   ================================================================ */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gal-tile {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.gal-tile:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: rgba(201,106,20,.3); }
.gal-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-2), var(--cream));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.gal-img > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.gal-tile:hover .gal-img > img { transform: scale(1.05); }
.gal-cap {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.gal-cap-t { font-weight: 700; font-size: .85rem; color: var(--brown); }
.gal-cap-s { font-size: .76rem; color: var(--muted); margin-top: 2px; }
@media (max-width: 900px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gal-grid { grid-template-columns: 1fr; }
}
