:root {
  color-scheme: light;
  --paper: #f4efe7;
  --paper-2: #ebe2d5;
  --ink: #171512;
  --muted: #6f675e;
  --line: rgba(23,21,18,.14);
  --gold: #a9772d;
  --white: #fffdf9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 50% -10%, #fff 0, var(--paper) 48%, var(--paper-2) 100%);
  color: var(--ink);
}
a { color: inherit; }
.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: .02em;
}
.language {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  font-size: .86rem;
  background: rgba(255,255,255,.5);
}
main { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.intro { max-width: 800px; padding: clamp(58px, 9vw, 104px) 0 42px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .18em;
}
h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: .92;
  letter-spacing: -.055em;
}
.hook {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  color: var(--gold);
}
.intro-copy { margin: 18px 0 0; max-width: 620px; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.doors { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(18px, 3vw, 30px); }
.door-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(23,21,18,.11);
  border-radius: 28px;
  text-decoration: none;
  box-shadow: 0 18px 55px rgba(59,45,26,.09);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.door-card:hover, .door-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(59,45,26,.15);
  border-color: rgba(169,119,45,.45);
  outline: none;
}
.door-card img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; background: #ddd3c3; }
.door-copy { padding: 24px 25px 27px; }
.door-kicker { color: var(--gold); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.door-copy h2 { margin: 10px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 3vw, 2.2rem); line-height: 1.08; font-weight: 500; }
.door-copy p { margin: 0; color: var(--muted); line-height: 1.55; }
.enter { display: inline-flex; gap: 9px; align-items: center; margin-top: 20px; font-weight: 850; }
.more { margin: 32px 0 76px; padding: 26px 0 0; border-top: 1px solid var(--line); color: var(--muted); line-height: 1.6; }
.more p { margin: 0; max-width: 720px; }
.more strong { color: var(--ink); }
footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .87rem;
}
@media (max-width: 760px) {
  .site-header, main, footer { width: min(100% - 22px, 1180px); }
  .site-header { padding: 16px 0; }
  .intro { padding: 48px 4px 30px; }
  h1 { font-size: clamp(3rem, 17vw, 5.2rem); }
  .doors { grid-template-columns: 1fr; }
  .door-card { border-radius: 22px; }
  .door-copy { padding: 20px; }
  .more { margin-bottom: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
