/* =========================================================
   Caroline Hoy Massage — "Elevated Wellness" design system
   ========================================================= */

:root{
  /* ---- palette: deep botanical sage + warm terracotta on parchment ---- */
  --cream:      #F7F1E4;
  --cream-alt:  #EDE2CB;
  --paper:      #FFFCF5;
  --ink:        #232F26;      /* deep botanical green-black — headings, dark sections */
  --ink-2:      #1B2420;      /* darkest — footer */
  --ink-soft:   #5B5A4C;      /* body copy on light */
  --sage:       #7E8F72;      /* mid sage accent */
  --sage-dim:   #A9B79C;
  --sage-pale:  #DCE3CE;      /* pale sage — blob washes */
  --terracotta: #C1663C;
  --terracotta-dark:#9E4F2B;
  --gold:       #D2A64F;
  --cream-on-dark: #F3EEDF;
  --line:       rgba(35,47,38,.13);
  --line-strong:rgba(35,47,38,.24);
  --line-on-dark: rgba(243,238,223,.16);
  --shadow-sm:  0 2px 14px rgba(35,47,38,.07);
  --shadow-md:  0 16px 40px rgba(35,47,38,.14);
  --shadow-lg:  0 30px 70px rgba(35,47,38,.20);
  --radius-sm:  10px;
  --radius-md:  20px;
  --radius-lg:  32px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:  'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h:   84px;
  --container:  1200px;
  --blob-1: 63% 37% 54% 46% / 43% 47% 53% 57%;
  --blob-2: 46% 54% 61% 39% / 51% 45% 55% 49%;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* subtle grain texture over the whole page for warmth/depth */
body::before{
  content: "";
  position: fixed; inset: 0; z-index: 2000; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1{ font-size: clamp(2.6rem, 4.6vw + 1rem, 4.6rem); font-weight: 600; }
h1 em, h2 em{ font-style: italic; font-weight: 500; color: var(--terracotta); }
h2{ font-size: clamp(2rem, 2.6vw + 1rem, 2.9rem); }
h3{ font-size: clamp(1.2rem, 1vw + 1rem, 1.45rem); font-weight: 600; }

p{ margin: 0 0 1em; }
a{ color: inherit; }
ul{ margin: 0; padding: 0; list-style: none; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.eyebrow{
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--terracotta-dark);
  margin: 0 0 1em;
}
.eyebrow::before{
  content: ""; width: 22px; height: 1px; background: var(--terracotta);
}
.dark-section .eyebrow{ color: var(--gold); }
.dark-section .eyebrow::before{ background: var(--gold); }

.section{ padding: clamp(64px, 9vw, 120px) 0; position: relative; overflow: clip; }
.section-alt{ background: var(--cream-alt); }
.dark-section{ background: var(--ink); color: var(--cream-on-dark); }
.dark-section h2, .dark-section h3{ color: var(--cream-on-dark); }
.dark-section .section-lead{ color: rgba(243,238,223,.72); }

.section-head{ max-width: 700px; margin: 0 0 3.2rem; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-lead{ color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: 1em 2.1em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  position: relative;
}
.btn:hover{ transform: translateY(-2px); }
.btn:focus-visible{ outline: 3px solid var(--terracotta); outline-offset: 3px; }
.btn-primary{ background: var(--terracotta); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--terracotta-dark); box-shadow: var(--shadow-md); }
.btn-ghost{ background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover{ background: var(--paper); border-color: var(--terracotta); }
.dark-section .btn-ghost{ border-color: var(--line-on-dark); color: var(--cream-on-dark); }
.dark-section .btn-ghost:hover{ background: rgba(243,238,223,.08); border-color: var(--gold); }
.btn-small{ padding: .65em 1.5em; font-size: .9rem; }
.btn-arrow{ transition: transform .25s ease; }
.btn:hover .btn-arrow{ transform: translateX(3px); }

/* ---------- skip link ---------- */
.skip-link{
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 1em 1.4em; z-index: 2100; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

/* =========================================================
   Header
   ========================================================= */
.site-header{
  position: sticky; top: 0; z-index: 500;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-header::before{
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(247,241,228,.86);
  backdrop-filter: blur(12px) saturate(140%);
  transition: background .3s ease;
}
.site-header.scrolled{ box-shadow: var(--shadow-sm); }
.site-header.scrolled::before{ background: rgba(247,241,228,.97); }

.header-inner{
  display: flex; align-items: center; gap: 1.5rem;
  height: var(--header-h);
}
.brand{ display: flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; line-height: 1.15; }
.brand-mark{
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--sage), var(--terracotta));
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); font-family: var(--font-display); font-style: italic; font-size: 1.1rem;
}
.brand-text{ display: flex; flex-direction: column; }
.brand-name{ font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; color: var(--ink); }
.brand-tag{ font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

.nav ul{ display: flex; gap: 1.9rem; }
.nav a{
  text-decoration: none; font-size: .95rem; font-weight: 600; color: var(--ink);
  position: relative; padding: .3em 0;
}
.nav a::after{
  content:""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 2px;
  background: var(--terracotta); transition: right .25s ease;
}
.nav a:hover::after, .nav a.active::after{ right: 0; }
.nav a.active{ color: var(--terracotta-dark); }

.header-cta{ flex: none; }

.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 10px;
  background: var(--paper); cursor: pointer; flex: none;
}
.nav-toggle span{ height: 2px; width: 22px; margin: 0 auto; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Decorative blobs / organic shapes
   ========================================================= */
.blob-frame{
  border-radius: var(--blob-1);
  overflow: hidden;
  transition: border-radius .6s ease;
  box-shadow: var(--shadow-lg);
}
.blob-frame:hover{ border-radius: var(--blob-2); }
.blob-frame img{ width: 100%; height: 100%; object-fit: cover; }

.blob-wash{
  position: absolute; border-radius: 50% 45% 55% 50% / 50% 55% 45% 50%;
  filter: blur(2px); z-index: -1; pointer-events: none;
}

.dot-field{
  position: absolute; z-index: -1; pointer-events: none; opacity: .55;
}

/* =========================================================
   Hero
   ========================================================= */
.hero{ padding: clamp(52px, 7vw, 96px) 0 clamp(40px, 6vw, 70px); position: relative; overflow: clip; }
.hero::before{
  content: ""; position: absolute; top: -12%; right: -8%; width: 46vw; height: 46vw; max-width: 640px; max-height: 640px;
  background: radial-gradient(circle at 50% 50%, var(--sage-pale) 0%, rgba(220,227,206,0) 70%);
  border-radius: 50%; z-index: -1; pointer-events: none;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
}
.hero-copy{ position: relative; }
.hero-squiggle{ position: absolute; left: -46px; top: -18px; width: 90px; height: 60px; opacity: .8; z-index: -1; }
h1.hero-title{ position: relative; }
.hero-lead{ font-size: 1.16rem; color: var(--ink-soft); max-width: 46ch; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.9rem 0 2.3rem; }
.hero-badge{
  display: inline-flex; align-items: center; gap: .9rem;
  background: var(--paper); border: 1px solid var(--line);
  padding: .7em 1.3em .7em .8em; border-radius: 999px; box-shadow: var(--shadow-sm);
  font-size: .88rem; font-weight: 600; color: var(--ink);
}
.hero-badge img{ height: 28px; width: auto; }

.hero-media{ position: relative; }
.hero-media .blob-frame{ position: relative; z-index: 1; }
.hero-media .blob-frame{
  width: 100%; height: clamp(340px, 42vw, 540px);
  transform: rotate(-1.2deg);
}
.hero-media .blob-frame img{ transform: scale(1.02); }
.hero-media .blob-frame.hero-blob{
  height: auto; aspect-ratio: 1000 / 916; max-height: 640px;
}
.hero-media .blob-frame.hero-blob img{ transform: none; object-position: center 30%; }
.hero-media-note{
  position: absolute; right: -14px; bottom: -26px; z-index: 2;
  background: var(--paper); color: var(--ink);
  padding: .85em 1.4em .85em 1.1em; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  display: flex; align-items: center; gap: .75em; line-height: 1.3;
  transform: rotate(2deg);
}
.hero-google-g{ flex: none; width: 28px; height: 28px; }
.hero-google-text{ display: flex; flex-direction: column; }
.hero-google-stars{ color: #F9AB00; font-size: .8rem; letter-spacing: .1em; margin-bottom: .1em; }
.hero-media-note strong{ font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.hero-media-tag{
  position: absolute; left: -16px; top: 10%; max-width: 168px; z-index: 2;
  background: var(--terracotta); color: var(--paper);
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1rem; line-height: 1.3; padding: 1em 1.3em; border-radius: 26px 26px 26px 6px;
  box-shadow: var(--shadow-md); transform: rotate(-6deg);
}

/* =========================================================
   Marquee ticker
   ========================================================= */
.marquee{
  background: var(--ink); color: var(--cream-on-dark);
  padding: 1.1rem 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(243,238,223,.1); border-bottom: 1px solid rgba(243,238,223,.1);
}
.marquee-track{
  display: inline-flex; gap: 3rem; animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track{ animation-play-state: paused; }
.marquee-track span{
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
  display: inline-flex; align-items: center; gap: 3rem; color: var(--cream-on-dark);
}
.marquee-track span::after{ content: "✦"; font-style: normal; color: var(--gold); margin-left: 3rem; }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation: none; overflow-x: auto; } }

/* =========================================================
   Divider waves
   ========================================================= */
.divider{ display: block; line-height: 0; margin: 0; }
.divider svg{ display: block; width: 100%; height: clamp(36px, 6vw, 84px); }

/* =========================================================
   About
   ========================================================= */
.about-grid{
  display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.about-media{ position: relative; }
.about-media .blob-frame{ aspect-ratio: 3/4; }
.about-media .blob-frame img{ object-fit: cover; }
.stat-card{
  position: absolute; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  padding: 1.1em 1.3em; text-align: center; min-width: 118px;
}
.stat-card .stat-num{ display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--terracotta); line-height: 1; }
.stat-card .stat-label{ display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-top: .4em; }
.stat-card--1{ top: -8%; right: -12%; transform: rotate(-4deg); }
.stat-card--2{ bottom: -6%; left: -14%; transform: rotate(3deg); }

.credentials{ margin: 1.6rem 0; display: grid; gap: .65rem; }
.credentials li{
  position: relative; padding-left: 1.7em; color: var(--ink-soft); font-weight: 500;
}
.credentials li::before{
  content:"✦"; position: absolute; left: 0; top: -.05em; color: var(--terracotta); font-size: .85em;
}
.about-quote{
  font-family: var(--font-display); font-style: italic; font-size: 1.4rem;
  color: var(--ink); border-left: 3px solid var(--terracotta);
  padding-left: 1em; margin-top: 1.7rem;
}

/* =========================================================
   Services & pricing
   ========================================================= */
.price-strip{
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 3.2rem;
}
.price-strip > div{
  text-align: center; padding: 1.9em 1em; display: flex; flex-direction: column; gap: .4em;
  border-right: 1px solid var(--line); position: relative;
}
.price-strip > div:last-child{ border-right: none; }
.price-time{ text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: var(--ink-soft); font-weight: 700; }
.price-amount{ font-family: var(--font-display); font-size: clamp(1.9rem,3vw,2.5rem); font-weight: 600; color: var(--terracotta); }

.service-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.7rem;
}
.service-card{
  display: block; text-decoration: none; color: inherit;
  background: var(--paper); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.service-card:hover{ transform: translateY(-7px); box-shadow: var(--shadow-md); }
.service-card-media{ position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-card-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-media img{ transform: scale(1.06); }
.card-index{
  position: absolute; top: .9em; left: .9em; z-index: 2;
  font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: .95rem;
  background: rgba(247,241,228,.9); color: var(--terracotta-dark);
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.service-card-body{ padding: 1.4em 1.5em 1.6em; }
.service-card-body h3{ margin-bottom: .3em; }
.service-card-body p{ margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* =========================================================
   Treatment room gallery
   ========================================================= */
.room-gallery{ display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.6rem; align-items: center; }
.room-gallery .blob-frame:first-child{ height: clamp(300px, 34vw, 460px); }
.room-gallery .blob-frame:last-child{ height: clamp(240px, 26vw, 360px); }

/* =========================================================
   Detail (zig-zag) sections
   ========================================================= */
.detail-block{ position: relative; }
.detail-grid{
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,5vw,4.5rem); align-items: center;
}
.detail-reverse .detail-media{ order: 2; }
.detail-reverse .detail-copy{ order: 1; }
.detail-media{ position: relative; }
.detail-media .blob-frame{ width: 100%; aspect-ratio: 4/5; }
.detail-media .blob-frame.workplace-blob{ aspect-ratio: 937/793; }
.detail-media .blob-frame.facial-blob{ aspect-ratio: 1000/672; }
.detail-media .blob-frame.sports-blob{ aspect-ratio: 1000/645; }
.detail-media .blob-frame.pregnancy-blob{ aspect-ratio: 1000/639; }
.detail-media .blob-frame.hotstone-blob{ aspect-ratio: 891/556; }
.detail-media .blob-frame.thai-blob{ aspect-ratio: 1000/623; }
.detail-number{
  position: absolute; top: -.5em; right: 4%; z-index: -1;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(6rem, 12vw, 10rem);
  color: var(--sage-pale); line-height: 1; user-select: none;
}
.detail-reverse .detail-number{ right: auto; left: 4%; }
.detail-copy p{ color: var(--ink-soft); }
.detail-callout{
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--terracotta);
  border-radius: var(--radius-sm); padding: 1.5em 1.7em; margin-top: 1.5rem;
}
.detail-callout h3{ margin-bottom: .4em; color: var(--ink); }
.detail-callout p{ margin: 0; }

/* =========================================================
   Further details / example cards
   ========================================================= */
.example-grid{ display: grid; grid-template-columns: repeat(3,1fr); gap: 1.7rem; }
.example-card{
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.9em 1.8em; box-shadow: var(--shadow-sm); position: relative;
}
.example-time{
  display: inline-block; font-family: var(--font-display); font-style: italic; font-weight: 600; color: var(--terracotta);
  font-size: 1.35rem; margin-bottom: .8em;
}
.example-card ul{ display: grid; gap: .6em; }
.example-card li{
  position: relative; padding-left: 1.3em; color: var(--ink-soft); font-size: .95rem;
}
.example-card li::before{ content:"—"; position: absolute; left: 0; color: var(--terracotta); }

/* =========================================================
   Reviews widget (dark section)
   ========================================================= */
.gr-widget{ max-width: 1000px; margin: 0 auto; }
.gr-header{ display: flex; align-items: center; justify-content: center; gap: .7rem; margin-bottom: 2rem; }
.gr-google-logo{ background: var(--paper); border-radius: 50%; padding: 3px; }
.gr-stars{ color: var(--gold); letter-spacing: .1em; font-size: 1rem; line-height: 1; }
.gr-count{ font-size: .85rem; color: rgba(243,238,223,.7); margin-top: .15em; }

.gr-viewport{ display: flex; align-items: stretch; gap: .8rem; }
.gr-track{
  flex: 1; display: flex; gap: 1.3rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: .3rem .1rem 1rem;
}
.gr-track::-webkit-scrollbar{ height: 8px; }
.gr-track::-webkit-scrollbar-thumb{ background: var(--line-on-dark); border-radius: 8px; }
.gr-track::-webkit-scrollbar-track{ background: transparent; }

.gr-card{
  flex: 0 0 min(340px, 82vw); scroll-snap-align: start;
  background: rgba(243,238,223,.06); backdrop-filter: blur(6px);
  border: 1px solid var(--line-on-dark); border-radius: var(--radius-md);
  padding: 1.6em 1.7em; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .7em;
}
.gr-card-head{ display: flex; align-items: center; gap: .8em; }
.gr-avatar{ width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: var(--sage-pale); }
.gr-name{ font-weight: 700; font-size: .95rem; color: var(--cream-on-dark); }
.gr-card-stars{ color: var(--gold); font-size: .85rem; letter-spacing: .08em; }
.gr-date{ font-size: .76rem; color: rgba(243,238,223,.55); }
.gr-text{ font-size: .93rem; color: rgba(243,238,223,.85); line-height: 1.6; margin: 0; }

.gr-arrow{
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-on-dark); background: transparent; color: var(--cream-on-dark);
  font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  align-self: center; transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.gr-arrow:hover{ background: var(--terracotta); color: var(--paper); border-color: var(--terracotta); }
.gr-arrow:disabled{ opacity: .3; cursor: default; }
.gr-arrow:disabled:hover{ background: transparent; color: var(--cream-on-dark); }

.gr-dots{ display: flex; justify-content: center; gap: .5rem; margin-top: .6rem; }
.gr-dot{
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
  background: var(--line-on-dark); cursor: pointer;
}
.gr-dot[aria-current="true"]{ background: var(--gold); width: 22px; border-radius: 6px; transition: width .2s ease; }

.gr-actions{ display: flex; justify-content: center; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }

.gr-skeleton{ display: flex; gap: 1.3rem; width: 100%; }
.gr-skel-card{
  flex: 0 0 min(340px, 82vw); height: 170px; border-radius: var(--radius-md);
  background: linear-gradient(100deg, rgba(243,238,223,.05) 30%, rgba(243,238,223,.12) 50%, rgba(243,238,223,.05) 70%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite;
}
@keyframes shimmer{ from{ background-position: 200% 0; } to{ background-position: -200% 0; } }

.gr-empty{ text-align: center; color: rgba(243,238,223,.7); padding: 2rem 1rem; }

/* =========================================================
   FAQ accordion
   ========================================================= */
.accordion{ max-width: 800px; margin: 0 auto; display: grid; gap: 1rem; }
.accordion-item{
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden;
}
.accordion-item h3{ margin: 0; }
.accordion-trigger{
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--ink);
  padding: 1.25em 1.6em; display: flex; align-items: center; justify-content: space-between; gap: 1em;
}
.accordion-icon{
  flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.accordion-icon::before, .accordion-icon::after{
  content: ""; position: absolute; background: var(--terracotta); transition: transform .3s ease;
}
.accordion-icon::before{ width: 10px; height: 1.5px; }
.accordion-icon::after{ width: 1.5px; height: 10px; }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after{ transform: scaleY(0); }
.accordion-panel{
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease;
}
.accordion-panel > div{ overflow: hidden; }
.accordion-item.open .accordion-panel{ grid-template-rows: 1fr; }
.accordion-panel-inner{ padding: 0 1.6em 1.5em; color: var(--ink-soft); }
.accordion-panel-inner ul{ display: grid; gap: .6em; }
.accordion-panel-inner li{ position: relative; padding-left: 1.3em; font-size: .96rem; }
.accordion-panel-inner li::before{ content:"—"; position: absolute; left: 0; color: var(--terracotta); }
.accordion-panel-inner p{ margin: 0; font-size: .96rem; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: stretch; }
.contact-list{ margin: 1.9rem 0; display: grid; gap: 1.15rem; }
.contact-list dt{ font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--terracotta-dark); font-weight: 700; margin-bottom: .2em; }
.contact-list dd{ margin: 0; font-size: 1.12rem; }
.contact-list a{ text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.contact-list a:hover{ border-color: var(--terracotta); color: var(--terracotta-dark); }

.social-box{
  display: inline-flex; align-items: center; gap: 1.2rem;
  border: 1px solid var(--line-strong); border-radius: 999px; padding: .7em 1.6em;
}
.social-box > span{ text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; font-weight: 700; color: var(--ink-soft); }
.social-box a{
  display: inline-flex; align-items: center; gap: .5em; text-decoration: none;
  color: var(--ink); border: 1px solid var(--line-strong); border-radius: 999px; padding: .4em .9em .4em .6em;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.social-box a:hover{ background: var(--terracotta); color: var(--paper); border-color: var(--terracotta); }

.contact-map{ border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 320px; border: 6px solid var(--paper); }
.contact-map iframe{ width: 100%; height: 100%; min-height: 308px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{ background: var(--ink-2); color: var(--cream-on-dark); padding: 3.2rem 0 2rem; }
.footer-inner{
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.8rem;
  border-bottom: 1px solid rgba(243,238,223,.14); padding-bottom: 2.2rem; margin-bottom: 1.4rem;
}
.footer-brand{ display: flex; align-items: center; gap: .7rem; }
.footer-brand .brand-mark{ background: linear-gradient(135deg, var(--sage), var(--terracotta)); }
.footer-brand .brand-text{ display: flex; flex-direction: column; }
.footer-brand .brand-name{ color: var(--cream-on-dark); }
.footer-brand .brand-tag{ color: rgba(243,238,223,.6); }
.footer-nav{ display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-nav a{ text-decoration: none; color: rgba(243,238,223,.82); font-size: .92rem; }
.footer-nav a:hover{ color: var(--gold); }
.footer-meta{ display: flex; align-items: center; gap: 1rem; }
.footer-meta img{ filter: grayscale(1) brightness(2.6); opacity: .8; }
.footer-meta p{ margin: 0; font-size: .82rem; color: rgba(243,238,223,.55); }

/* =========================================================
   Back to top
   ========================================================= */
.back-to-top{
  position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--terracotta); color: var(--paper); display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.2rem; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .25s ease; z-index: 400;
}
.back-to-top:hover{ background: var(--terracotta-dark); }
.back-to-top.visible{ opacity: 1; transform: translateY(0); pointer-events: auto; }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal{ opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view{ transition-delay: .08s; }
.reveal-delay-2.in-view{ transition-delay: .16s; }

/* =========================================================
   Focus visibility
   ========================================================= */
a:focus-visible, button:focus-visible, iframe:focus-visible{
  outline: 3px solid var(--terracotta); outline-offset: 2px; border-radius: 4px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-media{ order: -1; max-width: 460px; margin: 0 auto; }
  .hero-squiggle{ display: none; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-media{ max-width: 380px; margin: 0 auto 2.5rem; }
  .detail-grid{ grid-template-columns: 1fr; }
  .detail-reverse .detail-media, .detail-reverse .detail-copy{ order: initial; }
  .detail-media .blob-frame{ aspect-ratio: 16/10; }
  .detail-number{ display: none; }
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
  .example-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-map{ min-height: 280px; }
  .room-gallery{ grid-template-columns: 1fr; }
  .room-gallery .blob-frame:last-child{ height: clamp(240px, 40vw, 360px); }
}

@media (max-width: 760px){
  :root{ --header-h: 72px; }
  .nav{
    position: fixed; inset: 72px 0 0 0; background: var(--cream);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transform: translateX(100%); transition: transform .3s ease; z-index: 400;
  }
  .nav.open{ transform: translateX(0); }
  .nav ul{ flex-direction: column; align-items: center; gap: 2rem; }
  .nav a{ font-size: 1.4rem; font-family: var(--font-display); }
  .nav-toggle{ display: flex; }
  .header-cta{ display: none; }
  .price-strip{ grid-template-columns: 1fr; }
  .price-strip > div{ border-right: none; border-bottom: 1px solid var(--line); }
  .price-strip > div:last-child{ border-bottom: none; }
  .service-grid{ grid-template-columns: 1fr; }
  .stat-card{ position: static; margin-top: 1rem; display: inline-block; transform: none !important; }
  .footer-inner{ flex-direction: column; align-items: flex-start; }
  .hero-media-tag{ display: none; }
}

@media (max-width: 480px){
  body{ font-size: 16px; }
  .hero-badge{ flex-wrap: wrap; }
}
