:root {
  --paper: #fffdfb;
  --cream: #f7f1ea;
  --ink: #28211f;
  --muted: #82736a;
  --rose: #b96d7b;
  --deep: #312622;
  --line: rgba(40, 33, 31, 0.12);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 251, 0.94);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 170px;
  gap: 24px;
  align-items: center;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 10px 28px rgba(40, 33, 31, 0.08);
}
.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
}
.brand span span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}
.links {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.btn.primary {
  border-color: var(--rose);
  background: var(--rose);
  color: #fff;
  box-shadow: 0 18px 36px rgba(185, 109, 123, 0.22);
}
.nav > .btn.primary {
  justify-self: end;
  min-width: 160px;
}
.hero {
  border-bottom: 1px solid var(--line);
  padding: 88px 0 72px;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 58px;
  align-items: center;
}
.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}
h1 {
  max-width: 860px;
  font-size: clamp(50px, 7.5vw, 104px);
  line-height: 0.9;
}
h2 {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 0.98;
}
h3 {
  font-size: 27px;
  font-style: italic;
  line-height: 1.08;
}
.motto {
  margin: 18px 0 0;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
  line-height: 1.08;
}
.lead,
.copy p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #5d504a;
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.photo {
  min-height: 460px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.2)),
    var(--photo);
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  box-shadow: 0 24px 70px rgba(40, 33, 31, 0.14);
}
.section { padding: 82px 0; }
.section.cream { background: var(--cream); }
.section.dark { background: var(--deep); color: #fff; }
.section.dark .lead,
.section.dark p { color: rgba(255,255,255,0.72); }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  background: #fff;
}
.card p {
  margin: 14px 0 0;
  color: var(--muted);
}
.answer-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}
.answer {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.answer p {
  max-width: 860px;
  margin: 12px 0 0;
  color: #5d504a;
}
.accordion-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
  margin: 0 auto;
}
.accordion {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.accordion summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-style: italic;
  line-height: 1.1;
  list-style: none;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rose);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  line-height: 1;
}
.accordion[open] summary::after {
  content: "-";
}
.accordion p {
  max-width: 860px;
  margin: 0;
  padding: 0 22px 22px;
  color: #5d504a;
}
.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 30px 0;
  font-size: 13px;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
    width: min(var(--max), calc(100% - 24px));
  }
  .brand img {
    width: 44px;
    height: 44px;
  }
  .brand strong {
    font-size: 14px;
    white-space: nowrap;
  }
  .brand span span {
    display: none;
  }
  .links { display: none; }
  .hero-grid,
  .split,
  .grid { grid-template-columns: 1fr; }
  .container { width: min(var(--max), calc(100% - 24px)); }
  .hero { padding: 48px 0 54px; }
  .photo { min-height: 410px; }
  .section { padding: 54px 0; }
  .accordion summary {
    min-height: 62px;
    padding: 18px;
    font-size: 22px;
  }
  .accordion p {
    padding: 0 18px 18px;
  }
}

@media (max-width: 1180px) {
  .nav {
    grid-template-columns: 250px minmax(0, 1fr) 160px;
    gap: 16px;
  }
  .links {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
    width: min(var(--max), calc(100% - 24px));
  }
}
