:root {
  color-scheme: light;
  --wine: #5b1421;
  --gold: #c9a24e;
  --ink: #241b19;
  --cream: #fff9ef;
  --paper: #ffffff;
  --line: #e8dcc8;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}
a {
  color: var(--wine);
}
img {
  display: block;
  max-width: 100%;
  border-radius: 1rem;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -6rem;
  background: var(--paper);
  padding: 0.75rem 1rem;
  z-index: 20;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 249, 239, 0.96);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 700;
}
.site-header nav {
  margin-inline: auto;
}
.site-header ul,
.site-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-header nav a,
.site-footer a {
  text-decoration: none;
}
.language-switcher {
  display: flex;
  gap: 0.45rem;
}
.language-switcher a {
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.78rem;
}
.language-switcher a[aria-current] {
  color: white;
  background: var(--wine);
  border-color: var(--wine);
}
.book-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  color: white;
  background: var(--wine);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
main {
  min-height: 65vh;
}
.content-page {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 7rem) 0;
}
.content-page > header {
  max-width: 760px;
}
.eyebrow {
  color: var(--wine);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
h1,
h2,
h3 {
  font-family: Georgia, serif;
  color: var(--wine);
  line-height: 1.08;
}
h1 {
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  margin: 0.25rem 0 1rem;
}
h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
}
.lead {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  max-width: 760px;
}
.prose {
  max-width: 760px;
  font-size: 1.08rem;
  margin: 2rem 0 3rem;
}
.card-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.service-card,
.team-card,
.article-list article {
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: 0 12px 36px rgba(68, 31, 20, 0.08);
}
.service-card img {
  aspect-ratio: 1;
  object-fit: cover;
}
.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.article-list {
  display: grid;
  gap: 1rem;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  color: white;
  background: var(--wine);
}
.site-footer a {
  color: white;
}
.error-page {
  min-height: 60vh;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
  }
  .site-header nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }
  .site-header nav ul {
    flex-wrap: nowrap;
  }
  .language-switcher {
    margin-left: auto;
  }
  .site-header > .book-button {
    display: none;
  }
  .site-footer {
    flex-direction: column;
  }
}
