/* ============================================================
   SS WHITE INC — Main Stylesheet
   Fonts: Lora (serif/italic headings) + Inter (UI/body)
   Colors: --green header, --beige body, --charcoal text
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --beige:       #FAFAF9;
  --charcoal:    #1C1917;
  --slate:       #F1F1EF;
  --accent:      #8E8A83;
  --green:       #2A5C45;
  --green-dark:  #1E4433;
  --green-mid:   #3A7A5C;
  --border:      rgba(28, 25, 23, .10);
  --border-l:    rgba(250, 250, 249, .10);
  --max-w:       1280px;
  --nav-h:       92px;
  --section-pad: 5.5rem;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--beige);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ============================================================ NAV */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--green);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; flex-shrink: 0; }
.nav-wordmark-name {
  font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 800;
  letter-spacing: .02em; line-height: 1; color: var(--beige);
}
.nav-wordmark-name span { font-weight: 400; }
.nav-wordmark-sub {
  font-size: .61rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(250,250,249,.42); margin-top: 4px;
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(250,250,249,.52);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--beige); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .65rem 1.35rem; background: var(--beige); color: var(--green);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none; transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: #ece9e6; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--beige); }

/* ============================================================ HERO */
.hero { padding: var(--section-pad) 0; border-bottom: 1px solid var(--border); }
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 6fr 5fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.75rem;
}
.hero-badge::before { content: ''; width: 24px; height: 1px; background: var(--accent); flex-shrink: 0; }
.hero h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 500; font-style: italic;
  letter-spacing: -0.03em; line-height: 1.08; color: var(--charcoal); margin-bottom: 1.5rem;
}
.hero-body { max-width: 520px; font-size: 1.05rem; line-height: 1.75; color: var(--accent); margin-bottom: 2.5rem; }
.hero-trust {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding-bottom: 2rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--border);
  font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--accent);
}
.hero-trust-sep { opacity: .3; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  aspect-ratio: 4/5; background: var(--slate); border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .6rem; color: var(--accent); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================ STATS */
.stats-bar { background: var(--charcoal); border-bottom: 1px solid rgba(255,255,255,.05); }
.stats-bar-inner { max-width: var(--max-w); margin: 0 auto; display: flex; }
.stat-item { flex: 1; padding: 2rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,.07); }
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: 'Lora', Georgia, serif; font-size: 2.4rem; font-weight: 500; font-style: italic;
  color: var(--beige); line-height: 1; display: block;
}
.stat-lbl {
  font-size: .63rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(250,250,249,.4); margin-top: .45rem; display: block;
}

/* ============================================================ BRAND NOTE */
.brand-note { background: var(--slate); border-bottom: 1px solid var(--border); padding: 1.75rem 2rem; text-align: center; }
.brand-note p {
  font-family: 'Lora', Georgia, serif; font-style: italic; font-size: .95rem;
  color: var(--accent); letter-spacing: .01em; max-width: 700px; margin: 0 auto; line-height: 1.65;
}
.brand-note p strong { font-style: normal; font-weight: 600; color: var(--charcoal); }

/* ============================================================ SECTION BASE */
.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--charcoal); }
.section-slate { background: var(--slate); }
.section-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--green); margin-bottom: .6rem;
}
.section-label-light {
  font-size: .68rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(250,250,249,.35); margin-bottom: .6rem;
}
h2 {
  font-family: 'Lora', Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 500; font-style: italic; letter-spacing: -0.02em; line-height: 1.2; color: var(--charcoal);
}
h2.light { color: var(--beige); }
h3 {
  font-family: 'Lora', Georgia, serif; font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500; font-style: italic; letter-spacing: -0.01em; line-height: 1.3; color: var(--charcoal);
}

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.75rem; font-size: .74rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; border: none; transition: all .2s; line-height: 1;
}
.btn-dark  { background: var(--charcoal); color: var(--beige); }
.btn-dark:hover  { background: #2d2a27; }
.btn-green { background: var(--green); color: var(--beige); }
.btn-green:hover { background: var(--green-dark); }
.btn-outline { border: 1px solid var(--charcoal); color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--beige); }
.btn-outline-light { border: 1px solid rgba(250,250,249,.35); color: var(--beige); }
.btn-outline-light:hover { border-color: var(--beige); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe5b; }

/* ============================================================ PRODUCTS GRID */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 3rem;
}
.products-grid-4 { grid-template-columns: repeat(4, 1fr); }
.product-card { background: var(--beige); display: flex; flex-direction: column; }
.product-card-img {
  aspect-ratio: 4/3; background: var(--slate); border-bottom: 1px solid var(--border);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-tag { font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--green); margin-bottom: .4rem; }
