/* Design philosophy: Waterside Sanctuary — client-provided imagery and wording only. */

/* Design philosophy: Waterside Sanctuary — Tideglass current lines guide editorial content while approved client imagery remains the visual focus. */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600;700&display=swap');

:root {
  --ink: #143f43;
  --tideglass: #14727a;
  --aqua: #8bcfd1;
  --mist: #eef8f6;
  --ivory: #fdfcf8;
  --line: rgba(20, 114, 122, 0.24);
  --shade: rgba(10, 48, 52, 0.73);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Comfortaa", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(253, 252, 248, 0.96);
  backdrop-filter: blur(13px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  min-height: 90px;
  margin: 0 auto;
  padding: 12px clamp(20px, 4vw, 52px);
}

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

.brand img { width: min(286px, 52vw); height: auto; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--tideglass);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.menu-toggle.is-open span { opacity: 0; }
.menu-toggle.is-open::before { transform: translateY(5px) rotate(45deg); }
.menu-toggle.is-open::after { transform: translateY(-5px) rotate(-45deg); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.7vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  display: inline-block;
  padding: 10px 0 8px;
  border-bottom: 1px solid transparent;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-bottom-color: var(--tideglass);
  color: var(--tideglass);
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: min(76vh, 720px);
  overflow: hidden;
  background: #dcebe7;
}

.home-hero::after,
.panel::after,
.path-card::after,
.page-banner::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 51, 54, 0.75) 0%, rgba(8, 51, 54, 0.22) 58%, rgba(8, 51, 54, 0.06) 100%);
  content: "";
}

.home-hero > img,
.panel > img,
.path-card > img,
.page-banner > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero .hero-link {
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: min(76vh, 720px);
  padding: clamp(44px, 8vw, 120px) clamp(24px, 8vw, 122px);
}

/* One shared hero banner: three side-by-side client-supplied image panels. */
.service-hero {
  min-height: calc(100svh - 90px);
  background: var(--ivory);
}

.hero-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: calc(100svh - 90px);
}

.hero-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-width: 0;
  min-height: calc(100svh - 90px);
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.52);
}

.hero-panel:last-child { border-right: 0; }

.hero-panel::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 51, 54, 0.08) 14%, rgba(8, 51, 54, 0.84) 100%);
  content: "";
  transition: background 220ms var(--ease-out);
}

.hero-panel > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out);
}

.hero-panel-content {
  width: 100%;
  padding: clamp(26px, 3.4vw, 52px);
}

.hero-panel-title {
  max-width: 480px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 3.45rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.26);
}

.hero-panel-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(0.7rem, 0.9vw, 0.86rem);
  font-weight: 600;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.hero-panel-brief {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(0.68rem, 0.86vw, 0.88rem);
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hero-panel-detail span:not(:last-child)::after {
  margin-left: 14px;
  color: var(--aqua);
  content: "•";
}

.hero-panel:hover::after,
.hero-panel:focus-visible::after {
  background: linear-gradient(180deg, rgba(8, 51, 54, 0.16) 14%, rgba(8, 51, 54, 0.93) 100%);
}

.hero-panel:hover > img,
.hero-panel:focus-visible > img { transform: scale(1.04); }

.hero-panel:hover .hero-panel-detail,
.hero-panel:focus-visible .hero-panel-detail {
  opacity: 1;
  transform: translateY(0);
}

.hero-title,
.panel-title,
.page-title,
.service-title {
  margin: 0;
  font-weight: 700;
}

.hero-title {
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 5.9rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 23px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.learn-more::after {
  width: 40px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 180ms var(--ease-out);
}

.hero-link:hover .learn-more::after,
.panel:hover .learn-more::after,
.path-card:hover .learn-more::after { width: 64px; }

.current-line {
  height: 8px;
  background: var(--aqua);
}

.service-panels { background: var(--ivory); }

.panel {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: clamp(360px, 48vw, 540px);
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 114, 122, 0.16);
}

.panel::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(20, 114, 122, 0.08);
  content: "";
  transition: background 200ms var(--ease-out);
}

.panel:nth-child(even)::after {
  background: linear-gradient(90deg, rgba(8, 51, 54, 0.78) 0%, rgba(8, 51, 54, 0.34) 56%, rgba(8, 51, 54, 0.1) 100%);
}

.panel-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(880px, 100%);
  min-height: clamp(360px, 48vw, 540px);
  padding: clamp(44px, 7vw, 96px) clamp(24px, 8vw, 122px);
}

