:root {
  --paper: #fbf7f1;
  --paper-warm: #f4e9dc;
  --surface: rgb(255 255 255 / 72%);
  --surface-solid: #fffdf8;
  --surface-dark: rgb(47 34 43 / 70%);
  --rose: #b76d63;
  --clay: #8d5c4b;
  --sage: #5f775f;
  --sage-deep: #2f4a3d;
  --plum: #332433;
  --ink: #21191d;
  --muted: #6e625f;
  --line: rgb(78 54 45 / 16%);
  --line-light: rgb(255 255 255 / 42%);
  --gold: #c99e5f;
  --white: #ffffff;
  --shadow: 0 22px 70px rgb(58 37 31 / 14%);
  --shadow-soft: 0 12px 40px rgb(58 37 31 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, #fffaf4 0%, #f7ede2 48%, #edf4ed 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  margin: 0;
  min-width: 320px;
}

body,
button,
input {
  letter-spacing: 0;
}

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

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

h1,
h2,
h3,
h4,
p,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

p,
dd,
blockquote {
  color: var(--muted);
  line-height: 1.7;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px) saturate(170%);
  background: rgb(255 250 244 / 78%);
  border: 1px solid rgb(255 255 255 / 58%);
  border-left: 0;
  border-right: 0;
  box-shadow: 0 10px 32px rgb(61 42 36 / 8%);
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
  padding: 13px 42px;
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.brand img {
  border: 1px solid rgb(255 255 255 / 76%);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgb(58 37 31 / 18%);
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
  margin-top: 1px;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: 7px;
  justify-content: center;
}

.primary-nav a,
.header-call {
  font-size: 14px;
  font-weight: 760;
}

.primary-nav a {
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--plum);
  padding: 10px 13px;
}

.primary-nav a:hover {
  background: rgb(255 255 255 / 60%);
  border-color: var(--line);
}

.header-call,
.hero-actions a:first-child,
.location-grid a,
.site-footer a {
  align-items: center;
  background: var(--plum);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgb(51 36 51 / 18%);
  color: var(--white);
  display: inline-flex;
  font-weight: 820;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
}

.header-call:hover,
.hero-actions a:first-child:hover,
.location-grid a:hover,
.site-footer a:hover {
  background: var(--sage-deep);
}

.eyebrow {
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  align-items: center;
  background-image:
    linear-gradient(90deg, rgb(48 32 42 / 91%), rgb(48 32 42 / 66%), rgb(48 32 42 / 18%)),
    linear-gradient(180deg, rgb(255 248 239 / 0%) 72%, var(--paper) 100%),
    url("images/spa-room.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: 70svh;
  padding: 82px 42px 92px;
  position: relative;
}

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  color: #efc377;
  text-shadow: 0 1px 18px rgb(0 0 0 / 26%);
}

.hero h1 {
  color: var(--white);
  font-size: 68px;
  line-height: 1.04;
  margin-top: 14px;
  max-width: 840px;
  text-shadow: 0 10px 34px rgb(0 0 0 / 24%);
}

.hero p:not(.eyebrow) {
  color: rgb(255 255 255 / 87%);
  font-size: 20px;
  line-height: 1.65;
  margin-top: 24px;
  max-width: 690px;
}

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

.hero-actions a:nth-child(2) {
  align-items: center;
  backdrop-filter: blur(18px) saturate(160%);
  background: rgb(255 255 255 / 13%);
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-weight: 820;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
}

