:root {
  --ink: #22201f;
  --muted: #716a64;
  --line: #ded7cf;
  --paper: #fffaf5;
  --rose: #c65f72;
  --rose-dark: #8f364d;
  --sage: #66786a;
  --gold: #b88745;
  --cream: #fff4e8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(56, 43, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 250, 245, 0.9);
  border-bottom: 1px solid rgba(222, 215, 207, 0.8);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-dark);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: var(--rose-dark);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 54px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 32, 31, 0.74), rgba(34, 32, 31, 0.24) 52%, rgba(34, 32, 31, 0.1)),
    linear-gradient(0deg, rgba(255, 250, 245, 0.22), rgba(255, 250, 245, 0));
  z-index: -1;
}

.hero-content {
  width: min(640px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 90px);
  padding-block: 72px 118px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.booking-copy h2,
.location-heading h2,
.confirmation h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(54px, 9vw, 104px);
}

.hero-copy {
  max-width: 520px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.primary-action,
.pay-button,
.confirmation button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--rose);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  padding: 0 22px;
  box-shadow: 0 12px 30px rgba(143, 54, 77, 0.24);
}

.primary-action:hover,
.pay-button:hover,
.confirmation button:hover {
  background: var(--rose-dark);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  margin-top: -56px;
  position: relative;
  z-index: 2;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.intro div {
  display: grid;
  gap: 4px;
  min-height: 112px;
  align-content: center;
  padding: 22px;
  background: var(--white);
}

.intro strong {
  color: var(--rose-dark);
  font-size: 28px;
}

.intro span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.section-heading h2,
.booking-copy h2,
.location-heading h2,
.confirmation h2 {
  font-size: clamp(34px, 5vw, 56px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.category-filters button {
  flex: 0 0 auto;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  padding: 0 14px;
}

.category-filters button.is-active {
  border-color: var(--rose);
  background: rgba(198, 95, 114, 0.1);
  color: var(--rose-dark);
}

.service-card {
  display: grid;
  gap: 16px;
  align-content: space-between;
  min-width: 0;
  min-height: 206px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.service-card.is-selected {
  border-color: rgba(198, 95, 114, 0.62);
  box-shadow: 0 0 0 3px rgba(198, 95, 114, 0.12);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  overflow-wrap: anywhere;
}

.service-image-frame {
  width: 100%;
  max-width: 100%;
  height: 210px;
  border-radius: 8px;
  margin: 12px 0;
  background: var(--cream);
  overflow: hidden;
}

.service-image {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--sage);
  font-size: 14px;
  font-weight: 800;
}

.service-category {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card button {
  min-height: 42px;
  border: 1px solid var(--rose);
  border-radius: 8px;
  background: var(--white);
  color: var(--rose-dark);
  cursor: pointer;
  font-weight: 800;
}

.service-card.is-selected button {
  background: var(--rose-dark);
  color: var(--white);
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: 80px clamp(18px, 6vw, 82px);
  background: #f3e5dc;
  border-block: 1px solid var(--line);
}

.booking-copy {
  position: sticky;
  top: 92px;
}

.booking-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.booking-panel {
  display: grid;
  gap: 22px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 12px;
  font-weight: 800;
}

.selected-list {
  display: grid;
  gap: 10px;
  min-height: 46px;
}

.selected-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.selected-item div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.selected-item span,
.selected-item small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-item span {
  color: var(--ink);
}

.selected-item small {
  color: var(--muted);
  font-size: 12px;
}

.selected-item strong {
  color: var(--rose-dark);
}

.selected-item button,
.cart-link {
  min-height: 34px;
  border: 1px solid rgba(198, 95, 114, 0.55);
  border-radius: 8px;
  background: var(--white);
  color: var(--rose-dark);
  cursor: pointer;
  font-weight: 800;
  padding: 0 12px;
}

.selected-item button:hover,
.cart-link:hover {
  border-color: var(--rose-dark);
  background: rgba(198, 95, 114, 0.1);
}

.cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cart-link {
  width: 100%;
}

.cart-link.danger {
  border-color: rgba(143, 54, 77, 0.35);
  color: var(--muted);
}

.empty-state {
  padding: 12px 14px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.field-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.field-note.error {
  color: var(--rose-dark);
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0 12px;
}

input:focus,
select:focus {
  outline: 3px solid rgba(198, 95, 114, 0.16);
  border-color: var(--rose);
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.payment-options label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  color: var(--ink);
}

.payment-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-options label:has(input:checked) {
  border-color: var(--rose);
  background: rgba(198, 95, 114, 0.1);
  color: var(--rose-dark);
}

.payment-details {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.payment-details > div {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 12px;
}

.payment-details p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.scanner-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.scanner-card img {
  display: block;
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.scanner-card p {
  padding: 0;
  background: transparent;
}

.payment-details code {
  color: var(--rose-dark);
  font-family: inherit;
  font-weight: 800;
}

.payment-details [hidden] {
  display: none;
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.total-row strong {
  color: var(--rose-dark);
  font-size: 26px;
}

.pay-button {
  width: 100%;
  min-height: 52px;
  font-size: 16px;
}

.confirmation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.confirmation[hidden] {
  display: none;
}

.confirmation p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.notification-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.notification-actions[hidden] {
  display: none;
}

.notification-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rose);
  border-radius: 8px;
  background: var(--white);
  color: var(--rose-dark);
  font-weight: 800;
  padding: 0 16px;
}

.notification-actions a:first-child {
  border-color: #25d366;
  background: #25d366;
  color: var(--ink);
}

.notification-status {
  max-width: 720px;
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.notification-status.success {
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.12);
  color: #12592e;
}

.notification-status.error {
  border-color: rgba(198, 95, 114, 0.55);
  background: rgba(198, 95, 114, 0.1);
  color: var(--rose-dark);
}

.location-section {
  width: min(1220px, calc(100% - 36px));
  padding-top: 82px;
}

.location-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 54px;
  text-align: center;
}

.location-heading h2 {
  color: var(--rose-dark);
}

.location-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 7vw, 120px);
  width: min(760px, 100%);
  margin: 0 auto 34px;
}

.location-contact div {
  display: grid;
  gap: 4px;
}

.location-contact strong {
  font-size: 18px;
}

.location-contact a {
  width: fit-content;
  color: var(--rose-dark);
  font-size: 18px;
  font-weight: 800;
}

.location-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-showcase > img,
.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.location-showcase > img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.map-panel {
  position: relative;
  min-height: 520px;
}

.map-caption {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  gap: 4px;
  max-width: min(330px, calc(100% - 32px));
  padding: 12px 14px;
  border: 1px solid rgba(222, 215, 207, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(34, 32, 31, 0.16);
}

.map-caption strong {
  color: var(--ink);
}

.map-caption span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.map-action {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--rose-dark);
  color: var(--white);
  font-weight: 800;
  padding: 0 16px;
  box-shadow: 0 12px 30px rgba(34, 32, 31, 0.22);
}

.map-action:hover {
  background: var(--rose);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.contact-line {
  width: fit-content;
}

.contact-line:hover {
  color: #ffd1db;
}

.site-footer .social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--white);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-icon span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.social-icon.instagram {
  background: #b73b6a;
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.whatsapp {
  background: #25d366;
}

.social-icon.whatsapp svg path:first-child,
.social-icon.facebook svg {
  fill: currentColor;
  stroke: none;
}

.social-icon.whatsapp svg path:last-child {
  fill: var(--ink);
  stroke: none;
}

.legal-page {
  min-height: calc(100vh - 203px);
  background:
    linear-gradient(180deg, rgba(243, 229, 220, 0.74), rgba(255, 250, 245, 0) 360px),
    var(--paper);
}

.legal-hero {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0 26px;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1;
}

.legal-content {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 76px;
}

.legal-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 17px;
}

.legal-card p {
  margin: 0;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer,
  .section-heading,
  .confirmation {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    position: static;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-block: 72px 108px;
  }

  .intro,
  .service-grid,
  .location-showcase,
  .booking-band {
    grid-template-columns: 1fr;
  }

  .service-image-frame {
    height: 260px;
  }

  .booking-copy {
    position: static;
  }

  .location-showcase,
  .location-showcase > img,
  .map-panel,
  .map-panel iframe {
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(34, 32, 31, 0.78), rgba(34, 32, 31, 0.42));
  }

  .intro {
    margin-top: -40px;
  }

  .form-grid,
  .payment-options,
  .payment-details > div,
  .scanner-card,
  .selected-item,
  .cart-actions,
  .location-contact {
    grid-template-columns: 1fr;
  }

  .selected-item strong,
  .selected-item button {
    justify-self: start;
  }

  .booking-band {
    padding-inline: 18px;
  }

  .service-card {
    padding: 16px;
  }

  .service-image-frame {
    height: 220px;
  }

  .location-heading {
    margin-bottom: 32px;
  }

  .location-showcase,
  .location-showcase > img,
  .map-panel,
  .map-panel iframe {
    min-height: 320px;
  }

  .map-action {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .map-caption {
    top: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
