/* ── Variables ── */
:root {
  --bg: #f5f2ed;
  --bg-2: #efebe5;
  --ink: #171717;
  --muted: #6b7280;
  --line: #ddd6cf;
  --panel: rgba(255,255,255,.78);
  --panel-dark: #111111;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(87,83,78,.10), transparent 22%),
    radial-gradient(circle at 88% 14%, rgba(161,161,170,.11), transparent 16%),
    linear-gradient(to bottom, #f7f4ef, #f2eee8 35%, #efebe5 100%);
}
a { color: inherit; text-decoration: none; }

/* ── Layout ── */
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 28px; }
.section { padding: 62px 0; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(245,242,237,.82);
  border-bottom: 1px solid rgba(221,214,207,.8);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { font-weight: 700; letter-spacing: .26em; text-transform: uppercase; }
.links { display: flex; gap: 34px; font-size: 14px; color: #57534e; }
.links a { text-decoration: none; }
.links a.active { color: #171717; font-weight: 600; }
.lang-switch { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: #78716c; }
.lang-switch a { opacity: .55; text-decoration: none; }
.lang-switch a.active { opacity: 1; color: #171717; font-weight: 600; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 14px 22px;
  border: 1px solid #1c1917; background: #111827;
  align-self: flex-start;
  color: white; font-size: 14px; font-family: inherit;
  text-decoration: none; cursor: pointer;
}
.btn.secondary { background: rgba(255,255,255,.7); color: #111; border-color: #d6d3d1; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

/* ── Cards ── */
.card {
  background: var(--panel);
  border: 1px solid rgba(221,214,207,.85);
  border-radius: 34px; overflow: hidden;
  box-shadow: 0 18px 60px rgba(28,25,23,.10);
}
.dark { background: #111; border-color: #111; color: white; }
.card img, img { width: 100%; height: 100%; display: block; object-fit: cover; }
.caption { padding: 18px 20px; }
.caption .k { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: #78716c; }
.dark .caption .k { color: #a8a29e; }
.caption h3 { margin: 10px 0 0; font-size: 20px; font-weight: 600; }

/* ── Typography helpers ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(214,211,209,.85); background: rgba(255,255,255,.55);
  border-radius: 999px; padding: 10px 16px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: #57534e;
}
.muted { font-size: 18px; line-height: 1.85; color: #57534e; }
.tag { font-size: 11px; text-transform: uppercase; letter-spacing: .22em; color: #78716c; }

/* ── Footer ── */
footer {
  padding: 56px 0 0;
  border-top: 1px solid rgba(221,214,207,.8);
  margin-top: 14px;
}
.foot {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  align-items: start;
}
.foot-brand {
  display: flex;
  flex-direction: column;
}
.foot-desc {
  margin-top: 12px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.8;
  color: #57534e;
}
.foot-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.foot-nav .foot-heading { margin-bottom: 4px; }
.foot-nav a {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
  color: #57534e;
  text-decoration: none;
  transition: color .15s;
}
.foot-nav a:hover { color: #171717; }
.foot-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.foot-contact .foot-heading { margin-bottom: 4px; }
.foot-contact a,
.foot-contact span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: #57534e;
  text-decoration: none;
  transition: color .15s;
}
.foot-contact a:hover { color: #171717; }
.foot-contact .btn {
  display: inline-flex;
  margin-top: 12px;
  align-self: flex-start;
  color: white;
}
.foot-heading {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #a8a29e;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(221,214,207,.6);
  font-size: 12px;
  color: #a8a29e;
  gap: 20px;
}
.foot-lang {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.foot-lang a {
  color: #a8a29e;
  text-decoration: none;
  transition: color .15s;
}
.foot-lang a:hover { color: #171717; }
@media (max-width: 1100px) {
  .foot {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .foot {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .foot-brand { grid-column: 1; }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* ── Hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 8px; transition: background .15s;
}
.hamburger:hover { background: rgba(0,0,0,.06); }
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: #171717; border-radius: 999px;
  transform-origin: center;
  transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .2s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile menu overlay ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 40;
  background: rgba(245,242,237,.98); backdrop-filter: blur(20px);
  flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; }
.mobile-menu-links { display: flex; flex-direction: column; align-items: center; width: 100%; padding: 0 40px; }
.mobile-menu-links a {
  display: block; width: 100%;
  font-size: 32px; font-weight: 500; letter-spacing: -.04em;
  color: #171717; text-decoration: none;
  padding: 14px 0; border-bottom: 0.5px solid rgba(221,214,207,.7);
  opacity: 0; transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease, color .15s;
}
.mobile-menu-links a:last-child { border-bottom: none; }
.mobile-menu-links a:hover, .mobile-menu-links a.active { color: #78716c; }
.mobile-menu.is-open .mobile-menu-links a { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open .mobile-menu-links a:nth-child(1) { transition-delay: .04s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(2) { transition-delay: .08s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(3) { transition-delay: .12s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(4) { transition-delay: .16s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(5) { transition-delay: .20s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(6) { transition-delay: .24s; }
.mobile-menu-foot {
  position: absolute; bottom: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  opacity: 0; transition: opacity .3s ease .28s;
}
.mobile-menu.is-open .mobile-menu-foot { opacity: 1; }

@media (max-width: 760px) {
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .nav .btn { display: none; }
  .nav .lang-switch { display: none; }
}