.hero-actions a:nth-child(2):hover {
  background: rgb(255 255 255 / 22%);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-metrics span {
  align-items: center;
  backdrop-filter: blur(18px) saturate(155%);
  background: rgb(255 255 255 / 20%);
  border: 1px solid rgb(255 255 255 / 38%);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgb(0 0 0 / 14%);
  color: rgb(255 255 255 / 88%);
  display: inline-flex;
  font-size: 13px;
  font-weight: 760;
  min-height: 34px;
  padding: 9px 12px;
}

.location-ribbon,
.services-section,
.standards-section,
.reviews-section {
  padding: 88px 42px;
}

.location-ribbon {
  background: linear-gradient(180deg, var(--paper), #fffdf8);
}

.section-heading {
  margin: 0 auto 38px;
  max-width: 850px;
  text-align: center;
}

.section-heading h2,
.story-copy h2,
.review-lead h2,
.site-footer h2 {
  color: var(--plum);
  font-size: 44px;
  line-height: 1.14;
  margin-top: 10px;
}

.section-heading p:not(.eyebrow),
.story-copy p:not(.eyebrow) {
  font-size: 17px;
  margin-top: 14px;
}

.location-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1160px;
}

.location-grid article,
.menu-board section,
.standard-list article,
.review-grid figure {
  backdrop-filter: blur(22px) saturate(150%);
  background: var(--surface);
  border: 1px solid rgb(255 255 255 / 66%);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.location-grid article {
  padding: 26px;
}

.card-label {
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.location-grid h3 {
  color: var(--plum);
  font-size: 24px;
  line-height: 1.2;
  margin-top: 12px;
}

.location-grid p:not(.card-label) {
  margin-top: 8px;
}

.location-grid a {
  margin-top: 22px;
}

.story-section {
  align-items: center;
  background:
    linear-gradient(120deg, rgb(244 233 220 / 92%), rgb(255 253 248 / 92%) 52%, rgb(232 241 231 / 88%)),
    url("images/zen-texture.png");
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  padding: 92px 42px;
}

.story-copy,
.story-image {
  margin-left: auto;
  margin-right: auto;
  max-width: 630px;
}

.story-image {
  background: rgb(255 255 255 / 48%);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 10px;
}

.story-image img {
  aspect-ratio: 1.08;
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
}

.stats {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  padding-top: 22px;
}

.stats dt {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
}

.stats dd {
  font-size: 14px;
  margin-top: 4px;
}

.services-section {
  background: linear-gradient(180deg, #fffdf8, var(--paper-warm));
}

.menu-board {
  display: grid;
  gap: 20px;
  margin: 0 auto;
  max-width: 1120px;
}

.menu-board section {
  padding: 30px;
}

.menu-heading {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.menu-heading span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 0.9;
}

.menu-heading h3 {
  color: var(--plum);
  font-size: 30px;
  line-height: 1.2;
}

.menu-board article {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  padding: 18px 0;
}

.menu-board article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-board h4 {
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.menu-board article p {
  margin-top: 6px;
}

.menu-board strong {
  color: var(--clay);
  font-size: 15px;
  text-align: right;
  white-space: nowrap;
}

.standards-section {
  background:
    linear-gradient(135deg, rgb(51 36 51 / 98%), rgb(47 74 61 / 96%)),
    url("images/zen-texture.png");
}

.standards-section .section-heading h2,
.standards-section .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.standards-section .eyebrow {
  color: #efc377;
}

.standard-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1160px;
}

.standard-list article {
  background: rgb(255 255 255 / 10%);
  border-color: rgb(255 255 255 / 16%);
  min-height: 230px;
  padding: 24px;
}

.standard-list span {
  color: #efc377;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
}

.standard-list h3 {
  color: var(--white);
  font-size: 22px;
  line-height: 1.2;
  margin-top: 24px;
}

.standard-list p {
  color: rgb(255 255 255 / 76%);
  margin-top: 12px;
}

.reviews-section {
  background: linear-gradient(180deg, #f3e4d8, #eef4ed);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
}

.review-lead {
  max-width: 430px;
}

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

.review-grid figure {
  padding: 24px;
}

.review-grid blockquote {
  color: var(--ink);
}

.review-grid figcaption {
  color: var(--sage-deep);
  font-weight: 850;
  margin-top: 18px;
}

.site-footer {
  align-items: center;
  background:
    linear-gradient(135deg, rgb(33 25 29 / 98%), rgb(51 36 51 / 94%)),
    url("images/zen-texture.png");
  color: var(--white);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 48px 42px;
}

.site-footer .eyebrow {
  color: #efc377;
}

.site-footer h2 {
  color: var(--white);
  font-size: 34px;
  max-width: 720px;
}

@media (max-width: 980px) {
  .primary-nav {
    gap: 2px;
  }

  .location-grid,
  .standard-list,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-section,
  .reviews-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 18px;
  }

  .brand img {
    height: 44px;
    width: 44px;
  }

  .brand strong {
    font-size: 21px;
  }

  .primary-nav {
    display: none;
  }

  .header-call {
    min-height: 42px;
    padding: 10px 14px;
  }

  .hero,
  .location-ribbon,
  .story-section,
  .services-section,
  .standards-section,
  .reviews-section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    background-image:
      linear-gradient(90deg, rgb(48 32 42 / 92%), rgb(48 32 42 / 70%)),
      linear-gradient(180deg, rgb(255 248 239 / 0%) 72%, var(--paper) 100%),
      url("images/spa-room.jpg");
    min-height: 70svh;
    padding-bottom: 62px;
    padding-top: 64px;
  }

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

  .hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions a,
  .location-grid a,
  .site-footer a {
    width: 100%;
  }

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

  .section-heading h2,
  .story-copy h2,
  .review-lead h2,
  .site-footer h2 {
    font-size: 34px;
  }

  .location-grid,
  .standard-list,
  .review-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .menu-board section,
  .location-grid article,
  .standard-list article,
  .review-grid figure {
    padding: 20px;
  }

  .menu-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .menu-board article {
    grid-template-columns: 1fr;
  }

  .menu-board strong {
    text-align: left;
    white-space: normal;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}
