:root {
  --burgundy: #73172f;
  --deep: #400f1c;
  --rose: #bf4968;
  --blush: #f2c2cf;
  --sand: #d9a796;
  --beige: #e0d8bd;
  --paper: #f3f3f3;
  --muted: #79797c;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Alef, Rubik, system-ui, sans-serif;
  background: var(--beige);
  color: var(--deep);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; height: auto; }

/* —— Inner-page header —— */
.site-header {
  background: var(--deep);
  color: var(--paper);
  padding: 20px clamp(20px, 4vw, 48px);
}
.site-header .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.site-header .name {
  font-family: Rubik, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}
.site-header .nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(243, 243, 243, 0.88);
}
.site-header .nav a { text-decoration: none; opacity: 0.9; }
.site-header .nav a:hover,
.site-header .nav a:focus-visible,
.site-header .nav a[aria-current="page"] {
  opacity: 1;
  border-bottom: 1px solid var(--blush);
  outline: none;
}

/* —— Ritual chamber (homepage hero) —— */
.chamber {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--paper);
}
.chamber > img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(64, 15, 28, 0.05) 0%,
      rgba(64, 15, 28, 0.15) 35%,
      rgba(64, 15, 28, 0.55) 62%,
      rgba(64, 15, 28, 0.78) 100%
    ),
    linear-gradient(
      180deg,
      rgba(64, 15, 28, 0.45) 0%,
      rgba(64, 15, 28, 0.08) 28%,
      rgba(64, 15, 28, 0.2) 55%,
      rgba(64, 15, 28, 0.72) 100%
    );
}
.chamber-ui {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 24px clamp(20px, 4vw, 48px) 40px;
}
.row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.name {
  font-family: Rubik, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-shadow: 0 1px 18px rgba(64, 15, 28, 0.55);
  text-decoration: none;
}
.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(243, 243, 243, 0.88);
  text-shadow: 0 1px 12px rgba(64, 15, 28, 0.5);
}
.nav a { text-decoration: none; opacity: 0.9; }
.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  opacity: 1;
  border-bottom: 1px solid var(--blush);
  outline: none;
}
.copy {
  align-self: end;
  justify-self: start;
  width: min(460px, 100%);
  padding: 8px 0 0;
}
.copy h1 {
  font-family: Rubik, sans-serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff7f2;
  text-shadow:
    0 2px 28px rgba(64, 15, 28, 0.55),
    0 1px 2px rgba(64, 15, 28, 0.4);
}
.copy h1 span { display: block; }
.copy .sub {
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--blush);
  max-width: 24ch;
  text-shadow: 0 1px 16px rgba(64, 15, 28, 0.55);
}
.copy .act {
  display: inline-block;
  margin-top: 26px;
  font-family: Rubik, sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  color: #fff7f2;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 194, 207, 0.85);
  padding-bottom: 3px;
  text-shadow: 0 1px 12px rgba(64, 15, 28, 0.45);
}
.copy .act:hover {
  color: var(--blush);
  border-bottom-color: var(--blush);
}
.copy .who {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 194, 207, 0.35);
  max-width: 34ch;
}
.copy .who b {
  display: block;
  font-family: Rubik, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff7f2;
  margin-bottom: 8px;
  text-shadow: 0 1px 12px rgba(64, 15, 28, 0.45);
}
.copy .who p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(243, 214, 222, 0.92);
  text-shadow: 0 1px 14px rgba(64, 15, 28, 0.5);
}

