@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --cream: #0b1110;
  --paper: #111a16;
  --mist: #16231d;
  --sage: #23382f;
  --leaf: #87c99a;
  --forest: #d9c88f;
  --deep: #f3efe2;
  --moss: #c8c5ae;
  --muted: #9ea897;
  --line: rgba(217, 200, 143, 0.18);
  --gold: #d9b86f;
  --wine: #9a5963;
  --clay: #b18763;
  --white: #fffdf4;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --max: 1160px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(135, 201, 154, 0.12), transparent 34rem),
    radial-gradient(circle at top right, rgba(217, 184, 111, 0.09), transparent 28rem),
    var(--cream);
  color: var(--deep);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  line-height: 1.62;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  font-weight: 800;
  text-decoration-color: rgba(217, 184, 111, 0.56);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--leaf);
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 0.98;
  font-weight: 700;
  overflow-wrap: break-word;
}

h1 {
  font-size: 5.2rem;
  max-width: 780px;
}

h2 {
  font-size: 3.1rem;
  max-width: 820px;
}

h3 {
  font-size: 1.7rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 17, 16, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 50px;
  height: 50px;
}

.brand span {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.site-nav,
.actions,
.footer-nav,
.footer-contact,
.meta-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.site-nav {
  justify-content: center;
  min-width: 0;
}

.site-nav a,
.footer-nav a,
.header-contact {
  color: var(--moss);
  font-size: 0.94rem;
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
}

.header-contact {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #a9792f);
  color: #10100d;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.button:hover {
  background: linear-gradient(135deg, #f0cf83, var(--gold));
  border-color: #f0cf83;
  color: #10100d;
}

.button.secondary {
  background: transparent;
  color: var(--gold);
  box-shadow: none;
}

.hero .button.secondary {
  border-color: rgba(217, 184, 111, 0.76);
  color: var(--gold);
}

.hero {
  min-height: 76vh;
  display: flex;
  align-items: center;
  padding: 88px 28px 72px;
  background:
    linear-gradient(90deg, rgba(7, 13, 12, 0.95), rgba(10, 19, 16, 0.78) 50%, rgba(10, 19, 16, 0.2)),
    url("/assets/images/hero-light.jpg") center 42% / cover no-repeat;
  color: var(--white);
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  min-width: 0;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

.hero-copy p {
  max-width: 640px;
  color: rgba(255, 253, 246, 0.9);
  font-size: 1.12rem;
}

.hero-copy .kicker,
.page-hero .kicker,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  color: rgba(255, 253, 246, 0.82);
  font-weight: 700;
}

.hero-mark img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.page-hero {
  padding: 82px 28px 66px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 13, 12, 0.94), rgba(12, 22, 18, 0.78), rgba(12, 22, 18, 0.28)),
    var(--page-image, url("/assets/images/green-leaves.jpg")) center / cover no-repeat;
  color: var(--white);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 253, 244, 0.82);
  font-size: 1.08rem;
}

.section,
.band {
  padding: 74px 28px;
}