.panel-title {
  max-width: 730px;
  color: #fff;
  font-size: clamp(2rem, 4.7vw, 4.6rem);
  letter-spacing: -0.045em;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.panel-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  max-width: 690px;
  margin: 19px 0 0;
  color: #fff;
  font-size: clamp(0.75rem, 1.3vw, 0.94rem);
  font-weight: 600;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.panel-detail span:not(:last-child)::after {
  margin-left: 18px;
  color: var(--aqua);
  content: "•";
}

.panel:hover::before,
.panel:focus-visible::before { background: rgba(20, 114, 122, 0.18); }
.panel:hover .panel-detail,
.panel:focus-visible .panel-detail { opacity: 1; transform: translateY(0); }

.page-main { min-height: calc(100vh - 90px); }

.page-banner {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(310px, 42vw, 520px);
  overflow: hidden;
}

.page-banner--light::after {
  background: linear-gradient(90deg, rgba(8, 51, 54, 0.76) 0%, rgba(8, 51, 54, 0.23) 75%, rgba(8, 51, 54, 0.06) 100%);
}

.page-banner-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) clamp(24px, 8vw, 122px);
}

.path-label {
  display: block;
  margin-bottom: 15px;
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-title {
  max-width: 820px;
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 5.3rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.24);
}

.choice-grid,
.service-layout {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(46px, 8vw, 116px) clamp(24px, 8vw, 122px);
}

.choice-grid { display: grid; gap: 18px; }

.path-card {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(285px, 29vw, 394px);
  overflow: hidden;
  background: var(--mist);
}

.path-card::after {
  background: linear-gradient(90deg, rgba(8, 51, 54, 0.78) 0%, rgba(8, 51, 54, 0.30) 70%, rgba(8, 51, 54, 0.08) 100%);
  transition: background 200ms var(--ease-out);
}

.path-card:hover::after,
.path-card:focus-visible::after { background: linear-gradient(90deg, rgba(8, 51, 54, 0.88) 0%, rgba(8, 51, 54, 0.44) 70%, rgba(8, 51, 54, 0.16) 100%); }

.path-card-content { padding: clamp(30px, 5vw, 56px); }

.path-card h2 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.service-layout { padding-top: clamp(34px, 6vw, 84px); }

.service-list { border-top: 1px solid var(--line); }

.service-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: baseline;
  min-height: 118px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-title {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.8vw, 2.45rem);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 26px;
  color: var(--tideglass);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: right;
}

.service-description {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: -4px 0 0;
  color: var(--ink);
  font-size: clamp(0.9rem, 1.35vw, 1.05rem);
  font-weight: 500;
  line-height: 1.65;
}

.service-item--only { grid-template-columns: 1fr; }

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--tideglass);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-back::before { width: 30px; height: 1px; background: currentColor; content: ""; }

.copy-section {
  background: var(--ivory);
}

.copy-section--aqua { background: #dff5f4; }

.copy-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(30px, 7vw, 104px);
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 118px) clamp(24px, 8vw, 122px);
}

.copy-inner--single { grid-template-columns: 1fr; }

.copy-heading {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3.1vw, 3.55rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.copy-body {
  max-width: 790px;
  color: var(--ink);
  font-size: clamp(0.96rem, 1.55vw, 1.17rem);
  font-weight: 500;
  line-height: 1.72;
}

.copy-body p { margin: 0 0 1.25em; }
.copy-body p:last-child { margin-bottom: 0; }

.copy-quote {
  max-width: 920px;
  margin: 0;
  color: var(--tideglass);
  font-size: clamp(1.35rem, 3.1vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.12;
}

.copy-attribution {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-section { background: #eaf7f5; }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 118px) clamp(24px, 8vw, 122px);
  background: rgba(20, 114, 122, 0.22);
}

.guide-intro,
.guide-column,
.guide-facts {
  padding: clamp(26px, 4vw, 52px);
  background: #f8fcfb;
}

.guide-intro { grid-column: 1 / -1; }

.guide-heading {
  margin: 0 0 20px;
  color: var(--tideglass);
  font-size: clamp(1.25rem, 2.7vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.guide-column h3,
.guide-facts h3 {
  margin: 0 0 17px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.guide-column p,
.guide-facts li {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
}

.guide-facts { grid-column: 1 / -1; }
.guide-facts ul { margin: 0; padding-left: 20px; }
.guide-facts li + li { margin-top: 9px; }

.content-stack {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 104px) clamp(24px, 8vw, 122px);
}

.content-stack > * + * { margin-top: clamp(38px, 6vw, 80px); }

.section-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--tideglass);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-title {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.7vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

.service-group { border-top: 1px solid var(--line); }

.service-group-heading {
  margin: 0;
  padding: 26px 0 14px;
  color: var(--tideglass);
  font-size: clamp(1.18rem, 2.4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 15px 36px;
  padding: 27px 0 30px;
  border-top: 1px solid var(--line);
}

.service-card:last-child { border-bottom: 1px solid var(--line); }

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.service-card p {
  grid-column: 1 / -1;
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.9rem, 1.32vw, 1.05rem);
  font-weight: 500;
  line-height: 1.65;
}

.service-card .service-meta { align-self: center; }

.testimonial-section { background: #0b373c; }

.testimonial-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 118px) clamp(24px, 8vw, 122px);
}

.testimonial-section .section-kicker,
.testimonial-section .section-title { color: #fff; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(32px, 5vw, 65px);
  background: rgba(139, 207, 209, 0.31);
}

.testimonial {
  min-height: 230px;
  padding: clamp(26px, 4vw, 44px);
  background: #113f44;
}

.testimonial p {
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  font-weight: 500;
  line-height: 1.6;
}

.testimonial cite {
  display: block;
  margin-top: 23px;
  color: var(--aqua);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-list { border-top: 1px solid var(--line); }

.faq-list details {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
}

.faq-list details > div {
  max-width: 950px;
  padding-top: 17px;
  color: var(--ink);
  font-size: clamp(0.9rem, 1.34vw, 1.04rem);
  font-weight: 500;
  line-height: 1.68;
}

.faq-list ul { margin: 13px 0 0; padding-left: 22px; }
.faq-list li + li { margin-top: 7px; }

.event-list {
  display: grid;
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
}

.event-list > div { padding: 25px; background: #f8fcfb; }
.event-list h3 { margin: 0; color: var(--ink); font-size: 1.45rem; font-weight: 700; }

.video-section { background: var(--ivory); }

.video-wrap {
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 92px) clamp(24px, 8vw, 122px);
}

.video-wrap video {
  display: block;
  width: 100%;
  background: #0d3337;
}

.site-footer {
  border-top: 1px solid rgba(139, 207, 209, 0.32);
  background: #0b373c;
  color: #fff;
}

.footer-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 8vw, 122px) 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 34px;
  align-items: end;
}

.site-footer .brand img { width: min(268px, 72vw); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

/* Tideglass footer icon system: luminous, tactile controls that retain every contact destination. */
.footer-links a.footer-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(139, 207, 209, 0.48);
  border-radius: 50%;
  color: var(--moonlit-teal, #8bcfd1);
  background: rgba(7, 31, 33, 0.36);
  text-decoration: none;
  transition: transform 160ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1)), border-color 160ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1)), background-color 160ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1)), color 160ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1));
}

