﻿:root {
  color-scheme: dark;
  --night: #0d0b12;
  --panel: rgba(15, 12, 21, 0.82);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --bone: #e8e3d9;
  --mist: rgba(232, 227, 217, 0.72);
  --muted: rgba(232, 227, 217, 0.55);
  --moon: #c2b7ff;
  --violet: #6c4bae;
  --copper: #b87433;
  --gold: #c8a85a;
  --line: rgba(200, 168, 90, 0.18);
  --cool-line: rgba(194, 183, 255, 0.14);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(9, 8, 13, 0.94), rgba(13, 11, 18, 0.74) 48%, rgba(13, 11, 18, 0.9)),
    linear-gradient(180deg, rgba(9, 8, 13, 0.08), rgba(9, 8, 13, 0.86)),
    url("assets/inferna-hero.png") center top / cover fixed,
    var(--night);
  color: var(--bone);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}

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

p {
  color: var(--mist);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5.1vw, 5.35rem);
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #f5e6c4, #cfb57e 38%, #c2b7ff);
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  font-size: clamp(2.5rem, 5.4vw, 5.2rem);
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.45rem);
}

button,
input,
select,
textarea {
  font: inherit;
}

.app-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(200, 168, 90, 0.12);
  background: rgba(10, 8, 14, 0.76);
  backdrop-filter: blur(22px) saturate(125%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: cover;
  border: 1px solid rgba(200, 168, 90, 0.28);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

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

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-copy small {
  color: #d7ccb9;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.top-nav {
  justify-self: end;
  display: flex;
  max-width: 100%;
  overflow-x: auto;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.035);
}

.nav-tab {
  flex: 0 0 auto;
  min-height: 42px;
  border: 0;
  padding: 10px 13px;
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-tab:hover,
.nav-tab:focus-visible,
.nav-tab.is-active,
.brand:hover,
.brand:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  outline: 0;
}

.nav-pill.is-active,
.nav-pill {
  background: linear-gradient(135deg, #d39a4d, #b87433 58%, #885826);
  color: #140f09;
  box-shadow: 0 8px 22px rgba(184, 116, 51, 0.28);
}

.page-stage {
  min-height: calc(100vh - 83px);
}

.page-panel {
  width: min(1240px, calc(100% - 36px));
  min-height: calc(100vh - 83px);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 74px) 0;
}

.page-panel.is-active {
  display: block;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.page-heading.compact {
  max-width: 1020px;
}

.services-heading {
  max-width: 100%;
  text-align: center;
}

.services-heading p {
  margin-left: auto;
  margin-right: auto;
}

.services-email {
  display: flex;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn,
.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 12px 18px;
  background: linear-gradient(135deg, #d59a4a, #b87433 60%, #8f5825);
  color: #140f09;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(184, 116, 51, 0.28);
}

.btn:hover,
.text-link:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  border: 1px solid rgba(200, 168, 90, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: var(--bone);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.text-link {
  width: fit-content;
  margin-top: 8px;
  color: #140f09;
  text-decoration: none;
}

.facebook-link {
  min-height: 64px;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #1877f2, #0f5ec4 64%, #0a3f88);
  color: #fff;
  box-shadow: 0 16px 34px rgba(24, 119, 242, 0.28), 0 0 0 1px rgba(24, 119, 242, 0.18);
}

.facebook-link:hover {
  filter: brightness(1.08);
}

.facebook-link strong,
.facebook-link small {
  display: block;
}

.facebook-link strong {
  color: #fff;
  line-height: 1.1;
}

.facebook-link small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.facebook-logo {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  background: #fff;
  color: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
}

.portal-card,
.home-cards article,
.large-card,
.offering-list article,
.feature-image,
.location-stack figure,
.location-copy-card,
.location-detail-grid article,
.about-copy article,
.contact-form,
.tip-card,
.service-card,
.site-footer {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, var(--panel-soft), rgba(255, 255, 255, 0.025)),
    radial-gradient(160% 120% at 50% 0%, rgba(194, 183, 255, 0.06), transparent 52%),
    var(--panel);
  box-shadow: var(--shadow);
}

.portal-card {
  padding: clamp(18px, 3vw, 34px);
}

.portal-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  padding: clamp(18px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 50%, rgba(194, 183, 255, 0.07), transparent 65%),
    linear-gradient(135deg, #0d0b12 0%, #0d0b12 48%, #ece6db 52%, #ece6db 100%);
}

.home-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 5vw, 58px);
}