.product-name { font-family: 'Lora', serif; font-style: italic; font-size: 1.12rem; color: var(--charcoal); line-height: 1.3; margin-bottom: .65rem; }
.product-desc { font-size: .8rem; color: var(--accent); line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.product-enquire {
  display: flex; align-items: center; gap: .35rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); text-decoration: none; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: auto;
}
.product-enquire:hover { color: var(--green-dark); }

/* ============================================================ PAGE HERO */
.page-hero { background: var(--slate); padding: 4rem 0; border-bottom: 1px solid var(--border); }
.page-hero .container { max-width: 820px; }
.page-hero h1 {
  font-family: 'Lora', Georgia, serif; font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500; font-style: italic; letter-spacing: -0.03em; line-height: 1.12;
  color: var(--charcoal); margin-bottom: 1rem; margin-top: .75rem;
}
.page-hero p { font-size: 1rem; line-height: 1.75; color: var(--accent); max-width: 580px; }

/* ============================================================ WHY SS WHITE */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.why-item {
  display: grid; grid-template-columns: 3rem 1fr; gap: 1.25rem;
  padding: 1.75rem 0; border-bottom: 1px solid var(--border); align-items: start;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-num { font-family: 'Lora', serif; font-style: italic; font-size: 1.5rem; font-weight: 500; color: var(--green); line-height: 1.2; padding-top: .1rem; }
.why-item h4 { font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--charcoal); margin-bottom: .4rem; }
.why-item p { font-size: .82rem; line-height: 1.7; color: var(--accent); }
.why-aside { position: sticky; top: calc(var(--nav-h) + 2rem); }
.why-aside-box { background: var(--green); padding: 2.5rem; color: var(--beige); }
.why-aside-box .section-label-light { margin-bottom: 1.25rem; }
.why-aside-box blockquote {
  font-family: 'Lora', serif; font-style: italic; font-size: 1.2rem;
  line-height: 1.6; color: rgba(250,250,249,.85); margin-bottom: 1.75rem;
}

/* ============================================================ TESTIMONIALS */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); margin-top: 3rem;
}
.testimonial-card { padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.testimonial-quote {
  font-family: 'Lora', serif; font-style: italic; font-size: .98rem;
  line-height: 1.7; color: rgba(250,250,249,.72); flex: 1;
}
.testimonial-quote::before { content: '\201C'; font-size: 2.2rem; line-height: 0; vertical-align: -.45em; color: var(--green-mid); margin-right: .12rem; }
.testimonial-author { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.25rem; }
.testimonial-name { font-size: .82rem; font-weight: 600; color: var(--beige); margin-bottom: .2rem; }
.testimonial-role { font-size: .72rem; color: rgba(250,250,249,.32); letter-spacing: .06em; }

/* ============================================================ FAQ */
.faq-list { margin-top: 2.5rem; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; padding: 1.4rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  cursor: pointer; text-align: left;
}
.faq-q-text { font-size: .9rem; font-weight: 600; color: var(--charcoal); line-height: 1.4; }
.faq-icon {
  width: 26px; height: 26px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: .85rem; color: var(--accent); transition: all .2s;
}
.faq-item.open .faq-icon { background: var(--charcoal); color: var(--beige); border-color: var(--charcoal); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 0 1.4rem; font-size: .85rem; line-height: 1.75; color: var(--accent); }

/* ============================================================ CTA BAND */
.cta-band { background: var(--green); scroll-margin-top: var(--nav-h); }
.cta-band-heading {
  max-width: var(--max-w); margin: 0 auto; padding: 2rem 2rem 1.25rem;
}
.cta-band-heading h2, .cta-band h2 { color: var(--beige); }
.cta-band-divider {
  border-top: 1px solid rgba(250,250,249,.15);
  max-width: calc(var(--max-w) - 4rem); margin: 0 auto;
}
.cta-band-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 1.5rem 2rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band p { color: rgba(250,250,249,.55); font-size: .95rem; }
.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================ CUSTOM ORDERS */
.custom-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border); margin: 3rem 0;
}
.custom-step { background: var(--beige); padding: 2rem 1.5rem; }
.custom-step-num { font-family: 'Lora', serif; font-style: italic; font-size: 2.5rem; font-weight: 500; color: var(--green); line-height: 1; margin-bottom: 1rem; }
.custom-step h4 { font-size: .85rem; font-weight: 700; color: var(--charcoal); margin-bottom: .5rem; }
.custom-step p { font-size: .8rem; color: var(--accent); line-height: 1.65; }
.custom-options {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 2rem;
}
.custom-option { background: var(--slate); padding: 2rem; }
.custom-option-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.custom-option h4 { font-size: .88rem; font-weight: 700; color: var(--charcoal); margin-bottom: .5rem; }
.custom-option p { font-size: .8rem; color: var(--accent); line-height: 1.65; }

