/* ==========================================================================
   New Asia Eye Hospital — Design Tokens & Base Styles
   Brand system: Terracotta + Champagne Gold + Ivory Stone + Dark Brown ink
   (per official brand book: eye + lotus mark, colonial-Indochine architecture)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Noto+Serif+Lao:wght@500;600;700&family=Noto+Sans+Lao:wght@300;400;500;600;700&display=swap');

:root{
  /* Color tokens — official brand palette */
  --color-primary: #A9472E;       /* Terracotta */
  --color-primary-dark: #7C331F;  /* Terracotta, darker (hover) */
  --color-primary-light: #C97A5E; /* Terracotta, lighter tint */
  --color-accent: #C7A15A;        /* Champagne Gold */
  --color-accent-dark: #9C7C3F;   /* Champagne Gold, darker (text-safe) */
  --color-bronze: #8A5A46;        /* Bronze */
  --color-ink: #2A1D15;           /* Dark Brown — footer / deep backgrounds */
  --color-background: #F2ECE2;    /* Ivory Stone */
  --color-surface: #FFFFFF;
  --color-foreground: #3B2A20;    /* warm dark brown body text */
  --color-muted: #EAE0CD;
  --color-muted-foreground: #6B5A4C;
  --color-border: #DED0B8;
  --color-destructive: #B3271C;
  --color-success: #5B7553;
  --color-ring: #A9472E;

  /* Typography */
  --font-heading: 'Playfair Display', 'Noto Serif Lao', serif;
  --font-body: 'Cormorant Garamond', 'Noto Sans Lao', serif;
  --font-ui: 'Inter', 'Noto Sans Lao', sans-serif;

  /* Type scale (Cormorant reads smaller optically than a grotesque at the same size) */
  --text-xs: 0.875rem;
  --text-sm: 1rem;
  --text-base: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.25rem;
  --text-5xl: 4rem;

  /* Spacing (8px rhythm) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Effects */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(42, 29, 21, 0.08);
  --shadow-md: 0 8px 30px rgba(42, 29, 21, 0.14);
  --shadow-lg: 0 20px 60px rgba(42, 29, 21, 0.2);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
  --announce-height: 48px;
}

:root[data-lang="lo"]{
  --font-heading: 'Noto Serif Lao', 'Playfair Display', serif;
  --font-body: 'Noto Sans Lao', 'Cormorant Garamond', sans-serif;
  --font-ui: 'Noto Sans Lao', 'Inter', sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-foreground);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
ul{ margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4{ font-family: var(--font-heading); font-weight: 600; line-height: 1.22; margin: 0; letter-spacing: 0.01em; }
p{ margin: 0; }

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-3);
}

@media (min-width: 768px){
  .container{ padding-inline: var(--space-4); }
}