.home-cards article {
  overflow: hidden;
}

.home-cards img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}

.home-cards h3 {
  padding: 15px;
  padding-bottom: 0;
  font-size: 1.25rem;
}

.home-cards p {
  margin: 8px 0 0;
  padding: 0 15px 15px;
  font-size: 0.92rem;
}

.offerings-layout,
.locations-layout,
.about-layout,
.contact-layout,
.tip-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.service-process {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(20px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, var(--panel-soft), rgba(255, 255, 255, 0.025)),
    radial-gradient(160% 120% at 50% 0%, rgba(194, 183, 255, 0.06), transparent 52%),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-process-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.service-process-images img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-process-images img:first-child {
  grid-column: 1 / -1;
}

.service-process-copy {
  padding: clamp(24px, 4vw, 44px);
}

.service-steps {
  display: grid;
  gap: 14px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
  counter-reset: service-step;
}

.service-steps li {
  position: relative;
  min-height: 76px;
  padding: 16px 16px 16px 64px;
  border: 1px solid rgba(200, 168, 90, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--mist);
  counter-increment: service-step;
}

.service-steps li::before {
  content: counter(service-step);
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: linear-gradient(135deg, #d59a4a, #b87433 60%, #8f5825);
  color: #140f09;
  font-weight: 900;
}

.service-steps strong,
.service-steps span {
  display: block;
}

.service-steps strong {
  color: var(--bone);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

.service-steps span {
  margin-top: 5px;
}

.life-coaching-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 42px);
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, var(--panel-soft), rgba(255, 255, 255, 0.025)),
    radial-gradient(120% 100% at 15% 0%, rgba(194, 183, 255, 0.08), transparent 56%),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.life-coaching-copy {
  padding: clamp(24px, 4vw, 44px);
}

.life-coaching-copy ul {
  margin: 16px 0 24px;
  padding-left: 1.25rem;
  list-style: disc;
}

.life-coaching-copy li {
  color: var(--mist);
  padding: 3px 0;
}

.life-coaching-copy .signature {
  color: var(--bone);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.life-coaching-block img {
  width: 100%;
  max-width: 860px;
  height: auto;
  min-height: 0;
  justify-self: center;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.36);
}

.large-card {
  overflow: hidden;
}

.large-card img {
  width: 100%;
  height: min(56vh, 520px);
  object-fit: cover;
}

.large-card div,
.offering-list article div {
  padding: 20px;
}

.offering-list {
  display: grid;
  gap: 14px;
}

.offering-list article {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  overflow: hidden;
}

.offering-list img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
}

.portfolio-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
}

.feature-image {
  position: sticky;
  top: 110px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: calc(100vh - 190px);
  min-height: 520px;
  object-fit: cover;
}

.masonry-gallery {
  columns: 3 190px;
  column-gap: 14px;
}

