:root {
  --paper: #fffdfa;
  --warm: #fbf4ea;
  --ink: #30402d;
  --muted: #66725f;
  --line: #e8d9ca;
  --line-green: #dfe7d4;
  --olive: #536a43;
  --olive-soft: #edf2e5;
  --terra: #c97955;
  --terra-deep: #ad6548;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(61, 72, 48, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 24% 33%, rgba(236, 241, 225, .9), transparent 21rem),
    radial-gradient(circle at 84% 86%, rgba(250, 235, 216, .66), transparent 26rem),
    var(--paper);
  font-family: "Source Sans 3", system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.shell { width: min(1160px, calc(100% - 64px)); margin: 0 auto; }

.site-header {
  background: rgba(255, 253, 250, .86);
  border-bottom: 1px solid rgba(232, 217, 202, .75);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: grid;
  grid-template-columns: 42px auto;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 52px;
  color: var(--olive);
}

.brand-name {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.35rem;
  font-weight: 600;
  line-height: .85;
  letter-spacing: .02em;
}

.brand-place {
  display: block;
  margin-top: 8px;
  color: var(--terra);
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 38px);
}

.nav-links a {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
}

.nav-links span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 400;
}

.language-link {
  color: var(--terra);
  font-size: .98rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .48fr) minmax(0, .78fr);
  gap: clamp(42px, 5vw, 74px);
  align-items: center;
  padding: 34px 0 30px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 24%;
  bottom: 8px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(83, 106, 67, .11);
  border-radius: 49% 51% 46% 54%;
  transform: rotate(-22deg);
  pointer-events: none;
}

.hero-copy h1,
.section-title,
.contact h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
  margin: 0;
}

.hero-copy h1 {
  color: var(--ink);
  font-size: clamp(3.2rem, 5.7vw, 5.2rem);
  letter-spacing: -.01em;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--terra);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-style: italic;
  line-height: 1.15;
}

.small-rule {
  width: 42px;
  height: 2px;
  margin: 28px 0 24px;
  background: var(--terra);
}

.lead,
.lead-secondary {
  max-width: 340px;
  margin: 0;
  color: #4f5b4e;
  font-size: 1.08rem;
  overflow-wrap: break-word;
}

.lead-secondary {
  margin-top: 17px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.35;
}

.hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.intro {
  padding: 18px 0 30px;
  text-align: center;
}

.intro p {
  max-width: 770px;
  margin: 0 auto;
  color: #53604f;
  font-size: 1.11rem;
}

.intro p + p {
  margin-top: 18px;
  max-width: 650px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.35;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 20px 0 28px;
}

.card {
  min-height: 345px;
  padding: 34px 34px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .62);
}

.icon-circle {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--olive-soft);
  color: var(--olive);
  margin-bottom: 24px;
}

.icon-circle svg {
  width: 34px;
  height: 34px;
}

.card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.1;
}

.card h2 em {
  display: block;
  margin-top: 5px;
  color: var(--terra);
  font-style: italic;
  font-weight: 500;
}

.card .rule {
  width: 36px;
  height: 1px;
  margin: 30px 0 18px;
  background: var(--terra);
}

.card p,
.card li {
  color: #53604f;
  font-size: 1rem;
}

.card p em,
.card li em {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: .98rem;
  line-height: 1.32;
}

.card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.card li {
  position: relative;
  display: block;
  padding-left: 28px;
}

.card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--olive);
  font-weight: 700;
}

.small-photo {
  display: block;
  width: 100%;
  margin-top: 26px;
  border-radius: 5px;
}

.legal {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  margin: 0 0 34px;
  padding: 34px;
  border-radius: 8px;
  background: linear-gradient(110deg, #fffaf4, #f7eadb);
}

.legal h2 {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.legal dl {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 7px 16px;
  margin: 0;
  color: #53604f;
}

.legal dt { font-weight: 700; color: var(--ink); }
.legal dd { margin: 0; }

.legal-note {
  margin: 22px 0 0;
  color: #53604f;
  font-size: .98rem;
}

.map {
  width: min(460px, 100%);
  justify-self: center;
}

.map img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  mix-blend-mode: multiply;
}

.contact {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 220px;
  gap: 34px;
  align-items: center;
  padding: 26px 0 36px;
}

.branch {
  color: #a7b091;
}

.contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact h2 em {
  display: block;
  color: var(--terra);
  font-style: italic;
  font-weight: 500;
}

.contact p {
  margin: 0;
  color: #53604f;
}

.contact p em {
  display: block;
  margin-top: 7px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
}

.contact-actions {
  justify-self: end;
  display: grid;
  gap: 14px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 6px;
  background: var(--terra);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(201, 121, 85, .22);
}

.mail {
  color: #7a6f66;
  text-decoration: none;
}

.site-footer {
  padding: 0 0 26px;
  color: #8a8379;
  font-size: .92rem;
  text-align: center;
}

@media (max-width: 900px) {
  .shell { width: min(100% - 34px, 1160px); }
  .nav { align-items: flex-start; padding: 16px 0; }
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 30px;
  }
  .hero::after { display: none; }
  .hero-copy h1 {
    max-width: 8.5ch;
    font-size: clamp(3.2rem, 13vw, 4.35rem);
  }
  .hero-subtitle {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  .lead,
  .lead-secondary {
    max-width: 32rem;
  }
  .hero-image img {
    aspect-ratio: 1.16 / .72;
  }
  .cards,
  .legal,
  .contact {
    grid-template-columns: 1fr;
  }
  .card { min-height: 0; }
  .contact { gap: 20px; }
  .contact-actions { justify-self: start; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 380px); }
  .site-header { position: static; }
  .nav { min-height: 68px; }
  .brand {
    grid-template-columns: 34px auto;
    gap: 9px;
  }
  .brand-mark {
    width: 34px;
    height: 42px;
  }
  .brand-name { font-size: 1.82rem; }
  .brand-place { font-size: .72rem; margin-top: 6px; }
  .language-link { font-size: .86rem; }
  .hero {
    padding: 34px 0 24px;
  }
  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.65rem, 13vw, 3.45rem);
    line-height: 1.02;
  }
  .hero-subtitle {
    max-width: 17rem;
    font-size: clamp(1.58rem, 7vw, 2.15rem);
  }
  .lead {
    max-width: 18rem;
    font-size: 1rem;
  }
  .lead-secondary {
    max-width: 19rem;
    font-size: 1rem;
  }
  .small-rule { margin: 22px 0 20px; }
  .hero-image {
    border-radius: 7px;
  }
  .hero-image img {
    aspect-ratio: 1 / .72;
  }
  .intro {
    padding-top: 8px;
    text-align: left;
  }
  .cards {
    gap: 16px;
    padding-top: 6px;
  }
  .card,
  .legal {
    padding: 24px;
  }
  .legal dl {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .legal dd { margin-bottom: 9px; }
  .map { width: 100%; }
  .branch { display: none; }
  .contact { padding-top: 10px; }
  .button {
    width: 100%;
  }
}
