:root {
  --ink: #314039;
  --muted: #68766f;
  --green: #7f9f8b;
  --green-dark: #587663;
  --pink: #efd8de;
  --lilac: #d8cde8;
  --cream: #fbf8f4;
  --white: #ffffff;
  --line: rgba(49, 64, 57, .14);
  --shadow: 0 18px 50px rgba(49, 64, 57, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: "Open Sans", Arial, sans-serif; line-height: 1.65; }
body.is-loading { overflow: hidden; }
a { color: var(--green-dark); text-decoration: none; font-weight: 800; }
a:hover { text-decoration: underline; }
.wrap { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.topbar { background: #f8efe8; border-bottom: 1px solid rgba(139, 103, 67, .14); font-size: 14px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 8px 0; flex-wrap: wrap; }
.topbar-contact { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nav { position: sticky; top: 0; z-index: 20; background: rgba(248,239,232,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(139, 103, 67, .16); box-shadow: 0 10px 30px rgba(49,64,57,.04); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 14px; color: var(--ink); font-weight: 800; }
.logo-shell { width: 96px; height: 82px; display: grid; place-items: center; background: transparent; border: 0; box-shadow: none; border-radius: 0; overflow: visible; }
.logo-shell img { width: 96px; height: 82px; object-fit: contain; transform: scale(1.22); transform-origin: center; }
.brand small { display: block; color: var(--muted); font-size: 13px; font-weight: 600; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(88,118,99,.28); border-radius: 8px; background: rgba(255,255,255,.62); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px 16px; font-size: 15px; }
.nav-links a { color: var(--ink); }
.hero, .subhero { background: radial-gradient(circle at 18% 20%, rgba(239,216,222,.78), transparent 32%), radial-gradient(circle at 88% 10%, rgba(216,205,232,.7), transparent 28%), linear-gradient(135deg,#fffaf7 0%,#f5eee9 54%,#eef5ef 100%); }
.hero { min-height: 660px; display: grid; align-items: center; padding: 54px 0 70px; }
.subhero { padding: 78px 0 58px; }
.hero-grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(320px,.9fr); gap: 58px; align-items: center; }
.eyebrow { color: var(--green-dark); text-transform: uppercase; letter-spacing: .08em; font-weight: 900; font-size: 13px; }
h1,h2,h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.12; margin: 0 0 18px; }
h1 { font-size: clamp(42px, 7vw, 76px); max-width: 820px; }
h2 { font-size: clamp(30px, 4vw, 48px); margin-top: 36px; }
h3 { font-size: 26px; }
.lead { font-size: 20px; max-width: 640px; color: #4b5b54; }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.hero-tags span { display: inline-flex; align-items: center; min-height: 34px; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.66); border: 1px solid rgba(88,118,99,.18); color: var(--green-dark); font-size: 14px; font-weight: 900; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 20px; border-radius: 999px; border: 1px solid var(--green); background: var(--green-dark); color: #fff; font-weight: 900; }
.btn:hover { text-decoration: none; background: #496655; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--green-dark); }
.portrait { margin: 0; }
.portrait img { width: 100%; display: block; border-radius: 8px; box-shadow: var(--shadow); }
.portrait figcaption { margin-top: 12px; color: var(--muted); font-size: 14px; }
.section { padding: 78px 0; }
.white { background: #fff; }
.section-head { max-width: 760px; margin-bottom: 30px; }
.cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 26px; box-shadow: 0 8px 28px rgba(49,64,57,.06); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 42px rgba(49,64,57,.12); }
.card.pink { background: #fbf5f8; }
.card.green { background: #f0f6f0; }
.card.lilac { background: #f4f0fa; }
.card ul { padding-left: 20px; margin: 14px 0 0; }
.card p:last-of-type { margin-bottom: 20px; }
.card a { margin-top: auto; align-self: flex-start; font-weight: 900; }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: start; }
.quote { padding: 26px; border-left: 5px solid var(--green); background: #fff; border-radius: 8px; font-family: Georgia, "Times New Roman", serif; font-size: 24px; }
.quote small { display: block; margin-top: 12px; color: var(--muted); }
.article { max-width: 900px; font-size: 18px; }
.article-layout { display: grid; grid-template-columns: 260px minmax(0, 900px); gap: 42px; align-items: start; }
.article-body { max-width: none; }
.page-guide { position: sticky; top: 120px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fbf7f3; box-shadow: 0 8px 28px rgba(49,64,57,.05); font-size: 15px; }
.page-guide p { margin: 0 0 10px; color: var(--green-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.page-guide a { display: block; padding: 8px 0; color: var(--ink); border-top: 1px solid rgba(49,64,57,.08); line-height: 1.25; }
.page-guide a.is-child { padding-left: 16px; font-size: 14px; color: #52645b; }
.page-guide a.is-child::before { content: "– "; color: var(--green-dark); }
.page-guide a:hover { color: var(--green-dark); text-decoration: none; }
.contact-page { width: min(1280px, calc(100% - 36px)); max-width: none; }
.article h2:first-child { margin-top: 0; }
.article h2 { scroll-margin-top: 140px; }
.article h3 { scroll-margin-top: 140px; margin-top: 24px; font-size: 30px; }
.article ul { padding-left: 24px; }
.article li { margin: 6px 0; }
.list-intro { margin: 18px 0 8px; font-weight: 800; color: var(--green-dark); }
.contact-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 30px 0 36px;
}
.contact-summary > div,
.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(49,64,57,.06);
  padding: 26px;
}
.form-panel {
  margin: 38px 0;
  background: #fbf5f8;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.contact-form h2,
.contact-form .form-status {
  grid-column: 1 / -1;
}
.contact-form h2 {
  margin-bottom: 0;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(49,64,57,.22);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(127,159,139,.24);
  border-color: var(--green-dark);
}
.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}
.contact-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
}
.contact-form .checkbox input {
  width: auto;
  margin-top: 7px;
}
.hp {
  position: absolute;
  left: -9999px;
}
.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  background: #eef6ef;
  border: 1px solid rgba(88,118,99,.22);
  color: var(--green-dark);
  font-weight: 800;
}
.form-status.error {
  background: #fff1f1;
  border-color: rgba(150,40,40,.22);
  color: #8a2d2d;
}
.form-status.is-active {
  display: block;
}
.places-section {
  background: linear-gradient(180deg, #fff 0%, #fbf8f4 100%);
}
.place-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}
.place-card,
.place-detail,
.contact-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 12px 36px rgba(49,64,57,.08);
}
.place-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f4f0fa;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.utility-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(540px, 1.2fr) minmax(460px, .95fr);
  gap: 28px;
  align-items: start;
  margin-top: 32px;
}
.contact-main {
  background: #fbf5f8;
}
.contact-side {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.place-detail iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 8px;
  margin: 12px 0;
  background: #f2eee9;
}
.contact-note { margin: 22px 0 0; padding: 16px 18px; border-left: 4px solid var(--green); background: #fff; border-radius: 8px; }
.insurance-highlight { display: inline-flex; align-items: center; max-width: 720px; margin: 22px 0 0; padding: 14px 18px; border: 1px solid rgba(88,118,99,.28); border-left: 5px solid var(--green); border-radius: 8px; background: rgba(255,255,255,.78); color: var(--green-dark); font-weight: 900; box-shadow: 0 16px 44px rgba(49,64,57,.09); }
.legal-note { margin-top: 16px; font-size: 14px; color: var(--muted); }
.price-list { display: grid; gap: 10px; margin: 18px 0 30px; }
.price-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 18px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }
.price-row strong { font-weight: 900; }
.price-row span:last-child { color: var(--green-dark); font-weight: 900; white-space: nowrap; }
.info-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; padding: 0; margin: 18px 0 30px; list-style: none; }
.info-list li { margin: 0; padding: 13px 15px; border: 1px solid var(--line); border-radius: 8px; background: #fbf7f3; font-weight: 700; }
.price { display: grid; grid-template-columns: 1fr auto; gap: 10px; border-bottom: 1px solid var(--line); padding: 12px 0; }
.footer { padding: 26px 0; background: #26332d; color: rgba(255,255,255,.78); font-size: 14px; }
.footer a { color: #fff; text-decoration: underline; }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-links { display: inline-flex; gap: 14px; flex-wrap: wrap; }
.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 100; display: none; }
.cookie-banner.is-visible { display: block; }
.cookie-panel { width: min(760px, 100%); margin: 0 auto; padding: 20px; border: 1px solid rgba(49,64,57,.18); border-radius: 8px; background: #fffaf7; box-shadow: 0 24px 70px rgba(28,37,32,.22); }
.cookie-panel h2 { margin: 0 0 8px; font-family: Arial, sans-serif; font-size: 20px; line-height: 1.25; }
.cookie-panel p { margin: 0; color: #42544b; font-size: 15px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.cookie-actions .btn { min-height: 40px; padding: 9px 16px; font-size: 14px; }
.cookie-link { background: transparent; color: var(--green-dark); border-color: transparent; text-decoration: underline; }
.site-loader { position: fixed; inset: 0; z-index: 999; display: grid; place-items: center; background: #f8efe8; transition: opacity .45s ease, visibility .45s ease; }
.site-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark { position: relative; width: 150px; height: 150px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.72); box-shadow: 0 22px 70px rgba(49,64,57,.16); }
.loader-mark::before { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 2px solid rgba(88,118,99,.16); border-top-color: var(--green-dark); animation: loader-spin 1.1s linear infinite; }
.loader-mark img { width: 118px; height: 118px; object-fit: contain; }
@keyframes loader-spin { to { transform: rotate(360deg); } }
.reveal { opacity: 1; transform: translateY(10px); transition: transform .45s ease var(--delay,0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; animation: none !important; } .reveal { opacity: 1; transform: none; } }
@media (max-width: 900px) {
  .hero-grid,.two-col,.cards,.contact-summary,.contact-form,.place-cards,.utility-cards,.contact-layout,.article-layout { grid-template-columns: 1fr; }
  .info-list { grid-template-columns: 1fr; }
  .page-guide { position: static; }
  .contact-form button { grid-column: auto; }
  .hero { min-height: auto; }
  .nav { position: relative; }
  .nav-inner { align-items: center; flex-direction: row; flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; margin: 0 auto; flex: 0 0 40px; width: 40px; height: 40px; }
  .nav-links { display: none; width: 100%; padding: 12px 0 6px; justify-content: flex-start; gap: 8px; }
  .nav-links.is-open { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .nav-links a { padding: 10px 12px; border: 1px solid rgba(88,118,99,.16); border-radius: 8px; background: rgba(255,255,255,.55); }
}
@media (max-width: 620px) {
  .wrap { width: min(100% - 28px,1120px); }
  .topbar-inner { align-items: flex-start; gap: 4px; }
  .topbar-contact { display: grid; gap: 0; }
  .topbar-contact span { display: none; }
  .brand { align-items: center; justify-content: center; min-width: 0; flex: 1 1 100%; gap: 10px; }
  .logo-shell { width: 58px; height: 52px; flex: 0 0 58px; }
  .logo-shell img { width: 58px; height: 52px; transform: scale(1.1); }
  .brand > span:last-child { min-width: 0; }
  .brand small { max-width: 220px; line-height: 1.25; font-size: 12px; }
  .nav-links.is-open { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .card { padding: 20px; }
  .place-detail iframe { height: 190px; }
}

