:root {
  --sage-900: #4f6658;
  --sage-700: #6f8a79;
  --sage-500: #9fb5a5;
  --sage-200: #dfe8e1;
  --sage-100: #eef3ef;
  --beige: #f5f0e7;
  --cream: #fbfaf6;
  --white: #ffffff;
  --text: #35423a;
  --muted: #667169;
  --border: rgba(79, 102, 88, 0.16);
  --shadow: 0 18px 50px rgba(79, 102, 88, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.center {
  text-align: center;
}

.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--beige);
}

.section-sage {
  background: var(--sage-700);
  color: var(--white);
}

h1,
h2,
h3,
.brand-text {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 600;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 600;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

p + p {
  margin-top: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage-700);
  margin-bottom: 18px;
}

.eyebrow.light {
  color: var(--sage-200);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--sage-700);
  color: var(--white);
  font-weight: 600;
  border: 1px solid var(--sage-700);
  transition: 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--sage-900);
  border-color: var(--sage-900);
}

.btn:focus-visible,
.contact-modal__close:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid rgba(159, 181, 165, 0.75);
  outline-offset: 3px;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.btn-outline {
  background: var(--sage-700);
  color: var(--sage-900);
}

.btn-outline:hover {
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--sage-900);
  border-color: var(--white);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--sage-700);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  font-size: 2rem;
  color: var(--sage-900);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 0.84rem;
}

.main-nav a:hover {
  color: var(--sage-700);
}

.nav-account {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.nav-account-primary {
  background: var(--sage-100);
  color: var(--sage-900);
}

.nav-signout {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.site-header .container {
  width: min(1280px, calc(100% - 40px));
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 110px;
  background:
    radial-gradient(circle at 85% 20%, rgba(159, 181, 165, 0.34), transparent 28%),
    linear-gradient(135deg, var(--cream), var(--sage-100));
}

.hero-grid,
.gift-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: var(--sage-700);
  margin-bottom: 20px;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  min-height: 520px;
}

.botanical-card {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 48% 48% 24px 24px;
  background: linear-gradient(160deg, var(--sage-200), var(--beige));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote-card {
  position: absolute;
  inset: auto 42px 46px 42px;
  background: rgba(255,255,255,0.88);
  padding: 28px;
  border-radius: var(--radius-md);
  text-align: center;
  backdrop-filter: blur(8px);
}

.quote-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--sage-900);
}

.quote-card span {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.leaf {
  position: absolute;
  width: 170px;
  height: 70px;
  background: var(--sage-700);
  border-radius: 100% 0 100% 0;
  opacity: 0.55;
}

.leaf-1 { top: 100px; left: 55px; transform: rotate(-25deg); }
.leaf-2 { top: 180px; right: 40px; transform: rotate(35deg); }
.leaf-3 { top: 260px; left: 110px; transform: rotate(10deg) scale(0.8); }

.benefits-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card,
.offer-card,
.qr-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.benefit-card {
  padding: 30px;
  text-align: center;
}

.icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.gift-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.check-list,
.offer-list {
  list-style: none;
  margin: 24px 0 30px;
}

.check-list li,
.offer-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.check-list li::before,
.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage-700);
  font-weight: 700;
}

.qr-panel {
  padding: 34px;
  text-align: center;
}

.qr-placeholder {
  aspect-ratio: 1;
  width: min(260px, 100%);
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  color: var(--sage-900);
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 12px solid var(--white);
  outline: 2px dashed var(--sage-500);
  background:
    linear-gradient(90deg, rgba(79,102,88,.2) 25%, transparent 25%) 0 0/24px 24px,
    linear-gradient(rgba(79,102,88,.2) 25%, transparent 25%) 0 0/24px 24px,
    var(--sage-100);
}

.offers-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 920px;
}

.offer-card {
  padding: 38px;
}

.offer-card.featured {
  background: var(--sage-100);
  border-color: var(--sage-500);
  transform: translateY(-10px);
}

.offer-label,
.duration {
  font-size: 0.85rem;
  color: var(--muted);
}

.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--sage-900);
  margin-top: 24px;
}

.duration {
  margin-bottom: 24px;
}

.about-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.section-sage .about-grid {
  grid-template-columns: 1fr;
  max-width: 820px;
  text-align: center;
}

.portrait-placeholder {
  min-height: 480px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--sage-200), var(--beige));
  display: grid;
  place-items: center;
  color: var(--sage-900);
  border: 1px solid rgba(255,255,255,0.35);
}

.section-sage .portrait-placeholder {
  display: none;
}

.final-cta {
  background: linear-gradient(180deg, var(--cream), var(--sage-100));
}

.final-cta .btn {
  margin-top: 28px;
}

.site-footer {
  background: var(--sage-900);
  color: rgba(255,255,255,0.86);
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}

.footer-grid h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-brand .brand-text {
  color: white;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(53, 66, 58, 0.72);
  backdrop-filter: blur(7px);
}

