/* ============================================================
   VINISH CORPORATION — shared design system
   Type:  Cormorant Garamond (display) · Cinzel (labels) · Jost (body)
   Look:  gold + black, with cream sections for brightness
   All text colors verified >= WCAG AA.
   ============================================================ */

:root {
  /* dark surfaces */
  --bg:      #100F0C;   /* page black            */
  --panel:   #1A1813;   /* card / charcoal       */
  --panel-2: #211E18;
  --hair:    rgba(232,198,107,0.22);   /* gold hairline */
  --hair-soft: rgba(232,198,107,0.12);

  /* text on dark */
  --on-dark:        #F3EEE3;   /* 16.6:1 */
  --on-dark-muted:  #D8D1C2;   /* 12.5:1 — brightened body copy */
  --on-dark-muted2: #C5BDAB;   /*  9.9:1 — brightened captions */

  /* cream surfaces */
  --cream:   #F7F3EA;
  --cream-2: #EFE8DA;
  --line:    #DED5C2;

  /* text on cream */
  --ink:   #1C1A15;   /* 15.7:1 */
  --body:  #34302A;   /* 11.8:1 */
  --muted: #4F4A40;   /*  8.1:1 — darker for stronger legibility */

  /* gold */
  --gold:       #E8C66B;   /* gold on dark   */
  --gold-bright:#EBCB72;
  --gold-deep:  #6E5614;   /* gold text on cream (6.3:1) */
  --gold-grad:  linear-gradient(135deg, #EBCB72 0%, #C9A24A 100%);

  --wa:  #4ADE80;
  --err: #FF8A8A;

  --focus: var(--gold-bright);
  --maxw: 1180px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --shadow: 0 24px 60px rgba(0,0,0,0.5);
  --shadow-cream: 0 18px 50px rgba(28,26,21,0.12);
}

*,*::before,*::after { box-sizing: border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--on-dark);
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 400; font-size: 18px; line-height: 1.75;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--gold); }

/* accessibility */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 2000;
  background: var(--gold); color: #100F0C; padding: 12px 20px;
  font-family: 'Cinzel', serif; font-weight: 600; letter-spacing: 1px;
  text-decoration: none; transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--focus); outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* layout */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; }
.section--cream { background: var(--cream); color: var(--body); --focus: var(--gold-deep); }
.section--cream2 { background: var(--cream-2); color: var(--body); --focus: var(--gold-deep); }
.section--dark { background: var(--bg); }
.section--panel { background: var(--panel); }

/* gold hairline divider between bands */
.goldline { height: 1px; width: 100%; background: linear-gradient(90deg, transparent, var(--hair), transparent); }