/* Custom orders form layout */
.custom-form-layout { display: grid; grid-template-columns: 4fr 6fr; gap: 5rem; align-items: start; }

/* ============================================================ ABOUT */
.about-intro { display: grid; grid-template-columns: 6fr 4fr; gap: 5rem; align-items: start; }
.about-intro p { font-size: 1rem; line-height: 1.8; color: var(--accent); margin-bottom: 1.25rem; }
.about-intro p:last-child { margin-bottom: 0; }
.milestones {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 2.5rem;
}
.milestone { background: var(--beige); padding: 1.5rem; text-align: center; }
.milestone-val { font-family: 'Lora', serif; font-style: italic; font-size: 2rem; font-weight: 500; color: var(--charcoal); line-height: 1; }
.milestone-lbl { font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-top: .4rem; }
.about-aside-pull { background: var(--slate); border: 1px solid var(--border); padding: 2rem; border-left: 3px solid var(--green); }
.about-aside-pull p { font-family: 'Lora', serif; font-style: italic; font-size: 1.05rem; line-height: 1.65; color: var(--charcoal); margin: 0; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 3rem;
}
.value-card { background: var(--beige); padding: 2rem; }
.value-num { font-family: 'Lora', serif; font-style: italic; font-size: 2rem; font-weight: 500; color: var(--green); line-height: 1; margin-bottom: 1rem; }
.value-card h4 { font-size: .88rem; font-weight: 700; color: var(--charcoal); margin-bottom: .5rem; }
.value-card p { font-size: .8rem; color: var(--accent); line-height: 1.65; }
.trusted-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.05); margin-top: 3rem;
}
.trusted-card { padding: 1.75rem; }
.trusted-sector { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(250,250,249,.3); margin-bottom: .65rem; }
.trusted-desc { font-size: .88rem; color: rgba(250,250,249,.65); line-height: 1.6; }
.trusted-detail { font-size: .72rem; color: rgba(250,250,249,.3); margin-top: .35rem; }

/* ============================================================ CONTACT */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { font-size: .9rem; color: var(--accent); line-height: 1.7; margin-bottom: 2rem; }
.contact-channels { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-channel { display: flex; flex-direction: column; gap: .25rem; }
.contact-channel-lbl { font-size: .63rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.contact-channel-val { font-size: .9rem; color: var(--charcoal); }
.contact-channel-val a { text-decoration: none; }
.contact-channel-val a:hover { color: var(--green); }
.contact-form h3 { margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.form-group input, .form-group select, .form-group textarea {
  padding: .8rem 1rem; border: 1px solid var(--border); background: var(--slate);
  color: var(--charcoal); font-family: 'Inter', sans-serif; font-size: .88rem;
  outline: none; transition: border-color .2s; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ============================================================ COMPARISON TABLE */
.comparison-wrap { overflow-x: auto; margin-top: 3rem; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.comparison-table th {
  background: var(--charcoal); color: var(--beige); padding: .85rem 1rem;
  text-align: left; font-size: .65rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; white-space: nowrap;
}
.comparison-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); color: var(--charcoal); vertical-align: middle; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--slate); }
.check { color: var(--green); font-size: 1rem; }
.dash  { color: var(--accent); }

/* ============================================================ FOOTER */
.footer { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,.05); padding: 4rem 0 0; }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem 3rem;
  display: grid; grid-template-columns: 2.5fr 1fr 1.5fr 1.5fr; gap: 3rem;
}
.footer-brand-name { font-family: 'Lora', serif; font-style: italic; font-size: 1.05rem; color: var(--beige); margin: .85rem 0 .25rem; }
.footer-brand-sub { font-size: .63rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(250,250,249,.28); margin-bottom: 1rem; }
.footer-brand > p { font-size: .8rem; line-height: 1.7; color: rgba(250,250,249,.32); max-width: 280px; }
.footer-col h4 { font-size: .63rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,250,249,.3); margin-bottom: 1.1rem; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { font-size: .82rem; color: rgba(250,250,249,.45); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--beige); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding: 1.25rem 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: .68rem; color: rgba(250,250,249,.22); letter-spacing: .05em;
}

