:root {
  --bg: #f8f3ee;
  --surface: rgba(255, 252, 247, 0.82);
  --surface-strong: rgba(255, 250, 244, 0.96);
  --text: #25160f;
  --muted: #6c5243;
  --line: rgba(60, 31, 16, 0.12);
  --brand: #9f5c36;
  --brand-strong: #7f421f;
  --success: #1f6b4f;
  --shadow: 0 24px 60px rgba(83, 44, 21, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 177, 141, 0.34), transparent 28%),
    radial-gradient(circle at top right, rgba(159, 92, 54, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf7f2 0%, #f5eee7 100%);
  min-height: 100vh;
}

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

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

.site-shell {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(248, 243, 238, 0.78);
  border-bottom: 1px solid rgba(37, 22, 15, 0.06);
}

.header-row,
.footer-card,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-row {
  padding: 18px 0;
  flex-wrap: wrap;
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), transparent 38%),
    linear-gradient(145deg, #c68456 0%, #7a3d1d 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(76, 37, 17, 0.24);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-mark-logo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.88;
}

.brand-mark-logo strong {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.brand-mark-logo span {
  font-size: 0.42rem;
  letter-spacing: 0.32em;
  margin-left: 0.28em;
  opacity: 0.88;
}

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

.brand-copy span,
p,
.site-nav a,
label span,
.feature-list {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 160ms ease, background-color 160ms ease;
  cursor: pointer;
}

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

.button-primary {
  background: var(--brand);
  color: #fff;
}

.button-primary:hover {
  background: var(--brand-strong);
}

.button-secondary {
  background: rgba(255, 248, 241, 0.92);
  border-color: rgba(129, 65, 31, 0.22);
  color: var(--text);
}

.hero,
.split,
.contact-layout,
.info-strip,
.service-grid,
.service-area-grid,
.field-row {
  display: grid;
  gap: 24px;
}

.hero {
  grid-template-columns: 1fr;
  padding: 56px 0 28px;
}

.split {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.hero-panel,
.panel,
.contact-layout form,
.contact-details,
.service-card,
.service-area-grid article,
.info-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.hero-panel,
.panel,
.contact-layout form,
.contact-details,
.service-card,
.service-area-grid article,
.info-tile {
  padding: 28px;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(28, 17, 12, 0.56), rgba(28, 17, 12, 0.18)),
    url("/images/hero-spa.jpg");
  background-size: cover;
  background-position: center;
  min-height: 560px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  min-height: 500px;
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: min(100%, 760px);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.18), rgba(255, 248, 239, 0.72) 58%, rgba(255, 248, 239, 0.94) 100%);
  z-index: -1;
}

.hero-lead {
  max-width: 700px;
  font-size: 1.05rem;
}

.hero-content .button {
  white-space: nowrap;
}

.booking-meta {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.booking-meta div {
  padding: 14px 0;
  border-top: 1px solid rgba(91, 58, 39, 0.1);
}

.booking-meta strong,
.info-tile strong {
  display: block;
  margin-bottom: 6px;
}

.booking-button {
  width: 100%;
  margin-top: 12px;
}

.booking-modal[hidden] {
  display: none;
}

.floating-enquiry {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 30;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(67, 37, 19, 0.2);
}

.floating-enquiry:hover {
  background: var(--brand-strong);
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 16, 12, 0.52);
  backdrop-filter: blur(6px);
}

.booking-dialog {
  position: relative;
  width: min(560px, calc(100% - 24px));
  margin: 6vh auto;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 251, 246, 0.98);
  border: 1px solid rgba(91, 58, 39, 0.12);
  box-shadow: 0 28px 60px rgba(43, 22, 12, 0.24);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(159, 92, 54, 0.12);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-actions {
  margin-top: 20px;
}

.modal-form {
  margin-top: 18px;
}

.modal-form label {
  display: block;
  margin-bottom: 14px;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.84);
  border: 1px solid rgba(95, 61, 41, 0.12);
  color: var(--brand-strong);
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}

.location-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(159, 92, 54, 0.14);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand);
  font-size: 0.74rem;
  margin: 0 0 16px;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  max-width: 12ch;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  line-height: 1.7;
  margin: 0 0 16px;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 16px;
  margin-top: 22px;
}

.info-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 12px;
}

