:root {
  --cream: #f7f1e8;
  --paper: #fffaf2;
  --sage: #dfe8d5;
  --sage-strong: #8ea484;
  --rose: #d9aaa3;
  --clay: #a36545;
  --ink: #252421;
  --muted: #716d66;
  --line: rgba(37, 36, 33, .13);
  --shadow: 0 24px 70px rgba(64, 51, 41, .13);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(217, 170, 163, .28), transparent 30rem),
    radial-gradient(circle at 92% 12%, rgba(142, 164, 132, .25), transparent 34rem),
    linear-gradient(135deg, #fbf7ee 0%, var(--cream) 48%, #eef3e6 100%);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 250, 242, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fffaf2;
  background: #2f5144;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -.08em;
}

.brand strong {
  display: block;
  font-size: 16px;
  letter-spacing: -.03em;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #55514b;
}

.nav a { text-decoration: none; }
.nav a:hover { color: #2f5144; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
}

.language button {
  border: 0;
  padding: 9px 11px;
  border-radius: 999px;
  background: transparent;
  color: #56524b;
  font-weight: 800;
  cursor: pointer;
}

.language button.active {
  background: #2f5144;
  color: #fff;
}

.phone-pill {
  padding: 12px 16px;
  border: 1px solid rgba(47, 81, 68, .3);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .88fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
  min-height: auto;
  padding: clamp(46px, 6vw, 88px) clamp(18px, 5vw, 76px) 64px;
}

.trace-line {
  position: absolute;
  left: clamp(24px, 5.5vw, 82px);
  top: 118px;
  bottom: -90px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(142,164,132,.85), rgba(142,164,132,.15));
}

.trace-line::before {
  content: "";
  position: absolute;
  top: 122px;
  left: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 9px rgba(163,101,69,.12);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 740px;
  min-width: 0;
  padding-left: clamp(0px, 2vw, 28px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: #6f7f68;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  line-height: .94;
  letter-spacing: -.055em;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(50px, 5.6vw, 92px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.7vw, 88px);
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.lead {
  max-width: 660px;
  color: #494640;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1;
  overflow-wrap: anywhere;
  text-align: center;
}

.btn.primary {
  background: #2f5144;
  color: #fff;
  box-shadow: 0 12px 30px rgba(47, 81, 68, .16);
}

.btn.ghost {
  border: 1px solid rgba(47, 81, 68, .23);
  background: rgba(255, 255, 255, .44);
  color: #2f5144;
}

.fine {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.hero-portrait {
  position: relative;
  margin: 0;
  padding: clamp(10px, 1.5vw, 18px);
  border: 1px solid rgba(37,36,33,.1);
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.8), rgba(223,232,213,.62)),
    var(--paper);
  box-shadow: var(--shadow);
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: -34px -26px auto auto;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(142,164,132,.55);
  border-radius: 50%;
  z-index: -1;
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 4.55;
  object-fit: cover;
  border-radius: 34px;
}

.hero-portrait figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 220px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(37, 36, 33, .72);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 76px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--line);
}

.facts article,
.service-card,
.note-grid article,
.intro-card,
.address-card,
.faq details {
  background: rgba(255, 250, 242, .78);
  backdrop-filter: blur(12px);
}

.facts article {
  padding: clamp(22px, 3vw, 34px);
}

.facts span,
.service-card span,
.note-grid span,
.address-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.facts strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -.04em;
}

.facts p,
.service-card p,
.note-grid p,
.intro-card p,
.faq p,
.visit-steps span,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: clamp(72px, 10vw, 136px) clamp(18px, 5vw, 76px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, .62fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.intro-card {
  padding: clamp(24px, 3.5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 16px 48px rgba(64, 51, 41, .08);
}

.formats {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(217,170,163,.22), transparent 28rem),
    linear-gradient(180deg, rgba(255,250,242,.18), rgba(223,232,213,.55));
}

.cards,
.note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 18px 45px rgba(64, 51, 41, .08);
  overflow: hidden;
}

.service-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 78px;
  height: 78px;
  object-fit: contain;
  opacity: .22;
  filter: saturate(.72);
}

.service-card > :not(.service-icon) {
  position: relative;
  z-index: 1;
}

.service-card small {
  display: block;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #2f5144;
  font-weight: 800;
  line-height: 1.55;
}

.journal {
  background: #2b2925;
  color: #fffaf2;
}

.journal .section-kicker,
.journal .note-grid span {
  color: #e3b5a8;
}

.journal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .44fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.journal-head p { color: rgba(255, 250, 242, .68); line-height: 1.7; }

