/* ==========================================================================
   MILIOTIS CARDIOLOGY — style.css
   No language CSS needed: all i18n is handled by js/i18n.js
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Colours */
  --c-navy:        #0d1b2a;
  --c-navy-mid:    #162236;
  --c-navy-light:  #1e3352;
  --c-gold:        #b8965a;
  --c-gold-light:  #d4b07a;
  --c-gold-pale:   #f0e4cc;
  --c-white:       #ffffff;
  --c-off-white:   #f8f5f0;
  --c-text:        #1a1a2e;
  --c-muted:       #5a6070;
  --c-border:      rgba(184,150,90,0.18);
  --c-border-soft: rgba(0,0,0,0.07);

  /* Typography */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Font sizes */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-hero: clamp(2.6rem, 5.5vw, 4.75rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --container: 1200px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadows */
  --sh-sm:   0 1px 4px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --sh-md:   0 4px 16px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.05);
  --sh-lg:   0 12px 40px rgba(0,0,0,0.13), 0 4px 8px rgba(0,0,0,0.05);
  --sh-gold: 0 4px 20px rgba(184,150,90,0.22);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 280ms ease;
  --t-slow: 480ms ease;

  /* Navigation */
  --nav-height: 68px;
  --topbar-height: 36px;
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  padding: 0;
}

svg {
  display: block;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section {
  padding-block: var(--sp-24);
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY UTILITIES
   -------------------------------------------------------------------------- */
.eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-3xl));
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--c-muted);
  line-height: 1.72;
  max-width: 54ch;
}

.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  margin-block: var(--sp-4);
}
.gold-rule--center { margin-inline: auto; }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 11px 22px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  line-height: 1;
  white-space: nowrap;
}

.btn svg {
  width: 15px;
  height: 15px;
  transition: transform var(--t-fast);
}

.btn:hover svg:last-child { transform: translateX(3px); }

.btn--primary {
  background: var(--c-gold);
  color: var(--c-navy);
  border-color: var(--c-gold);
}
.btn--primary:hover {
  background: var(--c-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--sh-gold);
}

.btn--dark {
  background: var(--c-navy);
  color: var(--c-white);
  border-color: var(--c-navy);
}
.btn--dark:hover {
  background: var(--c-navy-light);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.28);
}
.btn--ghost:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-light);
}

/* --------------------------------------------------------------------------
   6. TOP BAR
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--c-navy);
  height: var(--topbar-height);
  border-bottom: 1px solid rgba(184,150,90,0.12);
  display: flex;
  align-items: center;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.60);
}

.topbar__item svg {
  width: 13px;
  height: 13px;
  color: var(--c-gold);
}

.topbar__item a {
  color: rgba(255,255,255,0.60);
  transition: color var(--t-fast);
}
.topbar__item a:hover { color: var(--c-gold-light); }

/* Hide middle topbar items on small screens */
@media (max-width: 640px) {
  .topbar__item--md { display: none; }
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,150,90,0.18);
  border-radius: var(--r-sm);
  padding: 2px;
  flex-shrink: 0;
}

.lang-btn {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  padding: 3px 9px;
  border-radius: 3px;
  transition: all var(--t-fast);
}
.lang-btn.active,
.lang-btn:hover {
  color: var(--c-gold);
  background: rgba(184,150,90,0.14);
}

/* --------------------------------------------------------------------------
   7. NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border-soft);
  transition: box-shadow var(--t-base);
}

.nav.is-scrolled {
  box-shadow: var(--sh-md);
}

.nav .container {
  height: 100%;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  height: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-name {
  font-family: var(--f-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--c-navy);
  letter-spacing: -0.01em;
}

.nav__logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--c-muted);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t-fast);
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width var(--t-base);
}

.nav__link:hover {
  color: var(--c-navy);
}
.nav__link:hover::after {
  width: 100%;
}

/* Desktop CTA */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-navy);
  color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-fast);
}
.nav__cta:hover {
  background: var(--c-navy-light);
  transform: translateY(-1px);
}
.nav__cta svg { width: 14px; height: 14px; }

/* Hamburger button */
.nav__hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.nav__hamburger:hover {
  background: rgba(0,0,0,0.05);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-navy);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--t-base), opacity var(--t-base);
}
/* Animated X state */
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   8. MOBILE DRAWER + BACKDROP
   -------------------------------------------------------------------------- */

