/* =========================================================
   MYRON DE LUXE SHARED STYLESHEET
   Used by: about.html, services.html, portfolio.html,
   testimonials.html, contact.html, privacy.html, terms.html
   (index.html, fragrance.html, tech.html keep their own markup
   but share this same token system)
   ========================================================= */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ivory: #FDF9F0;
  --cream: #F6EEE1;
  --beige: #EFE3CD;
  --amber: #F2A93B;
  --orange: #E8862E;
  --crimson: #C8102E;
  --gold: #E8862E;         /* alias, = orange */
  --gold-light: #F2A93B;   /* alias, = amber */
  --grad: linear-gradient(100deg, var(--amber) 0%, var(--orange) 55%, var(--crimson) 100%);
  --obsidian: #161412;
  --charcoal: #2B2825;
  --text: #1C1A18;
  --glass: rgba(246, 238, 225, 0.7);
  --shadow: 0 24px 64px -24px rgba(22, 20, 18, 0.3);
  --shadow-soft: 0 12px 32px -16px rgba(22, 20, 18, 0.18);
  --hairline: rgba(28, 26, 24, 0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 12px; }

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

.seal { display: block; filter: drop-shadow(0 8px 20px rgba(232, 134, 46, 0.25)); }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; padding: 1rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; z-index: 999;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--hairline);
  transition: all 0.25s ease;
}
.nav-scrolled { box-shadow: var(--shadow-soft); background: rgba(251, 245, 232, 0.9); }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo svg { width: 26px; height: 26px; }
.nav-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 4px; color: var(--obsidian); }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 2.4rem; list-style: none; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; }
.nav-links a { text-decoration: none; color: var(--charcoal); font-weight: 500; position: relative; padding-bottom: 4px; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.25s ease; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-hamburger { display: none; font-size: 1.3rem; color: var(--obsidian); background: none; border: none; cursor: pointer; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}

section, main > * { padding: 6.5rem 2rem; max-width: 1280px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); opacity: 0.6; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ''; width: 24px; height: 1px; background: var(--gold); opacity: 0.6; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2.5rem; font-size: 0.74rem; font-weight: 500; letter-spacing: 2.4px; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: all 0.3s ease; border: 1px solid transparent; cursor: pointer;
  background: var(--obsidian); color: var(--ivory); box-shadow: var(--shadow-soft);
}
.btn-outline { background: transparent; color: var(--obsidian); border-color: var(--obsidian); box-shadow: none; }
.btn-outline:hover { background: var(--obsidian); color: var(--ivory); }
.btn-gold { background: var(--grad); color: var(--ivory); font-weight: 600; border-color: transparent; }
.btn-gold:hover { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn i { font-size: 0.78rem; transition: transform 0.2s; }
.btn:hover i { transform: translateX(5px); }
.btn-wa { background: #25D366; color: #fff; border-color: transparent; }
.btn-wa:hover { background: #128C7E; color: #fff; }

/* ---- PAGE HERO (shorter version of homepage hero, for interior pages) ---- */
.page-hero {
  min-height: 46vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 9rem 2rem 3.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 30% 15%, rgba(232, 134, 46, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 75% 85%, rgba(200, 16, 46, 0.08) 0%, transparent 55%),
    var(--cream);
  position: relative; overflow: hidden; max-width: none;
}
.page-hero-flourish {
  font-family: 'Sacramento', cursive; font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  color: var(--charcoal); margin-bottom: 0.3rem; line-height: 1;
}
.page-hero h1 {
  font-family: 'Anton', 'DM Sans', sans-serif; font-weight: 400; letter-spacing: 0.5px;
  font-size: clamp(2rem, 6vw, 3.6rem); line-height: 1.12; text-transform: uppercase;
  color: var(--obsidian); max-width: 820px; margin-bottom: 1rem;
}
.page-hero h1 em {
  font-style: normal; background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p { font-size: 1.05rem; max-width: 560px; color: rgba(32, 31, 34, 0.62); font-weight: 300; }

/* ---- eyebrow-led section heading (reused across pages) ---- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(1.9rem, 4vw, 2.6rem);
}
.section-head h2 span { color: var(--gold); font-style: italic; }

/* ---- STORY CARD / QUOTE (about, testimonials) ---- */
.story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; margin-bottom: 4.5rem; }
.story-card {
  background: var(--ivory); border: 1px solid var(--hairline); border-radius: 6px; padding: 2.4rem;
  box-shadow: var(--shadow-soft);
}
.story-card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.6rem; margin-bottom: 0.9rem; }
.story-card p { color: rgba(32,31,34,0.62); font-weight: 300; font-size: 0.98rem; }
.story-quote {
  border-left: 2px solid var(--gold); padding-left: 1.6rem; margin: 2rem 0 0;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; font-weight: 400;
  color: var(--obsidian); line-height: 1.5;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }

/* ---- VALUES ---- */
.values-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.value-card {
  background: var(--ivory); border: 1.5px solid var(--obsidian); border-left-width: 4px; border-radius: 14px;
  padding: 1.8rem 1.5rem; text-align: left; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:nth-child(4n+1) { border-left-color: var(--orange); }
.value-card:nth-child(4n+2) { border-left-color: var(--crimson); }
.value-card:nth-child(4n+3) { border-left-color: var(--obsidian); }
.value-card:nth-child(4n+4) { border-left-color: var(--amber); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.value-card i { font-size: 1.3rem; color: var(--orange); margin-bottom: 0.9rem; }
.value-card h4 { font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: rgba(32,31,34,0.55); font-weight: 300; }
@media (max-width: 900px) { .values-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .values-row { grid-template-columns: 1fr; } }

/* ---- TIMELINE (about) ---- */
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 1.6rem; padding: 1.6rem 0; border-bottom: 1px solid var(--hairline); }
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-family: 'Anton', sans-serif; font-size: 1.1rem; color: var(--orange); }
.timeline-body h4 { font-size: 1rem; margin-bottom: 0.3rem; font-weight: 600; }
.timeline-body p { font-size: 0.9rem; color: rgba(32,31,34,0.6); font-weight: 300; }

/* ---- TEAM / PLACEHOLDER CARDS (about) ---- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.team-card {
  background: var(--ivory); border: 1px solid var(--hairline); border-radius: 10px; padding: 2rem; text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.team-avatar {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  color: var(--ivory); font-size: 1.4rem;
}
.team-card h4 { font-size: 1rem; margin-bottom: 0.2rem; font-weight: 600; }
.team-card .role { font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.team-card p { font-size: 0.85rem; color: rgba(32,31,34,0.55); font-weight: 300; }
@media (max-width: 860px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* ---- WHY / TRUST PANEL (reused site-wide) ---- */
.why {
  background: var(--obsidian); border-radius: 10px; max-width: 1240px;
  margin: 5rem auto; padding: 4rem 2.5rem; border: 1px solid rgba(255,255,255,0.06);
}
.why-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.why-head .eyebrow { justify-content: center; color: var(--amber); }
.why-head .eyebrow::before, .why-head .eyebrow::after { content: ''; width: 24px; height: 1px; background: var(--amber); opacity: 0.6; }
.why-head h2 { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(1.7rem, 4vw, 2.4rem); color: var(--ivory); letter-spacing: 0.5px; }
.why-head h2 span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.why-card {
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(232,134,46,0.5); }
.why-card i {
  width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(232,134,46,0.18), rgba(200,16,46,0.14));
  color: var(--amber); font-size: 1.05rem; margin-bottom: 1.1rem;
}
.why-card h4 { font-size: 1rem; margin-bottom: 0.5rem; font-weight: 600; color: var(--ivory); }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.5); font-weight: 300; }
@media (max-width: 900px) { .why { margin: 3.5rem 1rem; padding: 3rem 1.6rem; } .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---- DIVISION CARD (services.html, detailed) ---- */
.division-card {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 2rem;
  padding: 3.5rem 0; border-bottom: 1px solid rgba(232,134,46,0.1);
}
.division-card:last-of-type { border-bottom: none; }
.division-card--reverse .division-content { order: 2; }
.division-card--reverse .division-image { order: 1; }
.division-content .tag {
  font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--hairline); display: inline-block; padding: 0.2rem 1rem; border-radius: 40px; margin-bottom: 1.2rem;
}
.division-content h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 2.4rem; line-height: 1.1; margin-bottom: 1.2rem; }
.division-content h2 small {
  display: block; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 300; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-top: 0.3rem;
}
.division-content p { color: rgba(32,31,34,0.62); max-width: 430px; font-weight: 300; margin-bottom: 1.4rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.service-list li { display: flex; align-items: baseline; gap: 0.6rem; font-size: 0.92rem; color: var(--text); }
.service-list li::before { content: ''; color: var(--orange); font-weight: 600; }
.pill-group { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.pill-group span {
  font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 40px;
  border: 1px solid var(--hairline); color: rgba(32,31,34,0.55);
}
.division-image { display: flex; justify-content: center; align-items: center; }
.img-frame {
  width: 100%; max-width: 480px; aspect-ratio: 4/3; border-radius: 6px; position: relative; overflow: hidden;
  border: 1px solid var(--hairline); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.7);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.img-frame:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.img-frame--fragrance { background: radial-gradient(ellipse at 30% 20%, rgba(233,205,124,0.5), transparent 55%), linear-gradient(155deg, #3a2a10 0%, #1c140a 55%, var(--obsidian) 100%); }
.img-frame--tech { background: radial-gradient(ellipse at 70% 25%, rgba(232,134,46,0.28), transparent 55%), linear-gradient(155deg, #201f24 0%, var(--obsidian) 60%, #0f0e12 100%); }
.img-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.img-frame i { font-size: 3rem; color: var(--gold-light); opacity: 0.85; margin-bottom: 0.9rem; }
.img-frame span { font-family: 'Bebas Neue', sans-serif; letter-spacing: 4px; font-size: 1rem; }
.img-frame small { font-size: 0.65rem; margin-top: 0.5rem; opacity: 0.55; letter-spacing: 1.5px; }
@media (max-width: 860px) {
  .division-card { grid-template-columns: 1fr; padding: 2.5rem 0; gap: 1.5rem; }
  .division-card--reverse .division-content { order: 1; }
  .division-card--reverse .division-image { order: 2; }
  .division-content p { max-width: 100%; }
}

/* ---- PROCESS STEPS (services) ---- */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.process-step { background: var(--ivory); border: 1px solid var(--hairline); border-radius: 10px; padding: 1.8rem 1.5rem; }
.process-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-family: 'Anton', sans-serif; font-size: 1.6rem; color: var(--orange); margin-bottom: 0.8rem;
}
.process-step h4 { font-size: 0.95rem; margin-bottom: 0.4rem; font-weight: 600; }
.process-step p { font-size: 0.85rem; color: rgba(32,31,34,0.55); font-weight: 300; }
@media (max-width: 860px) { .process-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-row { grid-template-columns: 1fr; } }

/* ---- PORTFOLIO ---- */
.portfolio-filters { display: flex; gap: 0.7rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
.pf-filter-btn {
  padding: 0.55rem 1.4rem; border-radius: 40px; border: 1px solid var(--hairline); background: var(--ivory);
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal); cursor: pointer; transition: all 0.2s ease;
}
.pf-filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.pf-filter-btn.active { background: var(--grad); color: var(--ivory); border-color: transparent; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.portfolio-card {
  background: var(--ivory); border: 1px solid var(--hairline); border-radius: 10px; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.portfolio-thumb {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, rgba(232,134,46,0.25), transparent 55%), linear-gradient(155deg, #241a10 0%, var(--obsidian) 100%);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
}
.portfolio-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.portfolio-thumb i { font-size: 2.4rem; opacity: 0.6; }
.portfolio-tag {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 1;
  font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 40px;
  background: rgba(22,20,18,0.75); color: var(--amber);
}
.portfolio-body { padding: 1.4rem 1.5rem 1.6rem; }
.portfolio-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.4rem; }
.portfolio-body p { font-size: 0.85rem; color: rgba(32,31,34,0.55); font-weight: 300; }
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ---- TESTIMONIALS ---- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.testimonial-card {
  background: var(--ivory); border: 1px solid var(--hairline); border-radius: 10px; padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.testimonial-stars { color: var(--amber); font-size: 0.85rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; line-height: 1.5; color: var(--obsidian);
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.ta-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center; color: var(--ivory); font-size: 0.85rem; font-weight: 600; flex-shrink: 0;
}
.ta-name { font-size: 0.85rem; font-weight: 600; }
.ta-role { font-size: 0.72rem; color: rgba(32,31,34,0.5); }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-form { background: var(--ivory); border: 1px solid var(--hairline); border-radius: 10px; padding: 2.4rem; box-shadow: var(--shadow-soft); }
.form-row { margin-bottom: 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; }
.form-row label { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal); }
.form-row input, .form-row select, .form-row textarea {
  padding: 0.85rem 1rem; border: 1px solid var(--hairline); border-radius: 6px; background: var(--cream);
  font-size: 0.9rem; color: var(--text); outline: none; transition: border-color 0.2s ease; resize: vertical;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--orange); }
.form-note { font-size: 0.78rem; color: rgba(32,31,34,0.5); margin-top: 0.6rem; }
.form-success {
  display: none; align-items: center; gap: 0.6rem; padding: 0.9rem 1.1rem; border-radius: 6px;
  background: rgba(16,185,129,0.1); color: #0E9F6E; font-size: 0.85rem; margin-top: 1rem;
}
.form-success.show { display: flex; }
.contact-side { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-info-card {
  background: var(--obsidian); color: var(--ivory); border-radius: 10px; padding: 2rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-info-card i { color: var(--amber); font-size: 1.2rem; margin-top: 0.2rem; }
.contact-info-card h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.contact-info-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 300; }
.contact-info-card a { color: var(--amber); text-decoration: none; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---- LEGAL PAGES (privacy, terms) ---- */
.legal-wrap { max-width: 820px; }
.legal-updated {
  display: inline-block; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--hairline); padding: 0.3rem 1rem; border-radius: 40px; margin-bottom: 2rem;
}
.legal-doc {
  background: var(--ivory); border: 1px solid var(--hairline); border-radius: 10px; padding: 3rem;
  box-shadow: var(--shadow-soft);
}
.legal-doc h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.4rem; margin: 2.2rem 0 0.9rem;
  padding-top: 1.6rem; border-top: 1px solid var(--hairline);
}
.legal-doc h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-doc p, .legal-doc li { font-size: 0.95rem; color: rgba(32,31,34,0.68); font-weight: 300; margin-bottom: 0.8rem; }
.legal-doc ul { padding-left: 1.4rem; margin-bottom: 0.8rem; }
.legal-doc strong { color: var(--text); font-weight: 600; }
@media (max-width: 600px) { .legal-doc { padding: 1.8rem 1.4rem; } }

/* ---- PREVIEW CARDS (cross-page links) ---- */
.preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.preview-card {
  display: flex; flex-direction: column; gap: 0.8rem; text-decoration: none; color: var(--text);
  background: var(--ivory); border: 1px solid var(--hairline); border-radius: 6px; padding: 1.6rem; transition: all 0.25s ease;
}
.preview-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.preview-card i { color: var(--gold); font-size: 1.15rem; }
.preview-card span.label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.3px; }
.preview-card span.sub { font-size: 0.72rem; color: rgba(32,31,34,0.5); font-weight: 300; }
@media (max-width: 900px) { .preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .preview-grid { grid-template-columns: 1fr; } }

/* ---- FOOTER ---- */
.footer { background: var(--obsidian); color: rgba(255,255,255,0.5); padding: 3.2rem 2rem 1.6rem; font-size: 0.8rem; }
.footer-inner {
  max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 2.2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.footer-brand svg { width: 26px; height: 26px; }
.footer h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 3px; font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 0.9rem; }
.footer p { max-width: 270px; line-height: 1.75; }
.footer a { color: rgba(255,255,255,0.45); text-decoration: none; display: block; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer a:hover { color: var(--gold-light); }
.footer-socials { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-socials a { font-size: 1rem; color: rgba(255,255,255,0.3); }
.footer-socials a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1280px; margin: 1.3rem auto 0; display: flex; justify-content: space-between; font-size: 0.66rem; letter-spacing: 1px; }
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 0.5rem; }
}

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE HERO / GENERAL ---- */
@media (max-width: 768px) {
  .page-hero { min-height: auto; padding: 6.5rem 1.5rem 3rem; }
}
@media (max-width: 480px) {
  .hero-actions .btn, .page-hero .btn { width: 100%; justify-content: center; }
  section, main > * { padding: 4.5rem 1.4rem; }
  .division-content h2 { font-size: 2rem; }
}