/* —— Below fold —— */
.below { background: var(--beige); }
.pull {
  background: var(--burgundy);
  color: var(--paper);
  padding: 40px 28px;
  font-family: Rubik, sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.4;
  text-align: center;
  max-width: 28ch;
  margin: 0 auto;
}
.grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--paper);
}
.col { padding: 36px 32px 44px; }
.col h2,
.page-section h2 {
  font-family: Rubik, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.col p,
.page-section p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1em;
  max-width: 42ch;
}
.list { list-style: none; margin-top: 8px; }
.list li {
  padding: 14px 0;
  border-top: 1px solid var(--sand);
}
.list strong {
  display: block;
  font-family: Rubik, sans-serif;
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.list span,
.list p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}
.hours {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}
.shot {
  position: relative;
  min-height: 420px;
  background: var(--deep);
}
.shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* —— Inner pages —— */
.page-hero {
  background: var(--deep);
  color: var(--paper);
  padding: 48px clamp(20px, 4vw, 48px) 40px;
}
.page-hero h1 {
  font-family: Rubik, sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff7f2;
  max-width: 20ch;
  line-height: 1.15;
}
.page-hero .lede {
  margin-top: 14px;
  color: var(--blush);
  font-size: 1.05rem;
  max-width: 36ch;
  line-height: 1.55;
}
.page-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 48px) 64px;
}
.page-section { margin-bottom: 40px; }
.page-section h2 { margin-top: 8px; }
.steps {
  list-style: none;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  padding: 18px 0;
  border-top: 1px solid var(--sand);
}
.steps li::before {
  content: counter(step);
  font-family: Rubik, sans-serif;
  font-weight: 600;
  color: var(--rose);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 6px;
}
.steps strong {
  display: block;
  font-family: Rubik, sans-serif;
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.steps span {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}
.note-box {
  background: var(--paper);
  border-right: 3px solid var(--burgundy);
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 42ch;
}
.pay-note {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: var(--sand);
  color: var(--deep);
  font-family: Rubik, sans-serif;
  font-size: 0.9rem;
  border-radius: 2px;
  opacity: 0.9;
}

/* —— Contact form —— */
.form-wrap {
  background: var(--paper);
  padding: 28px 24px 32px;
  margin-bottom: 36px;
  max-width: 480px;
}
.form-wrap h2 { margin-bottom: 8px; }
.form-wrap .form-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 36ch;
  line-height: 1.6;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: Rubik, sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--burgundy);
  margin-bottom: 6px;
}
.field .hint {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  margin-right: 4px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--sand);
  background: #fff;
  color: var(--deep);
  font-family: Alef, Rubik, sans-serif;
  font-size: 1rem;
  border-radius: 2px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--rose);
  outline-offset: 1px;
  border-color: var(--rose);
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.channel-extra { display: none; }
.channel-extra.is-visible { display: block; }
.btn-primary {
  display: inline-block;
  font-family: Rubik, sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  background: var(--burgundy);
  color: var(--paper);
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
}
.btn-primary:hover { background: var(--deep); }
.form-success {
  display: none;
  background: var(--beige);
  padding: 24px 20px;
  border-right: 3px solid var(--burgundy);
  max-width: 42ch;
}
.form-success.is-visible { display: block; }
.form-success p {
  color: var(--deep);
  margin-bottom: 0.8em;
  max-width: none;
}
.secondary-channels {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--sand);
}
.secondary-channels h3 {
  font-family: Rubik, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--burgundy);
  margin-bottom: 10px;
}
.secondary-channels p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 40ch;
}
.channel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  list-style: none;
}
.channel-links a {
  font-family: Rubik, sans-serif;
  font-size: 0.92rem;
  color: var(--burgundy);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
}
.channel-links a:hover {
  border-bottom-color: var(--rose);
  color: var(--rose);
}

/* —— Footer / stub —— */
.site-footer {
  background: var(--deep);
  color: rgba(243, 243, 243, 0.75);
  padding: 28px clamp(20px, 4vw, 48px);
  font-size: 0.85rem;
  text-align: center;
}
.site-footer a {
  color: var(--blush);
  text-decoration: none;
  margin: 0 8px;
}
.site-footer a:hover { border-bottom: 1px solid var(--blush); }
.site-footer .foot-meta { margin-top: 10px; opacity: 0.7; }
.stub {
  text-align: center;
  padding: 60px 24px;
  color: var(--muted);
}
.stub h2 {
  font-family: Rubik, sans-serif;
  color: var(--burgundy);
  margin-bottom: 12px;
}

/* —— Mobile —— */
@media (max-width: 820px) {
  .chamber .nav,
  .site-header .nav {
    gap: 10px;
    font-size: 0.75rem;
  }
  .copy { width: 100%; }
  .grid { grid-template-columns: 1fr; }
  .shot { min-height: 300px; }
  .shot img {
    position: relative;
    height: 300px;
  }
  .wash {
    background: linear-gradient(
      180deg,
      rgba(64, 15, 28, 0.5) 0%,
      rgba(64, 15, 28, 0.2) 35%,
      rgba(64, 15, 28, 0.75) 100%
    );
  }
}
@media (max-width: 560px) {
  .chamber .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .chamber .nav {
    display: flex;
    gap: 10px 14px;
    font-size: 0.72rem;
  }
  .site-header .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}