/* Focus visibility (accessibility) */
:focus-visible{
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 220ms var(--ease-out), background-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), color 220ms var(--ease-out), border-color 220ms var(--ease-out);
  white-space: nowrap;
  min-height: 44px;
}
.btn:active{ transform: scale(0.97); }
.btn-primary{ background: var(--color-primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--color-primary-dark); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-outline{ background: transparent; border-color: rgba(255,255,255,0.5); color: currentColor; }
.btn-outline:hover{ background: rgba(255,255,255,0.12); border-color: currentColor; }
.btn-ghost{ background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn-ghost:hover{ background: var(--color-muted); }
.btn-gold{ background: var(--color-accent); color: #fff; }
.btn-gold:hover{ background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Announcement bar ---------- */
.announce-bar{
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 101;
  height: var(--announce-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--color-ink);
  color: #fff;
  padding-inline: var(--space-3);
  text-align: center;
}
.announce-bar.is-dismissed{ display: none; }
.announce-bar p{
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.announce-bar strong{
  color: var(--color-accent);
  font-weight: 700;
  animation: announce-glow 2.2s ease-in-out infinite;
}
.announce-dot{
  position: relative;
  display: inline-flex;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex: none;
}
.announce-dot::after{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-accent);
  animation: announce-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes announce-glow{
  0%, 100%{ opacity: 1; text-shadow: 0 0 0 rgba(199,161,90,0); }
  50%{ opacity: 0.75; text-shadow: 0 0 10px rgba(199,161,90,0.7); }
}
@keyframes announce-ping{
  0%{ transform: scale(1); opacity: 0.7; }
  75%, 100%{ transform: scale(2.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
  .announce-bar strong{ animation: none; }
  .announce-dot::after{ animation: none; }
}
.announce-bar-close{
  position: absolute;
  right: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  transition: background-color 200ms var(--ease-out), color 200ms var(--ease-out);
  flex: none;
}
.announce-bar-close:hover{ background: rgba(255,255,255,0.14); color: #fff; }
.announce-bar-close svg{ width: 16px; height: 16px; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: fixed;
  inset-inline: 0;
  top: var(--announce-height);
  z-index: 100;
  background: rgba(242, 236, 226, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 300ms var(--ease-out), background-color 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.site-header.is-scrolled{
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 20px rgba(42,29,21,0.08);
}
.nav-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  height: 96px;
}
.nav-row-utility{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
  height: 56px;
  border-top: 1px solid var(--color-border);
}
.brand{
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  color: var(--color-primary);
  flex: 0 0 auto;
}
.brand svg{ width: 38px; height: 38px; flex: none; }
.brand-logo{ height: clamp(60px, 6vw, 80px); width: auto; flex: none; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.2; }
.brand-text small{ font-family: var(--font-ui); font-weight: 500; font-size: clamp(0.8rem, 1vw, 0.95rem); letter-spacing: 0.13em; text-transform: uppercase; color: var(--color-accent-dark); }

.nav-links{
  display: none;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 500;
}
.nav-links a{
  position: relative;
  padding: 0.4rem 0;
  color: var(--color-foreground);
  transition: color 200ms var(--ease-out);
}
.nav-links a::after{
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--color-accent);
  transition: right 260ms var(--ease-out);
}
.nav-links a:hover{ color: var(--color-primary); }
.nav-links a:hover::after, .nav-links a.is-active::after{ right: 0; }
.nav-links a.is-active{ color: var(--color-primary); font-weight: 600; }

.nav-row-utility .btn-primary{
  display: none;
  padding: 0.6rem 1.1rem;
  min-height: 52px;
  font-size: var(--text-xs);
  background: var(--color-surface);
  color: var(--color-primary);
  border-color: var(--color-border);
  box-shadow: none;
}
.nav-row-utility .btn-primary:hover{
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 400px){ .nav-row-utility .btn-primary{ display: inline-flex; } }

.lang-switch{
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  background: var(--color-surface);
}
.lang-switch button{
  border: 0;
  background: transparent;
  padding: 0.6rem 0.85rem;
  min-height: 44px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-muted-foreground);
  transition: background-color 200ms var(--ease-out), color 200ms var(--ease-out);
}
.lang-switch button.is-active{ background: var(--color-primary); color: #fff; }
.lang-switch button:hover:not(.is-active){ background: var(--color-muted); color: var(--color-foreground); }

.nav-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}
.nav-toggle svg{ width: 22px; height: 22px; }

@media (min-width: 1280px){
  .nav-links{ display: flex; }
  .nav-toggle{ display: none; }
}

/* Mobile drawer */
.mobile-nav{
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-background);
  display: flex;
  flex-direction: column;
  padding: calc(var(--announce-height) + 172px) var(--space-3) var(--space-4);
  gap: var(--space-2);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out), visibility 0s linear 260ms;
}
.mobile-nav.is-open{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out), visibility 0s linear 0s;
}
.mobile-nav a{
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  padding: var(--space-1) 0;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav a.btn{
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  border-bottom: none;
  margin-top: var(--space-2);
  width: 100%;
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: calc(var(--announce-height) + 152px + var(--space-7)) 0 var(--space-6);
  overflow: hidden;
  background: var(--color-ink);
  color: #fff;
  isolation: isolate;
}
.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(24,16,11,0.55) 0%, rgba(24,16,11,0.62) 45%, rgba(24,16,11,0.92) 100%),
    radial-gradient(60% 55% at 88% 8%, rgba(199,161,90,0.28), transparent 60%),
    url('../assets/img/hero-building.png');
  background-size: cover;
  background-position: center 65%;
  z-index: -2;
}
.hero-grid{
  display: grid;
  gap: var(--space-5);
  align-items: end;
  min-height: 60vh;
}
@media (min-width: 960px){
  .hero-grid{ grid-template-columns: 1fr; }
}
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8D9BC;
}
.eyebrow::before{ content:''; width: 28px; height: 1px; background: currentColor; }
.hero h1{
  font-size: clamp(2.25rem, 5vw, var(--text-5xl));
  margin-top: var(--space-2);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero-slogan{
  margin-top: var(--space-2);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: var(--text-xl);
  color: var(--color-accent);
  letter-spacing: 0.01em;
}
:root[data-lang="lo"] .hero-slogan{ font-style: normal; }
.hero-subtitle{
  margin-top: var(--space-3);
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
  line-height: 1.7;
}
.hero-cta{ display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); }
.hero-stats{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat:last-child{ grid-column: 1 / -1; }
@media (min-width: 560px){
  .hero-stats{ grid-template-columns: repeat(3, 1fr); }
  .hero-stat:last-child{ grid-column: auto; }
}
.hero-stat b{ display:block; font-family: var(--font-heading); font-size: var(--text-3xl); color: #fff; }
.hero-stat span{ font-size: var(--text-xs); color: rgba(255,255,255,0.7); letter-spacing: 0.03em; }

/* ---------- Section shells ---------- */
.section{ padding: var(--space-7) 0; }
.section-tight{ padding: var(--space-6) 0; }
.section-header{ max-width: 640px; margin-bottom: var(--space-5); }
.section-header.center{ margin-inline: auto; text-align: center; }
.section-title{ font-size: clamp(1.75rem, 3.2vw, var(--text-3xl)); color: var(--color-primary); }
.section-kicker{
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-1);
}
.section-lede{ margin-top: var(--space-2); color: var(--color-muted-foreground); font-size: var(--text-lg); line-height: 1.7; }
.on-dark{ color: rgba(255,255,255,0.85); }
.on-dark .section-title{ color: #fff; }

.bg-surface{ background: var(--color-surface); }
.bg-muted{ background: var(--color-muted); }
.bg-primary{ background: var(--color-primary); color: #fff; }

/* ---------- Grids & cards ---------- */
.grid{ display: grid; gap: var(--space-3); }
.grid-2{ grid-template-columns: repeat(1, 1fr); }
.grid-3{ grid-template-columns: repeat(1, 1fr); }
.grid-4{ grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px){ .grid-4{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px){
  .grid-2{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px){ .grid-4{ grid-template-columns: repeat(4, 1fr); } }

.card{
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms var(--ease-out);
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon{
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--color-muted);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
}
.card-icon svg{ width: 26px; height: 26px; }
.card h3{ font-size: var(--text-lg); color: var(--color-foreground); margin-bottom: 0.5rem; }
.card p{ color: var(--color-muted-foreground); font-size: var(--text-sm); }

.badge-row{ display: flex; flex-wrap: wrap; gap: var(--space-1); margin-top: var(--space-2); }
.badge{
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: var(--text-xs); font-weight: 600;
  padding: 0.4rem 0.75rem; border-radius: 999px;
  background: var(--color-muted); color: var(--color-primary);
  border: 1px solid var(--color-border);
  white-space: nowrap;
}
.badge svg{ width: 14px; height: 14px; }

/* Doctor card */
.doctor-card{ text-align: left; }
.doctor-photo{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--color-muted), #fff);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
  overflow: hidden;
}
.doctor-monogram::before{
  content: '';
  position: absolute;
  inset: 16px;
  border: 1.5px solid var(--color-accent);
  border-radius: calc(var(--radius-md) - 6px);
  pointer-events: none;
}
.doctor-initials{
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}
.doctor-photo svg{ width: 46%; color: var(--color-primary-light); }
.doctor-photo img{ width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.doctor-card h3{ font-size: var(--text-lg); margin-bottom: 0.15rem; }
.doctor-role{ font-family: var(--font-ui); font-size: var(--text-sm); color: var(--color-accent-dark); font-weight: 600; margin-bottom: 0.5rem; }
.doctor-card p{ color: var(--color-muted-foreground); font-size: var(--text-sm); }

/* Doctor card — "more coming soon" placeholder */
.doctor-card--more{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  border: 1.5px dashed var(--color-border);
}
.doctor-card--more:hover{ transform: none; box-shadow: none; border-color: var(--color-accent); }
.doctor-card--more .doctor-photo{
  background: none;
  border: 1.5px dashed var(--color-border);
  width: 100%;
}
.doctor-card--more .doctor-photo svg{ width: 34%; color: var(--color-accent-dark); }
.doctor-card--more h3{ color: var(--color-primary); font-size: var(--text-lg); }
.doctor-card--more p{ color: var(--color-muted-foreground); font-size: var(--text-sm); }

/* Stat pulse */
.stat-card{ text-align: center; padding: var(--space-4) var(--space-2); }
.stat-card b{ font-family: var(--font-heading); font-size: var(--text-4xl); color: var(--color-primary); display: block; }
.stat-card span{ font-size: var(--text-sm); color: var(--color-muted-foreground); }

/* Divider */
/* Signature divider: line – diamond – line, echoing the brand mark's own lockup */
.divider{ display: flex; align-items: center; gap: 0.85rem; width: 220px; max-width: 100%; margin: var(--space-2) 0; color: var(--color-accent-dark); }
.divider::before, .divider::after{ content: ''; flex: 1; height: 1px; background: var(--color-border); }
.divider svg{ width: 14px; height: 14px; flex: none; }

/* CTA band */
.cta-band{
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4);
  background: var(--color-ink);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.cta-band::before{
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(70% 90% at 50% 0%, rgba(199,161,90,0.32), transparent 65%);
}
.cta-band > *{ position: relative; }
.cta-band h2{ color: #fff; font-size: clamp(1.75rem, 3vw, var(--text-3xl)); }
.cta-band p{ margin-top: var(--space-2); color: rgba(255,255,255,0.8); }
.cta-band .hero-cta{ justify-content: center; margin-top: var(--space-3); }

/* ---------- Footer ---------- */
.site-footer{ background: var(--color-ink); color: rgba(255,255,255,0.75); padding: var(--space-6) 0 var(--space-3); }
.footer-grid{ display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 768px){ .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand{ display: flex; align-items: center; gap: 0.6rem; color: #fff; font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: var(--space-2); }
.footer-brand svg{ width: 30px; height: 30px; }
.site-footer h4{ color: #fff; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-2); font-family: var(--font-ui); font-weight: 600; }
.footer-links{ display: flex; flex-direction: column; gap: 0.6rem; font-size: var(--text-sm); }
.footer-links a:hover{ color: #fff; }
.footer-contact li{ display: flex; gap: 0.6rem; font-size: var(--text-sm); margin-bottom: 0.6rem; align-items: flex-start; }
.footer-contact svg{ width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--color-accent); }
.footer-bottom{ margin-top: var(--space-5); padding-top: var(--space-3); border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-1); font-size: var(--text-xs); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  padding: calc(var(--announce-height) + 152px + var(--space-5)) 0 var(--space-5);
  background: var(--color-muted);
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb{ font-family: var(--font-ui); font-size: var(--text-xs); color: var(--color-muted-foreground); margin-bottom: var(--space-2); display:flex; gap:0.4rem; align-items:center; }
.breadcrumb a:hover{ color: var(--color-primary); }
.page-hero h1{ font-size: clamp(2rem, 4vw, var(--text-4xl)); color: var(--color-primary); }
.page-hero p{ margin-top: var(--space-2); font-size: var(--text-lg); color: var(--color-muted-foreground); max-width: 60ch; }

/* ---------- Values / mission split ---------- */
.split{ display: grid; gap: var(--space-4); align-items: center; }
@media (min-width: 900px){ .split{ grid-template-columns: 1fr 1fr; gap: var(--space-6); } }
.split-media{ aspect-ratio: 4/3; border-radius: var(--radius-lg); background: linear-gradient(150deg, var(--color-muted), #fff); border: 1px solid var(--color-border); display:flex; align-items:center; justify-content:center; }
.split-media svg{ width: 60%; }

.value-list{ display: grid; gap: var(--space-3); }
.value-item{ display: flex; gap: var(--space-2); }
.value-item .mark{ flex: none; width: 24px; height: 24px; color: var(--color-accent-dark); margin-top: 0.2rem; }
.value-item .mark svg{ width: 100%; height: 100%; }
.value-item h4{ font-size: var(--text-base); margin-bottom: 0.25rem; }
.value-item p{ font-size: var(--text-sm); color: var(--color-muted-foreground); }

/* ---------- Contact page ---------- */
.phone-cta-band{
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background-color 220ms var(--ease-out);
}
.phone-cta-band:hover{ transform: translateY(-3px); box-shadow: var(--shadow-lg); background: var(--color-primary-dark); }
.phone-cta-icon{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.phone-cta-icon svg{ width: 26px; height: 26px; }
.phone-cta-text{ display: flex; flex-direction: column; gap: 0.2rem; }
.phone-cta-label{ font-family: var(--font-ui); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.75); }
.phone-cta-number{ font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
.form-temp-note{
  display: flex; gap: 0.6rem; align-items: flex-start;
  background: var(--color-muted);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-muted-foreground);
  margin-bottom: var(--space-3);
}
.form-temp-note svg{ width: 20px; height: 20px; flex: none; color: var(--color-primary); }
.form-temp-note a{ color: var(--color-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.contact-grid{ display: grid; gap: var(--space-4); }
@media (min-width: 960px){ .contact-grid{ grid-template-columns: 0.9fr 1.1fr; gap: var(--space-6); } }
.info-card{ background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-4); }
.info-row{ display: flex; gap: var(--space-2); padding: var(--space-2) 0; border-bottom: 1px solid var(--color-border); }
.info-row:last-child{ border-bottom: none; }
.info-row svg{ width: 22px; height: 22px; color: var(--color-primary); flex: none; margin-top: 2px; }
.info-row h4{ font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-muted-foreground); margin-bottom: 0.2rem; }
.info-row p, .info-row a{ font-size: var(--text-base); font-weight: 500; }
.map-frame{ margin-top: var(--space-3); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border); aspect-ratio: 16/10; }
.map-frame iframe{ width: 100%; height: 100%; border: 0; }

.form-card{ background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-4); }
.field{ margin-bottom: var(--space-3); }
.field label{ display:block; font-family: var(--font-ui); font-size: var(--text-sm); font-weight: 600; margin-bottom: 0.4rem; }
.field .req{ color: var(--color-destructive); }
.field input, .field select, .field textarea{
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-background);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-foreground);
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.field textarea{ min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(169,71,46,0.14);
}
.field-hint{ font-family: var(--font-ui); font-size: var(--text-xs); color: var(--color-muted-foreground); margin-top: 0.35rem; }
.field-row{ display: grid; gap: var(--space-2); }
@media (min-width: 560px){ .field-row.two{ grid-template-columns: 1fr 1fr; } }
.form-note{ display:flex; gap:0.6rem; align-items:flex-start; background: var(--color-muted); border-radius: var(--radius-sm); padding: var(--space-2); font-family: var(--font-ui); font-size: var(--text-sm); color: var(--color-muted-foreground); margin-top: var(--space-2); }
.form-note svg{ width: 20px; height:20px; flex:none; color: var(--color-primary); }
.form-status{ margin-top: var(--space-2); font-family: var(--font-ui); font-size: var(--text-sm); font-weight: 600; display:none; }
.form-status.is-visible{ display:block; }
.form-status.ok{ color: var(--color-success); }

/* ---------- Blog ---------- */
.blog-filters{ display: flex; flex-wrap: wrap; gap: var(--space-1); margin-bottom: var(--space-4); }
.blog-filters button{
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.6rem 1.1rem;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-muted-foreground);
  white-space: nowrap;
  transition: background-color 200ms var(--ease-out), color 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.blog-filters button:hover:not(.is-active){ background: var(--color-muted); color: var(--color-foreground); }
.blog-filters button.is-active{ background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.blog-card{ display: flex; flex-direction: column; }
.blog-card-top{ display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: var(--space-2); }
.blog-card-top time{ font-family: var(--font-ui); font-size: var(--text-xs); color: var(--color-muted-foreground); }
.blog-card h3{ font-size: var(--text-lg); margin-bottom: 0.5rem; }
.blog-card p{ color: var(--color-muted-foreground); font-size: var(--text-sm); flex: 1; }
.blog-card-link{ margin-top: var(--space-2); align-self: flex-start; }

.post-badge--promotion{ background: rgba(199,161,90,0.16); color: var(--color-accent-dark); border-color: rgba(199,161,90,0.35); }

.blog-empty{ grid-column: 1 / -1; text-align: center; color: var(--color-muted-foreground); padding: var(--space-5) 0; font-size: var(--text-lg); }

/* ---------- Careers ---------- */
.job-card{ display: flex; flex-direction: column; }
.job-card-meta{ display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.6rem 0 0.75rem; }
.job-card p{ color: var(--color-muted-foreground); font-size: var(--text-sm); flex: 1; }
.job-card-link{ margin-top: var(--space-3); align-self: flex-start; }
.apply-card{
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
}
.apply-card a{ color: var(--color-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.translation-pending{
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-accent-dark);
  background: rgba(199,161,90,0.14);
  border: 1px solid rgba(199,161,90,0.3);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  margin: 0.5rem 0;
}

.article-date{ font-family: var(--font-ui); font-size: var(--text-sm); color: var(--color-muted-foreground); margin-top: var(--space-1); }
.article-body{ max-width: 70ch; margin-inline: auto; font-size: var(--text-lg); line-height: 1.8; color: var(--color-foreground); }
.article-body p{ margin-bottom: var(--space-3); }
.article-body ul{ margin: 0 0 var(--space-3); padding-left: 1.4rem; list-style: disc; }
.article-body li{ margin-bottom: 0.6rem; }
.article-body strong{ color: var(--color-primary); }

/* Utility */
.text-center{ text-align: center; }
.mt-1{ margin-top: var(--space-1);} .mt-2{ margin-top: var(--space-2);} .mt-3{ margin-top: var(--space-3);} .mt-4{ margin-top: var(--space-4);}
.mb-3{ margin-bottom: var(--space-3); }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link{
  position: absolute; left: 1rem; top: -60px; z-index: 200;
  background: var(--color-primary); color: #fff; padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
  transition: top 200ms var(--ease-out);
}
.skip-link:focus{ top: 1rem; }
