/* ============================================================
   Hands & Heart Massage
   Palette drawn from Bette's brand: dusty powder blue,
   warm sand/taupe, cream, deep slate-blue text.
   ============================================================ */

:root {
  --blue:        #8fb0c4;   /* dusty powder blue (arch) */
  --blue-deep:   #3f5a6d;   /* deep slate blue (headings/text on flyer) */
  --blue-soft:   #dceaf1;   /* pale blue wash */
  --sand:        #c9bba6;   /* warm taupe */
  --sand-soft:   #efe7db;   /* soft sand */
  --cream:       #f7f2ea;   /* page background */
  --white:       #ffffff;
  --ink:         #3a4750;   /* body text */
  --ink-soft:    #6a747c;   /* muted text */
  --gold:        #e3c07a;   /* warm accent, used sparingly */

  --maxw: 1120px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 40px -24px rgba(63, 90, 109, 0.45);
  --shadow-soft: 0 10px 30px -20px rgba(63, 90, 109, 0.4);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue-deep); }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  color: var(--blue-deep);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

.eyebrow, .section-eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-deep);
  opacity: 0.75;
  margin: 0 0 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); background: #35505f; }
.btn-ghost {
  background: transparent;
  color: var(--blue-deep);
  border: 1.5px solid rgba(63, 90, 109, 0.35);
}
.btn-ghost:hover { background: rgba(63, 90, 109, 0.06); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--blue-deep); box-shadow: var(--shadow-soft); }
.btn-light:hover { background: var(--cream); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 234, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(63, 90, 109, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-mark { display: block; width: 46px; height: 46px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--blue-deep);
}
.brand-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}

.site-nav { display: flex; align-items: center; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--blue-deep); }
.nav-cta {
  background: var(--blue-deep);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
}
.nav-cta:hover { background: #35505f; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  position: relative;
}
.nav-bars, .nav-bars::before, .nav-bars::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px; height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-bars { top: 21px; }
.nav-bars::before { top: -7px; }
.nav-bars::after { top: 7px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-image:
    linear-gradient(rgba(38, 52, 63, 0.58), rgba(38, 52, 63, 0.5)),
    url("../img/hero-bg-2.jpg");
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(5rem, 10vw, 8.5rem);
}
.hero-sky { display: none; }
.hero-inner { position: relative; text-align: center; max-width: 760px; }
.hero-logo {
  display: block;
  width: auto;
  height: clamp(92px, 14vw, 132px);
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}
.hero .eyebrow { color: var(--white); opacity: 0.9; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  margin-bottom: 0.5em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 34em;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.3);
}
.hero-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.hero .btn-primary { background: var(--white); color: var(--blue-deep); }
.hero .btn-primary:hover { background: var(--cream); }
.hero .btn-ghost { border-color: rgba(255, 255, 255, 0.75); color: var(--white); }
.hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }
.hero-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.03em;
  margin: 0;
}

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-head.centered { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-intro { color: var(--ink-soft); font-size: 1.08rem; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.grid-2.reverse .space-text { order: 2; }

/* ---------- About ---------- */
.about { background: var(--white); }
.tick-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.tick-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 0.7rem; height: 0.7rem;
  border-radius: 50%;
  background: var(--blue);
}

/* ---------- Photo frames / placeholders ---------- */
.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sand-soft);
}
.photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.about-photo .photo-frame img { height: auto; }

/* Scale the About photo down to ~80% on desktop only */
@media (min-width: 861px) {
  .about-photo .photo-frame { max-width: 80%; margin: 0 auto; }
}
.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  background:
    repeating-linear-gradient(45deg, rgba(143,176,196,0.10) 0 14px, rgba(143,176,196,0.02) 14px 28px),
    var(--blue-soft);
  color: var(--blue-deep);
  border: 1px dashed rgba(63, 90, 109, 0.3);
}
.photo-placeholder span {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  opacity: 0.75;
}
.photo-placeholder.tall { min-height: 420px; }

