:root {
  --bg: #fcfbf8;
  --paper: #ffffff;
  --surface: #f6f1e8;
  --surface-strong: #ede5d8;
  --text: #25231f;
  --muted: #6f6b64;
  --soft: #8b857a;
  --line: #ded8cf;
  --line-strong: #cfc7bb;
  --sage: #9b4466;
  --sage-dark: #74304b;
  --sage-soft: #f5e8ee;
  --blush: #ead7d5;
  --blush-text: #9a5e64;
  --honey: #b9822f;
  --danger: #a84545;
  --success: #7f4660;
  --shadow: 0 18px 55px rgba(46, 37, 25, 0.08);
  --radius: 8px;
  --max: 1640px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--sage-dark);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  background: rgba(251, 250, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 36px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
  line-height: 1;
  color: var(--sage-dark);
  letter-spacing: 0;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 26px);
  color: #383530;
  font-size: 0.91rem;
}

.main-nav a {
  position: relative;
  padding: 25px 0 22px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: transparent;
}

.main-nav a[aria-current="page"]::after,
.main-nav a:hover::after {
  background: var(--sage);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--sage);
  border-radius: 6px;
  background: var(--sage);
  color: #fff;
  padding: 0 22px;
  font-weight: 650;
  font-size: 0.94rem;
  box-shadow: 0 12px 30px rgba(155, 68, 102, 0.2);
}

.button:hover,
.nav-cta:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.button.secondary {
  color: var(--sage-dark);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.button.secondary:hover {
  color: var(--text);
  background: transparent;
}

.page {
  min-height: calc(100vh - 78px);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(38px, 4.7vw, 66px) 0;
}

.section.tight {
  padding-top: 22px;
}

.section.compact {
  padding-top: 34px;
  padding-bottom: 34px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
  width: min(var(--max), calc(100% - 36px));
  min-height: min(640px, calc(100vh - 96px));
  max-height: none;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.hero.hero-v2 {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: min(650px, calc(100vh - 86px));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.5vw, 54px) clamp(20px, 3vw, 46px) clamp(34px, 4vw, 58px) 0;
}

.hero h1,
.page-title h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  color: #211f1b;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(2.5rem, 3.2vw, 3.7rem);
}

.hero p,
.page-title p,
.section-heading p {
  color: var(--muted);
  margin: 20px 0 0;
  max-width: 620px;
}

.page-title p {
  margin-left: auto;
  margin-right: auto;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 660px;
  margin-top: 24px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-trust span {
  display: grid;
  min-height: 64px;
  align-content: center;
  gap: 2px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-trust strong {
  color: var(--text);
  font-size: 1rem;
}

.next-slots {
  display: grid;
  gap: 12px;
  max-width: 660px;
  margin-top: 24px;
}

.next-slot-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.next-slot-card {
  display: grid;
  min-height: 64px;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  padding: 13px 14px;
  color: var(--muted);
  font-size: 0.84rem;
}

.next-slot-card strong {
  color: var(--sage-dark);
  font-size: 1rem;
}

.next-slot-card span {
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.hero-image {
  min-height: 430px;
  align-self: stretch;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.hero-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-strip {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.proof-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 112px;
  padding: 24px 22px;
  background: var(--bg);
}

.asset-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.proof-item svg,
.contact-line svg,
.summary-row svg,
.care-list svg {
  color: var(--sage);
  flex: 0 0 auto;
}

.proof-item strong,
.contact-line strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.35;
}

.proof-item span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
  font-size: 0.93rem;
  line-height: 1.45;
}

.page-title {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 3.6vw, 48px) 0 12px;
  text-align: center;
}

.page-title h1 {
  font-size: clamp(2.55rem, 4.7vw, 4.4rem);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(2.05rem, 3.4vw, 3.55rem);
}

.two-column,
.contact-grid,
.booking-grid {
  display: grid;
  gap: 28px;
}

.two-column {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.text-panel {
  padding-right: clamp(0px, 4vw, 48px);
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.care-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.care-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--muted);
}

.care-list strong {
  display: block;
  color: var(--text);
}

.image-panel {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process.four {
  grid-template-columns: repeat(4, 1fr);
}

.booking-flow .process-step {
  min-height: 148px;
}

.process-step,
.form-panel,
.info-panel,
.calendar-panel,
.slot-panel,
.summary-panel,
.price-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.process-step {
  padding: 24px;
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--sage-dark);
  background: var(--sage-soft);
  font-weight: 700;
}

.process-step h3,
.form-panel h2,
.info-panel h2,
.calendar-panel h2,
.slot-panel h2,
.summary-panel h2,
.price-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
  max-width: 1500px;
  margin: 0 auto;
}