.band {
  background: linear-gradient(180deg, var(--mist), #101a16);
}

.band.dark {
  background:
    linear-gradient(135deg, rgba(11, 17, 16, 0.96), rgba(31, 50, 42, 0.94)),
    url("/assets/images/green-leaves.jpg") center / cover no-repeat;
  color: var(--white);
}

.band.dark p,
.band.dark .muted {
  color: rgba(255, 253, 246, 0.82);
}

.split,
.intro-grid,
.service-feature,
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.rich-text {
  font-size: 1.03rem;
  min-width: 0;
}

.rich-text p,
.muted,
.card p,
.service-card p,
.directory-card p,
.donation-card p,
.note p,
.step p,
.price-panel p {
  color: var(--muted);
}

.lead {
  max-width: 760px;
  color: var(--moss);
  font-size: 1.12rem;
}

.meta-list {
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.meta-list li {
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  color: var(--moss);
  font-weight: 800;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #0e1713;
}

.trust-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-item {
  min-height: 132px;
  padding: 24px;
  background: rgba(17, 26, 22, 0.96);
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-grid,
.service-grid,
.donation-grid,
.image-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card-grid.two,
.directory {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.service-card,
.directory-card,
.donation-card,
.note,
.price-panel,
.step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 32, 27, 0.96), rgba(13, 21, 18, 0.96));
  box-shadow: var(--shadow);
}

.card,
.directory-card,
.note,
.price-panel,
.step {
  padding: 26px;
}

.service-card {
  overflow: hidden;
}

.service-card img,
.image-grid img,
.feature-image,
.profile-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-card {
  overflow: hidden;
  padding: 0;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card-content {
  padding: 24px;
}

.service-card img {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  box-shadow: none;
}

.service-card-content {
  padding: 24px;
}

.service-card-content h3,
.card h3,
.directory-card h2,
.donation-card h2,
.step h3,
.price-panel h3 {
  margin-bottom: 10px;
}

.feature-image {
  aspect-ratio: 5 / 6;
}

.feature-image.landscape {
  aspect-ratio: 4 / 3;
}

.feature-image.reiki-origin-image {
  aspect-ratio: 4 / 3;
  justify-self: center;
  max-width: 680px;
  max-height: 460px;
}

.profile-image {
  aspect-ratio: 4 / 5;
}

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

.price-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-panel .rate {
  display: grid;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--white);
  font-weight: 800;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.35fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 32, 27, 0.96), rgba(13, 21, 18, 0.96));
  box-shadow: var(--shadow);
}

.price-list {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
}

.callout {
  padding: 52px 0;
  border-top: 1px solid rgba(255, 253, 246, 0.2);
  border-bottom: 1px solid rgba(255, 253, 246, 0.2);
}

.quote-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px;
  border-left: 4px solid var(--gold);
  background: rgba(17, 26, 22, 0.82);
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.22;
}

.image-grid img {
  aspect-ratio: 4 / 3;
}

.donation-card {
  padding: 24px;
  text-align: center;
}

.donation-card img {
  width: min(100%, 230px);
  margin: 0 auto 20px;
  border-radius: 8px;
  box-shadow: none;
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(7, 13, 12, 0.96), rgba(42, 62, 51, 0.82)),
    url("/assets/images/green-leaves.jpg") center / cover no-repeat;
  color: var(--white);
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-layout p {
  max-width: 620px;
  color: rgba(255, 253, 246, 0.84);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #070c0b;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto) minmax(220px, auto);
  gap: 28px;
  padding: 34px 28px;
}

.footer-contact,
.footer-nav {
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
}

@media (max-width: 1020px) {
  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .header-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .header-contact {
    justify-self: start;
  }

  .split,
  .intro-grid,
  .service-feature,
  .profile-grid,
  .service-row,
  .cta-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cta-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip .section-inner,
  .card-grid,
  .service-grid,
  .price-grid,
  .donation-grid,
  .image-grid,
  .step-grid,
  .card-grid.two,
  .directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  h3 {
    font-size: 1.45rem;
  }

  .header-inner,
  .hero,
  .page-hero,
  .section,
  .band,
  .footer-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    min-height: 70vh;
    padding-top: 68px;
    padding-bottom: 56px;
    background-position: 58% center;
  }

  .hero-inner,
  .section-inner,
  .footer-inner,
  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 40px);
    margin-left: 0;
    margin-right: auto;
  }

  h1,
  h2 {
    max-width: 100%;
  }

  .brand span {
    font-size: 1.3rem;
  }

  .site-nav,
  .actions {
    gap: 10px 12px;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: start;
  }

  .site-nav a,
  .header-contact {
    font-size: 0.88rem;
  }

  .hero-copy p,
  .page-hero p,
  .lead {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .trust-strip .section-inner,
  .card-grid,
  .service-grid,
  .price-grid,
  .donation-grid,
  .image-grid,
  .step-grid,
  .card-grid.two,
  .directory {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
  }

  .quote-panel {
    padding: 26px;
    font-size: 1.45rem;
  }
}

@media (max-width: 520px) {
  .hero-inner,
  .section-inner,
  .footer-inner,
  .hero-copy {
    max-width: 350px;
  }
}
