:root {
  --cream: #f8f1e8;
  --cream-2: #f3e9dc;
  --paper: #fffdf9;
  --ink: #3b322b;
  --ink-soft: #6d6158;
  --sage: #6d8a6a;
  --sage-dark: #547353;
  --sage-deep: #3f5a40;
  --blush: #f4d4cf;
  --blush-2: #ead0c6;
  --pink: #c97b7b;
  --line: rgba(90, 70, 50, 0.12);
  --shadow: 0 18px 44px rgba(70, 50, 35, 0.12);
  --shadow-hover: 0 22px 40px rgba(70, 50, 35, 0.18);
  --radius: 24px;
  --header: 88px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, #fde8e2 0 90px, transparent 140px),
    radial-gradient(circle at 90% 18%, #e7f0df 0 120px, transparent 180px),
    var(--cream);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1240px, calc(100% - 32px)); margin: 0 auto; }

.script { font-family: "Patrick Hand", cursive; }
.display {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  font-synthesis: none;
}
.kicker { color: var(--pink); font-size: 1.35rem; font-weight: 700; }
.promo-row { display: flex; justify-content: space-between; align-items: end; gap: 12px; flex-wrap: wrap; }
.check-line { display: flex; gap: 10px; align-items: flex-start; margin: 14px 0 16px; font-weight: 700; }
.check-line input { margin-top: 4px; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(248, 241, 232, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
  background: transparent;
  filter: drop-shadow(0 4px 10px rgba(70, 50, 35, 0.16));
}
.logo-tagline {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.25;
  max-width: 14ch;
}
.nav { display: flex; gap: 22px; color: var(--ink-soft); font-weight: 700; }
.nav a:hover { color: var(--sage-deep); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer;
  background: var(--sage); color: white;
  padding: 12px 18px; border-radius: 999px;
  font-weight: 800; box-shadow: 0 10px 22px rgba(84, 115, 83, 0.25);
}
.btn:hover { background: var(--sage-dark); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; }
[hidden] { display: none !important; }
.btn-ghost { background: transparent; color: var(--sage-deep); box-shadow: none; border: 1px solid var(--line); }
.menu-btn { display: none; background: none; border: 0; font-size: 1.4rem; cursor: pointer; }

.hero { padding: 18px 0 8px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 370px);
  gap: 24px;
  align-items: stretch;
}
.hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
  background: #f3e6d8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: calc(100% - 10px);
}
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: calc(26% - 5px);
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: 100% 18%;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    #f6eee4 0%,
    #f6eee4 30%,
    rgba(246, 238, 228, 0.96) 40%,
    rgba(246, 238, 228, 0.35) 52%,
    rgba(246, 238, 228, 0.06) 64%,
    transparent 78%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 32px 32px;
}
.hero-title {
  font-family: "Patrick Hand", cursive;
  font-weight: 700;
  font-size: clamp(2.45rem, 3.8vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #3a2f28;
  margin: 0 0 12px;
  font-synthesis: weight;
  -webkit-text-stroke: 0.45px currentColor;
}
.hero-title-line {
  white-space: nowrap;
}
.heart {
  color: #e39a96;
  font-family: "Patrick Hand", cursive;
  font-weight: 700;
  padding-left: 2px;
}
.lead {
  max-width: 32ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 14px;
  max-width: 390px;
}
.hero-features article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink-soft);
}
.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f4ddd6;
  color: #d48984;
  display: grid;
  place-items: center;
}
.note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e4efdc;
  color: var(--sage-deep);
  border-radius: 999px;
  padding: 8px 16px 10px;
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 1.42rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.book-card {
  background: var(--paper);
  border-radius: 32px;
  padding: 13px 16px 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.7);
  min-width: 0;
}
.book-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.book-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #eef4ea;
  display: grid;
  place-items: center;
}
.book-card h2 { font-size: 1.35rem; margin: 0; }
.muted { color: var(--ink-soft); }
.small { font-size: 0.92rem; }
.cal-head, .week, .days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin: 6px 0 2px; font-weight: 800;
}
.cal-nav button {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line); background: white; cursor: pointer;
}
.week { color: var(--ink-soft); font-size: 0.76rem; font-weight: 800; text-align: center; padding: 4px 0; }
.week .off { opacity: 0.42; }
.day {
  height: 31px; border: 0; background: transparent; border-radius: 50%;
  cursor: pointer; font-weight: 800;
}
.day:hover:not(:disabled) { background: #eef4ea; }
.day.today { box-shadow: inset 0 0 0 1.5px var(--sage); }
.day.selected { background: var(--sage); color: white; }
.day:disabled { color: #c5b9ae; cursor: not-allowed; }
.day.weekend:disabled { color: #d5cbc2; }
.day.holiday:disabled { color: #c99a90; }
.day.busy { color: #c5b9ae; text-decoration: line-through; }
.times {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin: 8px 0 6px;
}
label.field { display: flex; flex-direction: column; gap: 6px; font-size: 0.82rem; font-weight: 800; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); background: #fff; border-radius: 14px;
  padding: 11px 12px; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--sage); box-shadow: 0 0 0 3px rgba(109, 138, 106, 0.18);
}
.summary {
  background: #f4eee6; border-radius: 16px; padding: 10px 12px;
  display: flex; justify-content: space-between; gap: 8px; margin-bottom: 8px; font-weight: 800;
}
.warn { color: #b1554a; font-size: 0.86rem; min-height: 0; margin: 0 0 8px; }
.full { width: 100%; }
.hint { text-align: center; margin-top: 8px; color: var(--ink-soft); font-size: 0.86rem; }

.highlights { padding: 18px 0 8px; }
.hi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hi {
  text-align: center;
  padding: 20px 14px;
  background: var(--paper);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.hi .icon {
  width: 54px; height: 54px; margin: 0 auto 10px;
  border-radius: 50%; display: grid; place-items: center;
  background: #efe3d6; color: var(--sage-deep); font-size: 1.3rem;
}
.hi h3 { font-size: 1.02rem; margin-bottom: 6px; }
.price { font-size: 1.7rem; color: var(--sage-deep); }

.winry-section { padding-top: 28px; scroll-margin-top: calc(var(--header) + 8px); }
.winry-intro { max-width: 46ch; margin: 0 auto 28px; }
.winry-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--paper);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.8);
}
.winry-photos {
  position: relative;
  min-height: 460px;
  padding: 20px 18px 24px;
  background:
    radial-gradient(circle at 16% 18%, #fde8e2 0 90px, transparent 150px),
    #f6eee4;
}
.winry-main {
  margin: 0;
  height: 100%;
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 28px rgba(70, 50, 35, 0.12);
}
.winry-main img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 58% 48%;
}
.winry-caption {
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: auto;
  margin: 0;
  background: #e4efdc;
  color: var(--sage-deep);
  border-radius: 999px;
  padding: 8px 16px 10px;
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(70, 50, 35, 0.12);
}
.winry-shot {
  position: absolute;
  width: min(42%, 200px);
  left: 12px;
  bottom: 16px;
  margin: 0;
  background: #fffdf9;
  padding: 8px 8px 12px;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(70, 50, 35, 0.22);
  transform: rotate(-6.5deg);
  z-index: 2;
}
.winry-shot img {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: 30% 62%;
  border-radius: 4px;
}
.winry-shot figcaption {
  font-family: "Patrick Hand", cursive;
  text-align: center;
  font-size: 1.12rem;
  margin-top: 6px;
  color: var(--ink);
}
.winry-copy {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.winry-copy p { color: var(--ink-soft); }
.winry-copy p + p { margin-top: 12px; }
.winry-traits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.winry-traits article {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.winry-traits h3 {
  font-size: 0.95rem;
  margin: 0;
}
.winry-traits p {
  font-size: 0.8rem;
  line-height: 1.35;
  margin: 0;
}
.winry-traits .feat-icon {
  background: #e7f0e2;
  color: var(--sage-deep);
}

.section { padding: 42px 0; }
.section h2 { text-align: center; font-size: clamp(2rem, 3vw, 2.7rem); margin-bottom: 8px; }
.section.winry-section h2 {
  white-space: nowrap;
  font-size: clamp(1.4rem, 3.35vw, 2.7rem);
  letter-spacing: -0.02em;
}
.center { text-align: center; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 28px; }
.step { text-align: center; padding: 16px 10px; background: var(--paper); border-radius: 20px; box-shadow: var(--shadow); }
.badge {
  width: 58px; height: 58px; margin: 0 auto 12px;
  border-radius: 50%; background: #e7f0e2; color: var(--sage-deep);
  display: grid; place-items: center; font-weight: 800; position: relative;
}
.badge span { position: absolute; top: -6px; left: -4px; background: var(--sage); color: white; width: 22px; height: 22px; border-radius: 50%; font-size: 0.75rem; display: grid; place-items: center; }

.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 22px; align-items: stretch; }
.card {
  background: var(--paper); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.8);
}
.check { list-style: none; display: grid; gap: 10px; margin-top: 14px; }
.check li { display: flex; gap: 10px; align-items: flex-start; }
.check i { color: var(--sage); margin-top: 3px; }
.promo {
  background: linear-gradient(120deg, #f8d9d4, #f7e3d8 45%, transparent 70%),
    url("https://images.unsplash.com/photo-1558788353-f76d92427f16?auto=format&fit=crop&w=1200&q=80") right/cover;
  color: var(--ink);
  min-height: 340px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.promo h3 { font-size: 2rem; max-width: 12ch; }
.polaroid {
  width: 168px; background: white; padding: 8px 8px 18px;
  transform: rotate(6deg); box-shadow: var(--shadow); border-radius: 6px;
  margin-left: auto;
}
.polaroid img { height: 120px; width: 100%; object-fit: cover; }
.polaroid p { font-family: "Patrick Hand", cursive; text-align: center; font-size: 1.15rem; margin-top: 6px; }

.reqs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 22px; }
.req { background: var(--paper); border-radius: 20px; padding: 18px; text-align: center; box-shadow: var(--shadow); }
.req i { font-size: 1.4rem; color: var(--sage-deep); }

.faq-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 18px; }
.faqs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
}
details.faq {
  background: var(--paper); border-radius: 18px; padding: 16px 18px; box-shadow: var(--shadow);
}
details.faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
details.faq summary::-webkit-details-marker,
details.faq summary::marker { display: none; content: ""; }
details.faq summary::after {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
details.faq[open] summary::after {
  margin-top: 10px;
  transform: rotate(-135deg);
}
details.faq p { margin-top: 10px; color: var(--ink-soft); }

.hi, .step, .card, .req, details.faq {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media (hover: hover) {
  .hi:hover, .step:hover, .card:hover, .req:hover, details.faq:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
  }
  .polaroid {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .polaroid:hover {
    transform: rotate(6deg) translateY(-8px);
    box-shadow: var(--shadow-hover);
  }
  .winry-shot {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .winry-shot:hover {
    transform: rotate(-3deg) translateY(-8px);
    box-shadow: var(--shadow-hover);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hi, .step, .card, .req, details.faq, .polaroid, .winry-shot {
    transition: none;
  }
}

.footer {
  background: var(--sage-deep); color: #eef6ea;
  border-radius: 36px 36px 0 0; padding: 28px 0 22px; margin-top: 20px;
}
.footer-inner { display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.footer a { color: #eef6ea; font-weight: 800; }
.footer-contact {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}
.footer-contact a { font-size: 0.95rem; }
.footer .logo-img {
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 6px 14px rgba(20, 30, 18, 0.28));
}
.footer .logo-tagline { color: #d7e7d4; }

.wa-float {
  position: fixed;
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 45;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(18, 140, 70, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, width 0.2s ease;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.modal.open ~ .wa-float { visibility: hidden; pointer-events: none; }
@media (hover: hover) {
  .wa-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(18, 140, 70, 0.42);
    background: #1ebe57;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { transition: none; }
}
@media (max-width: 720px) {
  .wa-float {
    right: 16px;
    width: 54px;
    height: 54px;
  }
}

.modal {
  position: fixed; inset: 0; background: rgba(40, 30, 24, 0.42);
  display: none; place-items: center; z-index: 50; padding: 16px;
}
.modal.open { display: grid; }
.modal-card {
  width: min(680px, 100%);
  background: var(--paper);
  border-radius: 28px;
  padding: 22px;
  max-height: 92vh;
  overflow: auto;
  box-shadow: var(--shadow);
}
.modal-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.close { border: 0; background: #f1e7dc; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; }
.progress { display: flex; gap: 8px; margin-bottom: 16px; }
.progress span { height: 6px; flex: 1; background: #eadfd3; border-radius: 99px; }
.progress span.on { background: var(--sage); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay { background: #f6eee4; border-radius: 16px; padding: 14px; display: grid; gap: 8px; }
.pay div { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }
.pay strong { text-align: right; overflow-wrap: anywhere; }
.copy { border: 0; background: white; border-radius: 999px; padding: 4px 10px; cursor: pointer; font-weight: 800; flex: 0 0 auto; }
.success { text-align: center; padding: 18px 8px 8px; }
.success h3 { font-size: 2rem; margin: 8px 0; }
.cancel-link { color: var(--sage-deep); font-weight: 800; text-decoration: underline; }
.simple-main { min-height: calc(100vh - var(--header)); padding: 28px 0 48px; }
.simple-card { width: min(640px, calc(100% - 32px)); margin: 0 auto; }
.simple-card h1 { font-size: 2rem; margin: 4px 0 10px; text-align: left; }
.simple-card .field { margin: 14px 0; }
.simple-card .btn-ghost { margin-top: 8px; }
.ok-msg { color: var(--sage-deep); font-weight: 800; margin: 8px 0 14px; }
.booking-list { display: grid; gap: 12px; margin: 16px 0; }
.booking-item {
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  background: #f6eee4; border-radius: 16px; padding: 12px 14px;
}
.booking-item .btn { flex: 0 0 auto; padding: 10px 14px; }

@media (max-width: 980px) {
  .hero-grid, .hi-grid, .steps, .split, .reqs, .grid-2 { grid-template-columns: 1fr 1fr; }
  .faqs { grid-template-columns: 1fr 1fr; }
  .hero-grid, .winry-card { grid-template-columns: 1fr; }
  .steps, .hi-grid { grid-template-columns: 1fr 1fr; }
  .winry-photos,
  .winry-main,
  .winry-main img { min-height: 320px; }
  .winry-shot { width: min(40%, 188px); }
  .winry-shot img { height: 148px; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: var(--header); left: 0; right: 0;
    background: var(--cream); padding: 16px; border-bottom: 1px solid var(--line); z-index: 30;
  }
  .menu-btn { display: block; }
  .hero-banner {
    justify-content: flex-start;
    max-height: none;
  }
  .hero-banner::before { display: none; }
  .hero-photo {
    position: relative;
    inset: auto;
    left: auto;
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 78% 32%;
  }
  .hero-content {
    padding: 24px 24px 22px;
    max-width: none;
  }
}
@media (max-width: 720px) {
  .hero-grid, .hi-grid, .steps, .split, .reqs, .grid-2, .times, .winry-card, .winry-traits { grid-template-columns: 1fr; }
  .faqs { grid-template-columns: 1fr; }
  .hero-content { padding: 22px 20px 20px; max-width: 100%; }
  .hero-title { font-size: 2.4rem; }
  .hero-features { max-width: 100%; }
  .hero-photo { height: 210px; object-position: 80% 30%; }
  .winry-copy { padding: 24px 20px 22px; }
  .winry-photos { padding: 16px 14px 20px; min-height: 300px; }
  .winry-photos,
  .winry-main,
  .winry-main img { min-height: 260px; }
  .winry-shot {
    width: min(46%, 164px);
    left: 8px;
    bottom: 10px;
  }
  .winry-shot img { height: 120px; }
  .winry-caption { font-size: 1.12rem; padding: 7px 12px 8px; }
  .winry-traits { gap: 16px; }
  .faq-head { flex-direction: column; align-items: start; gap: 8px; }
  .header .btn { padding: 10px 12px; font-size: 0.86rem; }
  .header .logo-tagline { display: none; }
  .logo-img { width: 60px; height: 60px; }
  :root { --header: 76px; }
  .footer-contact { justify-items: start; text-align: left; }
}