/* eyebrow / heading / rule */
.eyebrow {
  font-family: 'Cinzel', serif; font-weight: 600;
  font-size: 13px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); display: inline-block; margin-bottom: 14px;
}
.section--cream .eyebrow, .section--cream2 .eyebrow { color: var(--gold-deep); }
.heading {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.05; letter-spacing: 0.005em;
  color: var(--on-dark);
}
.heading em { font-style: italic; color: var(--gold); }
.section--cream .heading, .section--cream2 .heading { color: var(--ink); }
.section--cream .heading em, .section--cream2 .heading em { color: var(--gold-deep); }
.rule { display: flex; align-items: center; gap: 12px; margin: 22px 0 30px; }
.rule .ln { height: 2px; width: 56px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; }
.rule .dia { color: var(--gold); font-size: 11px; line-height: 1; }
.section--cream .rule .ln, .section--cream2 .rule .ln { background: linear-gradient(90deg, var(--gold-deep), transparent); }
.section--cream .rule .dia, .section--cream2 .rule .dia { color: var(--gold-deep); }
.lead { font-size: 20px; line-height: 1.7; max-width: 60ch; color: var(--on-dark-muted); }
.section--cream .lead, .section--cream2 .lead { color: var(--body); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Cinzel', serif; font-weight: 600; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 32px; text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent; transition: all .28s var(--ease); min-height: 52px;
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--gold { background: var(--gold-grad); color: #100F0C; }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(232,198,107,0.3); }
.btn--outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: #100F0C; }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-cream); }
.btn--outline-ink { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline-ink:hover { background: var(--ink); color: var(--cream); }

/* ============================================================ HEADER */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(16,15,12,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hair);
}
.nav { max-width: var(--maxw); margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand__mark { width: 64px; height: 64px; flex-shrink: 0; display: grid; place-items: center;
  border: 1px solid var(--hair); border-radius: 50%; background: #0B0A08; }
.brand__mark img { width: 42px; height: 42px; }
.brand__name { font-family: 'Cinzel', serif; font-weight: 600; font-size: 16px; letter-spacing: 3px; color: var(--gold); line-height: 1; }
.brand__sub { font-family: 'Jost', sans-serif; font-weight: 400; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--on-dark-muted2); margin-top: 5px; }

.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav__links a {
  position: relative;
  color: var(--on-dark); text-decoration: none;
  font-family: 'Cinzel', serif; font-weight: 500; font-size: 12.5px;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 9px 14px; transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a[aria-current="page"] { color: var(--gold); }
.nav__links a[aria-current="page"]::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); height: 2px; width: 20px; background: var(--gold); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__btn { background: transparent; border: 1.5px solid var(--gold); color: var(--gold);
  font-family: 'Cinzel', serif; font-weight: 600; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 10px 20px; text-decoration: none; transition: all .25s var(--ease); white-space: nowrap; }
.nav__btn:hover { background: var(--gold); color: #100F0C; }
.nav__toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--hair); background: transparent;
  border-radius: 8px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--gold); transition: all .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================ HERO */
.hero { position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232,198,107,0.10), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(232,198,107,0.05), transparent 50%),
    var(--bg);
}
.hero__inner { max-width: 880px; margin: 0 auto; padding: 92px 28px 96px; }
.medallion { width: 150px; height: 150px; margin: 0 auto 34px; border-radius: 50%;
  display: grid; place-items: center; position: relative; background: #0B0A08; border: 1px solid var(--hair); }
.medallion::before { content: ""; position: absolute; inset: -12px; border: 1px solid var(--hair-soft); border-radius: 50%; }
.medallion::after { content: ""; position: absolute; inset: -26px; border: 1px solid rgba(232,198,107,0.06); border-radius: 50%; }
.medallion img { width: 92px; height: 92px; filter: drop-shadow(0 0 26px rgba(232,198,107,0.28)); }
.hero__tagline { font-family: 'Cinzel', serif; font-weight: 600; font-size: 13px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hero__title { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(52px, 9vw, 104px); line-height: 0.98; color: var(--on-dark); }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__subtitle { font-family: 'Cinzel', serif; font-weight: 500; font-size: clamp(12px,1.6vw,15px); letter-spacing: 4px; text-transform: uppercase; color: var(--on-dark-muted); margin-top: 14px; }
.hero__desc { font-size: 18px; line-height: 1.75; color: var(--on-dark-muted); max-width: 58ch; margin: 26px auto 36px; }
.hero__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 28px 64px; margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--hair); }
.stat__num { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 46px; line-height: 1; color: var(--gold); }
.stat__label { font-family: 'Cinzel', serif; font-weight: 500; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--on-dark-muted2); margin-top: 8px; }

/* ============================================================ PAGE BANNER */
.banner { position: relative; overflow: hidden; text-align: center;
  background: radial-gradient(ellipse at 50% -10%, rgba(232,198,107,0.10), transparent 55%), var(--bg); }
.banner__inner { max-width: 820px; margin: 0 auto; padding: 78px 28px 82px; }
.crumb { font-family: 'Cinzel', serif; font-weight: 500; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--on-dark-muted2); margin-bottom: 16px; }
.crumb a { color: var(--gold); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }
.banner__title { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(42px, 6.5vw, 78px); line-height: 1; color: var(--on-dark); }
.banner__title em { font-style: italic; color: var(--gold); }
.banner__desc { font-size: 18px; line-height: 1.7; color: var(--on-dark-muted); max-width: 60ch; margin: 18px auto 0; }
.banner .rule { justify-content: center; }

/* head block */
.head-block { max-width: 720px; margin-bottom: 54px; }
.head-block.center { margin-inline: auto; text-align: center; }
.head-block.center .rule { justify-content: center; }

