:root {
  --bg: #f5efe5;
  --paper: rgba(255, 253, 249, 0.9);
  --ink: #132531;
  --muted: #60717b;
  --line: rgba(19, 37, 49, 0.12);
  --gold: #0a9b55;
  --shadow: 0 24px 60px rgba(18, 38, 50, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #fbf7f0 0%, #f5efe5 100%);
}

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

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}

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

.brand img {
  display: block;
  height: 108px;
  width: auto;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.language-switcher a,
.language-switcher span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

.language-switcher span {
  background: var(--ink);
  color: #fff;
}

.hero,
.section,
.detail-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero,
.section {
  background: var(--paper);
}

.hero {
  padding: 48px;
}

.section {
  margin-top: 28px;
  padding: 38px;
}

.contact-layout {
  display: block;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
strong {
  margin: 0;
  letter-spacing: -0.04em;
}

h1,
h2 {
  font-family: "Newsreader", serif;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

p,
span {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.panel-copy {
  margin-top: 14px;
}

.lede {
  margin-top: 18px;
  max-width: 58ch;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.detail-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.detail-card span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.detail-card strong {
  display: block;
  margin-top: 8px;
}

.detail-card a {
  color: var(--ink);
}

@media (max-width: 900px) {
  .contact-layout {
    display: block;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero,
  .section {
    padding: 28px 22px;
  }
}
