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

.container--narrow {
  max-width: var(--container-lg);
}

.container--wide {
  max-width: var(--container-2xl);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background-color: var(--section);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-lg);
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}

.section__title {
  margin-bottom: var(--space-md);
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
}

.section__subtitle {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex {
  display: flex;
  align-items: center;
}

.flex--between {
  justify-content: space-between;
}

.flex--center {
  justify-content: center;
}

.flex--wrap {
  flex-wrap: wrap;
}

.flex--col {
  flex-direction: column;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* ==============================
   HEADER
   ============================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  transition: padding var(--transition-base);
  padding: 10px 48px;
  background: transparent;
  pointer-events: none;
}

.header .container {
  max-width: 100%;
  padding: 0;
}

.header .nav__link {
  color: #1f2937;
  font-weight: 500;
}

.header .nav__link:hover {
  color: var(--primary);
}

.header .nav__link--active {
  color: var(--primary);
}

.header--scrolled {
  padding: 8px 48px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  padding: 4px 20px 4px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
  transition: box-shadow var(--transition-base), padding var(--transition-base);
  max-width: 1320px;
  margin: 0 auto;
}

.header--scrolled .header__inner {
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  flex-shrink: 0;
  padding: 2px 8px 2px 2px;
}

.header__logo-mark {
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  background: transparent;
  flex-shrink: 0;
  margin-right: -2px;
  animation: logoStamp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

@keyframes logoStamp {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-12deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.08) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.header__logo-icon-img {
  height: 50px;
  width: auto;
  display: block;
  transition: height var(--transition-base);
}

.header--scrolled .header__logo-mark {
  width: auto;
  height: auto;
}

.header--scrolled .header__logo-icon-img {
  height: 44px;
}

.header__logo-info {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
  padding-top: 12px;
  animation: logoTextSlide 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

@keyframes logoTextSlide {
  0% {
    opacity: 0;
    transform: translateX(-12px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.header__logo-name {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header__logo-tagline {
  margin-top: 3px;
  font-size: 0.62rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.header__logo-img {
  height: 56px;
  width: auto;
  transition: height var(--transition-base);
}

.header--scrolled .header__logo-img {
  height: 48px;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
}

[data-theme="dark"] .header__inner {
  background: rgba(23, 26, 33, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .header__logo-name,
[data-theme="dark"] .header .nav__link {
  color: #f8fafc;
}

/* ==============================
   NAVIGATION
   ============================== */

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__panel-head,
.nav-backdrop {
  display: none;
}

.nav__link {
  position: relative;
  padding: 8px 14px;
  color: #374151;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 999px;
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav__link:hover {
  color: var(--primary);
  background: rgba(30, 143, 79, 0.08);
}

.nav__link.nav__link--active {
  color: var(--primary);
  font-weight: 600;
  background: rgba(30, 143, 79, 0.1);
}

.nav__link.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav__dropdown-toggle.nav__link--active::after {
  display: none;
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.nav__dropdown:hover .nav__dropdown-toggle svg,
.nav__dropdown--open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 292px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: var(--z-dropdown);
}

.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown--open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.8rem;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 12px;
  transition: background var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
}

.nav__dropdown-item:hover,
.nav__dropdown-item.nav__link--active {
  background: #f3faf6;
  color: var(--primary);
}

.nav__dropdown-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
}

.nav__dropdown-icon svg {
  width: 18px;
  height: 18px;
}

.nav__dropdown-icon--ongoing {
  color: #146c3b;
  background: #e7f6ee;
}

.nav__dropdown-icon--upcoming {
  color: #1d4ed8;
  background: #e8f0fe;
}

.nav__dropdown-icon--completed {
  color: #7c3aed;
  background: #f3e8ff;
}

.nav__dropdown-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.nav__dropdown-copy strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}

.nav__dropdown-item:hover .nav__dropdown-copy strong,
.nav__dropdown-item.nav__link--active .nav__dropdown-copy strong {
  color: var(--primary);
}

.nav__dropdown-copy small {
  font-size: 0.72rem;
  color: #6b7280;
  font-weight: 500;
}

[data-theme="dark"] .nav__dropdown-menu {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .nav__dropdown-copy strong {
  color: #f8fafc;
}

/* ==============================
   HEADER ACTIONS
   ============================== */

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__call-wrap {
  position: relative;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  min-width: 168px;
  justify-content: center;
  letter-spacing: 0.04em;
}

.header__phone:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(30, 143, 79, 0.3);
}

.header__phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header__phone-text {
  transition: opacity 0.3s ease;
}

.header__call-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
  z-index: var(--z-dropdown);
}

.header__call-dropdown--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__call-dropdown-title {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.header__call-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.header__call-option:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.header__call-option svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  padding: 0;
  flex-shrink: 0;
  border-radius: 10px;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-toggle--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle--active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==============================
   FOOTER
   ============================== */

.footer {
  background: linear-gradient(180deg, #1A1D23 0%, #12141A 100%);
  color: #A0A4AB;
  padding-top: var(--space-3xl);
  position: relative;
}

[data-theme="dark"] .footer {
  background: linear-gradient(180deg, #0D0F12 0%, #060709 100%);
}

.footer__top {
  padding-bottom: var(--space-xl);
}

.footer__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.1) 30%, rgba(255,255,255,0.1) 70%, rgba(255,255,255,0.06));
  margin-bottom: var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer__logo-img {
  height: 58px;
  width: auto;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  padding-top: 14px;
}

.footer__logo-text span {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
}

.footer__tagline {
  font-size: 0.875rem;
  color: #5A5E65;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.footer__social {
  display: flex;
  gap: 8px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  transition: all var(--transition-fast);
}

.footer__social-link--fb { color: #1877F2; }
.footer__social-link--ig { color: #E4405F; }
.footer__social-link--yt { color: #FF0000; }
.footer__social-link--li { color: #0A66C2; }

.footer__social-link:hover {
  transform: translateY(-3px);
}

.footer__social-link--fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
}

.footer__social-link--ig:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #E4405F;
  color: #fff;
  box-shadow: 0 4px 14px rgba(228, 64, 95, 0.35);
}

.footer__social-link--yt:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.3);
}

.footer__social-link--li:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #fff;
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.35);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__heading {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer__heading::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  margin-top: 10px;
  border-radius: 2px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  color: #8A8E95;
  font-size: 0.875rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

.footer__link:hover {
  color: #fff;
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #8A8E95;
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__contact-item a {
  color: inherit;
  transition: color var(--transition-fast);
}

.footer__contact-item a:hover {
  color: #fff;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__copyright {
  color: #4A4E55;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}

.footer__credit {
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
  padding: var(--space-sm) 0 var(--space-md);
  font-size: 0.6875rem;
  color: #3A3E45;
  letter-spacing: 0.03em;
}

.footer__credit a {
  color: #6B6F76;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer__credit a:hover {
  color: var(--primary);
}

/* ==============================
   BREADCRUMBS
   ============================== */

.breadcrumbs {
  padding: var(--space-md) 0;
  margin-top: 80px;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--muted);
}

.breadcrumbs__item a {
  color: var(--muted);
}

.breadcrumbs__item a:hover {
  color: var(--primary);
}

.breadcrumbs__separator {
  color: var(--border);
  font-size: 0.75rem;
}

.breadcrumbs__current {
  color: var(--primary);
  font-weight: 500;
}

/* ==============================
   PAGE HERO
   ============================== */

.page-hero {
  padding: var(--space-4xl) 0 var(--space-3xl);
  margin-top: 80px;
  background: var(--section);
  text-align: center;
}

.page-hero__title {
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .header { padding: 12px 32px; }
  .header__inner { padding: 7px 16px 7px 12px; gap: var(--space-md); }
  .header__logo-tagline { display: none; }
  .header__logo-name { font-size: 1.05rem; letter-spacing: 0.1em; }
  .header__logo { gap: 4px; }
  .header__logo-icon-img { height: 50px; }
  .header__phone { min-width: 150px; padding: 10px 18px; font-size: 0.8125rem; }
  .nav__link { padding: 8px 12px; font-size: 0.875rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-3xl) 0; }
  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }

  .mobile-toggle { display: flex; }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 180;
    background: rgba(12, 26, 18, 0.48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open .header {
    z-index: 5000;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 92vw);
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 max(var(--space-xl), env(safe-area-inset-bottom));
    gap: var(--space-xs);
    transform: translateX(110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition-base), visibility 0s linear 0.3s;
    box-shadow: -10px 0 40px var(--shadow-lg);
    z-index: 5000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav--open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform var(--transition-base), visibility 0s linear 0s;
  }

  .nav__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: sticky;
    top: 0;
    z-index: 2;
    padding: calc(0.9rem + env(safe-area-inset-top, 0px)) 1.15rem 0.85rem;
    margin-bottom: 0.25rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
  }

  .nav__panel-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .nav__close {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #f3faf6;
    color: var(--heading);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  }

  .nav__close:hover,
  .nav__close:focus-visible {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
  }

  .nav__link {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
    border-radius: 12px;
  }

  .nav__link.nav__link--active::after {
    display: none;
  }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--section);
    border-radius: var(--radius-sm);
    padding: var(--space-xs);
    margin: var(--space-xs) var(--space-md) 0;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .nav__dropdown-menu::before { display: none; }

  .nav__dropdown--open .nav__dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: none;
  }

  .header {
    padding: 10px 16px;
    padding-top: max(10px, env(safe-area-inset-top, 0px));
  }

  .header__inner {
    padding: 7px 14px 7px 10px;
    border-radius: 16px;
    min-width: 0;
    gap: 0.65rem;
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.97);
  }

  .header__logo-tagline {
    display: block;
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    margin-top: 1px;
  }

  .header__logo-info {
    display: flex;
    padding-top: 6px;
  }

  .header__logo-name {
    font-size: 0.95rem;
  }

  .header__logo {
    gap: 4px;
    min-width: 0;
  }

  .header__logo-mark {
    width: auto;
    height: auto;
  }

  .header__logo-icon-img {
    height: 44px;
  }

  .header__actions {
    flex-shrink: 0;
    gap: 6px;
  }

  .header__phone {
    padding: 0;
    border-radius: 8px;
    min-width: 40px;
    width: 40px;
    height: 40px;
  }

  .header__phone-text {
    display: none;
  }

  .header__call-dropdown {
    right: -40px;
    min-width: min(220px, calc(100vw - 2rem));
  }

  .footer__brand-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-hero { padding: var(--space-3xl) 0 var(--space-xl); }
  .breadcrumbs { margin-top: 70px; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }

  .container { padding: 0 1rem; }

  .header {
    padding: 8px 12px;
    padding-top: max(8px, env(safe-area-inset-top, 0px));
  }

  .header__inner {
    padding: 6px 10px 6px 8px;
    gap: 0.5rem;
    border-radius: 14px;
  }

  .header__logo-tagline { display: none; }

  .header__logo-info { padding-top: 4px; }

  .header__logo-name {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
  }

  .header__logo-icon-img { height: 40px; }

  .header--scrolled .header__logo-icon-img { height: 36px; }

  .nav {
    width: min(340px, 88vw);
  }

  .footer__social {
    flex-wrap: wrap;
  }

  .footer__logo-text span:last-child {
    font-size: 0.62rem;
  }
}

@media (max-width: 380px) {
  .container { padding: 0 0.85rem; }

  .header {
    padding: 8px 8px;
    padding-top: max(8px, env(safe-area-inset-top, 0px));
  }

  .header__inner {
    padding: 5px 8px 5px 6px;
    gap: 0.4rem;
  }

  .header__logo-icon-img { height: 36px; }

  .header__logo-name { font-size: 0.8rem; }

  .header__phone,
  .mobile-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .nav {
    width: 100%;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header__logo-mark,
  .header__logo-info {
    animation: none;
  }
}
