:root {
  --ink: #183b31;
  --muted: #677d74;
  --paper: #fbf8ef;
  --mist: #e7f4ed;
  --leaf: #2c8a68;
  --deep: #0e5b48;
  --sun: #e8bf67;
  --white: #ffffff;
  --line: rgba(24, 59, 49, 0.12);
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(44, 138, 104, 0.16), transparent 22%),
    radial-gradient(circle at 84% 10%, rgba(232, 191, 103, 0.16), transparent 20%),
    linear-gradient(180deg, var(--paper), #eef7f1 52%, var(--paper));
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.clean-nav,
.clean-hero,
.clean-trust,
.clean-plans,
.clean-included,
.clean-book,
.clean-note,
.clean-footer {
  width: min(var(--max), calc(100% - 28px));
  margin-right: auto;
  margin-left: auto;
}

.clean-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 0 18px;
}

.clean-brand {
  display: grid;
  color: var(--deep);
  line-height: 1;
}

.clean-brand span {
  font-size: 1.9rem;
  font-weight: 900;
}

.clean-brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.clean-nav nav {
  display: flex;
  gap: 8px;
  border-radius: 999px;
  background: var(--white);
  padding: 8px;
  box-shadow: 0 18px 48px rgba(24, 59, 49, 0.1);
}

.clean-nav nav a {
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.clean-nav nav a:hover,
.clean-nav nav a:last-child {
  background: var(--mist);
  color: var(--deep);
}

.clean-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(340px, 0.76fr);
  gap: clamp(26px, 6vw, 84px);
  align-items: center;
  min-height: 680px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 244, 237, 0.88)),
    var(--white);
  padding: clamp(30px, 6vw, 70px);
  box-shadow: 0 30px 90px rgba(24, 59, 49, 0.12);
}

.clean-kicker {
  width: fit-content;
  margin: 0 0 16px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--deep);
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.clean-intro h1,
.clean-heading h2,
.clean-included h2,
.book-panel h2 {
  max-width: 720px;
  margin: 0;
  color: var(--deep);
  font-size: clamp(2.6rem, 5.1vw, 5.2rem);
  line-height: 0.98;
  font-weight: 900;
}

.clean-intro p:not(.clean-kicker),
.clean-heading p,
.clean-included p,
.book-panel p {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.clean-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.clean-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.clean-button:hover {
  transform: translateY(-2px);
}

.clean-button.primary {
  background: var(--leaf);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(44, 138, 104, 0.22);
}

.clean-button.secondary {
  background: var(--white);
  color: var(--deep);
  box-shadow: inset 0 0 0 1px var(--line);
}

.clean-visual {
  position: relative;
  align-self: stretch;
  min-height: 520px;
}

.clean-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 46% 46% 26px 26px;
  object-fit: cover;
  object-position: 58% center;
  box-shadow: 0 28px 74px rgba(24, 59, 49, 0.16);
}

.clean-booking-card {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: min(280px, 82%);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(24, 59, 49, 0.18);
  padding: 20px;
  backdrop-filter: blur(12px);
}

