/*
Theme Name: Ice & Law
Theme URI: https://iceandlaw.com
Author: Ice & Law
Author URI: https://iceandlaw.com
Description: Hub theme for Ice & Law — Legal, Tax & Credit services. Multilingual: EN, RU, ES, HY.
Version: 1.0
Requires at least: 6.0
Requires PHP: 8.0
License: Proprietary
Text Domain: iceandlaw
*/

/* =====================================================
   CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
  /* Brand colours */
  --navy:        #0F2340;
  --navy-dark:   #07152a;
  --navy-light:  #1a3560;
  --gold:        #C9A84C;
  --gold-light:  #e8c96a;
  --gold-pale:   rgba(201,168,76,0.12);

  /* Service pillar colours */
  --legal:       #C9A84C;    /* gold  */
  --credit:      #3b82f6;    /* blue  */
  --tax:         #10b981;    /* green */

  /* Neutrals */
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-900:    #0f172a;

  /* Semantics */
  --text-dark:   #1a2332;
  --text-mid:    #4a5568;
  --text-light:  #718096;
  --border:      #e2e8f0;
  --bg-white:    #ffffff;
  --bg-light:    #f8fafc;
  --bg-mid:      #f1f5f9;

  /* Spacing & shape */
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --shadow:      0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);

  /* Layout */
  --container:   1200px;
  --gap:         2rem;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; font-family: 'Inter', sans-serif; }
p { color: var(--text-mid); }
.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.divider {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.75rem 0 1.5rem;
}
.divider--center { margin: 0.75rem auto 1.5rem; }

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section--gray { background: var(--bg-light); }
.section--navy { background: var(--navy); }
.section--dark { background: var(--navy-dark); }
.section__header { margin-bottom: 3rem; }
.section__header--center { text-align: center; }
.section__header--center .divider { margin: 0.75rem auto 1.5rem; }
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}

/* =====================================================
   LANGUAGE BAR
   ===================================================== */