/* ============================================================ CREDENTIALS STRIP */
.creds { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.cred { border: 1px solid var(--line); background: #fff; padding: 26px 24px; border-left: 3px solid var(--gold-deep); }
.cred b { display: block; font-family: 'Cinzel', serif; font-weight: 600; font-size: 13px; letter-spacing: 1.5px; color: var(--gold-deep); margin-bottom: 7px; }
.cred span { font-size: 15px; color: var(--muted); }

/* ============================================================ VERTICAL / FEATURE CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

/* dark vertical card */
.vcard { position: relative; overflow: hidden; background: var(--panel); border: 1px solid var(--hair-soft);
  padding: 36px 30px; transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease); }
.vcard::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--gold), transparent); transition: transform .4s var(--ease); }
.vcard:hover { transform: translateY(-5px); border-color: var(--hair); background: var(--panel-2); }
.vcard:hover::after { transform: scaleX(1); }
.vcard__num { position: absolute; top: 18px; right: 22px; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 46px; color: rgba(232,198,107,0.14); line-height: 1; }
.vcard__ico { font-size: 30px; margin-bottom: 16px; }
.vcard h3 { font-family: 'Cinzel', serif; font-weight: 600; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.vcard p { font-size: 16.5px; line-height: 1.7; color: var(--on-dark-muted); }
.vcard ul { list-style: none; margin-top: 14px; }
.vcard li { font-size: 16px; color: var(--on-dark-muted); padding: 8px 0; border-bottom: 1px solid var(--hair-soft); display: flex; gap: 10px; align-items: flex-start; }
.vcard li:last-child { border-bottom: none; }
.vcard li::before { content: "\25C6"; color: var(--gold); font-size: 8px; line-height: 1.9; flex-shrink: 0; }

/* cream commodity / service card */
.ccard { background: #fff; border: 1px solid var(--line); padding: 34px 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.ccard:hover { transform: translateY(-5px); box-shadow: var(--shadow-cream); }
.ccard h3 { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 32px; line-height: 1.1; color: var(--ink); margin-bottom: 16px; padding-bottom: 14px; position: relative; }
.ccard h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 48px; height: 3px; background: var(--gold-grad); border-radius: 2px; }
.ccard .tag { display: inline-block; font-family: 'Cinzel', serif; font-weight: 600; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--line); padding: 5px 13px; margin-bottom: 16px; }
.ccard p { font-size: 16.5px; line-height: 1.72; color: var(--body); }
.ccard ul { list-style: none; margin-top: 16px; }
.ccard li { font-size: 16px; color: var(--body); padding: 9px 0; border-bottom: 1px solid var(--line); display: flex; gap: 11px; align-items: flex-start; }
.ccard li:last-child { border-bottom: none; }
.svc-sub { font-family: 'Cinzel', serif; font-weight: 600; letter-spacing: 1px; color: var(--gold-deep); margin: 18px 0 10px; }
.ccard li::before { content: "\25C6"; color: var(--gold-deep); font-size: 8px; line-height: 1.9; flex-shrink: 0; }