.clean-booking-card span {
  color: var(--leaf);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.clean-booking-card strong {
  display: block;
  margin-top: 6px;
  color: var(--deep);
  font-size: 2.3rem;
  line-height: 1;
}

.clean-booking-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.clean-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.clean-trust span {
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(24, 59, 49, 0.08);
  padding: 9px 14px;
  color: var(--deep);
  font-size: 0.88rem;
  font-weight: 900;
}

.clean-plans,
.clean-routine,
.clean-included,
.clean-checklist,
.clean-review-band,
.clean-book {
  margin-top: 24px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 80px rgba(24, 59, 49, 0.1);
  padding: clamp(32px, 6vw, 68px);
}

.clean-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.clean-heading h2,
.clean-included h2,
.book-panel h2 {
  font-size: clamp(2rem, 4vw, 3.9rem);
}

.plan-ribbon {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.plan-ribbon article {
  flex: 1;
  border-radius: 30px;
  background: #f8fcf8;
  padding: 24px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.plan-ribbon .featured {
  flex: 1.18;
  background: var(--deep);
  color: var(--white);
  transform: translateY(-10px);
}

.plan-ribbon span,
.included-list span {
  color: var(--leaf);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-ribbon .featured span {
  color: var(--sun);
}

.plan-ribbon h3 {
  margin: 12px 0 0;
  color: inherit;
  font-size: 1.25rem;
}

.plan-ribbon strong {
  display: block;
  margin-top: 14px;
  color: var(--leaf);
  font-size: 2.1rem;
  line-height: 1;
}

.plan-ribbon .featured strong,
.plan-ribbon .featured p {
  color: rgba(255, 255, 255, 0.86);
}

.plan-ribbon p {
  margin: 12px 0 0;
  color: var(--muted);
}

.clean-routine {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  margin-top: 24px;
  border-radius: 44px 18px 44px 18px;
  background:
    radial-gradient(circle at 18% 12%, rgba(232, 191, 103, 0.2), transparent 28%),
    var(--white);
  box-shadow: 0 24px 80px rgba(24, 59, 49, 0.1);
  padding: clamp(32px, 6vw, 68px);
}

.routine-copy h2,
.checklist-card h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 0.98;
  font-weight: 900;
}

.routine-copy p:not(.clean-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
}

.routine-steps {
  display: grid;
  gap: 14px;
}

.routine-steps article {
  border-radius: 999px;
  background: var(--mist);
  padding: 18px 22px;
}

.routine-steps span,
.room-grid span {
  color: var(--leaf);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.routine-steps strong {
  display: block;
  margin-top: 5px;
  color: var(--deep);
}

.clean-included {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
}

.included-list {
  display: grid;
  gap: 12px;
}

.included-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 0 0 16px;
}

.clean-checklist {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 62px);
  margin-top: 24px;
  border-radius: 18px 46px 18px 46px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 80px rgba(24, 59, 49, 0.1);
  padding: clamp(32px, 6vw, 68px);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.room-grid article {
  border-radius: 24px;
  background: #f4fbf6;
  padding: 20px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.room-grid p {
  margin: 9px 0 0;
  color: var(--muted);
}

.clean-review-band {
  margin-top: 24px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(231, 244, 237, 0.9)),
    var(--white);
  box-shadow: 0 24px 80px rgba(24, 59, 49, 0.1);
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
}

.clean-review-band blockquote {
  max-width: 820px;
  margin: 0 auto;
  color: var(--deep);
  font-size: clamp(1.6rem, 3.6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
}

.clean-review-band p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
}

.included-list strong {
  color: var(--deep);
}

.included-list p {
  margin: 0;
  color: var(--muted);
}

.clean-book {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(14, 91, 72, 0.96), rgba(44, 138, 104, 0.94)),
    var(--deep);
  color: var(--white);
}

.clean-book .clean-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.book-panel h2 {
  color: var(--white);
}

.book-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.clean-form {
  display: grid;
  gap: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  padding: 22px;
}

.clean-form label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 900;
}

.clean-form input,
.clean-form select,
.clean-form textarea {
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  padding: 12px;
}

.clean-form textarea {
  resize: vertical;
}

.clean-form .clean-button {
  width: 100%;
  background: var(--white);
  color: var(--deep);
}

.clean-note {
  margin-top: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  padding: 18px;
  color: var(--muted);
}

.clean-note strong {
  color: var(--deep);
}

.clean-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding: 24px 0;
  color: var(--muted);
}

.clean-footer a {
  color: var(--deep);
  font-weight: 900;
}

@media (max-width: 900px) {
  .clean-hero,
  .clean-routine,
  .clean-included,
  .clean-checklist,
  .clean-book {
    grid-template-columns: 1fr;
  }

  .plan-ribbon {
    display: grid;
  }

  .plan-ribbon .featured {
    transform: none;
  }
}

@media (max-width: 620px) {
  .clean-nav {
    align-items: flex-start;
  }

  .clean-nav nav a:not(:last-child) {
    display: none;
  }

  .clean-hero,
  .clean-plans,
  .clean-routine,
  .clean-included,
  .clean-checklist,
  .clean-review-band,
  .clean-book {
    border-radius: 24px;
    padding: 26px 16px;
  }

  .clean-intro h1 {
    font-size: clamp(2.2rem, 10.8vw, 3rem);
  }

  .clean-actions .clean-button {
    width: 100%;
  }

  .clean-visual,
  .clean-visual img {
    min-height: 390px;
  }

  .clean-booking-card {
    right: 10px;
    bottom: 10px;
  }

  .included-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .room-grid {
    grid-template-columns: 1fr;
  }

  .clean-footer {
    display: grid;
  }
}
