:root {
  --paper: #fffdf9;
  --cream: #fbf5ee;
  --cream-2: #f4eadf;
  --coral: #d86a50;
  --coral-dark: #b8513b;
  --olive: #8d9361;
  --olive-dark: #687044;
  --ink: #302b27;
  --muted: #6f6861;
  --line: #eadfd3;
  --white: #fff;
  --shadow: 0 18px 50px rgba(91, 64, 45, .10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: #f2c7ba; color: var(--ink); }
:focus-visible { outline: 3px solid #266f6a; outline-offset: 4px; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed; z-index: 9999; top: 10px; left: 10px;
  transform: translateY(-160%); padding: 10px 16px;
  color: #fff; background: #222; border-radius: 8px;
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 86px 0; }
.section--compact { padding: 52px 0; }
.kicker {
  margin: 0 0 10px; color: var(--coral); font-size: .82rem;
  font-weight: 750; letter-spacing: .13em; text-transform: uppercase;
}
.display-title, h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; }
.display-title { font-size: clamp(3.6rem, 7vw, 7rem); letter-spacing: -.045em; }
.section-title { margin: 0; font-size: clamp(2.25rem, 4vw, 4rem); letter-spacing: -.035em; }
.section-title--center { text-align: center; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); }
.copy { color: var(--muted); }
.copy p:first-child { margin-top: 0; }
.copy p:last-child { margin-bottom: 0; }
.editorial-rule { width: 52px; height: 2px; background: var(--olive); margin: 22px 0; }

.site-header {
  position: relative; z-index: 50; background: rgba(255,253,249,.96);
  border-bottom: 1px solid rgba(234,223,211,.72);
}
.header-inner {
  min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 265px; }
.brand-logo { width: 70px; height: 46px; object-fit: contain; }
.brand-text { display: grid; line-height: 1.05; }
.brand-kicker { color: #70685f; font-size: .67rem; letter-spacing: .08em; }
.brand-name { color: var(--coral); font-size: 1.18rem; letter-spacing: .09em; margin-top: 4px; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 44px); }
.site-nav a {
  position: relative; padding: 35px 0 31px; text-decoration: none; font-size: .82rem; font-weight: 750;
  text-transform: uppercase; letter-spacing: .025em;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 24px; height: 2px;
  background: var(--coral); transform: scaleX(0); transform-origin: center; transition: transform .2s ease;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--coral-dark); }
.menu-toggle {
  display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; align-items: center; justify-content: center;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: ""; width: 19px; height: 2px; background: var(--ink); position: absolute; transition: .2s ease;
}
.menu-toggle::before { transform: translateY(-6px); }
.menu-toggle::after { transform: translateY(6px); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }

