/* =========================================================
   Orlé Industries — Main Stylesheet
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:opsz,wght@9..40,300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* === VARIABLES === */
:root {
  --navy:       #08111f;
  --navy-mid:   #0c1a2e;
  --navy-card:  #0f2040;
  --gold:       #C9963A;
  --gold-light: #E3B86A;
  --teal:       #0D9E8D;
  --teal-light: #12B8A6;
  --cream:      #F5EFE6;
  --warm-white: #FAF8F5;
  --text:       #1B2B3A;
  --text-mid:   #4A5A6A;
  --text-light: #8896A8;
  --border:     #E5DDD2;
  --border-nav: rgba(255,255,255,.10);
  --ease:       cubic-bezier(.22,.68,0,1.2);
  --ease-out:   cubic-bezier(.16,1,.3,1);
  --r:          8px;
  --r-lg:       16px;
  --shadow-sm:  0 2px 8px rgba(8,17,31,.08);
  --shadow-md:  0 8px 32px rgba(8,17,31,.12);
  --shadow-lg:  0 24px 64px rgba(8,17,31,.18);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background .28s ease, box-shadow .28s ease, padding .28s ease;
}
.site-nav.transparent {
  background: transparent;
}
.site-nav.scrolled {
  background: rgba(8,17,31,.94);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 40px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .02em;
  transition: color .18s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width .22s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .03em;
  border-radius: 100px;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  flex-shrink: 0;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,150,58,.35);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}

@media (max-width: 840px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(8,17,31,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    border-top: 1px solid var(--border-nav);
    margin-left: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 32px;
    font-size: 1rem;
    width: 100%;
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin: 8px 32px 0;
    justify-content: center;
  }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 80% 120%, rgba(13,158,141,.18) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 5% -10%, rgba(201,150,58,.12) 0%, transparent 55%),
    radial-gradient(ellipse 500px 400px at 55% 50%, rgba(15,32,64,.6) 0%, transparent 70%),
    var(--navy);
}
/* Subtle animated orb */
.hero-bg::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,158,141,.08) 0%, transparent 70%);
  top: 40%; right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-40px) scale(1.08); }
}
/* Horizon line decoration */
.hero-horizon {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,150,58,.3) 30%, rgba(201,150,58,.3) 70%, transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold-light);
  opacity: .6;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,.62);
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s ease, background .18s ease;
  letter-spacing: .02em;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 28px rgba(201,150,58,.38);
}
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,.55);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}
.btn-navy:hover { box-shadow: 0 8px 28px rgba(8,17,31,.3); }
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover { border-color: var(--text-mid); box-shadow: var(--shadow-sm); }

/* === SECTIONS === */
.section {
  padding: 96px 0;
}
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--teal);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1.18;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-top: 16px;
  max-width: 540px;
  line-height: 1.7;
}
.section-header.centered .section-sub { margin: 16px auto 0; }

/* === BG VARIANTS === */
.bg-white  { background: #fff; }
.bg-cream  { background: var(--cream); }
.bg-warm   { background: var(--warm-white); }
.bg-navy   { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }

/* === SOLUTIONS GRID === */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .solutions-grid { grid-template-columns: 1fr; }
}
.solution-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 36px 40px;
  transition: transform .22s var(--ease-out), box-shadow .22s ease, border-color .22s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; }
.icon-teal  { background: rgba(13,158,141,.1); color: var(--teal); }
.icon-gold  { background: rgba(201,150,58,.1); color: var(--gold); }
.icon-navy  { background: rgba(8,17,31,.06); color: var(--navy-mid); }
.icon-blue  { background: rgba(59,130,246,.08); color: #3b82f6; }

.solution-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.01em;
}
.solution-card p {
  font-size: .96rem;
  color: var(--text-mid);
  line-height: 1.68;
  flex-grow: 1;
}
/* === CARD FEATURES (replaces tags) === */
.card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.card-features li {
  font-size: .81rem;
  color: var(--text-mid);
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
}
.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .7;
}
/* Featured card — spans both columns */
.solution-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #fff 60%, rgba(13,158,141,.03) 100%);
  border-color: rgba(13,158,141,.2);
}
.solution-card--featured:hover {
  border-color: rgba(13,158,141,.4);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 8px;
  transition: gap .18s ease, color .18s ease;
}
.card-link:hover { gap: 10px; color: var(--teal-light); }
.card-link svg { width: 16px; height: 16px; }