/* ---------- Services ---------- */
.services { background: var(--sand-soft); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
}
.card-media {
  height: 168px;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-media img.media-top { object-position: center 15%; }
.card-media-ph {
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, var(--blue-soft), var(--sand-soft));
}
.card-media-ph span { font-size: 2.8rem; line-height: 1; }
.card-text { padding: 1.6rem 1.5rem 1.9rem; display: flex; flex-direction: column; }
.card-tag {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}
.card-feature {
  background: var(--blue-deep);
  color: var(--white);
  transform: translateY(-8px);
}
.card-feature h3, .card-feature .price { color: var(--white); }
.card-feature .card-body { color: rgba(255,255,255,0.85); }
.card-flag {
  position: absolute;
  top: -0.8rem; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--blue-deep);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin: 0.2rem 0 0.8rem;
}
.price-tbc {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0.1rem 0 0.9rem;
}
.card-body { color: var(--ink-soft); margin: 0; }
.services-foot {
  text-align: center;
  margin: 3rem auto 0;
  max-width: 40em;
  color: var(--ink-soft);
}

/* ---------- Pricing ---------- */
.pricing { background: var(--blue-deep); color: var(--white); }
.pricing .section-eyebrow { color: var(--white); opacity: 0.7; }
.pricing h2 { color: var(--white); }
.pricing .section-intro { color: rgba(255, 255, 255, 0.8); }
.price-list { max-width: 620px; margin: 0 auto; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.price-row:first-child { border-top: 1px solid rgba(255, 255, 255, 0.16); }
.pl-name { font-family: var(--serif); font-size: 1.35rem; color: var(--white); }
.pl-note {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.15rem;
}
.pl-price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gold);
  text-align: right;
}
.pl-per {
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
.pricing-foot { text-align: center; margin: 2.4rem auto 0; color: rgba(255, 255, 255, 0.8); }
.pricing-foot a { color: var(--white); }

@media (max-width: 460px) {
  .price-row { flex-direction: column; gap: 0.2rem; }
  .pl-price { text-align: left; }
}

/* ---------- The space ---------- */
.space { background: var(--sand-soft); }
.space-photos { display: grid; gap: 1.2rem; }
.space-photos .photo-frame.tall { height: clamp(300px, 48vw, 460px); }
.space-photos .photo-frame { height: clamp(200px, 32vw, 280px); }

/* ---------- Quote band ---------- */
.band {
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: clamp(4rem, 11vw, 7.5rem) 0;
  text-align: center;
}
.band-inner { max-width: 620px; margin: 0 auto; }
.band-quote {
  font-family: var(--serif);
  font-style: italic;
  color: var(--white);
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  line-height: 1.25;
  margin: 0 0 1.8rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

/* ---------- Visit ---------- */
.visit {
  position: relative;
  color: var(--white);
  background-image:
    linear-gradient(rgba(38, 52, 63, 0.58), rgba(38, 52, 63, 0.66)),
    url("../img/visit-bg-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.visit h2 { color: var(--white); }
.visit-text p { color: rgba(255, 255, 255, 0.9); }
.visit .btn-primary { background: var(--white); color: var(--blue-deep); }
.visit .btn-primary:hover { background: var(--cream); }
.contact-list { list-style: none; padding: 0; margin: 1.6rem 0 2rem; }
.contact-list li {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.2rem;
}
.contact-value {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--white);
  text-decoration: none;
}
a.contact-value:hover { text-decoration: underline; }
.map-frame { min-height: 380px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 3rem;
  align-items: baseline;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-sub { color: rgba(255,255,255,0.7); }
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.95rem;
}
.footer-meta a { color: var(--white); text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }
.footer-fine {
  margin: 0;
  margin-left: auto;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2.reverse .space-text { order: 0; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .card-feature { transform: none; }

  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(63,90,109,0.1);
    padding: 0.5rem 1.25rem 1.25rem;
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.85rem 0; }
  .nav-cta { text-align: center; margin-top: 0.5rem; }
  .site-nav { position: static; }
  .header-inner { position: relative; }

  .footer-fine { margin-left: 0; width: 100%; }
}

@media (max-width: 540px) {
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .brand-name { font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .nav-bars, .nav-bars::before, .nav-bars::after { transition: none; }
}