.masonry-gallery button {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  break-inside: avoid;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  cursor: zoom-in;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.masonry-gallery img {
  width: 100%;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.masonry-gallery button:hover img {
  transform: scale(1.02);
  filter: brightness(1.08);
}

.location-stack {
  display: grid;
  gap: 14px;
}

.location-stack figure {
  margin: 0;
  overflow: hidden;
}

.location-stack figure img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.location-stack figcaption {
  padding: 14px 16px;
  color: var(--mist);
}

.location-copy-card {
  padding: 22px;
}

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

.location-grid img,
.about-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.location-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.location-detail-grid article {
  display: grid;
  grid-template-rows: auto auto minmax(260px, 1fr);
  overflow: hidden;
}

.location-detail-grid h3,
.location-detail-grid p {
  margin-left: 18px;
  margin-right: 18px;
}

.location-detail-grid h3 {
  margin-top: 18px;
}

.location-detail-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: rgba(8, 7, 12, 0.68);
}

.map-widget {
  margin: 16px 18px 18px;
  border: 1px solid rgba(200, 168, 90, 0.16);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.map-widget h4 {
  margin: 14px 14px 4px;
  color: var(--bone);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.map-widget p {
  margin: 0 14px 12px;
  font-size: 0.92rem;
}

.map-widget iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
  background: rgba(10, 8, 14, 0.72);
}

.map-widget a {
  display: block;
  padding: 12px 14px;
  color: var(--moon);
  font-weight: 800;
  text-decoration: none;
}

.about-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
}

.about-copy {
  display: grid;
  gap: 14px;
}

.about-copy article {
  padding: 22px;
}

.about-copy h3 {
  color: var(--bone);
}

.about-image {
  grid-column: 1 / -1;
  height: 260px;
}

.about-panel {
  width: min(900px, calc(100% - 36px));
}

.about-panel h2 {
  max-width: 980px;
  white-space: nowrap;
  font-size: clamp(2.1rem, 4.1vw, 4.4rem);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

.about-panel p:not(.eyebrow) {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.about-artist-gallery {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(980px, 100%);
  margin: 0 auto 24px;
}

.about-artist-main {
  width: min(25%, 300px);
  min-width: 170px;
  height: auto;
  object-fit: contain;
}

.about-artist-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(420px, 92%);
  justify-content: center;
}

.about-artist-tiles img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

#panel-contact .contact-layout {
  grid-template-columns: 1fr;
  justify-items: center;
}

#panel-contact .page-heading {
  width: min(100%, 920px);
  max-width: 920px;
  text-align: center;
}

#panel-contact .contact-form {
  width: min(100%, 920px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--mist);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form label:nth-child(4),
.contact-form label:nth-child(5),
.contact-form label:nth-child(6),
.contact-form label:nth-child(7) {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 8, 14, 0.72);
  color: var(--bone);
  padding: 12px;
}

.contact-form button {
  justify-self: start;
}

.tip-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

#panel-tips .page-heading {
  max-width: 920px;
}

.tip-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.payment-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(9, 6, 12, 0.42), rgba(9, 6, 12, 0.72)),
    url("assets/site-images/phoenix-tipjar.png") center 40% / contain no-repeat;
  min-height: clamp(420px, 72vh, 760px);
  width: min(1240px, 100%);
  padding: clamp(12px, 2.5vw, 30px) clamp(16px, 6vw, 84px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.payment-actions::before,
.payment-actions::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.42;
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: screen;
  animation: ember-rise 9s linear infinite;
}

.payment-actions::before {
  background-image:
    radial-gradient(circle at 18px 150px, rgba(255, 178, 86, 0.52) 0 2px, transparent 2.6px),
    radial-gradient(circle at 72px 120px, rgba(255, 116, 36, 0.46) 0 1.6px, transparent 2.3px),
    radial-gradient(circle at 132px 164px, rgba(255, 204, 124, 0.4) 0 1.8px, transparent 2.6px),
    radial-gradient(circle at 162px 90px, rgba(255, 152, 56, 0.34) 0 1.4px, transparent 2.1px);
}

.payment-actions::after {
  background-image:
    radial-gradient(circle at 26px 164px, rgba(255, 140, 46, 0.5) 0 1.9px, transparent 2.7px),
    radial-gradient(circle at 94px 134px, rgba(255, 194, 104, 0.4) 0 1.5px, transparent 2.2px),
    radial-gradient(circle at 146px 156px, rgba(255, 104, 28, 0.34) 0 1.2px, transparent 1.9px);
  animation-duration: 12s;
  animation-delay: -4s;
  opacity: 0.36;
}