.contact-modal__dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(159, 181, 165, 0.25), transparent 34%),
    var(--cream);
  box-shadow: 0 28px 80px rgba(32, 44, 36, 0.3);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.contact-modal.is-open .contact-modal__dialog {
  transform: translateY(0) scale(1);
}

.contact-modal__dialog h2 {
  margin-bottom: 14px;
}

.contact-modal__intro {
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--sage-900);
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.contact-modal__close:hover {
  background: var(--sage-100);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form label {
  color: var(--sage-900);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(79, 102, 88, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input {
  min-height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px 16px;
  line-height: 1.6;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a958e;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sage-700);
  box-shadow: 0 0 0 4px rgba(159, 181, 165, 0.2);
}

.contact-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__privacy {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-form__submit {
  width: 100%;
}

.contact-form__status {
  min-height: 1.7em;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form__status.is-success {
  color: var(--sage-900);
}

.contact-form__status.is-error {
  color: #a33f3f;
}

@media (max-width: 960px) {
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrap > .btn-small {
    display: none;
  }

  .subpage-header .nav-wrap > .btn-small {
    display: inline-flex;
    width: auto;
    margin-left: auto;
  }

  .hero-grid,
  .gift-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 90px 0 72px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .subpage-header .nav-wrap > .btn-small {
    width: auto;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .hero-visual,
  .botanical-card {
    min-height: 380px;
    height: 380px;
  }

  .benefits-grid,
  .offers-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card.featured {
    transform: none;
  }

  .quote-card {
    inset: auto 22px 22px 22px;
  }

  .quote-card p {
    font-size: 1.55rem;
  }

  .contact-modal {
    align-items: end;
    padding: 0;
  }

  .contact-modal__dialog {
    width: 100%;
    max-height: 92vh;
    padding: 36px 20px 24px;
    border-radius: 28px 28px 0 0;
  }

  .contact-modal__close {
    top: 12px;
    right: 14px;
  }
}

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

/* Pages intérieures */

.subpage-main {
  min-height: 70vh;
}

.subpage-hero {
  padding: 88px 0 68px;
  background:
    radial-gradient(circle at 88% 12%, rgba(159, 181, 165, 0.32), transparent 30%),
    linear-gradient(135deg, var(--cream), var(--sage-100));
}

.subpage-hero .container {
  max-width: 860px;
}

.subpage-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.subpage-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
}

.subpage-content {
  padding: 72px 0 100px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 52px;
}

.legal-toc {
  position: sticky;
  top: 104px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-toc h2 {
  margin-bottom: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.legal-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-toc a:hover {
  color: var(--sage-700);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  scroll-margin-top: 110px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
}

.legal-content section + section {
  margin-top: 22px;
}

.legal-content h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.legal-content h3 {
  margin-top: 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  margin: 16px 0 0 20px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--sage-900);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-alert {
  margin-bottom: 28px;
  padding: 22px 24px;
  border: 1px solid #c9a86a;
  border-radius: var(--radius-md);
  background: #fff8e8;
  color: #72551e;
}

.legal-alert strong {
  display: block;
  margin-bottom: 6px;
}

.legal-placeholder {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 6px;
  background: #fff0c7;
  color: #72551e;
  font-weight: 600;
}

.legal-updated {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.subpage-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.booking-intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 52px;
}

.booking-summary {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-summary h2 {
  font-size: 2rem;
}

.booking-summary ul {
  list-style: none;
  margin-top: 20px;
}

.booking-summary li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.booking-summary li + li {
  margin-top: 12px;
}

.booking-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage-700);
  font-weight: 700;
}

.booking-panel {
  margin-top: 54px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-calendar {
  width: 100%;
  min-height: 720px;
  overflow: auto;
  border-radius: var(--radius-md);
  background: var(--white);
}

.booking-fallback {
  padding: 24px;
  text-align: center;
}

.booking-fallback a {
  color: var(--sage-900);
  text-decoration: underline;
}

.booking-panel__placeholder {
  display: grid;
  min-height: 460px;
  place-items: center;
  padding: 40px;
  border: 2px dashed var(--sage-500);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 0, rgba(159, 181, 165, 0.24), transparent 44%),
    var(--sage-100);
  text-align: center;
}

.booking-panel__placeholder > div {
  max-width: 560px;
}

.booking-panel__placeholder h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.booking-panel__placeholder p {
  color: var(--muted);
}

.booking-panel__placeholder .btn {
  margin-top: 24px;
}

.booking-help {
  margin-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.booking-help a {
  color: var(--sage-900);
  text-decoration: underline;
}

/* Comptes et avis */

.reviews-hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.reviews-score {
  min-width: 230px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
  box-shadow: var(--shadow);
}

.reviews-score strong,
.reviews-score > span {
  display: block;
}

.reviews-score strong {
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  color: var(--sage-900);
  font-size: 2.2rem;
}

.reviews-score > span {
  color: var(--muted);
  font-size: 0.82rem;
}

.star-display {
  position: relative;
  display: inline-block;
  color: #d8ded9;
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.star-display::before {
  content: "★★★★★";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--rating-percent);
  overflow: hidden;
  color: #d5a94e;
  white-space: nowrap;
}

.star-display--large {
  font-size: 1.8rem;
}

.star-display--interactive {
  font-size: 2.1rem;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: start;
  gap: 42px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.reviews-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.review-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(79, 102, 88, 0.08);
}

.review-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.review-card h3 {
  margin-bottom: 5px;
}

.review-card__dates {
  color: var(--muted);
  font-size: 0.76rem;
}

.review-card__content {
  margin-top: 20px;
  color: var(--muted);
  white-space: pre-line;
}

.reviews-empty,
.reviews-loading {
  padding: 34px;
  border: 1px dashed var(--sage-500);
  border-radius: var(--radius-md);
  background: var(--sage-100);
  color: var(--muted);
  text-align: center;
}

.review-submit-card {
  position: sticky;
  top: 102px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-submit-card h2 {
  font-size: 2.5rem;
}

.review-submit-card > div > p {
  color: var(--muted);
}

.review-auth-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.account-form {
  display: grid;
  gap: 19px;
  margin-top: 26px;
}

.account-form input,
.account-form textarea {
  width: 100%;
  border: 1px solid rgba(79, 102, 88, 0.24);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
}

.account-form input:not([type="checkbox"]):not([type="range"]) {
  min-height: 52px;
  padding: 0 16px;
}

.account-form textarea {
  min-height: 160px;
  padding: 14px 16px;
  line-height: 1.6;
  resize: vertical;
}

.account-form input:focus,
.account-form textarea:focus {
  border-color: var(--sage-700);
  outline: 3px solid rgba(159, 181, 165, 0.22);
  outline-offset: 1px;
}

.account-form small {
  color: var(--muted);
}

.rating-field {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.rating-field legend {
  padding: 0 7px;
  color: var(--sage-900);
  font-size: 0.9rem;
  font-weight: 600;
}

.rating-control {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px 18px;
}

.rating-control output {
  color: var(--sage-900);
  font-weight: 600;
}

.rating-control input[type="range"] {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--sage-700);
}

.consent-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--sage-700);
}

.consent-check a {
  color: var(--sage-900);
  text-decoration: underline;
}

.account-status {
  min-height: 1.7em;
  margin: 0;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
}

.account-status.is-success {
  color: var(--sage-900);
}

.account-status.is-error {
  color: #a33f3f;
}

.account-welcome {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
}

.my-review-status {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--sage-100);
}

.my-review-status h3 {
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
}

.text-button {
  justify-self: center;
  border: 0;
  background: transparent;
  color: var(--sage-900);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.text-button--danger {
  color: #963d3d;
}

.reviews-transparency {
  margin-top: 50px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--sage-100);
}

.reviews-transparency summary {
  padding: 22px 26px;
  color: var(--sage-900);
  font-weight: 600;
  cursor: pointer;
}

.reviews-transparency > div {
  padding: 0 26px 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-notice {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid #c9a86a;
  border-radius: var(--radius-sm);
  background: #fff8e8;
  color: #72551e;
}

.service-notice strong {
  display: block;
  margin-bottom: 5px;
}

.auth-main {
  min-height: calc(100vh - 78px);
  background: var(--cream);
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  min-height: calc(100vh - 78px);
}

.auth-visual {
  display: flex;
  align-items: flex-end;
  padding: 70px max(40px, 8vw);
  background:
    linear-gradient(rgba(79, 102, 88, 0.2), rgba(79, 102, 88, 0.72)),
    radial-gradient(circle at 30% 20%, var(--sage-500), var(--sage-900));
  color: var(--white);
}

.auth-visual--signup {
  background:
    linear-gradient(rgba(79, 102, 88, 0.12), rgba(79, 102, 88, 0.68)),
    radial-gradient(circle at 70% 20%, var(--beige), var(--sage-700));
}

.auth-visual > div {
  max-width: 560px;
}

.auth-visual h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.auth-panel {
  display: grid;
  align-content: center;
  padding: 70px max(28px, 10vw);
}

.auth-panel__inner {
  width: min(520px, 100%);
  margin: 0 auto;
}

.auth-panel h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}

.auth-switch {
  margin-top: 26px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.auth-switch a {
  color: var(--sage-900);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 860px) {
  .legal-layout,
  .booking-intro-grid,
  .reviews-layout,
  .reviews-hero__grid,
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .reviews-score {
    width: min(320px, 100%);
  }

  .review-submit-card {
    position: static;
  }

  .auth-visual {
    min-height: 380px;
  }

  .auth-panel {
    padding-top: 58px;
    padding-bottom: 70px;
  }
}

@media (max-width: 680px) {
  .subpage-hero {
    padding: 68px 0 52px;
  }

  .subpage-content {
    padding: 52px 0 72px;
  }

  .legal-content section,
  .booking-panel {
    padding: 24px 20px;
  }

  .booking-panel__placeholder {
    min-height: 400px;
    padding: 28px 18px;
  }

  .booking-calendar {
    min-height: 780px;
  }
}
