@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700;900&display=swap');

:root {
  --hunter: #2D5241;
  --hunter-dark: #1a3328;
  --hunter-mid: #3a6b54;
  --grass: #8BBF9F;
  --grass-light: #b8d9c6;
  --grass-pale: #eaf4ef;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --white: #ffffff;
  --off: #f8faf9;
  --text: #1a2820;
  --mid: #4a5e53;
  --light: #7a9485;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 76px; padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45,82,65,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(45,82,65,0.1); }
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--hunter); letter-spacing: 2px; line-height: 1; display: block; }
.logo-sub { font-size: 8px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--grass); margin-top: 3px; display: block; }
.nav-ul { list-style: none; display: flex; align-items: center; gap: 32px; }
.nav-ul a { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); text-decoration: none; transition: color 0.3s; position: relative; }
.nav-ul a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; }
.nav-ul a:hover { color: var(--hunter); }
.nav-ul a:hover::after { transform: scaleX(1); }
.nav-cta { background: var(--hunter) !important; color: #fff !important; padding: 10px 22px !important; border-radius: 1px; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--hunter); }

/* ── BUTTONS ── */
.btn-gold { background: var(--gold); color: var(--hunter-dark); padding: 14px 34px; font-size: 11px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 1px; transition: all 0.3s; display: inline-block; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.3); }
.btn-ghost { background: transparent; color: #fff; padding: 14px 34px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: 1px solid rgba(255,255,255,0.3); border-radius: 1px; transition: all 0.3s; display: inline-block; }
.btn-ghost:hover { border-color: var(--grass-light); color: var(--grass-light); }
.btn-dark { background: var(--hunter); color: #fff; padding: 14px 34px; font-size: 11px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 1px; transition: all 0.3s; display: inline-block; }
.btn-dark:hover { background: var(--hunter-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,82,65,0.3); }
.btn-outline { background: transparent; color: var(--hunter); padding: 13px 32px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: 2px solid var(--hunter); border-radius: 1px; transition: all 0.3s; display: inline-block; }
.btn-outline:hover { background: var(--hunter); color: #fff; }

/* ── TAGS & HEADINGS ── */
.tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.tag.center { justify-content: center; }
.tag-line { width: 22px; height: 2px; background: var(--gold); flex-shrink: 0; }
.tag-txt { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--hunter); }
.tag-txt.light { color: var(--grass-light); }
.h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px,3.5vw,42px); font-weight: 700; color: var(--hunter); line-height: 1.15; margin-bottom: 18px; }
.h2.white { color: #fff; }
.h2.center { text-align: center; }
.body-p { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.9; margin-bottom: 14px; max-width: 520px; }
.body-p.light { color: rgba(255,255,255,0.7); }
.body-p.wide { max-width: 700px; }
.divider { width: 44px; height: 3px; background: var(--grass); margin: 18px 0; border-radius: 2px; }
.divider.center { margin: 18px auto; }
.divider.gold { background: var(--gold); }

/* ── PAGE HERO ── */
.page-hero { padding: 160px 6% 100px; position: relative; overflow: hidden; background: var(--hunter-dark); }
.page-hero::after { content: ''; position: absolute; inset: 0; opacity: 0.04; background-image: repeating-linear-gradient(45deg,#8BBF9F 0,#8BBF9F 1px,transparent 1px,transparent 36px); }
.ph-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.2; }
.ph-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(26,51,40,0.98) 0%, rgba(45,82,65,0.85) 100%); }
.ph-content { position: relative; z-index: 2; max-width: 720px; animation: fadeUp 0.8s ease forwards; opacity: 0; }
.ph-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px,4.5vw,56px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 18px; }
.ph-content h1 em { font-style: italic; color: var(--grass-light); }
.ph-content p { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.85; max-width: 580px; }

/* ── TICKER ── */
.ticker { background: var(--hunter); padding: 13px 0; overflow: hidden; border-bottom: 2px solid var(--gold); }
.ticker-track { display: flex; gap: 56px; animation: ticker 22s linear infinite; white-space: nowrap; }
.t-item { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.t-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.t-txt { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.65); }

/* ── SECTIONS ── */
.section { padding: 96px 6%; }
.section.alt { background: var(--off); }
.section.dark { background: var(--hunter); }
.section.hunter-dark { background: var(--hunter-dark); }
.section-inner { max-width: 1300px; margin: 0 auto; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

/* ── IMG STACK ── */
.img-stack { position: relative; }
.img-stack-main { width: 80%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; display: block; }
.img-stack-accent { position: absolute; bottom: -28px; right: 0; width: 52%; aspect-ratio: 1; object-fit: cover; border: 5px solid #fff; border-radius: 2px; box-shadow: 0 16px 50px rgba(0,0,0,0.15); }
.img-stack-badge { position: absolute; top: 28px; left: -18px; background: var(--hunter); padding: 16px 18px; border-radius: 2px; box-shadow: 0 10px 36px rgba(26,51,40,0.4); }
.badge-num { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--grass-light); line-height: 1; }
.badge-txt { font-size: 7px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 22px 0 32px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.7; }
.check-list li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; background: var(--grass-pale); border: 2px solid var(--grass); flex-shrink: 0; margin-top: 3px; }