.footer-links a.footer-icon:hover,
.footer-links a.footer-icon:focus-visible {
  color: #061713;
  background: var(--moonlit-teal, #8bcfd1);
  border-color: var(--moonlit-teal, #8bcfd1);
  transform: translateY(-2px);
}

.footer-links a.footer-icon:active { transform: scale(0.97); }
.footer-icon svg { width: 19px; height: 19px; stroke: currentColor; }
.footer-icon__glyph { font-family: Arial, sans-serif; font-size: 1rem; font-weight: 800; line-height: 1; }
.footer-icon__glyph--linkedin { font-size: 0.92rem; letter-spacing: -0.08em; }
.footer-icon__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 26px;
  margin-top: 42px;
  padding-top: 21px;
  border-top: 1px solid rgba(139, 207, 209, 0.28);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.6;
}

.footer-bottom span { display: inline-block; }

@media (prefers-reduced-motion: no-preference) {
  .panel-content,
  .choice-grid,
  .service-list { animation: settle 360ms var(--ease-out) both; }

  @keyframes settle {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 800px) {
  .header-inner { min-height: 74px; }

  .menu-toggle { display: inline-block; }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(253, 252, 248, 0.99);
  }

  .main-nav.is-open { display: block; }
  .main-nav ul { display: grid; gap: 0; }
  .main-nav a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); }

  .service-hero,
  .hero-panels,
  .hero-panel { min-height: calc(100svh - 74px); }

  .hero-panels {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .hero-panel {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .hero-panel-detail { opacity: 1; transform: none; }

  .panel-detail { opacity: 1; transform: none; }

  .service-item { grid-template-columns: 1fr; gap: 13px; min-height: auto; }
  .service-meta { justify-content: flex-start; text-align: left; }

  .copy-inner,
  .footer-top { grid-template-columns: 1fr; }

  .guide-grid { grid-template-columns: 1fr; }
  .guide-intro,
  .guide-facts { grid-column: auto; }
  .service-card { grid-template-columns: 1fr; }
  .service-card .service-meta { justify-content: flex-start; text-align: left; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .brand img { width: min(238px, 61vw); }
  .home-hero .hero-link { padding-bottom: 48px; }
  .panel-detail span:not(:last-child)::after { margin-left: 11px; }
}

/* Five-panel service navigation and expandable client-service details. */
.hero-panels { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.hero-panel-title { font-size: clamp(1.15rem, 2.15vw, 2.6rem); }
.hero-panel-detail { font-size: clamp(0.66rem, 0.78vw, 0.82rem); }

.nav-services { position: relative; }
.nav-services summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0 8px;
  border-bottom: 1px solid transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.2;
  list-style: none;
  text-transform: uppercase;
}
.nav-services summary::-webkit-details-marker { display: none; }
.nav-services summary::after { color: var(--tideglass); content: "⌄"; font-size: 0.92rem; line-height: 0.8; }
.nav-services[open] summary { border-bottom-color: var(--tideglass); color: var(--tideglass); }
.service-anchor-menu {
  position: absolute;
  top: calc(100% + 11px);
  left: -24px;
  z-index: 30;
  display: grid;
  width: min(300px, 78vw);
  margin: 0;
  padding: 12px 22px 18px;
  border: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: 0 18px 40px rgba(8, 51, 54, 0.15);
  list-style: none;
}
.service-anchor-menu a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-anchor-menu li:last-child a { border-bottom: 0; }

.category-section {
  scroll-margin-top: 95px;
  padding: clamp(50px, 8vw, 110px) 0;
  border-top: 1px solid var(--line);
}
.category-section:nth-child(even) { background: #edf8f6; }
.category-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(28px, 6vw, 88px);
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 0 clamp(24px, 8vw, 122px);
}
.category-title {
  margin: 0;
  color: var(--tideglass);
  font-size: clamp(1.85rem, 4vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.category-media { align-self: start; overflow: hidden; background: var(--mist); }
.category-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.category-services { margin-top: clamp(34px, 5vw, 64px); }
.service-card { grid-template-columns: minmax(0, 1fr) auto; align-items: start; }
.service-disclosure { grid-column: 1 / -1; max-width: 920px; margin: 0; color: var(--ink); }
.service-disclosure summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tideglass);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  list-style: none;
  text-transform: uppercase;
}
.service-disclosure summary::-webkit-details-marker { display: none; }
.service-disclosure summary::after { content: "+"; font-size: 1rem; }
.service-disclosure[open] summary::after { content: "−"; }
.service-disclosure > div {
  padding-top: 16px;
  color: var(--ink);
  font-size: clamp(0.9rem, 1.35vw, 1.05rem);
  font-weight: 500;
  line-height: 1.68;
}
.media-river { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.media-river img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.supporting-media { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 3vw, 34px); margin-top: clamp(32px, 5vw, 62px); }
.supporting-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* Keep multi-tier client duration and price lines readable below each service title. */
.service-card { grid-template-columns: 1fr; }
.service-card .service-meta { justify-content: flex-start; text-align: left; }

@media (max-width: 800px) {
  .nav-services summary { display: flex; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .service-anchor-menu { position: static; width: 100%; margin: 0; padding: 0 0 0 16px; border: 0; box-shadow: none; }
  .service-anchor-menu a { padding: 13px 0; }
  .category-inner { grid-template-columns: 1fr; }
  .category-media { order: -1; }
  .media-river { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-river img:last-child { grid-column: 1 / -1; }
  .supporting-media { grid-template-columns: 1fr; }
}

/* Category-page correction: direct page links, image-safe crops, and visible service detail. */
.hero-panel--corporate > img { object-position: 50% 34%; }
.hero-panel--somatic > img { object-position: 50% 46%; }
.hero-panel--spiritual > img { object-position: 50% 38%; }

.service-anchor-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.service-anchor-menu li { display: block; width: 100%; }
.service-anchor-menu a { width: 100%; white-space: normal; }

.category-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 104px) clamp(24px, 8vw, 122px);
}
.category-preview {
  display: grid;
  grid-template-columns: minmax(160px, 0.86fr) minmax(0, 1.14fr);
  min-height: 258px;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
.category-preview:hover,
.category-preview:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(8, 51, 54, 0.12);
}
.category-preview img {
  width: 100%;
  height: 100%;
  min-height: 258px;
  object-fit: cover;
}
.category-preview--corporate img { object-position: 50% 34%; }
.category-preview--somatic img { object-position: 50% 46%; }
.category-preview--spiritual img { object-position: 50% 38%; }
.category-preview-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 48px);
}
.category-preview-copy h2 {
  margin: 0;
  color: var(--tideglass);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}