.payment-button {
  position: relative;
  flex: 0 1 248px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
  z-index: 2;
}

.venmo-button {
  transform: translateY(34px);
  animation: flame-push-left 4.8s ease-in-out infinite;
}

.cashapp-button {
  transform: translateY(34px);
  animation: flame-push-right 4.8s ease-in-out infinite;
}

.payment-button:hover {
  filter: brightness(1.08);
}

.venmo-button:hover,
.cashapp-button:hover {
  transform: translateY(4px);
  animation-play-state: paused;
}

.payment-button strong,
.payment-button small {
  display: block;
}

.payment-button strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.payment-button small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  font-size: 1.02rem;
}

.payment-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1;
}

.venmo-button {
  background: linear-gradient(135deg, #3d95ce, #2583c7 58%, #1769a5);
  box-shadow: 0 18px 38px rgba(61, 149, 206, 0.24);
}

.venmo-button .payment-mark {
  color: #3d95ce;
}

.cashapp-button {
  background: linear-gradient(135deg, #00c244, #00a83c 58%, #08772f);
  box-shadow: 0 18px 38px rgba(0, 194, 68, 0.22);
}

.cashapp-button .payment-mark {
  color: #00a83c;
}

@media (max-width: 860px) {
  .tip-layout {
    gap: 18px;
  }

  .payment-actions {
    background-position: center 50%;
    background-size: cover;
    min-height: clamp(280px, 58vh, 420px);
    padding: 16px;
    justify-content: center;
  }

  .venmo-button,
  .cashapp-button {
    transform: none;
    animation: none;
  }

  .venmo-button:hover,
  .cashapp-button:hover {
    transform: translateY(-2px);
  }
}

@keyframes ember-rise {
  0% {
    background-position: 0 0;
    transform: translateY(16px);
  }
  100% {
    background-position: 0 -220px;
    transform: translateY(-12px);
  }
}

@keyframes flame-push-left {
  0%,
  100% {
    transform: translateY(34px) translateX(0);
  }
  50% {
    transform: translateY(34px) translateX(-20px);
  }
}

@keyframes flame-push-right {
  0%,
  100% {
    transform: translateY(34px) translateX(0);
  }
  50% {
    transform: translateY(34px) translateX(20px);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 24px;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto 28px;
  padding: 24px;
}

.site-footer h3 {
  font-size: 1.4rem;
}

.site-footer a {
  display: block;
  color: var(--moon);
  text-decoration: none;
  margin-top: 8px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.protected-copy {
  color: var(--moon);
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--bone);
  cursor: pointer;
  font-weight: 800;
  padding: 10px 14px;
}

.audio-toggle {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  min-height: 42px;
  border: 1px solid rgba(200, 168, 90, 0.28);
  background: rgba(10, 8, 14, 0.78);
  color: var(--bone);
  cursor: pointer;
  font-weight: 800;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.audio-toggle[aria-pressed="true"] {
  background: linear-gradient(135deg, #d59a4a, #b87433 60%, #8f5825);
  color: #140f09;
}

@media (max-width: 1080px) {
  .site-header,
  .hero-layout,
  .offerings-layout,
  .service-process,
  .life-coaching-block,
  .locations-layout,
  .about-layout,
  .contact-layout,
  .tip-layout,
  .portfolio-layout,
  .location-detail-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .top-nav {
    justify-self: stretch;
  }

  .home-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-image {
    position: static;
  }

  .feature-image img {
    height: 360px;
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .page-panel {
    width: min(100% - 28px, 1240px);
    min-height: auto;
    padding: 28px 0;
  }

  .home-cards,
  .service-process,
  .life-coaching-block,
  .offering-list article,
  .location-grid,
  .location-detail-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .offering-list img,
  .home-cards img,
  .location-stack figure img,
  .feature-image img,
  .about-image {
    height: auto;
  }
}

@media (max-width: 760px) {
  .top-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }

  .nav-tab {
    min-width: 0;
    padding: 10px 8px;
    font-size: 0.82rem;
  }
}