.note-grid article {
  min-height: 280px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,250,242,.12), rgba(255,250,242,.05));
}

.note-grid p { color: rgba(255,250,242,.68); }

.visit {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 82px);
  align-items: center;
}

.visit-photo {
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.visit-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 35%;
}

.visit-steps ol {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.visit-steps li {
  position: relative;
  padding: 22px 22px 22px 72px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 250, 242, .74);
}

.visit-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2f5144;
  color: #fff;
  font-weight: 900;
}

.visit-steps strong { display: block; margin-bottom: 6px; }
.visit-steps span { display: block; }

.faq {
  background:
    radial-gradient(circle at 88% 12%, rgba(217,170,163,.22), transparent 26rem),
    rgba(255,255,255,.18);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0 20px;
}

.faq summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 900;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }
.faq p { padding-bottom: 20px; margin-bottom: 0; }

.contacts {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, .78fr);
  gap: 24px;
  align-items: stretch;
}

.contact-copy,
.map-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 250, 242, .76);
  box-shadow: 0 16px 50px rgba(64, 51, 41, .08);
}

.contact-copy { padding: clamp(26px, 4vw, 48px); }

.address-card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
}

.address-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.25;
}

.address-card a {
  color: #2f5144;
  font-weight: 900;
}

.map-card {
  min-height: 520px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 76px) 86px;
  border-top: 1px solid var(--line);
}

.footer p { max-width: 520px; margin: 0; text-align: right; }

.float-wa,
.to-top {
  position: fixed;
  z-index: 30;
  bottom: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(37, 36, 33, .18);
}

.float-wa {
  left: 22px;
  background: #1fa463;
  color: #fff;
}

.to-top {
  right: 22px;
  background: #fffaf2;
  color: #2f5144;
  border: 1px solid var(--line);
}

@media (max-width: 1120px) {
  .nav { gap: 16px; }
  .phone-pill { display: none; }
  .hero { grid-template-columns: 1fr .86fr; }
  h1 { font-size: clamp(54px, 8.6vw, 92px); }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 78px 12px auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 250, 242, .96);
    box-shadow: var(--shadow);
  }
  body.menu-open .nav { display: flex; }
  .hero,
  .intro-grid,
  .journal-head,
  .visit,
  .contacts {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 54px;
  }
  .hero-portrait { max-width: 560px; }
  .facts,
  .cards,
  .note-grid {
    grid-template-columns: 1fr;
  }
  .facts { margin-inline: 18px; }
}

@media (max-width: 600px) {
  .site-header {
    min-height: 70px;
    padding: 10px 14px;
  }
  .brand-mark { width: 38px; height: 38px; }
  .brand strong { font-size: 14px; }
  .brand small { display: none; }
  .language button { padding: 8px 10px; }
  .menu-toggle { width: 44px; height: 44px; }
  .nav { inset-top: 70px; }
  .hero {
    padding: 42px 14px 48px;
    gap: 26px;
  }
  .trace-line { display: none; }
  .hero-copy { padding-left: 0; }
  h1 {
    font-size: clamp(48px, 15vw, 74px);
    line-height: .9;
  }
  h2 {
    font-size: clamp(36px, 12vw, 58px);
    line-height: .92;
  }
  .lead { font-size: 17px; }
  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }
  .btn { width: 100%; }
  .hero-portrait {
    border-radius: 30px;
    padding: 9px;
  }
  .hero-portrait::before { display: none; }
  .hero-portrait img {
    border-radius: 24px;
    aspect-ratio: 1 / 1.12;
    object-position: 50% 22%;
  }
  .hero-portrait figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    text-align: center;
  }
  .section { padding: 62px 14px; }
  .facts { border-radius: 24px; }
  .facts article,
  .service-card,
  .note-grid article,
  .intro-card,
  .contact-copy {
    padding: 22px;
    border-radius: 24px;
  }
  .service-card { min-height: 250px; }
  .visit-photo { border-radius: 28px; }
  .contacts { gap: 16px; }
  .map-card,
  .map-card iframe {
    min-height: 360px;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 14px 92px;
  }
  .footer p { text-align: left; }
  .float-wa,
  .to-top {
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
  .float-wa { left: 16px; }
  .to-top { right: 16px; }
}

@media (max-width: 360px) {
  .site-header { gap: 8px; }
  .brand { gap: 8px; }
  .brand strong { max-width: 112px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .language button { padding: 8px 9px; font-size: 12px; }
  h1 { font-size: 46px; }
  h2 { font-size: 35px; }
  .hero { padding-inline: 12px; }
  .section { padding-inline: 12px; }
  .facts { margin-inline: 12px; }
}