/* ── CARDS GRID ── */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 52px; }
.cards-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; margin-top: 52px; }
.card { background: #fff; padding: 44px 36px; border-top: 4px solid transparent; transition: all 0.4s; }
.card:hover { border-top-color: var(--hunter); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(45,82,65,0.1); }
.card.dark-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(139,191,159,0.15); border-top: 4px solid transparent; }
.card.dark-card:hover { border-color: rgba(139,191,159,0.3); border-top-color: var(--grass); background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.card-icon { font-size: 32px; margin-bottom: 20px; display: block; }
.card-num { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: var(--grass-light); line-height: 1; margin-bottom: 18px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--hunter); margin-bottom: 12px; }
.card-title.white { color: #fff; }
.card-text { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.85; }
.card-text.light { color: rgba(255,255,255,0.65); }
.card-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.card-list li { font-size: 13px; font-weight: 300; color: var(--mid); padding: 7px 0; border-bottom: 1px solid var(--grass-pale); display: flex; align-items: center; gap: 10px; }
.card-list li::before { content: '→'; color: var(--gold); font-size: 12px; font-weight: 700; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 72px 1fr; gap: 28px; padding: 36px 0; border-bottom: 1px solid var(--grass-pale); align-items: start; }
.step:last-child { border-bottom: none; }
.step-num { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: var(--grass-light); line-height: 1; }
.step-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--hunter); margin-bottom: 10px; }
.step-text { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.85; }
.step-note { font-size: 12px; font-weight: 400; color: var(--hunter); margin-top: 10px; font-style: italic; }

