:root {
  --bg: #f1ebe0;
  --bg-soft: #f7f2e8;
  --surface: #ffffff;
  --surface-2: #faf7f1;
  --text: #2a241c;
  --muted: #6c6154;
  --line: rgba(74, 58, 39, 0.12);
  --line-strong: rgba(74, 58, 39, 0.20);
  --accent: #9f7b3b;
  --accent-dark: #4b3722;
  --accent-olive: #4f5a32;
  --shadow: 0 18px 60px rgba(36, 25, 12, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f5efe4 0%, var(--bg) 35%, #faf7f1 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: .9; }
img { max-width: 100%; display: block; }
iframe { border: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: .75rem 1rem;
  border-radius: 10px;
  z-index: 1000;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}
.narrow { width: min(calc(100% - 2rem), 860px); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(28, 26, 22, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}
.brand-logo {
  width: 235px;
  max-width: min(52vw, 235px);
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: rgba(255,255,255,.82);
  font-size: .96rem;
}
.header-call {
  white-space: nowrap;
  color: #fff;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}

.hero {
  position: relative;
  padding: 5rem 0 3rem;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(27, 24, 20, 0.88) 0%, rgba(27, 24, 20, 0.68) 42%, rgba(27, 24, 20, 0.44) 100%),
    url('https://cozygreenmassage.com/wp-content/uploads/2018/11/facial-and-beauty-massage.jpg') center/cover no-repeat;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.18));
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow,
.section-kicker,
.panel-label,
.badge {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  font-weight: 700;
}
.eyebrow,
.panel-label { color: #d7bd8a; }
.section-kicker { color: var(--accent); }
.hero h1,
.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .98;
  letter-spacing: -.02em;
  margin: .45rem 0 1rem;
}
.hero h1 { font-size: clamp(3rem, 6vw, 5.5rem); max-width: 10.5ch; }
.section h2 { font-size: clamp(2.25rem, 4.5vw, 3.4rem); max-width: 14ch; }
.hero-text {
  font-size: 1.08rem;
  color: rgba(255,255,255,.85);
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin: 1.6rem 0;
}
.hero-points {
  display: grid;
  gap: .7rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: rgba(255,255,255,.82);
}
.hero-points li {
  position: relative;
  padding-left: 1.4rem;
}
.hero-points li::before {
  content: "";
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: #d7bd8a;
  position: absolute;
  left: 0;
  top: .55rem;
}

.hero-card {
  display: grid;
  gap: 1rem;
}
.hero-panel {
  background: rgba(255,255,255,.10);
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.top-panel { padding: 1.4rem; }
.panel-logo {
  width: min(100%, 300px);
  margin-bottom: .9rem;
}
.panel-copy {
  margin: 0;
  color: rgba(255,255,255,.82) !important;
}
.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.panel-row:first-of-type { border-top: 0; padding-top: .4rem; }
.panel-row span { color: rgba(255,255,255,.72); }

.section { padding: 4.8rem 0; }
.section.alt { background: rgba(255,255,255,.52); border-block: 1px solid rgba(74,58,39,.06); }
.section p { color: var(--muted); font-size: 1.02rem; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.section-intro { max-width: 40ch; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service-card,
.hours-card,
.review-card,
.contact-card,
.booking-form,
.addon-card {
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(36, 25, 12, 0.06);
}
.service-card {
  padding: 1.45rem;
  position: relative;
}
.service-card.featured { border-color: rgba(159,123,59,.32); }
.service-card-wide { grid-column: span 3; }
.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(159,123,59,.12);
  color: var(--accent-dark);
  padding: .45rem .62rem;
  border-radius: 999px;
}
.service-card h3,
.addon-card h4 {
  margin: 0 0 .6rem;
  font-size: 1.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.rate-list {
  display: grid;
  gap: .5rem;
  margin-top: 1rem;
}
.rate-list.two-col {
  grid-template-columns: 1fr 1fr;
  column-gap: 1.25rem;
}
.rate-list div,
.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .72rem 0;
  border-top: 1px solid var(--line);
}
.rate-list div:first-child,
.hours-card div:first-child { border-top: 0; padding-top: 0; }
.rate-list span,
.hours-card span { color: var(--muted); }
.addon-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.addon-card { padding: 1.35rem; }
.addon-card.notice { background: linear-gradient(180deg, rgba(247,242,232,.96), rgba(255,255,255,.96)); }

.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.hours-card { padding: 1.4rem; }

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 1.2rem;
}
.single-review-grid { grid-template-columns: 1fr; }
.review-card { padding: 1.4rem; }
.widget-placeholder {
  background: linear-gradient(180deg, rgba(159,123,59,.07), rgba(255,255,255,.95));
}
.widget-large {
  min-height: 180px;
  display: grid;
  align-content: center;
}

.location-grid { align-items: stretch; }
.map-frame {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(36, 25, 12, 0.05);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; }
.contact-card { padding: 1.35rem; margin: 1rem 0 1.1rem; }
.seo-copy { max-width: 48ch; }

.booking-section { padding-bottom: 7rem; }
.booking-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 2rem;
  align-items: start;
}
.booking-notes {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: .75rem;
  color: var(--muted);
}
.booking-notes li {
  padding-left: 1.35rem;
  position: relative;
}
.booking-notes li::before {
  content: "";
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: .58rem;
}
.booking-form {
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}
.booking-form label {
  display: grid;
  gap: .5rem;
  color: var(--text);
  font-weight: 600;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
input,
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: .95rem 1rem;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(159,123,59,.14);
}
textarea { resize: vertical; }
.hidden { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.20);
}
.btn-outline {
  border-color: rgba(255,255,255,.20);
  color: #fff;
  background: rgba(255,255,255,.06);
}
.btn-full { width: 100%; }
.btn-half { flex: 1 1 50%; }

.site-footer {
  border-top: 1px solid rgba(74,58,39,.08);
  background: rgba(255,255,255,.65);
  padding: 1.4rem 0 6rem;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.credit { margin: 0; }

.mobile-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: .9rem;
  z-index: 24;
  display: none;
  gap: .75rem;
  padding: .7rem;
  border-radius: 18px;
  background: rgba(28, 26, 22, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(36,25,12,.2);
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-call { display: none; }
  .hero-grid,
  .service-grid,
  .split-grid,
  .booking-grid,
  .review-grid,
  .addon-row {
    grid-template-columns: 1fr;
  }
  .service-card-wide { grid-column: auto; }
  .hero { padding-top: 3.6rem; }
  .section-head { display: block; }
  .section-intro { max-width: none; }
  .rate-list.two-col { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container,
  .narrow { width: min(calc(100% - 1.2rem), var(--container)); }
  .brand-logo { max-width: 180px; }
  .hero h1 { max-width: none; }
  .section h2 { max-width: none; }
  .hero-actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 7.4rem; }
  .mobile-cta { display: flex; }
}

#reviews {
  padding-top: 80px;
  padding-bottom: 80px;
}

#reviews h2,
#reviews p {
  text-align: center;
}

.reviews-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.service-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.8;
}

.service-list li + li {
  margin-top: 6px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}