/* ══════════════════════════════════════════════════════════
   layout.css
   nav · footer · section wrappers · grid systems
   ══════════════════════════════════════════════════════════ */

/* ── SECTION WRAPPER ── */
section {
  padding: 108px 0;
}

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(242, 239, 234, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr);
}

.nav.scrolled {
  box-shadow: 0 2px 32px rgba(28, 35, 51, 0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 32px;
}

.nav-logo svg {
  height: 17px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--tr);
}

.nav-links a:hover {
  color: var(--text);
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.lang-switcher span {
  padding: 5px 8px;
  border-radius: 3px;
  cursor: pointer;
  color: var(--muted);
  transition: all var(--tr);
}

.lang-switcher span.active {
  color: var(--gold);
}

.lang-switcher span:hover:not(.active) {
  color: var(--text);
}

.lang-sep {
  color: var(--border);
  font-weight: 300;
}

.nav-cta {
  background: var(--navy);
  color: var(--ivory);
  padding: 11px 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--navy);
  transition: all var(--tr);
  white-space: nowrap;
}

.nav-cta:hover {
  background: transparent;
  color: var(--navy);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 199;
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.mobile-menu.open {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  margin-bottom: 28px;
}

.mobile-menu ul li {
  border-bottom: 1px solid var(--border-lt);
}

.mobile-menu ul li a {
  display: block;
  padding: 15px 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.mobile-menu ul li a:hover {
  color: var(--text);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 64px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(249, 246, 240, 0.08);
  margin-bottom: 36px;
}

.footer-brand svg path {
  fill: var(--ivory);
}

.footer-brand svg {
  height: 16px;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 0.83rem;
  color: rgba(249, 246, 240, 0.4);
  line-height: 1.7;
  max-width: 260px;
  font-weight: 300;
}

.footer-col-head {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 0.83rem;
  color: rgba(249, 246, 240, 0.45);
  transition: color var(--tr);
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--ivory);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fc-row {
  font-size: 0.82rem;
  color: rgba(249, 246, 240, 0.45);
  line-height: 1.6;
  font-weight: 300;
}

.fc-row a {
  color: inherit;
  transition: color var(--tr);
}

.fc-row a:hover {
  color: var(--ivory);
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.72rem;
  color: rgba(249, 246, 240, 0.25);
  line-height: 1.7;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(249, 246, 240, 0.25);
}