/* ── TABLE ── */
.info-table { width: 100%; border-collapse: collapse; margin-top: 28px; }
.info-table th { background: var(--hunter); color: #fff; padding: 13px 20px; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-align: left; }
.info-table td { padding: 15px 20px; border-bottom: 1px solid var(--grass-pale); font-size: 14px; font-weight: 300; color: var(--mid); }
.info-table tr:hover td { background: var(--grass-pale); }

/* ── PRODUCT CARDS ── */
.prod-grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }
.prod-card { position: relative; overflow: hidden; aspect-ratio: 2/3; cursor: pointer; }
.prod-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.prod-card:hover .prod-card-img { transform: scale(1.06); }
.prod-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(26,51,40,0.97) 0%,rgba(26,51,40,0.45) 55%,transparent 100%); transition: all 0.3s; }
.prod-card:hover .prod-overlay { background: linear-gradient(to top,rgba(26,51,40,1) 0%,rgba(26,51,40,0.7) 65%,rgba(26,51,40,0.15) 100%); }
.prod-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px; }
.prod-ring { width: 34px; height: 34px; border: 1px solid rgba(139,191,159,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; transition: all 0.3s; }
.prod-card:hover .prod-ring { background: var(--grass); border-color: var(--grass); }
.prod-ring svg { width: 14px; height: 14px; stroke: var(--grass); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }
.prod-card:hover .prod-ring svg { stroke: #fff; }
.prod-name { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 5px; }
.prod-items { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── SERVICE ROWS ── */
.service-row { display: grid; grid-template-columns: 80px 1fr 200px; gap: 28px; align-items: start; padding: 40px 36px; border-left: 4px solid transparent; transition: all 0.3s; background: #fff; margin-bottom: 2px; }
.service-row:hover { border-left-color: var(--hunter); background: var(--grass-pale); }
.service-row.alt { background: var(--off); }
.service-row.alt:hover { background: var(--grass-pale); }
.sr-icon { font-size: 40px; }
.sr-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--hunter); margin-bottom: 10px; }
.sr-text { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.85; }
.sr-ideal { text-align: right; }
.sr-ideal-lbl { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.sr-ideal-txt { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.8; }

/* ── IMAGE BAND ── */
.img-band { display: grid; grid-template-columns: 1fr 1fr 1fr; height: 380px; }
.band-item { position: relative; overflow: hidden; }
.band-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.band-item:hover img { transform: scale(1.05); }
.band-ov { position: absolute; inset: 0; background: rgba(26,51,40,0.45); display: flex; align-items: flex-end; padding: 28px 24px; transition: background 0.3s; }
.band-item:hover .band-ov { background: rgba(26,51,40,0.62); }
.band-lbl { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: #fff; }
.band-sub { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ── CREDS BAR ── */
.creds-bar { background: #fff; border-top: 1px solid var(--grass-pale); border-bottom: 1px solid var(--grass-pale); padding: 0 6%; }
.creds-inner { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1000px; margin: 0 auto; }
.cred-b { padding: 28px 0; border-right: 1px solid var(--grass-pale); text-align: center; }
.cred-b:last-child { border-right: none; }
.cred-b-lbl { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--grass); margin-bottom: 7px; }
.cred-b-val { font-size: 13px; font-weight: 700; color: var(--hunter); }

/* ── CTA ── */
.cta-section { position: relative; overflow: hidden; padding: 110px 6%; text-align: center; }
.cta-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(26,51,40,0.97),rgba(45,82,65,0.92)); }
.cta-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,48px); font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.72); margin-bottom: 40px; line-height: 1.85; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--hunter); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 13px 16px; border: 1px solid #d8e8df; border-radius: 1px; font-family: 'Lato', sans-serif; font-size: 14px; color: var(--text); background: #fff; transition: border-color 0.3s; outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--hunter); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { background: var(--hunter); color: #fff; padding: 15px 0; border: none; border-radius: 1px; font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; width: 100%; margin-top: 8px; }
.form-submit:hover { background: var(--hunter-dark); transform: translateY(-2px); }
.contact-info-box { background: var(--hunter); padding: 48px 40px; border-radius: 2px; }
.ci-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ci-sub { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.6); margin-bottom: 36px; line-height: 1.7; }
.ci-detail { margin-bottom: 28px; }
.ci-lbl { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--grass); margin-bottom: 6px; }
.ci-val { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.82); line-height: 1.7; }
.ci-reg { margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.ci-reg-title { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.ci-reg-item { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 7px; }
.ci-reg-item span { color: rgba(255,255,255,0.75); font-weight: 700; }

/* ── FOOTER ── */
footer { background: var(--hunter-dark); padding: 68px 6% 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.f-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.f-sub { font-size: 8px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--grass); margin-bottom: 14px; display: block; }
.f-p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.9; max-width: 290px; }
.f-col-h { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.f-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.3s; }
.f-links a:hover { color: var(--grass-light); }
.f-contact-lbl { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 3px; margin-top: 14px; }
.f-contact-val { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.6; }
.f-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.f-copy { font-size: 11px; color: rgba(255,255,255,0.22); }
.f-reg { font-size: 10px; color: rgba(255,255,255,0.18); letter-spacing: 0.3px; }

/* ── HERO (homepage only) ── */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; background: var(--hunter-dark); padding-top: 76px; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1800&auto=format&fit=crop&q=80') center/cover no-repeat; opacity: 0.3; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg,rgba(26,51,40,0.97) 0%,rgba(26,51,40,0.86) 48%,rgba(45,82,65,0.55) 100%); }
.hero-grain { position: absolute; inset: 0; opacity: 0.03; background-image: repeating-linear-gradient(45deg,#8BBF9F 0,#8BBF9F 1px,transparent 1px,transparent 36px); }
.hero-inner { position: relative; z-index: 2; padding: 0 6%; width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; max-width: 1400px; margin: 0 auto; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.eyebrow-txt { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }
.hero-h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px,5vw,62px); font-weight: 700; color: #fff; line-height: 1.09; margin-bottom: 20px; }
.hero-h1 em { font-style: italic; color: var(--grass-light); }
.hero-p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.88; margin-bottom: 36px; max-width: 460px; }
.hero-btns { display: flex; gap: 13px; flex-wrap: wrap; }
.hcards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.hcard { background: rgba(255,255,255,0.06); border: 1px solid rgba(139,191,159,0.2); padding: 20px 18px; border-radius: 2px; transition: all 0.3s; }
.hcard:hover { background: rgba(255,255,255,0.1); border-color: var(--grass); }
.hcard-num { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--grass-light); margin-bottom: 4px; }
.hcard-lbl { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.hero-creds { background: rgba(255,255,255,0.04); border: 1px solid rgba(139,191,159,0.12); padding: 16px 20px; display: flex; gap: 28px; flex-wrap: wrap; border-radius: 2px; }
.cred-lbl { font-size: 8px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--grass); margin-bottom: 3px; }
.cred-val { font-size: 12px; color: rgba(255,255,255,0.72); font-weight: 300; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.anim-1 { animation: fadeUp 0.7s 0.1s ease forwards; opacity: 0; }
.anim-2 { animation: fadeUp 0.7s 0.25s ease forwards; opacity: 0; }
.anim-3 { animation: fadeUp 0.7s 0.4s ease forwards; opacity: 0; }
.anim-4 { animation: fadeUp 0.7s 0.55s ease forwards; opacity: 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-48 { margin-bottom: 48px; }
.max-700 { max-width: 700px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── MOBILE ── */
@media (max-width: 960px) {
  .hero-inner, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hcards { grid-template-columns: 1fr 1fr; }
  .prod-grid-5 { grid-template-columns: repeat(2,1fr); }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .img-band { grid-template-columns: 1fr; height: auto; }
  .band-item { height: 240px; }
  .creds-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-ul { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: #fff; padding: 20px 6%; gap: 20px; border-bottom: 1px solid var(--grass-pale); z-index: 999; }
  .nav-ul.open { display: flex; }
  .hamburger { display: block; }
  .service-row { grid-template-columns: 60px 1fr; gap: 16px; }
  .sr-ideal { display: none; }
  .img-stack-accent { display: none; }
  .step { grid-template-columns: 56px 1fr; gap: 16px; }
}