/* Backdrop */
.nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.45);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}
.nav__backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer panel — slides in from right */
.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--c-white);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--topbar-height) + var(--nav-height) + var(--sp-4));
  padding-inline: var(--sp-6);
  padding-bottom: var(--sp-8);
  gap: 0;
  transform: translateX(100%);
  transition: transform var(--t-slow) cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}

.nav__drawer.is-open {
  transform: translateX(0);
}

.nav__drawer nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nav__drawer-link {
  display: block;
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--c-navy);
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--c-border-soft);
  transition: color var(--t-fast), padding-left var(--t-base);
}
.nav__drawer-link:hover {
  color: var(--c-gold);
  padding-left: var(--sp-3);
}

.nav__drawer-cta {
  margin-top: var(--sp-8);
  justify-content: center;
  width: 100%;
}

/* --------------------------------------------------------------------------
   9. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height) - var(--topbar-height));
  background: var(--c-navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Subtle gradient overlay */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 45%, rgba(30,51,82,0.85) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 15% 85%, rgba(184,150,90,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Decorative ECG line */
.hero__ecg {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 100%;
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
}

/* Hero image — right half */
.hero__image-wrap {
  position: absolute;
  inset: 0;
  left: 40%;
  overflow: hidden;
  z-index: 0;
}
.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--c-navy) 0%, rgba(13,27,42,0.25) 60%, transparent 100%);
  z-index: 1;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

/* Hero content */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 600px;
  padding-block: var(--sp-16);
}

/* Hook badge */
.hero__hook-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(184,150,90,0.12);
  border: 1px solid rgba(184,150,90,0.28);
  border-radius: 99px;
  padding: 5px 14px 5px 10px;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--c-gold-light);
  margin-bottom: var(--sp-5);
}
.hero__hook-badge svg {
  width: 14px;
  height: 14px;
  color: var(--c-gold);
}

.hero__eyebrow {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
}

.hero__title {
  font-family: var(--f-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.08;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
}
.hero__title em {
  font-style: italic;
  color: var(--c-gold-light);
}

.hero__subtitle {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.62);
  line-height: 1.78;
  max-width: 46ch;
  font-weight: 300;
  margin-bottom: var(--sp-10);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
}

/* GeSYH badge */
.gesyh-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid rgba(184,150,90,0.22);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.04);
}
.gesyh-badge__icon {
  width: 30px;
  height: 30px;
  background: rgba(184,150,90,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gesyh-badge__icon svg { width: 14px; height: 14px; color: var(--c-gold); }
.gesyh-badge__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.gesyh-badge__text strong {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  display: block;
}
.gesyh-badge__text span {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
  display: block;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.28);
  z-index: 2;
  animation: bounce 2.4s ease-in-out infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* --------------------------------------------------------------------------
   10. STATS BAR
   -------------------------------------------------------------------------- */
.stats {
  background: var(--c-off-white);
  padding-block: var(--sp-10);
  border-top:    1px solid var(--c-border-soft);
  border-bottom: 1px solid var(--c-border-soft);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
  text-align: center;
}

.stats__item {
  padding: var(--sp-4);
  position: relative;
}
.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--c-border-soft);
}

.stats__number {
  font-family: var(--f-display);
  font-size: var(--fs-3xl);
  font-weight: 400;
  color: var(--c-navy);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stats__number sup {
  font-size: 0.48em;
  color: var(--c-gold);
  vertical-align: super;
}

.stats__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* --------------------------------------------------------------------------
   11. TEAM
   -------------------------------------------------------------------------- */
.team { background: var(--c-white); }

.team__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-16);
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: start;
}

/* Doctor card */
.doctor-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-off-white);
  border: 1px solid var(--c-border-soft);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.doctor-card__image-wrap {
  position: relative;
/*  aspect-ratio: 4/3;*/
  background: var(--c-navy-mid);
  overflow: hidden;
}
.doctor-card--featured .doctor-card__image-wrap {
  aspect-ratio: 16/9;
}

.doctor-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.doctor-card:hover .doctor-card__image { transform: scale(1.04); }

.doctor-card__image-overlay {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(13,27,42,0.65), transparent);
}

.doctor-card__ribbon {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--c-gold);
  color: var(--c-navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 99px;
}

.doctor-card__body { padding: var(--sp-6); }

.doctor-card__name {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--c-navy);
  margin-bottom: var(--sp-1);
}