.hero {
  overflow: hidden; background:
    radial-gradient(circle at 7% 45%, rgba(147,152,99,.08), transparent 28%),
    linear-gradient(110deg, #fffdf9 0%, #fffaf5 58%, #f7eee5 100%);
}
.hero-grid { min-height: 510px; display: grid; grid-template-columns: .85fr 1.25fr; align-items: stretch; }
.hero-copy { position: relative; padding: 70px 44px 70px 0; display: flex; flex-direction: column; justify-content: center; z-index: 2; }
.hero-copy::before {
  content: ""; position: absolute; left: -220px; top: 75px; width: 250px; height: 330px;
  background: url('/assets/images/botanical.svg') center/contain no-repeat; opacity: .45; filter: blur(.4px);
}
.hero-copy h1 { margin: 0; }
.hero-subtitle { max-width: 520px; margin: 16px 0 0; font-size: clamp(1.2rem, 2vw, 1.75rem); color: #5f5851; line-height: 1.35; }
.heart-line { width: 105px; height: 54px; margin: -18px 0 4px auto; color: var(--coral); }
.hero-media { position: relative; min-height: 510px; overflow: hidden; border-bottom-left-radius: 42% 92%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after {
  content: ""; position: absolute; inset: 0; box-shadow: inset 30px 0 60px rgba(255,255,255,.10); pointer-events: none;
}

.notice-wrap { padding: 22px 0 0; background: var(--paper); }
.notice-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 18px; }
.notice-card {
  min-height: 195px; border: 1px solid #f2e8df; border-radius: 18px; padding: 28px;
  background: linear-gradient(125deg, #fceeee, #fffaf5); display: flex; gap: 24px; align-items: flex-start;
}
.notice-card--olive { background: linear-gradient(125deg, #f7f3e8, #fffaf7); }
.notice-icon {
  flex: 0 0 92px; width: 92px; height: 92px; border-radius: 50%; background: rgba(255,255,255,.7);
  display: grid; place-items: center; color: var(--coral);
}
.notice-card--olive .notice-icon { color: var(--olive-dark); }
.notice-icon svg { width: 52px; height: 52px; }
.notice-content h2 { margin: 2px 0 8px; color: var(--coral-dark); font-size: 1.55rem; }
.notice-card--olive h2 { color: var(--olive-dark); }
.notice-content .notice-main { margin: 0; font-size: 1.32rem; font-weight: 650; line-height: 1.3; }
.notice-content .notice-note { margin: 8px 0 0; color: var(--muted); }
.representatives { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 14px; }
.rep { padding-right: 18px; border-right: 1px solid #d8cec3; font-size: .87rem; color: #5c554f; }
.rep:last-child { border-right: 0; padding-right: 0; }
.rep strong { display: block; color: var(--ink); margin-bottom: 2px; }

.intro-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.intro-copy { padding-left: 48px; }
.intro-copy .section-title { max-width: 560px; }
.intro-copy p { max-width: 590px; }
.intro-image { border-radius: 18px; overflow: hidden; min-height: 330px; box-shadow: var(--shadow); }
.intro-image img { width: 100%; height: 100%; object-fit: cover; }

.services-home { padding-top: 14px; }
.title-flourish { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 28px; }
.title-flourish svg { width: 32px; color: var(--coral); }
.service-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 280px; padding: 26px; border: 1px solid #f0e8df; border-radius: 18px; background: #fffaf6;
  display: flex; flex-direction: column; box-shadow: 0 8px 24px rgba(86,61,42,.04);
}
.service-card:nth-child(2) { background: #fbfaf2; }
.service-card-head { display: flex; align-items: center; gap: 18px; }
.service-icon { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: #f7e7e1; color: var(--coral); }
.service-card--olive .service-icon { background: #efefdf; color: var(--olive-dark); }
.service-icon svg { width: 44px; height: 44px; }
.service-card h3 { margin: 0; font-size: 1.55rem; color: var(--coral-dark); }
.service-card--olive h3 { color: var(--olive-dark); }
.service-card p { color: #5f5952; margin: 18px 0; font-size: .96rem; }
.text-link { margin-top: auto; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; color: var(--coral-dark); }
.service-card--olive .text-link { color: var(--olive-dark); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.cta-band {
  margin-top: 20px; border-radius: 18px; overflow: hidden; position: relative; color: #fff;
  background: linear-gradient(100deg, #ca5d46, #df7960); min-height: 108px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 22px 44px 22px 110px;
}
.cta-band::before { content: ""; position: absolute; left: 28px; top: 20px; width: 66px; height: 66px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: url('/assets/images/favicon.svg') center/38px no-repeat; filter: grayscale(1) brightness(3); }
.cta-band::after { content: ""; position: absolute; right: -14px; bottom: -35px; width: 150px; height: 150px; background: url('/assets/images/botanical.svg') center/contain no-repeat; filter: brightness(4); opacity: .32; transform: rotate(-18deg); }
.cta-band h2 { margin: 0 0 4px; font-size: 1.75rem; }
.cta-band p { margin: 0; opacity: .9; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 12px 24px;
  border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 750; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(65,37,27,.18); }
.button--light { position: relative; z-index: 1; background: #fff; color: var(--coral-dark); }
.button--coral { background: var(--coral); color: #fff; }
.button--outline { border-color: var(--line); background: #fff; color: var(--ink); }

.page-hero { padding: 76px 0 62px; background: linear-gradient(120deg, #fffdf9, #f8eee4); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: 64px; align-items: center; }
.page-hero h1 { margin: 0 0 20px; font-size: clamp(3.2rem, 6vw, 6.4rem); letter-spacing: -.045em; }
.page-hero p { max-width: 760px; }
.page-hero-image { height: 330px; border-radius: 170px 18px 18px 170px; overflow: hidden; box-shadow: var(--shadow); }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { border-radius: 20px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(80,57,42,.06); }
.team-photo { aspect-ratio: 4/3; overflow: hidden; background: #eee6df; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.team-card:hover .team-photo img { transform: scale(1.025); }
.team-info { padding: 20px 22px 24px; }
.team-info h2 { font-size: 1.65rem; margin: 0 0 5px; }
.team-info p { margin: 0; color: var(--muted); }
.closing-card { margin-top: 48px; padding: 34px 42px; border-radius: 20px; background: #fbf4ec; border: 1px solid var(--line); text-align: center; }

.service-group { padding: 70px 0; border-bottom: 1px solid var(--line); }
.service-group:last-child { border-bottom: 0; }
.service-group-grid { display: grid; grid-template-columns: 120px .7fr 1.3fr; gap: 34px; align-items: start; }
.service-number { font-family: var(--serif); font-size: 4.5rem; color: #e3c2b5; line-height: 1; }
.service-group h2 { font-size: 2.6rem; margin: 0 0 15px; }
.service-group-intro { color: var(--muted); font-size: 1.12rem; }
.service-item-list { display: grid; gap: 15px; }
.service-item { padding: 22px 24px; background: #fffaf6; border: 1px solid var(--line); border-radius: 16px; }
.service-item h3 { margin: 0 0 7px; font-size: 1.3rem; color: var(--coral-dark); }
.service-item p { margin: 0; color: var(--muted); }
.extra-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
.extra-card { padding: 26px; border-radius: 17px; border: 1px solid var(--line); background: #fff; }
.extra-card h3 { margin: 0 0 9px; font-size: 1.4rem; }
.extra-card p { margin: 0; color: var(--muted); }

.care-section { padding: 76px 0; }
.care-section + .care-section { border-top: 1px solid var(--line); }
.care-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.care-grid--reverse { grid-template-columns: 1.15fr .85fr; }
.care-image { min-height: 430px; border-radius: 20px; overflow: hidden; position: sticky; top: 24px; }
.care-image img { width: 100%; height: 100%; object-fit: cover; }
.care-content h2 { font-size: 2.6rem; margin: 0 0 22px; }
.care-content p { color: var(--muted); }
.tip-list { list-style: none; padding: 0; margin: 25px 0 0; display: grid; gap: 12px; }
.tip-list li { position: relative; padding: 15px 18px 15px 48px; border-radius: 13px; background: #fbf4ec; }
.tip-list li::before { content: "✓"; position: absolute; left: 18px; top: 14px; color: var(--olive-dark); font-weight: 800; }
.environment-note { padding: 28px; background: #edf0df; border: 1px solid #dfe4c8; border-radius: 18px; text-align: center; font-size: 1.15rem; color: #4f5632; }
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.gallery img { width: 100%; aspect-ratio: 1.45/1; object-fit: cover; border-radius: 15px; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 54px; align-items: start; }
.contact-card { padding: 30px; border-radius: 20px; background: #fbf4ec; border: 1px solid var(--line); }
.contact-card h2 { margin: 0 0 18px; font-size: 2rem; }
.contact-list { display: grid; gap: 15px; }
.contact-row { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; }
.contact-row svg { width: 20px; color: var(--coral); margin-top: 2px; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid rgba(128,108,90,.15); vertical-align: top; }
.hours-table td:first-child { width: 42px; font-weight: 750; }
.form-card { padding: 34px; border-radius: 20px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.form-card h2 { margin: 0 0 6px; font-size: 2.2rem; }
.form-card > p { margin-top: 0; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .92rem; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid #dcd0c4; background: #fffdfa; color: var(--ink); border-radius: 11px; padding: 13px 14px; min-height: 48px;
}
.field textarea { min-height: 150px; resize: vertical; }
.checkbox { display: grid; grid-template-columns: 21px 1fr; gap: 10px; align-items: start; font-size: .9rem; color: var(--muted); }
.checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--coral); }
.form-actions { display: flex; gap: 14px; align-items: center; margin-top: 20px; flex-wrap: wrap; }
.form-status { min-height: 24px; font-weight: 650; }
.form-status[data-state="success"] { color: #287359; }
.form-status[data-state="error"] { color: #a43b31; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.legal-wrap { max-width: 900px; margin-inline: auto; }
.legal-wrap h1 { font-size: clamp(3rem, 6vw, 5.5rem); margin: 0 0 36px; }
.legal-content { font-size: 1rem; color: #4f4943; }
.legal-content h2 { color: var(--ink); font-size: 1.65rem; margin: 38px 0 10px; }
.legal-content p, .legal-content ul { margin: 0 0 15px; }
.legal-content a { color: var(--coral-dark); }
.legal-content code { background: #f2e9e0; border-radius: 5px; padding: 2px 5px; }

.site-footer { margin-top: 24px; background: linear-gradient(120deg, #f7efe6, #fffaf5); border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: .75fr 1fr 1.1fr .66fr; gap: 30px; padding: 50px 0 34px; align-items: start; }
.footer-brand { display: grid; justify-items: center; text-align: center; padding-right: 24px; border-right: 1px solid #d8cbbf; }
.footer-brand img { width: 104px; height: 80px; object-fit: contain; }
.footer-brand .brand-kicker { margin-top: 8px; }
.footer-brand .brand-name { font-size: 1.1rem; }
.footer-block { min-height: 135px; padding-right: 24px; border-right: 1px solid #d8cbbf; }
.footer-block h2 { margin: 0 0 14px; font-family: var(--sans); font-weight: 750; font-size: .98rem; }
.footer-block p, .footer-block li { font-size: .86rem; color: #514b45; }
.footer-block ul { list-style: none; padding: 0; margin: 0; }
.footer-block a { text-decoration: none; }
.footer-badge img { width: 148px; margin-inline: auto; }
.footer-bottom { border-top: 1px solid #ded2c6; padding: 16px 0 22px; }
.footer-bottom-inner { display: flex; gap: 32px; align-items: center; justify-content: space-between; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: .78rem; color: #625b55; }
.footer-copy { font-size: .76rem; color: #7a726b; }
.back-to-top { position: fixed; right: 22px; bottom: 20px; z-index: 40; width: 48px; height: 48px; border-radius: 50%; border: 0; color: #fff; background: var(--olive); box-shadow: 0 8px 22px rgba(59,63,35,.22); display: grid; place-items: center; text-decoration: none; }

.loading-shell { min-height: 420px; display: grid; place-items: center; color: var(--muted); }
.error-panel { max-width: 720px; margin: 60px auto; padding: 30px; border: 1px solid #e6c2b8; border-radius: 18px; background: #fff4f1; }

@media (max-width: 1050px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: .74rem; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; }
  .notice-grid, .intro-grid, .contact-layout { gap: 28px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-block { border-right: 0; }
  .footer-badge { display: grid; place-items: start; }
}

@media (max-width: 840px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 78px; }
  .brand { min-width: auto; }
  .brand-logo { width: 58px; }
  .brand-kicker { font-size: .59rem; }
  .brand-name { font-size: 1rem; }
  .menu-toggle { display: inline-flex; position: relative; flex: 0 0 auto; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 78px; display: none; padding: 14px 22px 24px; background: #fffdf9;
    border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(68,48,34,.10); flex-direction: column; align-items: stretch; gap: 0;
  }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { padding: 14px 2px; font-size: .85rem; border-bottom: 1px solid #eee4da; }
  .site-nav a::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 54px 0 42px; }
  .hero-media { min-height: 360px; border-radius: 42% 42% 0 0 / 18% 18% 0 0; }
  .hero-subtitle { max-width: 650px; }
  .heart-line { margin-right: 40px; }
  .notice-grid { grid-template-columns: 1fr; }
  .intro-grid, .page-hero-grid, .contact-layout, .care-grid, .care-grid--reverse { grid-template-columns: 1fr; }
  .intro-copy { padding-left: 0; }
  .intro-image { order: -1; }
  .service-card-grid, .team-grid { grid-template-columns: repeat(2,1fr); }
  .page-hero-image { height: 280px; border-radius: 140px 18px 18px 140px; }
  .service-group-grid { grid-template-columns: 90px 1fr; }
  .service-item-list { grid-column: 2; }
  .care-image { position: relative; top: 0; min-height: 320px; }
  .care-grid--reverse .care-image { order: -1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 25px 28px 25px 100px; }
  .cta-band .button { justify-self: start; }
}

@media (max-width: 590px) {
  .section { padding: 62px 0; }
  .display-title { font-size: clamp(3.35rem, 17vw, 5rem); }
  .brand-text { display: none; }
  .hero-copy { padding-top: 40px; }
  .hero-media { min-height: 285px; }
  .notice-card { flex-direction: column; padding: 22px; }
  .notice-icon { width: 72px; height: 72px; flex-basis: 72px; }
  .representatives { grid-template-columns: 1fr; }
  .rep { border-right: 0; border-bottom: 1px solid #d8cec3; padding: 0 0 10px; }
  .rep:last-child { border-bottom: 0; }
  .service-card-grid, .team-grid, .extra-grid, .gallery, .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .service-card { min-height: 0; }
  .cta-band { padding: 92px 22px 24px; }
  .cta-band::before { left: 22px; top: 18px; }
  .page-hero { padding: 54px 0 44px; }
  .page-hero-grid { gap: 30px; }
  .page-hero-image { height: 220px; border-radius: 110px 16px 16px 110px; }
  .service-group-grid { grid-template-columns: 1fr; }
  .service-number { font-size: 3.5rem; }
  .service-item-list { grid-column: auto; }
  .contact-card, .form-card { padding: 23px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { justify-items: start; text-align: left; }
  .footer-bottom-inner { align-items: flex-start; flex-direction: column; gap: 14px; }
  .footer-links { gap: 15px 22px; }
  .back-to-top { width: 44px; height: 44px; right: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
