:root {
  --cream: #fffaf2;
  --cream-deep: #f6efe2;
  --sage: #8fa184;
  --sage-dark: #6f8268;
  --sage-light: #dfe8dc;
  --mint: #dbe9e3;
  --gold: #d6a328;
  --gold-light: #f2d378;
  --text: #66775f;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(102, 119, 95, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #eef4ef 0%, #f7f2e8 100%);
  font-family: "Montserrat", Arial, sans-serif;
}

.page-shell {
  width: min(100%, 1440px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 0 60px rgba(74, 94, 76, .12);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 42px 24px 90px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.96) 0 28%, rgba(255,250,242,.8) 55%, rgba(244,238,224,.9) 100%),
    linear-gradient(180deg, var(--cream) 0%, #fbf7ef 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -62px;
  height: 125px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: linear-gradient(180deg, #e6eee8 0%, #d8e3dd 100%);
  border-top: 4px solid rgba(255,255,255,.88);
}

.brand-logo {
  display: block;
  width: min(520px, 88vw);
  margin: 0 auto -22px;
  filter: drop-shadow(0 12px 24px rgba(79, 95, 73, .08));
}

.announcement {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0 auto;
}

.gold-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--gold);
  font-size: 24px;
}
.gold-rule::before, .gold-rule::after {
  content: "";
  width: 96px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.gold-rule::after { transform: scaleX(-1); }

h1 {
  margin: 8px 0 0;
  color: var(--sage-dark);
  font: 600 clamp(3rem, 8vw, 6.3rem)/.88 "Cormorant Garamond", Georgia, serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.script-line {
  margin: 5px 0 20px;
  color: var(--gold);
  font: clamp(2.2rem, 6vw, 4.5rem)/1 "Parisienne", cursive;
}

.intro {
  max-width: 680px;
  margin: 0 auto 25px;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.65;
}

.coming-soon-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(650px, 100%);
  margin: 0 auto;
  padding: 22px 30px;
  border: 1px solid rgba(143, 161, 132, .18);
  border-radius: 12px;
  background: rgba(237, 240, 231, .82);
  box-shadow: var(--shadow);
  text-align: left;
}
.coming-soon-card svg {
  flex: 0 0 58px;
  width: 58px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.coming-soon-card strong,
.coming-soon-card span { display: block; text-transform: uppercase; letter-spacing: .12em; }
.coming-soon-card strong { font-size: clamp(1.05rem, 2.5vw, 1.55rem); }
.coming-soon-card span { margin-top: 5px; font-size: .82rem; }

.care-note {
  margin: 22px 0 0;
  color: var(--sage-dark);
  font: clamp(1.45rem, 3vw, 2.05rem)/1.3 "Parisienne", cursive;
}
.care-note span { color: var(--gold); font-family: serif; }

.services {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 82px max(24px, 7vw) 62px;
  background: linear-gradient(180deg, #dbe6df 0%, #e8eee8 100%);
}

.service-card {
  padding: 12px clamp(20px, 4vw, 54px);
  text-align: center;
}
.service-card + .service-card { border-left: 1px solid rgba(214, 163, 40, .45); }
.icon-circle {
  display: grid;
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  place-items: center;
  border: 1.5px solid rgba(214, 163, 40, .55);
  border-radius: 50%;
  background: rgba(255,255,255,.42);
}
.icon-circle svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--sage-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card:first-child .icon-circle svg { fill: none; }
.service-card h2 {
  margin: 0 0 10px;
  color: var(--sage-dark);
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.service-card p { margin: 0; line-height: 1.6; font-size: .92rem; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px max(28px, 9vw) 36px;
  border-top: 2px solid rgba(255,255,255,.8);
  background: #cfdccf;
}
.follow { margin: 0 0 12px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.socials { display: flex; gap: 14px; }
.socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--sage-dark);
  border: 1.5px solid rgba(255,255,255,.92);
  border-radius: 50%;
  text-decoration: none;
  font: 600 1.25rem/1 Georgia, serif;
  transition: transform .2s ease, background .2s ease;
}
.socials a:hover, .socials a:focus-visible { transform: translateY(-3px); background: rgba(255,255,255,.55); outline: none; }
.stay-connected { margin: 0; color: var(--sage-dark); font: clamp(1.8rem, 4vw, 3rem)/1 "Parisienne", cursive; }
.stay-connected span { color: var(--gold); }

@media (max-width: 760px) {
  .hero { min-height: auto; padding: 24px 18px 78px; }
  .brand-logo { width: min(430px, 105vw); margin-left: 50%; transform: translateX(-50%); }
  .coming-soon-card { padding: 18px; gap: 14px; }
  .coming-soon-card svg { flex-basis: 46px; width: 46px; }
  .services { grid-template-columns: 1fr; padding: 70px 24px 42px; }
  .service-card { padding: 30px 10px; }
  .service-card + .service-card { border-left: 0; border-top: 1px solid rgba(214, 163, 40, .4); }
  .site-footer { flex-direction: column; text-align: center; }
  .socials { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