.category-preview-copy p {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(0.86rem, 1.15vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
}
.category-preview-copy .learn-more {
  margin-top: 24px;
  color: var(--tideglass);
}

.individual-service-list .service-item { grid-template-columns: 1fr; align-items: start; }
.individual-service-list .service-meta { justify-content: flex-start; text-align: left; }
.individual-service-list .service-description { margin-top: 2px; }

.about-banner > img { object-position: 50% 24%; }
.about-portrait-block {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 86px);
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(50px, 8vw, 110px) clamp(24px, 8vw, 122px);
}
.about-portrait-block img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: 50% 20%;
}
.about-portrait-block .copy-heading { margin-top: 0; }

/* About portrait refinement: keep the small portrait while allowing the biography to continue below it. */
@media (min-width: 801px) {
  .about-portrait-block {
    display: block;
    max-width: 1120px;
  }

  .about-portrait-block > img {
    float: left;
    width: min(32%, 330px);
    max-height: 420px;
    margin: 0 clamp(30px, 5vw, 76px) 1.5rem 0;
  }

  .about-portrait-block::after {
    content: "";
    display: block;
    clear: both;
  }

  .about-portrait-block .copy-body {
    max-width: none;
  }
}

.open-arms-layout,
.home-about-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(30px, 6vw, 88px);
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(50px, 8vw, 110px) clamp(24px, 8vw, 122px);
}
.open-arms-layout > img,
.home-about-layout > img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.open-arms-layout .copy-heading,
.home-about-layout .copy-heading { margin-top: 0; }
.home-about-layout > img { max-height: 520px; object-position: 50% 20%; }