.lang-bar {
  background: var(--navy-dark);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lang-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lang-bar__info {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.lang-bar__info a {
  color: rgba(255,255,255,0.35);
}
.lang-bar__info a:hover { color: var(--gold); }
.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
}
.lang-switcher__pill {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid transparent;
  color: rgba(255,255,255,0.5);
  transition: all 0.15s;
  text-decoration: none;
}
.lang-switcher__pill:hover {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}
.lang-switcher__pill.current,
.lang-switcher__pill[aria-current="page"] {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.lang-switcher__pill .flag { font-size: 0.8rem; }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  gap: 1rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.03em;
  font-family: 'Inter', sans-serif;
}
.site-logo__name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}
.site-logo__tagline {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1px;
}
.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.site-nav a.current-menu-item { color: var(--gold); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s;
}
@media (max-width: 900px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    z-index: 200;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  .site-nav.open a { font-size: 1.25rem; color: #fff; }
  .site-nav.open .header-cta { font-size: 1rem; padding: 0.75rem 2rem; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: linear-gradient(155deg, var(--navy-dark) 0%, var(--navy) 55%, #112a4a 100%);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero__tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero__tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.65;
}
.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.hero__langs {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(12px);
}
.hero__langs-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.hero__lang-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero__lang-item:last-child { border-bottom: none; }
.hero__lang-flag { font-size: 1.5rem; }
.hero__lang-name { font-size: 0.9rem; font-weight: 700; color: #fff; }
.hero__lang-native { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 1px; }
.hero__lang-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 2px 8px;
  border-radius: 100px;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__langs { display: none; }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 700;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn--outline {
  border: 2px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  background: transparent;
}
.btn--outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; background: rgba(255,255,255,0.06); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-light); }
.btn--sm { padding: 0.5rem 1.125rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.0625rem; }

/* =====================================================
   SERVICE PILLARS
   ===================================================== */
.pillars { padding: 0; }
.pillars__grid {
  display: flex;
  flex-wrap: nowrap;
  border-top: 4px solid var(--border);
}
.pillar {
  flex: 0 0 33.3333%;
  width: 33.3333%;
  max-width: 33.3333%;
  padding: 3rem 2rem;
  box-sizing: border-box;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.pillar:last-child { border-right: none; }
.pillar::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 0 0 2px 2px;
}
.pillar--legal::before   { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.pillar--credit::before  { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.pillar--tax::before     { background: linear-gradient(90deg, #10b981, #34d399); }
.pillar:hover            { background: var(--bg-light); }
.pillar__icon            { font-size: 2.25rem; margin-bottom: 0.875rem; }
.pillar__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge--legal  { background: rgba(201,168,76,0.12); color: #9a6e1e; }
.badge--credit { background: rgba(59,130,246,0.12); color: #1d4ed8; }
.badge--tax    { background: rgba(16,185,129,0.12); color: #065f46; }
.pillar__title { font-size: 1.1875rem; margin-bottom: 0.75rem; font-weight: 700; }
.pillar__desc  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.25rem; }
.pillar__tags  { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 1.25rem; }
.pillar__tag {
  font-size: 0.75rem;
  color: var(--text-light);
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
}
.pillar__link { font-size: 0.875rem; font-weight: 700; transition: opacity 0.15s; }
.pillar--legal  .pillar__link { color: #9a6e1e; }
.pillar--credit .pillar__link { color: #1d4ed8; }
.pillar--tax    .pillar__link { color: #065f46; }
.pillar__link:hover { opacity: 0.75; }
@media (max-width: 900px) {
  .pillars__grid { flex-wrap: wrap; }
  .pillar { flex: 0 0 100%; width: 100%; max-width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
}

/* =====================================================
   CASES / RESULTS
   ===================================================== */
.cases-strip { background: var(--navy-dark); padding: 4.5rem 0; }
.cases-strip .section__label { color: var(--gold); }
.cases-strip h2 { color: #fff; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.case-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.case-card:hover { border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.06); }
.case-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.875rem; }
.case-card__icon { font-size: 1.5rem; }
.case-card__outcome {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.case-card__title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.case-card__desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; } }

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background: var(--gold);
  padding: 2.5rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stats-bar__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
}
.stats-bar__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(15,35,64,0.65);
  margin-top: 2px;
}
@media (max-width: 768px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   TEAM MEMBERS
   ===================================================== */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.member-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.member-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.member-card__photo {
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.member-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.member-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
}
.member-card__body { padding: 1.75rem; }
.member-card__name { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.member-card__role { font-size: 0.875rem; font-weight: 600; color: var(--gold); margin-bottom: 0.5rem; }
.member-card__credential {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: #d1fae5;
  color: #065f46;
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.member-card__langs {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.member-card__lang {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 100px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  color: var(--text-mid);
}
.member-card__bio { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1rem; }
.member-card__skills { margin: 0; }
.member-card__skills li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.member-card__skills li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.member-card__disclaimer {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.8rem;
  color: #92400e;
  line-height: 1.55;
}
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.testimonial-card__stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 0.875rem;
  letter-spacing: 2px;
}
.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}
.testimonial-card__name { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.testimonial-card__role { font-size: 0.78rem; color: var(--text-light); margin-top: 1px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 1.0625rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   PAGE HERO
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 3.5rem 0 2.75rem;
}
.page-hero__breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.875rem;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.4); }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__title { color: #fff; margin-bottom: 0.75rem; }
.page-hero__sub { color: rgba(255,255,255,0.55); font-size: 1.0625rem; max-width: 600px; }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
}
.notice-box {
  background: #fffbeb;
  border: 1.5px solid #fbbf24;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  color: #92400e;
  line-height: 1.65;
}
.notice-box strong { color: #78350f; display: block; margin-bottom: 0.25rem; }
.checklist { list-style: none; }
.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-mid);
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* =====================================================
   CONTACT FORM
   ===================================================== */
.contact-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3.5rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-status { font-size: 0.875rem; padding: 0.75rem 1rem; border-radius: var(--radius); display: none; }
.form-status.success { background: #d1fae5; color: #065f46; display: block; }
.form-status.error   { background: #fee2e2; color: #991b1b; display: block; }
.contact-info-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-info-value { font-size: 0.9375rem; color: var(--text-dark); margin-top: 2px; }
.contact-info-value a { color: var(--navy); }
.contact-info-value a:hover { color: var(--gold); }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* =====================================================
   FEATURES / WHY US
   ===================================================== */
.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  border: 1px solid var(--border);
  transition: border-color 0.15s;
}
.feature-item:hover { border-color: var(--gold); }
.feature-item__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item__title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.375rem; }
.feature-item__text  { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--navy-dark); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 1rem; }
.footer-langs { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-lang {
  font-size: 0.75rem;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color 0.15s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.65;
  max-width: 780px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); white-space: nowrap; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* =====================================================
   WHITE HEADER VARIANT (with real logo)
   ===================================================== */
.site-header--light {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* Custom logo image sizing */
.site-logo--img .custom-logo-link,
.site-logo--img a {
  display: flex;
  align-items: center;
}
.site-logo--img .custom-logo,
.site-logo--img .site-logo__img {
  max-height: 60px;
  width: auto;
  display: block;
}

/* Fallback SVG logo */
.site-logo__fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo__name--dark {
  font-size: 1.1rem;
  font-weight: 800;
  color: #2d3748;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
}
.site-logo__tagline--dark {
  font-size: 0.72rem;
  color: #718096;
  font-family: Georgia, serif;
  margin-top: 1px;
}

/* Dark navigation links (for white header) */
.site-nav--dark a:not(.header-cta) {
  color: var(--gray-600);
}
.site-nav--dark a:not(.header-cta):hover {
  color: var(--navy);
  background: var(--bg-mid);
}
.site-nav--dark a.current-menu-item {
  color: var(--navy) !important;
  font-weight: 600;
}

/* Hamburger dark lines (for white header) */
.hamburger--dark span { background: var(--gray-700); }

/* Mobile nav on white header */
@media (max-width: 900px) {
  .hamburger--dark { display: flex; }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   UTILITIES
   ===================================================== */
.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.mb-0 { margin-bottom: 0; }
.mt-auto { margin-top: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  z-index: 9999;
}
.skip-link:focus { top: 0; }