*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% -5%, rgba(214, 168, 102, 0.16), transparent 36%),
    radial-gradient(circle at 88% 14%, rgba(21, 77, 61, 0.12), transparent 34%),
    linear-gradient(180deg, var(--color-cream-50) 0%, #f5eee2 52%, var(--color-cream-100) 100%);
}
main, .site-footer { width: var(--container); margin: 0 auto; }
main { padding-top: 108px; padding-bottom: var(--space-5); }
.section { position: relative; padding: var(--space-6) 0; border-radius: var(--radius-lg); scroll-margin-top: 92px; }
.section + .section { margin-top: 0.45rem; }
.section-head { margin-bottom: var(--space-4); }
.section-head h2 { position: relative; width: fit-content; padding-bottom: 0.35rem; }
.section-head h2::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 48%; height: 3px; border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--brand), var(--highlight), transparent);
}
.eyebrow { margin: 0 0 var(--space-1); color: var(--brand); letter-spacing: 0.09em; text-transform: uppercase; font-size: 0.78rem; font-weight: 700; }
h1, h2, h3 { margin-top: 0; line-height: 1.15; text-wrap: balance; }
h1, h2 { font-family: var(--font-serif); }
h1 { font-size: clamp(2rem, 4.5vw, 4rem); line-height: 1.08; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.12; letter-spacing: -0.01em; }
h3 { line-height: 1.2; }
p, li, small, label, input, textarea, button { font: inherit; }
a { color: inherit; }
a[href^="tel:"] { white-space: nowrap; }
:focus-visible { outline: 3px solid #f2c879; outline-offset: 3px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { box-shadow: var(--ring); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
.site-header {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 40; width: var(--header-width); height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding: 0 var(--space-3);
  color: #f5ecdc; background: rgba(10, 42, 33, 0.78); border: 1px solid rgba(214, 168, 102, 0.22); border-radius: var(--radius-pill);
  backdrop-filter: blur(10px); box-shadow: 0 14px 30px rgba(5, 8, 7, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}
.site-header:hover { box-shadow: 0 18px 34px rgba(5, 8, 7, 0.34); border-color: rgba(214, 168, 102, 0.34); }
.site-header.is-hidden { transform: translate(-50%, -140%); }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.brand-logo { width: 10.2rem; height: 3rem; display: block; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 0.9rem; min-width: 130px; }
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }
.nav a {
  position: relative; padding: 0.2rem 0; color: rgba(247, 241, 230, 0.92); text-decoration: none; font-size: 0.96rem; font-weight: 600; letter-spacing: 0.02em;
  transition: color 180ms ease, opacity 180ms ease;
}
.nav a::after {
  content: ""; position: absolute; left: 50%; bottom: -5px; width: 32px; height: 2px; background: linear-gradient(90deg, transparent, var(--highlight), transparent);
  opacity: 0; transform: translateX(-50%) scaleX(0); transition: opacity 160ms ease, transform 220ms ease;
}
.nav a:hover, .nav a:focus-visible, .nav a[aria-current="page"] { color: #fff; }
.nav a:hover::after, .nav a:focus-visible::after, .nav a[aria-current="page"]::after { opacity: 1; transform: translateX(-50%) scaleX(1); }
.menu-toggle {
  display: none; width: 2rem; height: 2rem; padding: 0; border: 0; background: transparent; color: rgba(227, 215, 197, 0.9); align-items: center; justify-content: center; cursor: pointer;
}
.menu-icon { display: inline-flex; flex-direction: column; gap: 0.35rem; }
.menu-bar { width: 1.08rem; height: 2px; border-radius: 2px; background: currentColor; transition: transform 220ms ease; }
.menu-toggle[aria-expanded="true"] .menu-bar:first-child { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-bar:last-child { transform: translateY(-5px) rotate(-45deg); }
.nav-mobile { display: none; }
.page-lang-toggle {
  display: inline-flex; align-items: center; gap: 0.2rem; margin: 0 0 var(--space-3) auto; padding: 0.14rem; border: 1px solid rgba(251, 248, 242, 0.28);
  border-radius: var(--radius-pill); background: rgba(30, 25, 22, 0.62); backdrop-filter: blur(6px);
}
.lang-btn { border: 0; padding: 0.2rem 0.5rem; border-radius: var(--radius-pill); background: transparent; color: #f8f2e7; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.02em; cursor: pointer; }
.lang-btn.is-active { background: #f8f2e7; color: #1f2a22; }
.site-footer { margin-top: var(--space-5); padding-bottom: var(--space-5); color: var(--muted); text-align: center; }
@media (max-width: 900px) {
  main { padding-top: 90px; padding-bottom: var(--space-4); }
  .section { padding: var(--space-5) 0; border-radius: var(--radius-md); }
  .section-head { margin-bottom: var(--space-3); }
  .section-head h2::after { width: 56%; }
  .page-lang-toggle { margin-bottom: 0.72rem; }
  .site-header { width: min(700px, calc(100vw - 1rem)); height: 62px; padding: 0 0.9rem; }
  .nav-left, .nav-right { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-mobile {
    position: absolute; top: calc(100% + 0.7rem); right: 0; min-width: 220px; padding: 0.85rem; border: 1px solid rgba(214, 168, 102, 0.24); border-radius: var(--radius-md);
    background: rgba(10, 42, 33, 0.96); box-shadow: var(--shadow-md); flex-direction: column; align-items: flex-start; gap: 0.55rem; transform-origin: top right;
  }
  .nav-mobile.open { display: flex; }
  h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); line-height: 1.1; }
  h2 { font-size: clamp(1.28rem, 5vw, 1.8rem); line-height: 1.16; }
  h3 { font-size: 1.02rem; }
}
@media (max-width: 480px) {
  main, .site-footer { width: min(1120px, 94vw); }
  .section { padding: var(--space-4) 0; }
  h1 { font-size: clamp(1.55rem, 8.6vw, 1.95rem); }
  h2 { font-size: clamp(1.2rem, 6vw, 1.55rem); }
}