.doctor-card__role {
  font-size: var(--fs-sm);
  color: var(--c-gold);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.doctor-card__bio {
  font-size: var(--fs-base);
  color: var(--c-muted);
  line-height: 1.72;
  margin-bottom: var(--sp-5);
}

.doctor-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-xs);
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(184,150,90,0.09);
  color: var(--c-navy);
  border: 1px solid rgba(184,150,90,0.18);
}

/* --------------------------------------------------------------------------
   12. SERVICES
   -------------------------------------------------------------------------- */
.services {
  background: var(--c-navy);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(184,150,90,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.services__intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--sp-16);
}
.services__intro .section-title { color: var(--c-white); }
.services__intro .section-subtitle { color: rgba(255,255,255,0.52); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  overflow: hidden;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}
.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,150,90,0.22);
  transform: translateY(-3px);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(184,150,90,0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.service-card__icon svg { width: 21px; height: 21px; color: var(--c-gold); }

.service-card__title {
  font-family: var(--f-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--c-white);
  margin-bottom: var(--sp-3);
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.48);
  line-height: 1.78;
}

/* --------------------------------------------------------------------------
   13. CONTACT / APPOINTMENT
   -------------------------------------------------------------------------- */
.appointment { background: var(--c-off-white); }

.appointment__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.appointment__content .section-subtitle { margin-bottom: var(--sp-8); }

/* Info list */
.info-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.info-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.info-list__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(13,27,42,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-list__icon svg { width: 15px; height: 15px; color: var(--c-navy); }

.info-list__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.info-list__label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.info-list__value {
  font-size: var(--fs-base);
  color: var(--c-text);
  line-height: 1.55;
}
.info-list__value a:hover { color: var(--c-gold); }

/* Map */
.appointment__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
}
.appointment__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--c-navy);
  padding-block: var(--sp-16) var(--sp-8);
  border-top: 1px solid rgba(184,150,90,0.12);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

.footer__brand-name {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 2px;
}
.footer__brand-sub {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
  display: block;
}
.footer__brand-desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  max-width: 28ch;
}

.footer__col-title {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-5);
  display: block;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer__link {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.42);
  transition: color var(--t-fast);
}
.footer__link:hover { color: var(--c-gold-light); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.42);
}
.footer__contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__contact-item a:hover { color: var(--c-gold-light); }
.footer__contact-item address { line-height: 1.6; }

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer__copy {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.22);
}

.footer__gesyh {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.28);
}
.footer__gesyh-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   15. SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* --------------------------------------------------------------------------
   16. RESPONSIVE — Tablet ≤960px
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  /* Hide desktop nav, show hamburger */
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }

  /* Hero: image becomes background */
  .hero__image-wrap {
    left: 0;
    opacity: 1;
  }
  .hero__image-wrap::before {
    background: linear-gradient(to right, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.75) 60%, rgba(13,27,42,0.5) 100%);
  }
  .hero__image { opacity: 0.3; }
  .hero__content { max-width: 100%; }

  /* Stats: 2×2 grid */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__item::after { display: none; }

  /* Team: single column */
  .team__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  /* Services: 2 columns */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact: stack */
  .appointment__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  /* Footer: 2 columns */
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
  .footer__brand { grid-column: 1 / -1; }
}

/* --------------------------------------------------------------------------
   17. RESPONSIVE — Mobile ≤600px
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
  :root {
    --nav-height: 60px;
    --topbar-height: 34px;
  }

  .container {
    padding-inline: var(--sp-4);
  }

  .section {
    padding-block: var(--sp-16);
  }

  /* Hero */
  .hero { min-height: 90svh; }
  .hero__content { padding-block: var(--sp-12); }
  .hero__title { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero__subtitle { font-size: var(--fs-base); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Stats: 2×2 stays fine */

  /* Team: full width cards */
  .team__grid { max-width: 100%; }

  /* Services: single column */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Contact map */
  .appointment__map { aspect-ratio: 1 / 1; }

  /* Footer */
  .footer__main {
    grid-template-columns: 1fr;
  }
  .footer__brand { grid-column: auto; }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Stats number size */
  .stats__number { font-size: var(--fs-2xl); }
}

/* --------------------------------------------------------------------------
   18. ACCESSIBILITY — focus styles
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   19. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .topbar,
  .nav,
  .nav__drawer,
  .nav__backdrop,
  .hero__scroll { display: none !important; }

  .hero { min-height: auto; }
  .section { padding-block: 2rem; }
  * { box-shadow: none !important; }
}