.info-tile {
  padding: 22px 24px;
  background: rgba(255, 250, 244, 0.84);
}

.feature-split {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.image-panel {
  min-height: 320px;
  padding: 0;
  overflow: hidden;
}

.massage-scene {
  display: flex;
  background:
    linear-gradient(135deg, rgba(34, 20, 12, 0.18), rgba(34, 20, 12, 0.06)),
    url("/images/massage-service.jpg");
  background-size: cover;
  background-position: center 35%;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-list {
  margin: 6px 0 0;
  padding-left: 18px;
}

.feature-list li {
  margin-bottom: 10px;
}

.service-grid,
.service-area-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card ul {
  padding-left: 18px;
}

.service-card li {
  margin-bottom: 10px;
}

.section {
  padding: 34px 0;
}

.section-head {
  align-items: end;
  margin-bottom: 24px;
}

.page-hero {
  padding: 52px 0 14px;
}

.contact-page {
  width: min(1480px, calc(100% - 32px));
}

.about-page {
  width: min(1480px, calc(100% - 32px));
}

.contact-page .page-hero .panel,
.contact-page .contact-layout form,
.contact-page .contact-details {
  width: 100%;
}

.about-page .page-hero .panel {
  width: 100%;
  min-height: auto;
}

.contact-page .contact-layout {
  grid-template-columns: 1.35fr 0.65fr;
  align-items: start;
}

.contact-page .page-hero .panel {
  min-height: auto;
}

.about-page .page-hero {
  padding: 22px 0 10px;
}

.about-hero-panel {
  padding: 26px 28px;
}

.about-hero-panel h1 {
  max-width: 980px;
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  line-height: 0.98;
}

.about-hero-panel p:last-child {
  max-width: 1180px;
  font-size: 1.02rem;
}

.contact-page .page-hero {
  padding: 22px 0 10px;
}

.contact-hero-panel {
  padding: 26px 28px;
}

.contact-hero-panel h1 {
  max-width: 920px;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  line-height: 0.98;
}

.contact-hero-panel p:last-child {
  max-width: 1100px;
  font-size: 1.02rem;
}

.field-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: block;
  margin-bottom: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(95, 61, 41, 0.16);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
}

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

.muted-box {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 241, 0.8);
  border: 1px solid rgba(95, 61, 41, 0.12);
}

.notice {
  min-height: 24px;
}

.notice.success {
  color: var(--success);
}

.notice.error {
  color: #a53824;
}

.site-footer {
  padding: 34px 0 40px;
}

.footer-card {
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 245, 0.74);
}

.hidden {
  position: absolute;
  left: -9999px;
}

.error-page {
  width: min(680px, calc(100% - 32px));
  margin: 80px auto;
  padding: 38px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .split,
  .contact-layout,
  .service-grid,
  .service-area-grid,
  .field-row,
  .info-strip {
    grid-template-columns: 1fr;
  }

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

  .section-head,
  .footer-card,
  .header-row {
    align-items: start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .contact-page {
    width: min(1480px, calc(100% - 20px));
  }

  .about-page {
    width: min(1480px, calc(100% - 20px));
  }

  .contact-page .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero-panel h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 7vw, 3.5rem);
  }

  .about-hero-panel h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 7vw, 3.5rem);
  }

  .hero-shell {
    padding: 22px;
    min-height: auto;
    background-position: center;
  }

  .hero-content {
    min-height: auto;
    margin-top: 12px;
    width: 100%;
    padding: 18px;
  }

  .hero-content::before {
    inset: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 8vw, 4rem);
  }

  .hero-lead {
    max-width: 100%;
    font-size: 1rem;
  }

  .floating-enquiry {
    right: 14px;
    bottom: 16px;
    min-height: 44px;
    padding: 0 18px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(var(--container), calc(100% - 20px));
  }

  .brand {
    align-items: flex-start;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy span {
    font-size: 0.92rem;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav .button {
    width: 100%;
  }

  .hero-shell {
    padding: 14px;
    min-height: 440px;
  }

  .hero-content {
    padding: 14px;
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 3rem);
    line-height: 0.98;
  }

  .contact-hero-panel {
    padding: 20px;
  }

  .about-hero-panel {
    padding: 20px;
  }

  .booking-dialog {
    width: min(92vw, 560px);
    margin: 3vh auto;
    padding: 22px;
  }
}