.price-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.price-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--sage-dark);
  padding: 0 16px;
  font-weight: 650;
}

.price-tabs button.is-selected {
  color: #fff;
  background: var(--sage);
  border-color: var(--sage);
}

.price-panel[hidden] {
  display: none;
}

.price-panel {
  overflow: hidden;
}

.price-panel h2 {
  padding: 22px 24px;
  text-align: center;
}

.price-panel.women h2 {
  background: rgba(234, 215, 213, 0.75);
  color: var(--blush-text);
}

.price-panel.men h2 {
  background: rgba(245, 232, 238, 0.95);
  color: var(--sage-dark);
}

.price-list {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.price-group-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.price-group-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-group-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-group {
  min-width: 0;
  background: rgba(255, 255, 255, 0.9);
}

.price-group h3 {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.price-group-items {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.price-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.92);
}

.price-copy {
  min-width: 0;
}

.price-copy strong,
.price-copy span,
.price-copy small {
  display: block;
}

.price-copy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.price-copy small {
  margin-top: 7px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 750;
}

.price-meta {
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 8px;
  color: var(--muted);
  white-space: nowrap;
}

.price-values {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 12px;
}

.price-meta strong {
  color: var(--text);
  font-size: 1.02rem;
}

.row-action {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--sage-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.row-action:hover {
  border-color: var(--sage);
  background: var(--sage-soft);
}

.price-note {
  margin: 22px 0 0;
  color: var(--soft);
  text-align: center;
}

.booking-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 1fr) minmax(0, 0.82fr);
  align-items: start;
  gap: clamp(22px, 2.6vw, 38px);
}

.booking-grid.upgraded {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr) minmax(300px, 0.72fr);
}

.calendar-panel,
.slot-panel,
.summary-panel,
.form-panel,
.info-panel {
  padding: clamp(22px, 1.8vw, 30px);
}

.field-group {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.address-grid {
  display: grid;
  grid-template-columns: minmax(90px, 0.45fr) minmax(0, 1fr);
  gap: 10px;
}

.address-grid input:first-child {
  grid-column: 1 / -1;
}

label {
  color: #464139;
  font-size: 0.92rem;
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 142px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(155, 68, 102, 0.16);
}

.helper {
  color: var(--muted);
  font-size: 0.88rem;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 22px 0 16px;
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--sage-dark);
  font-weight: 700;
}