/* ============================================================ WHATSAPP */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 500;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,.18);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-aside { position: static; }
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trusted-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  :root { --section-pad: 2rem; --nav-h: 72px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--green-dark); padding: 1.5rem 2rem; gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .page-hero { padding: 2.5rem 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .products-grid, .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .custom-steps { grid-template-columns: repeat(2, 1fr); }
  .custom-options { grid-template-columns: 1fr; }
  .custom-form-layout { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .trusted-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid > div:nth-child(3) { display: none; }
  .cta-band-heading { padding: 1.75rem 1.5rem 1rem; }
  .cta-band-divider { margin: 0 1.5rem; }
  .cta-band-inner { flex-direction: column; text-align: center; padding: 1.25rem 1.5rem 2rem; }
  .cta-band-actions { justify-content: center; }
}
@media (max-width: 480px) {
  .products-grid, .products-grid-4 { grid-template-columns: 1fr; }
  .milestones { grid-template-columns: 1fr; }
  .custom-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { width: 100%; text-align: center; }
  .footer-col ul li { font-size: .82rem; }
  .testi-header { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   SCROLL ANIMATIONS & UI POLISH
   ============================================================ */

/* ── Will-animate base state ── */
.will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.22,.61,.36,1),
              transform 0.65s cubic-bezier(.22,.61,.36,1);
}
.will-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for immediate children that get will-animate */
.will-animate:nth-child(2) { transition-delay: .08s; }
.will-animate:nth-child(3) { transition-delay: .16s; }
.will-animate:nth-child(4) { transition-delay: .24s; }
.will-animate:nth-child(5) { transition-delay: .32s; }
.will-animate:nth-child(6) { transition-delay: .40s; }

/* ── Slide-in from left (section labels) ── */
.section-label.will-animate,
.section-label-light.will-animate {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-label.animated,
.section-label-light.animated {
  opacity: 1;
  transform: translateX(0);
}

/* ── Scale-in for cards ── */
.pe-card.will-animate,
.why-card.will-animate,
.product-card.will-animate,
.testi-card.will-animate,
.value-card.will-animate,
.custom-step.will-animate {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 0.6s cubic-bezier(.22,.61,.36,1),
              transform 0.6s cubic-bezier(.22,.61,.36,1);
}
.pe-card.animated,
.why-card.animated,
.product-card.animated,
.testi-card.animated,
.value-card.animated,
.custom-step.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Nav shrink on scroll ── */
.nav {
  transition: height .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav-scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.18);
}
.nav-scrolled .nav-inner {
  height: calc(var(--nav-h) - 18px);
}
.nav-scrolled .nav-logo svg {
  width: 50px; height: 50px;
  transition: width .3s ease, height .3s ease;
}

/* ── Subtle image zoom on card hover ── */
.pe-card, .product-card, .why-card, .testi-card {
  transition: transform .3s cubic-bezier(.22,.61,.36,1),
              box-shadow .3s ease;
  will-change: transform;
}

/* ── Smooth underline links ── */
.pe-enquire, .product-enquire {
  position: relative;
  overflow: hidden;
}
.pe-enquire::after, .product-enquire::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--green);
  transition: width .25s ease;
}
.pe-enquire:hover::after, .product-enquire:hover::after { width: 100%; }

/* ── Craft column image transition ── */
.craft-col img {
  transition: transform .12s linear;
  will-change: transform;
}

/* ── Button press feel ── */
.btn {
  transition: all .2s ease, transform .1s ease;
}
.btn:active { transform: scale(0.97); }

/* ── Stat value glow on count ── */
.stat-val-home, .stat-val {
  transition: color .3s ease;
}

/* ── Hero image parallax container ── */
.hero-right img {
  will-change: transform;
  transition: filter .3s ease;
}

/* ── FAQ item smooth border ── */
.faq-item {
  transition: background .2s ease;
}
.faq-item.open {
  background: rgba(42, 92, 69, .03);
}
.faq-question {
  transition: color .2s ease;
}
.faq-item.open .faq-q-text { color: var(--green); }

/* ── Product card image container white bg (catalog style) ── */
.product-card-img,
.pe-img {
  background: #f8f8f6;
}

/* ── Testi card subtle border on hover ── */
.testi-card {
  border: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.testi-card:hover {
  background: rgba(42,92,69,.06);
  border-color: rgba(42,92,69,.15);
}

/* ── Smooth page entry ── */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageFadeIn 0.4s ease; }


/* ── Product images: clean white catalog style ── */
.product-card-img,
.pe-img {
  background: #ffffff !important;
}
.product-card-img img,
.pe-img img {
  object-fit: contain;
  padding: 12px;
  background: #ffffff;
}
/* Atmospheric/hero images keep cover behaviour */
.pe-img img[style*="cover"],
.hero-right img {
  object-fit: cover !important;
  padding: 0 !important;
}