/* about visual + highlights */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.about-visual { display: grid; place-items: center; }
.about-medallion { width: 300px; height: 300px; border-radius: 50%; position: relative; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 40%, #1b1813, #0B0A08); border: 1px solid var(--hair); box-shadow: var(--shadow); }
.about-medallion::before { content: ""; position: absolute; inset: -16px; border: 1px solid var(--hair-soft); border-radius: 50%; }
.about-medallion::after { content: ""; position: absolute; inset: -34px; border: 1px solid rgba(232,198,107,0.06); border-radius: 50%; }
.about-medallion img { width: 170px; height: 170px; filter: drop-shadow(0 0 30px rgba(232,198,107,0.25)); }
.highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.hl { padding: 18px 20px; border-left: 3px solid var(--gold-deep); background: var(--cream-2); }
.hl b { display: block; font-family: 'Cinzel', serif; font-weight: 600; font-size: 12px; letter-spacing: 1.5px; color: var(--gold-deep); margin-bottom: 5px; }
.hl span { font-size: 15px; color: var(--muted); }
.section--cream .hl { background: #fff; }

/* global footprint */
.cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.country { font-family: 'Jost', sans-serif; font-size: 15px; color: var(--on-dark); border: 1px solid var(--hair); padding: 9px 15px; transition: all .25s var(--ease); }
.country:hover { border-color: var(--gold); color: var(--gold); }
.gpanel { border: 1px solid var(--hair); padding: 48px 36px; text-align: center; position: relative; background: var(--panel); }
.gpanel::before { content: ""; position: absolute; top: -1px; left: 30px; right: 30px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.gpanel .n { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 76px; line-height: 1; color: var(--gold); }
.gpanel .l { font-family: 'Cinzel', serif; font-weight: 500; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 30px; }
.gpanel .sep { width: 1px; height: 34px; background: var(--hair); margin: 0 auto 30px; }
.gpanel p { font-size: 15px; color: var(--on-dark-muted); }

/* ============================================================ CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.ci { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.ci:first-child { padding-top: 0; }
.ci__ico { width: 46px; height: 46px; flex-shrink: 0; border: 1px solid var(--gold-deep); display: grid; place-items: center; font-size: 18px; }
.ci b { display: block; font-family: 'Cinzel', serif; font-weight: 600; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 5px; }
.ci span, .ci a { font-size: 16px; color: var(--body); line-height: 1.6; text-decoration: none; }
.ci a:hover { color: var(--gold-deep); text-decoration: underline; }

.formcard { background: var(--panel); border: 1px solid var(--hair); padding: 40px 36px; position: relative; }
.formcard::before { content: ""; position: absolute; top: -1px; left: 30px; right: 30px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.formcard h2 { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 30px; color: var(--on-dark); margin-bottom: 6px; }
.formcard .req { font-size: 13.5px; color: var(--on-dark-muted2); margin-bottom: 26px; }
.fg { margin-bottom: 20px; }
.fg label { display: block; font-family: 'Cinzel', serif; font-weight: 600; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.fg label .star { color: var(--err); }
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--hair); color: var(--on-dark);
  padding: 13px 16px; font-family: 'Jost', sans-serif; font-size: 16px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--on-dark-muted2); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,198,107,0.16); outline: none; }
.fg [aria-invalid="true"] { border-color: var(--err); box-shadow: 0 0 0 3px rgba(255,138,138,0.18); }
.fg textarea { min-height: 120px; resize: vertical; }
.fg select option { background: var(--panel); color: var(--on-dark); }
.form-alert { display: none; padding: 13px 16px; border: 1px solid rgba(255,138,138,0.4); background: rgba(255,138,138,0.08); color: var(--err); font-size: 15.5px; margin-bottom: 18px; }
.form-success { display: none; text-align: center; padding: 28px 12px; }
.form-success .check { font-size: 42px; margin-bottom: 12px; }
.form-success b { display: block; font-family: 'Cinzel', serif; font-weight: 600; letter-spacing: 1px; color: var(--gold); font-size: 17px; margin-bottom: 8px; }
.form-success p { color: var(--on-dark-muted); font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }
.spinner { width: 15px; height: 15px; border: 2px solid rgba(0,0,0,.3); border-top-color: #000; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.or { display: flex; align-items: center; gap: 14px; margin: 18px 0; }
.or::before, .or::after { content: ""; flex: 1; height: 1px; background: var(--hair); }
.or span { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px; color: var(--on-dark-muted2); }
.wa { display: flex; align-items: center; justify-content: center; gap: 11px; padding: 14px; text-decoration: none;
  border: 1px solid rgba(74,222,128,0.4); background: rgba(74,222,128,0.07); color: var(--on-dark); transition: all .25s var(--ease); }
.wa:hover { background: rgba(74,222,128,0.14); }
.wa b { font-family: 'Cinzel', serif; font-weight: 600; font-size: 12px; letter-spacing: 1.5px; }
.wa .sub { color: var(--on-dark-muted); font-size: 14px; }

/* ============================================================ FOOTER */
.site-footer { background: #0B0A08; border-top: 1px solid var(--hair); padding: 0; }
.site-footer::before { content: ""; display: block; height: 2px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); opacity: .45; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 60px 28px 28px; }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1.5fr; gap: 56px;
  padding-bottom: 40px; border-bottom: 1px solid var(--hair-soft); }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { color: var(--on-dark-muted); font-size: 15px; line-height: 1.7; max-width: 42ch; }
.footer-badge { display: inline-block; margin-top: 20px; padding: 6px 14px;
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--hair); border-radius: 999px; background: rgba(232,198,107,0.04); }
.footer-col h2 { font-family: 'Cinzel', serif; font-weight: 600; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--on-dark-muted); text-decoration: none; font-size: 15px; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: flex; flex-direction: column; gap: 3px; margin-bottom: 16px; }
.footer-contact__label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--on-dark-muted2); }
.footer-contact__text { color: var(--on-dark-muted); font-size: 15px; }
.wa-link { display: inline-flex; align-items: center; gap: 8px; }
.wa-link svg { color: var(--wa); flex-shrink: 0; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 28px; }
.footer-bottom span { color: var(--on-dark-muted2); font-size: 13.5px; }
.footer-bottom__tag { color: var(--gold) !important; opacity: .8; }

/* reveal */
.reveal { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
body.js-ready .reveal { opacity: 0; transform: translateY(26px); }
body.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}.d4{transition-delay:.32s}

/* responsive */
@media (max-width: 980px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open { display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0; background: rgba(16,15,12,0.98);
    border-bottom: 1px solid var(--hair); padding: 18px 28px 22px; }
  .nav__links.open a { padding: 12px 14px; font-size: 14px; }
  .nav__links.open a[aria-current="page"]::after { left: 14px; transform: none; }
  .split, .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .grid-3, .creds { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .nav { padding: 14px 18px; }
  .container { padding: 0 18px; }
  .brand__sub { display: none; }
  .grid-3, .grid-2, .creds, .highlights, .footer-top, .commodities { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px 36px; }
  .formcard, .ccard, .vcard { padding: 28px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  body.js-ready .reveal { opacity: 1; transform: none; }
}