.month-label {
  font-weight: 700;
  color: var(--text);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.weekday,
.day-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.weekday {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.day-button {
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
}

.day-button:hover:not(:disabled),
.day-button.is-selected {
  background: var(--sage);
  color: #fff;
}

.day-button.is-today:not(.is-selected) {
  border-color: var(--sage);
}

.day-button:disabled {
  color: #c8c0b6;
  cursor: not-allowed;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.slot-button {
  min-height: 43px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
}

.range-button {
  display: grid;
  min-height: 82px;
  align-content: center;
  gap: 4px;
  padding: 12px;
  text-align: left;
}

.range-button span {
  color: var(--muted);
  font-size: 0.84rem;
}

.range-button.is-selected span {
  color: rgba(255, 255, 255, 0.84);
}

.slot-button:hover:not(:disabled),
.slot-button.is-selected {
  color: #fff;
  background: var(--sage);
  border-color: var(--sage);
}

.slot-button:disabled {
  color: #a9a197;
  background: #f6f3ef;
  border-color: #e6ded4;
  cursor: not-allowed;
  text-decoration: none;
  opacity: 0.72;
}

.summary-panel {
  position: sticky;
  top: 104px;
}

.summary-list {
  display: grid;
  gap: 17px;
  margin: 22px 0;
}

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

.summary-row,
.contact-line {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.summary-row strong {
  display: block;
  color: var(--text);
}

.summary-hint {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(245, 243, 239, 0.68);
  color: var(--muted);
  font-size: 0.88rem;
}

.summary-hint strong {
  color: var(--text);
}

.summary-hints-inline {
  display: grid;
  gap: 10px;
}

.booking-info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.booking-info-strip article {
  display: grid;
  gap: 6px;
  min-height: 92px;
  align-content: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.78);
}

.booking-info-strip strong {
  color: var(--text);
}

.booking-info-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.smart-note {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(245, 232, 238, 0.58);
}

.smart-note .next-slot-list {
  grid-template-columns: 1fr;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.status-message {
  display: none;
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 6px;
  font-weight: 650;
}

.status-message.is-visible {
  display: block;
}

.status-message.success {
  color: var(--success);
  background: rgba(155, 68, 102, 0.12);
}

.status-message.error {
  color: var(--danger);
  background: rgba(168, 69, 69, 0.1);
}

.whatsapp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.whatsapp-actions .button {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 0.9rem;
}

.whatsapp-button {
  background: #1f7a52;
  border-color: #1f7a52;
}

.whatsapp-button:hover {
  background: #17623f;
  border-color: #17623f;
}

.whatsapp-copy {
  border-color: rgba(47, 80, 60, 0.18);
}

.booking-after {
  margin-top: 16px;
}

.booking-after[hidden],
[hidden] {
  display: none !important;
}

.contact-grid {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.08fr);
  align-items: start;
  gap: clamp(18px, 2.4vw, 34px);
  max-width: 1540px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(170px, 0.55fr) minmax(230px, 0.82fr) minmax(260px, 0.7fr);
  align-items: stretch;
  min-height: 500px;
}

.contact-photo {
  min-height: 500px;
}

.map-card {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--surface);
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  align-self: center;
  margin-left: -50px;
  padding: clamp(26px, 2.2vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.contact-lines {
  display: grid;
  gap: 17px;
  margin-top: 22px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  padding: 0 12px;
  font-size: 0.88rem;
  font-weight: 750;
}

.social-links a:hover {
  border-color: var(--sage);
  background: rgba(155, 68, 102, 0.12);
}

.form-actions {
  margin-top: 24px;
}

.band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quiet-band {
  background:
    linear-gradient(90deg, rgba(245, 232, 238, 0.9), rgba(246, 241, 232, 0.7)),
    var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid,
.trust-grid,
.package-grid,
.legal-grid,
.legal-content,
.admin-grid {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.brand-strip {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) repeat(2, minmax(240px, 0.75fr));
  gap: 20px;
}

.trust-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.package-grid,
.legal-grid {
  grid-template-columns: repeat(3, 1fr);
}

.legal-content {
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.feature,
.brand-card,
.testimonial,
.review-cta,
.legal-card,
.admin-panel,
.waitlist-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  padding: clamp(22px, 2.2vw, 32px);
}

.waitlist-details summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--text);
}

.waitlist-details summary::-webkit-details-marker {
  display: none;
}

.waitlist-details summary::after {
  content: "+";
  float: right;
  color: var(--sage);
  font-family: var(--sans);
  font-weight: 700;
}

.waitlist-details[open] summary::after {
  content: "−";
}

.feature h3,
.brand-card h3,
.testimonial h3,
.review-cta h3,
.legal-card h2,
.legal-card h3,
.waitlist-panel h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
}

.feature p,
.brand-card p,
.testimonial p,
.review-cta p,
.legal-card p {
  margin: 0;
  color: var(--muted);
}

.legal-card p + p {
  margin-top: 10px;
}

.brand-card.text-only {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fine-label {
  display: block;
  color: var(--honey);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.star-line {
  color: var(--honey);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.launch-note,
.launch-helper,
.contact-trust {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(246, 241, 232, 0.72);
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-trust strong,
.contact-trust span {
  display: block;
}

.contact-trust strong {
  color: var(--text);
}

.info-intro {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.price-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(420px, 0.8fr);
  gap: 28px;
  align-items: end;
  max-width: 1260px;
  margin: 0 auto 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(100deg, rgba(245, 232, 238, 0.86), rgba(255, 255, 255, 0.82)),
    var(--surface);
}

.price-intro h2 {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  font-weight: 400;
  line-height: 1.08;
}

.price-intro p {
  margin: 0;
  color: var(--muted);
}

.feature-asset,
.mini-asset,
.wide-asset,
.timeline-asset {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  object-fit: cover;
}

.feature-asset {
  height: 158px;
  margin-bottom: 18px;
}

.mini-asset {
  height: 92px;
  margin-bottom: 16px;
}

.wide-asset {
  height: 118px;
  margin-bottom: 18px;
  object-fit: contain;
}

.timeline-asset {
  max-width: 760px;
  height: 120px;
  margin: -8px auto 22px;
  object-fit: contain;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 0 20px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 750;
}

.faq-list p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.timeline article {
  padding: 24px;
  background: #fff;
}

.timeline h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 400;
}

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

.mobile-cta {
  display: none;
}

.admin-panel h2 {
  display: flex;
  justify-content: space-between;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-weight: 400;
}

.admin-panel h2 span {
  color: var(--sage);
  font-family: var(--sans);
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-list article {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 0.88rem;
}

.admin-list span {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
}

.admin-list strong {
  color: var(--muted);
  font-size: 0.76rem;
}

.admin-status {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.admin-status select {
  padding: 9px 10px;
}

.match-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.copy-chip {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  padding: 0 10px;
  font-weight: 700;
  font-size: 0.78rem;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.mobile-only {
  display: none;
}

.compact-title {
  padding-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1fr);
  gap: clamp(24px, 3vw, 46px);
  align-items: stretch;
  max-width: 1380px;
  margin: 0 auto;
}

.about-photo {
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(28px, 3.2vw, 54px);
}

.about-panel h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: 1.08;
}

.about-panel p {
  max-width: 680px;
  color: var(--muted);
}

.about-panel .role {
  margin-top: 8px;
  color: var(--sage-dark);
  font-weight: 700;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.about-values article {
  min-height: 150px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.84);
}

.about-values h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 400;
}

.about-values p {
  margin: 0;
  color: var(--muted);
}

.inline-link {
  width: fit-content;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: auto;
    padding: 20px 0;
    flex-wrap: wrap;
  }

  .brand {
    width: 100%;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .main-nav a {
    padding: 8px 0 10px;
    white-space: nowrap;
  }

  .main-nav a::after {
    bottom: 2px;
  }

  .hero,
  .two-column,
  .about-grid,
  .booking-grid,
  .contact-grid,
  .contact-layout,
  .booking-grid.upgraded,
  .trust-grid,
  .brand-strip,
  .price-intro {
    grid-template-columns: 1fr;
  }

  .hero.hero-v2 {
    grid-template-columns: 1fr;
  }

  .hero {
    max-height: none;
    min-height: auto;
  }

  .hero-copy {
    padding: clamp(42px, 8vw, 64px) 0 clamp(34px, 7vw, 54px);
  }

  .hero-image {
    border-left: 0;
    min-height: 360px;
  }

  .proof-strip,
  .process,
  .process.four,
  .price-grid,
  .price-group-grid.three,
  .feature-grid,
  .package-grid,
  .legal-grid,
  .timeline,
  .admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary-panel {
    position: static;
  }

  .booking-info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-photo {
    min-height: 430px;
  }

  .about-photo {
    min-height: 430px;
  }

  .map-card {
    min-height: 260px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .info-card {
    margin: -90px 22px 0;
  }
}

@media (max-width: 680px) {
  .nav-wrap,
  .section,
  .hero,
  .proof-strip,
  .page-title,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .nav-cta {
    width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9.4vw, 2.78rem);
    line-height: 1.13;
    overflow-wrap: anywhere;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .next-slot-list {
    grid-template-columns: 1fr;
  }

  .next-slot-list .next-slot-card:nth-child(n + 2) {
    display: none;
  }

  .hero-image,
  .desktop-rich {
    display: none;
  }

  .hero p {
    margin-top: 18px;
  }

  .hero-actions {
    gap: 14px 18px;
    margin-top: 24px;
  }

  .hero-actions .button {
    min-height: 44px;
  }

  .hero-actions .button.secondary {
    flex: 1 1 150px;
    justify-content: flex-start;
  }

  .proof-strip,
  .process,
  .process.four,
  .price-grid,
  .price-group-grid.three,
  .price-group-grid.two,
  .field-row,
  .address-grid,
  .range-grid,
  .feature-grid,
  .brand-strip,
  .price-intro,
  .package-grid,
  .legal-grid,
  .timeline,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

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

  .summary-pair {
    grid-template-columns: 1fr;
  }

  .booking-info-strip {
    grid-template-columns: 1fr;
  }

  .page-title {
    padding-top: 38px;
  }

  .page-title h1 {
    font-size: clamp(2.7rem, 12vw, 3.45rem);
  }

  .price-item {
    grid-template-columns: 1fr;
    gap: 11px;
    min-height: auto;
    padding: 14px;
  }

  .price-copy span {
    display: block;
    margin-top: 4px;
    font-size: 0.82rem;
    line-height: 1.34;
  }

  .price-meta {
    justify-items: stretch;
    gap: 10px;
  }

  .price-values {
    justify-content: space-between;
  }

  .row-action {
    padding: 0 8px;
    font-size: 0.78rem;
    width: 100%;
  }

  .calendar-panel,
  .slot-panel,
  .summary-panel,
  .form-panel,
  .info-panel {
    padding: 20px;
  }

  textarea {
    min-height: 128px;
  }

  .info-card {
    margin-left: 0;
    margin-right: 0;
  }

  .brand-card.text-only {
    display: block;
  }

  .brand-section {
    display: none;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .price-intro {
    padding: 18px;
  }

  .feature-asset {
    height: 135px;
  }

  .timeline-asset {
    height: 96px;
    margin-top: 0;
  }

  .mobile-cta {
    position: sticky;
    bottom: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(251, 250, 248, 0.96);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line);
    color: var(--sage-dark);
    font-size: 0.86rem;
    font-weight: 750;
  }
}