/* === ABOUT STRIP === */
.about-strip {
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
.about-strip::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,158,141,.1) 0%, transparent 70%);
  pointer-events: none;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 720px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
}
.about-body p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}
.about-body p:last-child { margin-bottom: 0; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.stat {
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.03);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
  line-height: 1.4;
}

/* === GOVT CALLOUT === */
.govt-callout {
  background: linear-gradient(135deg, rgba(13,158,141,.06) 0%, rgba(8,17,31,.04) 100%);
  border: 1px solid rgba(13,158,141,.18);
  border-radius: var(--r-lg);
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 720px) {
  .govt-callout { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
}
.govt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(13,158,141,.08);
  border: 1px solid rgba(13,158,141,.2);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.govt-callout h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.govt-callout p {
  color: var(--text-mid);
  font-size: .97rem;
  line-height: 1.68;
  max-width: 580px;
}

/* === CONTACT CTA === */
.cta-section {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 400px at 50% 100%, rgba(201,150,58,.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* === ADDRESSES === */
.addresses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 640px) {
  .addresses-grid { grid-template-columns: 1fr; }
}
.address-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 32px 36px;
}
.address-card .flag {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.address-card h4 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.address-card address {
  font-style: normal;
  font-size: .97rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
}
.address-card a {
  font-size: .92rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  transition: color .18s ease;
}
.address-card a:hover { color: var(--teal); }
.address-card a svg { width: 15px; height: 15px; flex-shrink: 0; }

/* === CONTACT FORM === */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: .02em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-size: .96rem;
  color: var(--text);
  transition: border-color .18s ease, box-shadow .18s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,158,141,.12);
}
.form-group textarea { resize: vertical; min-height: 128px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* === PAGE HERO === */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,150,58,.25) 40%, rgba(201,150,58,.25) 60%, transparent);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 90% 50%, rgba(13,158,141,.12) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.58);
  max-width: 580px;
  line-height: 1.72;
  font-weight: 300;
}

/* === FOOTER === */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-main {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
}
@media (max-width: 840px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 14px;
}
.footer-brand .footer-logo span { color: var(--gold-light); }
.footer-brand p {
  font-size: .91rem;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
  max-width: 280px;
}
.footer-addresses {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-addr h5 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.footer-addr p, .footer-addr a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  transition: color .18s ease;
}
.footer-addr a:hover { color: rgba(255,255,255,.85); }
.footer-nav-col h5 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 16px;
}
.footer-nav-col li { margin-bottom: 10px; }
.footer-nav-col a {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: color .18s ease;
}
.footer-nav-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-legal a {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { transition: color .18s ease; }
.footer-legal a:hover { color: rgba(255,255,255,.65); }

/* === DIVIDER === */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  border: none;
  margin: 0;
}

/* === MISC HELPERS === */
.text-center { text-align: center; }
.text-white  { color: #fff; }
.text-gold   { color: var(--gold-light); }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* === TWO-COL PROSE === */
.prose-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 720px) { .prose-cols { grid-template-columns: 1fr; gap: 40px; } }
.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.prose p {
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 14px;
}
.prose p:last-child { margin-bottom: 0; }
.prose ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prose ul li {
  font-size: .95rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.prose ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 600;
}

/* === VALUES LIST === */
.values-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 48px;
}
@media (max-width: 900px) { .values-list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .values-list { grid-template-columns: repeat(2, 1fr); } }
.value-item {
  padding: 28px 20px;
  background: #fff;
  text-align: center;
}
.value-item .value-word {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}
.value-item .value-desc {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* === LEGAL === */
.legal-content {
  max-width: 740px;
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  margin: 40px 0 14px;
  letter-spacing: -.01em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.legal-date {
  display: inline-block;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-light);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 32px;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp .6s var(--ease-out) both;
}
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .22s; }
.fade-up-3 { animation-delay: .34s; }
.fade-up-4 { animation-delay: .46s; }