/* Restart direction: a quiet, image-only nocturnal hero and a site palette drawn from its night sky, shadowed forest, and living tree. */
:root {
  --night-void: #02070c;
  --night-deep: #07151a;
  --forest-shadow: #0a1d1a;
  --moonlit-teal: #86cfc7;
  --moon-mist: #e0f4ed;
  --moss-light: #9bbd70;
  --star-line: rgba(134, 207, 199, 0.28);
}
html, body { background: var(--night-void); color: var(--moon-mist); }
body { background-image: radial-gradient(circle at 75% 0%, rgba(29, 81, 81, 0.24), transparent 34rem); }
.site-header { background: rgba(2, 7, 12, 0.92); border-bottom-color: var(--star-line); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); }
.main-nav a, .main-nav summary, .mobile-toggle { color: var(--moon-mist); }
.main-nav a:hover, .main-nav summary:hover { color: var(--moonlit-teal); }
.service-anchor-menu { background: #071318; border-color: var(--star-line); }
.service-anchor-menu a { color: var(--moon-mist); }
.service-anchor-menu a:hover { background: rgba(134, 207, 199, 0.11); color: var(--moss-light); }
.page-main, .site-footer { background-color: transparent; }
.copy-section, .copy-section--aqua { background: linear-gradient(145deg, #071419 0%, #0a201d 100%); color: var(--moon-mist); }
.copy-section:nth-of-type(even) { background: linear-gradient(145deg, #050d12 0%, #09231f 100%); }
.copy-heading, .copy-body, .copy-body p, .copy-quote, .copy-attribution { color: var(--moon-mist); }
.copy-heading { text-shadow: 0 0 18px rgba(134, 207, 199, 0.14); }
.media-river { background: #041014; }
.testimonials-section, .reiki-guide, .footer-content { background-color: #061318; color: var(--moon-mist); }
.site-footer { border-top-color: var(--star-line); }
.site-footer a { color: var(--moonlit-teal); }
.restart-hero {
  min-height: clamp(620px, 89svh, 980px);
  background-image: linear-gradient(180deg, rgba(2, 7, 12, 0.05) 0%, rgba(2, 7, 12, 0.15) 58%, rgba(2, 7, 12, 0.68) 100%), var(--hero-image);
  background-size: cover;
  background-position: center 51%;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--star-line);
}
.page-banner--light::after,
.page-banner::after {
  background: linear-gradient(90deg, rgba(2, 7, 12, 0.88) 0%, rgba(2, 7, 12, 0.46) 70%, rgba(2, 7, 12, 0.18) 100%);
}
.path-card { background: var(--night-deep); }
.path-card::after,
.path-card:hover::after,
.path-card:focus-visible::after {
  background: linear-gradient(90deg, rgba(2, 7, 12, 0.9) 0%, rgba(5, 19, 24, 0.56) 70%, rgba(2, 7, 12, 0.18) 100%);
}
.service-group, .service-card, .faq-list, .faq-list details { border-color: var(--star-line); }
.service-group-heading, .service-card h3, .service-card p, .service-disclosure,
.faq-list summary, .faq-list details > div, .event-list h3, .event-list p { color: var(--moon-mist); }
.service-card .service-meta, .service-card .service-meta * { color: var(--moss-light); }
.event-list { background: var(--star-line); }
.event-list > div { background: #08171a; }
.category-preview { background: #08171a; border-color: var(--star-line); box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28); }
.category-preview:hover, .category-preview:focus-visible { box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(134, 207, 199, 0.22); }
.category-preview-copy { background: linear-gradient(150deg, #071419, #0a221d); }
.category-preview-copy h2, .category-preview-copy .learn-more { color: var(--moonlit-teal); }
.category-preview-copy p { color: var(--moon-mist); }
.testimonial-section { background: linear-gradient(145deg, #061318, #0a2a23); }
.testimonial-grid { background: var(--star-line); }
.testimonial { background: #0a2022; }
.testimonial cite { color: var(--moss-light); }
.google-reviews-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 9vw, 126px) clamp(24px, 6vw, 84px);
  background:
    radial-gradient(circle at 50% 0%, rgba(43, 108, 97, 0.22), transparent 30rem),
    linear-gradient(145deg, #03090e 0%, #0a201b 52%, #041116 100%);
  border-top: 1px solid var(--star-line);
  border-bottom: 1px solid var(--star-line);
}
.google-reviews-shell {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: clamp(16px, 3vw, 34px);
  border: 1px solid rgba(134, 207, 199, 0.24);
  background: rgba(2, 9, 14, 0.64);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32), inset 0 0 48px rgba(123, 180, 122, 0.05);
}
.site-footer {
  background: linear-gradient(145deg, #02070c 0%, #061713 55%, #02070c 100%);
  border-top-color: rgba(134, 207, 199, 0.32);
}
.footer-links a, .footer-bottom { color: var(--moon-mist); }
.footer-links a:hover { color: var(--moss-light); }

@media (max-width: 800px) {
  .service-anchor-menu { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .service-hero { overflow: hidden; }
  .hero-panels {
    display: flex;
    min-height: min(78svh, 680px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }
  .hero-panel {
    flex: 0 0 min(84vw, 350px);
    min-height: min(78svh, 680px);
    scroll-snap-align: start;
  }
  .hero-panel-content { padding: 28px 24px; }
  .hero-panel-title { font-size: clamp(1.55rem, 8vw, 2.25rem); }
  .hero-panel-brief { font-size: 0.82rem; }
  .hero-panel-detail { font-size: 0.74rem; }
  .category-preview-grid { grid-template-columns: 1fr; }
  .category-preview { grid-template-columns: minmax(132px, 0.74fr) minmax(0, 1.26fr); min-height: 214px; }
  .category-preview img { min-height: 214px; }
  .about-portrait-block { grid-template-columns: 1fr; }
  .about-portrait-block img { max-height: none; aspect-ratio: 1 / 1; }
  .open-arms-layout,
  .home-about-layout { grid-template-columns: 1fr; }
  .open-arms-layout > img { min-height: 300px; max-height: 440px; }
  .home-about-layout > img { max-height: none; aspect-ratio: 1 / 1; }
  .restart-hero { min-height: clamp(620px, 88svh, 800px); background-position: center center; }
  .google-reviews-section { padding-inline: 14px; }
  .google-reviews-shell { padding: 12px 8px; }
  .google-reviews-shell .ti-widget-container { display: block !important; }
  .google-reviews-shell .ti-footer,
  .google-reviews-shell .ti-reviews-container { width: 100% !important; max-width: 100% !important; }
  .google-reviews-shell .ti-reviews-container-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .google-reviews-shell .ti-review-item { flex: 0 0 76vw !important; max-width: 76vw !important; }
  .google-reviews-shell .ti-review-item > .ti-inner { min-height: 210px; }
}

/* Restart navigation treatment: same routes, newly aligned to the night-tree brand. */
.site-header {
  position: sticky;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(6, 18, 24, 0.98), rgba(2, 8, 13, 0.94)),
    radial-gradient(circle at 18% 0%, rgba(87, 150, 130, 0.16), transparent 18rem);
  border-bottom-color: rgba(134, 207, 199, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}
.header-inner { min-height: 98px; }
.main-nav > ul { gap: clamp(18px, 2.5vw, 36px); }
.main-nav a,
.nav-services summary {
  position: relative;
  color: rgba(224, 244, 237, 0.88);
  letter-spacing: 0.085em;
}
.main-nav a::after,
.nav-services summary::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--moonlit-teal), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.42);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.main-nav a:hover,
.main-nav a[aria-current="page"],
.nav-services summary:hover,
.nav-services[open] summary { color: var(--moonlit-teal); }
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after,
.nav-services summary:hover::after,
.nav-services[open] summary::after { opacity: 1; transform: scaleX(1); }
.main-nav a:hover,
.main-nav a[aria-current="page"] { border-bottom-color: transparent; }
.service-anchor-menu {
  width: min(300px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(134, 207, 199, 0.28);
  background: linear-gradient(145deg, #071a1d, #030b10);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), inset 0 0 24px rgba(134, 207, 199, 0.06);
}
.service-anchor-menu a {
  padding: 13px 14px;
  border-radius: 0;
  color: rgba(224, 244, 237, 0.9);
  letter-spacing: 0.04em;
}
.service-anchor-menu a:hover,
.service-anchor-menu a:focus-visible {
  background: rgba(134, 207, 199, 0.12);
  color: var(--moss-light);
}
.menu-toggle {
  border-color: rgba(134, 207, 199, 0.34);
  background: rgba(4, 17, 20, 0.68);
  color: var(--moonlit-teal);
  box-shadow: inset 0 0 16px rgba(134, 207, 199, 0.05);
}
@media (max-width: 800px) {
  /* Tideglass mobile menu: visible stacking context and explicit open state prevent off-canvas or inert menus. */
  .site-header { overflow: visible; }
  .main-nav {
    background: linear-gradient(145deg, rgba(3, 12, 16, 0.98), rgba(7, 29, 28, 0.98));
    border-top: 1px solid rgba(134, 207, 199, 0.24);
    border-bottom: 1px solid rgba(134, 207, 199, 0.24);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.38);
    z-index: 40;
    display: block;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 0s linear 180ms;
  }
  .main-nav.is-open {
    display: block;
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
  }
  .main-nav > ul { gap: 0; }
  .main-nav a,
  .nav-services summary { padding: 17px 0; }
  .service-anchor-menu {
    width: 100%;
    margin: 4px 0 10px;
    box-shadow: none;
  }
}

/* Portrait home backdrop: the supplied vertical image remains undistorted and drives the full hero. */
.home-page {
  background-color: var(--night-void);
  background-image:
    linear-gradient(180deg, rgba(2, 7, 12, 0.22), rgba(2, 7, 12, 0.92)),
    url("../images/home-night-sky-tree.jpeg");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.restart-hero--layered {
  display: flex;
  flex-direction: column;
  min-height: max(1380px, 112vw);
  background-image:
    linear-gradient(180deg, rgba(2, 7, 12, 0.04) 0%, rgba(2, 7, 12, 0.08) 50%, rgba(2, 7, 12, 0.74) 100%),
    var(--hero-image);
  background-position: center top;
  background-size: cover;
  border-bottom: 0;
}
.restart-hero--layered .restart-hero-sky {
  flex: 1 0 clamp(760px, 62vw, 1080px);
  min-height: clamp(760px, 62vw, 1080px);
}
.google-reviews-section--hero {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
  padding-top: clamp(42px, 6vw, 88px);
  padding-bottom: clamp(52px, 7vw, 108px);
  background:
    linear-gradient(180deg, transparent 0%, rgba(2, 7, 12, 0.6) 18%, rgba(2, 7, 12, 0.92) 100%);
  border-top-color: rgba(134, 207, 199, 0.18);
}
.google-reviews-section--hero .google-reviews-shell {
  background: rgba(2, 9, 14, 0.74);
}
@media (max-width: 800px) {
  .home-page { background-size: auto 1180px; }
  .restart-hero--layered {
    min-height: max(1260px, 178svh);
    background-size: auto 100%;
    background-position: center top;
  }
  .restart-hero--layered .restart-hero-sky {
    flex-basis: clamp(690px, 100svh, 820px);
    min-height: clamp(690px, 100svh, 820px);
  }
  .google-reviews-section--hero { padding-top: 30px; }
}

/* Initial service-gateway preview: image circles and stable labels only; hover copy follows client review. */
.restart-hero--service-gateway {
  display: flex;
  flex-direction: column;
  min-height: max(1180px, 92vw);
  padding: 0 clamp(18px, 5vw, 72px) clamp(76px, 8vw, 128px);
  background-image:
    linear-gradient(180deg, rgba(2, 7, 12, 0.04) 0%, rgba(2, 7, 12, 0.11) 62%, rgba(2, 7, 12, 0.63) 100%),
    var(--hero-image);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 0;
}
.restart-hero--service-gateway .restart-hero-sky {
  flex: 0 0 clamp(210px, 17vw, 310px);
  min-height: clamp(210px, 17vw, 310px);
}
.hero-service-gateway {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 3.6vw, 52px);
  width: min(100%, 960px);
  margin: 0 auto;
}
.hero-service-row {
  display: grid;
  width: 100%;
  justify-content: center;
  align-items: start;
  gap: clamp(18px, 3vw, 48px);
}
.hero-service-row--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hero-service-row--two { grid-template-columns: repeat(2, minmax(190px, 230px)); width: min(100%, 560px); }
.hero-service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  color: var(--moon-mist);
  text-align: center;
  text-decoration: none;
}
.hero-service-icon__image {
  display: grid;
  width: clamp(136px, 13vw, 184px);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(167, 232, 220, 0.76);
  border-radius: 50%;
  background: rgba(3, 15, 20, 0.56);
  box-shadow: 0 0 0 7px rgba(8, 29, 34, 0.48), 0 18px 42px rgba(0, 0, 0, 0.46);
}
.hero-service-icon__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-service-icon h3 {
  max-width: 19ch;
  margin: 13px 0 0;
  color: #e4fbf4;
  font-family: "Comfortaa", system-ui, sans-serif;
  font-size: clamp(0.82rem, 1.15vw, 1.08rem);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.95);
}
.hero-service-icon:focus-visible {
  outline: 3px solid var(--moonlit-teal);
  outline-offset: 8px;
  border-radius: 18px;
}
@media (max-width: 800px) {
  .restart-hero--service-gateway {
    min-height: max(1050px, 150svh);
    padding: 0 13px 54px;
    background-position: center top;
    background-size: auto 100%;
  }
  .restart-hero--service-gateway .restart-hero-sky {
    flex-basis: clamp(145px, 22svh, 210px);
    min-height: clamp(145px, 22svh, 210px);
  }
  .hero-service-gateway { gap: 22px; }
  .hero-service-row { gap: 12px; }
  .hero-service-row--two { grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(100%, 270px); }
  .hero-service-icon__image {
    width: clamp(76px, 22vw, 112px);
    border-width: 1px;
    box-shadow: 0 0 0 4px rgba(8, 29, 34, 0.45), 0 12px 25px rgba(0, 0, 0, 0.42);
  }
  .hero-service-icon h3 {
    margin-top: 9px;
    font-size: clamp(0.66rem, 2.7vw, 0.82rem);
    font-weight: 800;
    line-height: 1.25;
  }
}

/* Desktop service-gateway refinement: all five icon cards stay in the first viewport. */
@media (min-width: 801px) {
  .restart-hero--service-gateway {
    min-height: 0;
    height: max(640px, calc(100svh - 72px));
    max-height: 820px;
    padding-bottom: clamp(18px, 2.4vh, 30px);
  }

  .restart-hero--service-gateway .restart-hero-sky {
    flex-basis: clamp(34px, 5.5svh, 68px);
    min-height: clamp(34px, 5.5svh, 68px);
  }

  .hero-service-gateway {
    width: min(calc(100% - 64px), 780px);
    margin-inline: auto;
    gap: clamp(10px, 1.45vw, 18px);
    transform: translateY(clamp(12px, 2.3vh, 26px));
  }

  .hero-service-row {
    justify-items: center;
    gap: clamp(14px, 2.1vw, 30px);
  }

  .hero-service-icon h3 {
    margin-top: 7px;
    font-size: clamp(0.84rem, 1.08vw, 1.04rem);
    font-weight: 800;
  }
}

/* Content handoff: About biography and credentials; home energy quote and healing passage. */
.about-bio-section .about-portrait-block {
  padding-bottom: clamp(56px, 7vw, 94px);
}

.about-signoff {
  color: var(--moonlit-teal);
  font-weight: 700;
}

.about-quote-band,
.about-tesla-quote-band {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 78px) clamp(20px, 6vw, 64px);
  background:
    radial-gradient(circle at 50% 0%, rgba(134, 207, 199, 0.18), transparent 45%),
    linear-gradient(145deg, #031015 0%, #071e1d 100%);
  border-top: 1px solid var(--star-line);
  border-bottom: 1px solid var(--star-line);
}

.about-quote-band__inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.about-relocated-quote {
  margin: 0;
  color: var(--moonlit-teal);
  font-family: "Comfortaa", system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.3vw, 2rem);
  font-weight: 700;
  line-height: 1.42;
  text-shadow: 0 0 24px rgba(134, 207, 199, 0.16);
}

.about-healing-section .copy-inner--single {
  width: min(980px, 100%);
}

.about-healing-section .copy-heading {
  margin-bottom: clamp(24px, 3vw, 38px);
}

.about-healing-copy {
  max-width: 900px;
}

.about-healing-copy em {
  color: var(--moonlit-teal);
}

.home-healing-section {
  position: relative;
  border-bottom: 1px solid var(--star-line);
}

.home-energy-quote-band::after,
.about-tesla-quote-band::after,
.home-healing-section .copy-heading::after {
  content: "";
  display: block;
  width: clamp(88px, 14vw, 176px);
  height: 2px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
  box-shadow: 0 0 14px rgba(139, 207, 209, 0.38);
}

.home-healing-section .copy-heading::after {
  margin: 16px 0 0;
}

.home-healing-section .about-healing-copy p + p {
  margin-top: clamp(22px, 3vw, 34px);
}

.about-accreditations-section {
  padding: clamp(34px, 5vw, 72px) clamp(20px, 6vw, 64px);
  background: linear-gradient(155deg, #061917 0%, #031012 100%);
}

.about-accreditations-card {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(185px, 0.7fr) minmax(0, 2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  background: linear-gradient(135deg, rgba(8, 37, 35, 0.94), rgba(4, 19, 22, 0.97));
  border: 1px solid rgba(137, 213, 201, 0.38);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(214, 255, 246, 0.08);
}

.about-accreditations-card::before {
  content: "";
  position: absolute;
  inset: -1px auto auto clamp(28px, 4vw, 52px);
  width: min(190px, 30%);
  height: 2px;
  background: linear-gradient(90deg, var(--aqua), transparent);
  box-shadow: 0 0 14px rgba(139, 207, 209, 0.4);
}

.about-accreditations-card h2 {
  margin: 0;
  color: var(--moonlit-teal);
  font-family: "Comfortaa", system-ui, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.24;
}

.about-accreditations-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 38px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--soft-white);
}

.about-accreditations-list li::marker {
  color: var(--moonlit-teal);
}

@media (max-width: 800px) {
  .about-quote-band {
    padding: 34px 20px;
  }

  .about-relocated-quote {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

  .about-accreditations-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-accreditations-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
