:root {
  --background: #f5f1e8;
  --background-strong: #ece3d3;
  --surface: rgba(255, 252, 246, 0.9);
  --surface-muted: rgba(255, 248, 238, 0.72);
  --surface-dark: #101010;
  --surface-dark-soft: rgba(18, 18, 18, 0.92);
  --text-main: #141414;
  --text-soft: #58524a;
  --text-inverse: #f8f1e6;
  --border: rgba(22, 22, 22, 0.12);
  --border-strong: rgba(200, 163, 95, 0.3);
  --accent: #c8a35f;
  --accent-strong: #a8843f;
  --accent-soft: rgba(200, 163, 95, 0.16);
  --success: #3d6b54;
  --shadow: 0 18px 48px rgba(20, 20, 20, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --mobile-nav-offset: 0px;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(200, 163, 95, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(17, 17, 17, 0.08), transparent 34%),
    linear-gradient(140deg, #faf7f0 0%, #f3eee4 52%, #e8ddca 100%);
  font-family: "Manrope", sans-serif;
}

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

p,
h1,
h2,
h3,
ul,
dl {
  margin-top: 0;
}

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

.site-shell,
.ritual-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 28px clamp(20px, 4vw, 56px) 92px;
}

.hero-grid,
.page-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.hero-ambient,
.panel-orbit,
.section-orbit,
.aside-orbit {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
}

.hero-ambient-primary {
  inset: 120px 4vw auto auto;
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  background: radial-gradient(circle, rgba(200, 163, 95, 0.2), transparent 68%);
}

.hero-ambient-secondary {
  right: 26px;
  bottom: 34px;
  width: min(28vw, 260px);
  height: min(28vw, 260px);
  background: radial-gradient(circle, rgba(200, 163, 95, 0.18), transparent 70%);
}

.nav {
  position: relative;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  margin-bottom: 64px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(116px, 14vw, 172px);
  aspect-ratio: 1.6;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 250, 243, 0.88);
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.08);
}

.brand-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nav-shell {
  flex: 0 1 auto;
  margin-left: auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 16px;
}

.nav-scroll {
  width: max-content;
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.66);
  box-shadow: 0 16px 36px rgba(20, 20, 20, 0.08);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.98rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.74);
}

.nav-links a.is-active {
  color: var(--text-main);
  background: linear-gradient(135deg, rgba(214, 184, 122, 0.34), rgba(255, 255, 255, 0.94));
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.08);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, rgba(214, 184, 122, 0.28), rgba(255, 252, 246, 0.92));
  box-shadow: 0 16px 30px rgba(20, 20, 20, 0.1);
  color: var(--text-main);
  font-weight: 700;
  white-space: nowrap;
}

.hero-copy,
.page-copy,
.page-aside,
.signature-card,
.experience-card,
.showcase-panel,
.contact-copy,
.contact-form,
.ritual-card,
.detail-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-copy,
.page-copy {
  padding: clamp(30px, 5vw, 60px);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(252, 246, 236, 0.88));
}

.hero-copy h1,
.page-copy h1,
.section-heading h2,
.showcase-panel h2,
.scene-card h2,
.page-aside h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-copy h1,
.page-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(3.5rem, 7vw, 6.2rem);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lead,
.hero-copy p,
.page-copy p,
.showcase-panel p,
.contact-copy p,
.scene-list p,
.detail-card p,
.ritual-card p,
.experience-copy p,
.experience-card span,
.contact-copy li {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button,
.contact-form button {
  cursor: pointer;
}

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

.button-primary {
  background: linear-gradient(135deg, #d2b06c, #c19a53);
  color: #111111;
}

.button-secondary {
  border-color: var(--border-strong);
  background: rgba(255, 251, 245, 0.42);
}

.hero-points,
.contact-copy ul {
  margin-bottom: 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.85;
}

.hero-scene {
  display: flex;
  position: relative;
  isolation: isolate;
}

.scene-card,
.page-aside {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.hero-scene > :not(.hero-ambient-secondary),
.page-aside > :not(.aside-orbit),
.quote-panel > :not(.panel-orbit),
.dark-section > :not(.section-orbit) {
  position: relative;
  z-index: 1;
}

.scene-card-dark,
.page-aside,
.dark-section,
.quote-panel {
  background: linear-gradient(155deg, rgba(13, 13, 13, 0.98), rgba(34, 31, 28, 0.95));
  color: var(--text-inverse);
  border-color: rgba(200, 163, 95, 0.22);
}

.scene-card-dark h2,
.page-aside h2,
.quote-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.card-kicker,
.page-aside .hero-points,
.quote-panel span,
.detail-meta span,
.ritual-meta dt {
  color: rgba(248, 241, 230, 0.72);
}

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

.scene-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(200, 163, 95, 0.16);
}

.scene-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.scene-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 163, 95, 0.18);
  color: var(--accent);
  font-weight: 700;
}

.scene-list strong,
.page-aside strong,
.experience-card strong,
.detail-card strong,
.ritual-card h3,
.signature-card h3 {
  display: block;
  margin-bottom: 8px;
}

.section {
  padding: 0 clamp(20px, 4vw, 56px) 80px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-intro {
  color: var(--text-soft);
  line-height: 1.82;
}

.section-heading h2,
.showcase-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.signature-grid,
.detail-grid,
.ritual-grid,
.experience-grid,
.contact-layout {
  display: grid;
  gap: 20px;
}

.signature-grid,
.ritual-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signature-card,
.ritual-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(248, 239, 225, 0.74));
}

.signature-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signature-card h3,
.ritual-card h3,
.detail-card h3,
.contact-copy h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.experience-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.experience-copy {
  max-width: 620px;
}

.experience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 246, 0.68);
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 20px;
}

.showcase-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.text-panel {
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.88), rgba(247, 239, 228, 0.76));
}

.quote-panel p,
.quote-panel span,
.page-aside p,
.page-aside li,
.dark-section .section-heading p,
.dark-section .section-heading h2 {
  color: rgba(248, 241, 230, 0.86);
}

.contact-layout {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.contact-copy,
.contact-form {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 246, 0.8);
}

.contact-form {
  display: grid;
  gap: 16px;
  scroll-margin-top: 24px;
}

#location-start,
#hours-section,
#contact-section {
  scroll-margin-top: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(20, 20, 20, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-main);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(200, 163, 95, 0.22);
  border-color: var(--accent);
}

.checkbox-field {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
}

.contact-form .checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
}

.contact-form .checkbox-field span {
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.7;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.field-error {
  color: #8c4631;
  font-size: 0.92rem;
  font-weight: 600;
}

.banner {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.banner-success {
  background: rgba(61, 107, 84, 0.12);
  color: var(--success);
}

.banner-error {
  background: rgba(140, 70, 49, 0.12);
  color: #8c4631;
}

.ritual-shell .hero {
  padding-bottom: 72px;
}

.page-aside {
  align-self: stretch;
  isolation: isolate;
}

.dark-section {
  position: relative;
  isolation: isolate;
  margin: 0 clamp(20px, 4vw, 56px) 80px;
  padding: 40px clamp(20px, 4vw, 40px);
  border-radius: var(--radius-xl);
}

.panel-orbit-quote,
.section-orbit,
.aside-orbit {
  inset: auto -50px -50px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(200, 163, 95, 0.24), transparent 70%);
}

.dark-section .detail-grid {
  margin-top: 8px;
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(200, 163, 95, 0.16);
  box-shadow: none;
}

.detail-card p {
  color: rgba(248, 241, 230, 0.78);
}

.detail-meta,
.ritual-meta {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.detail-meta strong,
.ritual-meta dd {
  margin: 0;
  color: var(--text-inverse);
  font-weight: 700;
}

.detail-meta span,
.ritual-meta dt {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ritual-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 20px;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.ritual-meta div {
  display: grid;
  gap: 6px;
}

.ritual-meta dd {
  color: var(--text-main);
}

.section-cta {
  margin-top: 32px;
}

.home-hero-grid {
  align-items: center;
}

.hero-scene-media .scene-card,
.image-aside {
  display: grid;
  gap: 20px;
}

.media-card {
  padding: 24px;
}

.image-aside {
  padding: 24px;
}

.page-image {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.editorial-hero-grid,
.editorial-intro {
  align-items: center;
}

.editorial-copy {
  position: relative;
  z-index: 2;
}

.hero-signature {
  margin: 0 0 22px;
  color: var(--accent-strong);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-photo-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  grid-template-rows: minmax(260px, auto) auto;
  gap: 18px;
  align-items: end;
}

.photo-panel,
.gallery-card,
.service-pillar-card,
.portrait-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 246, 0.82);
  box-shadow: var(--shadow);
}

.photo-panel-primary {
  min-height: 460px;
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.photo-panel-secondary {
  min-height: 220px;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  align-self: start;
}

.photo-panel-story {
  min-height: 420px;
}

.hero-photo-shell.hero-photo-stack {
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

.hero-photo-shell.hero-photo-stack .photo-panel-primary,
.hero-photo-shell.hero-photo-stack .photo-panel-secondary {
  grid-column: 1;
  grid-row: auto;
  min-height: clamp(240px, 22vw, 320px);
  align-self: stretch;
}

.about-founder-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto;
  align-items: stretch;
}

.about-founder-panel {
  min-height: clamp(360px, 36vw, 560px);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(247, 239, 228, 0.82));
}

.about-founder-panel .editorial-photo {
  min-height: inherit;
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.about-founder-disclosure[open] {
  border-color: var(--border-strong);
}

.about-founder-toggle {
  position: relative;
  display: block;
  cursor: pointer;
  list-style: none;
}

.about-founder-toggle::-webkit-details-marker {
  display: none;
}

.about-founder-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04) 10%, rgba(17, 17, 17, 0.68) 100%);
  pointer-events: none;
}

.about-founder-toggle:focus-visible {
  outline: 2px solid rgba(200, 163, 95, 0.28);
  outline-offset: -2px;
}

.about-founder-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.about-founder-label .signature-tag {
  width: max-content;
  margin-bottom: 0;
  background: rgba(255, 252, 246, 0.92);
}

.about-founder-label h3,
.about-founder-copy h3 {
  margin: 0;
}

.about-founder-label h3 {
  color: var(--text-inverse);
}

.about-founder-label p {
  margin: 0;
  color: rgba(248, 241, 230, 0.84);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-founder-action {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(200, 163, 95, 0.4);
  background: rgba(255, 252, 246, 0.88);
  box-shadow: 0 16px 28px rgba(20, 20, 20, 0.14);
  backdrop-filter: blur(12px);
}

.about-founder-action::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--accent-strong);
  border-bottom: 2px solid var(--accent-strong);
  transform: translate(-50%, -62%) rotate(45deg);
  transition: transform 180ms ease;
}

.about-founder-disclosure[open] .about-founder-action::before {
  transform: translate(-50%, -34%) rotate(-135deg);
}

.about-founder-overlay {
  position: absolute;
  inset: 72px 16px 16px;
  z-index: 1;
  border-radius: calc(var(--radius-xl) - 8px);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(245, 237, 224, 0.98));
  box-shadow: 0 18px 32px rgba(20, 20, 20, 0.12);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.about-founder-disclosure[open] .about-founder-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.about-founder-copy {
  height: 100%;
  overflow-y: auto;
  padding: 22px;
}

.about-founder-copy p {
  color: var(--text-soft);
  line-height: 1.76;
}

.about-founder-copy .about-founder-summary {
  margin-bottom: 10px;
  color: var(--text-main);
  font-weight: 700;
}

.hero-stage {
  display: grid;
  gap: 20px;
}

.photo-panel-home-main {
  min-height: 540px;
}

.hero-home .hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 5.5vw, 5.3rem);
}

.hero-logo-card {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 170px;
  height: 170px;
  padding: 18px;
  border: 1px solid rgba(200, 163, 95, 0.24);
  border-radius: 28px;
  background: rgba(17, 17, 17, 0.96);
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.16);
}

.hero-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-stat-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stat-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 246, 0.84);
  box-shadow: var(--shadow);
}

.hero-stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text-main);
  font-size: 1.2rem;
}

.hero-stat-card span,
.media-caption span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.editorial-photo,
.editorial-card-media,
.service-pillar-media,
.portrait-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-panel .editorial-photo,
.gallery-card .editorial-photo {
  min-height: inherit;
}

.media-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 246, 0.9);
  color: var(--text-main);
  box-shadow: 0 16px 32px rgba(20, 20, 20, 0.12);
}

.media-caption strong {
  display: block;
  margin: 0;
}

.media-caption-light {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.82), rgba(34, 30, 26, 0.92));
  color: rgba(248, 241, 230, 0.92);
}

.editorial-stat-grid {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
}

.editorial-grid,
.portrait-grid,
.service-pillar-grid,
.gallery-strip {
  display: grid;
  gap: 20px;
}

.editorial-grid-3,
.portrait-grid,
.service-pillar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-card {
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(247, 239, 228, 0.78));
}

.editorial-card-media {
  aspect-ratio: 4 / 3;
}

.editorial-card-body {
  padding: 22px;
}

.editorial-card-text .editorial-card-body {
  min-height: 100%;
}

.editorial-card h3,
.service-pillar-card h3,
.portrait-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.editorial-card p,
.service-pillar-card p,
.portrait-card p,
.service-pillar-card li,
.portrait-card li {
  color: var(--text-soft);
  line-height: 1.76;
}

.service-pillar-card {
  display: block;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(247, 239, 228, 0.82));
}

.service-pillar-disclosure[open] {
  border-color: var(--border-strong);
}

.service-pillar-media {
  min-height: clamp(360px, 34vw, 520px);
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.service-pillar-toggle {
  position: relative;
  display: block;
  cursor: pointer;
  list-style: none;
}

.service-pillar-toggle::-webkit-details-marker {
  display: none;
}

.service-pillar-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04) 8%, rgba(17, 17, 17, 0.72) 100%);
  pointer-events: none;
}

.service-pillar-toggle:focus-visible {
  outline: 2px solid rgba(200, 163, 95, 0.28);
  outline-offset: -2px;
}

.service-pillar-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.service-pillar-caption .signature-tag {
  width: max-content;
  margin-bottom: 0;
  background: rgba(255, 252, 246, 0.92);
}

.service-pillar-caption h3 {
  margin: 0;
  color: var(--text-inverse);
}

.service-pillar-meta {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
}

.service-pillar-meta strong {
  color: var(--text-inverse);
  font-size: 1rem;
}

.service-pillar-meta span {
  color: rgba(248, 241, 230, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-pillar-action {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(200, 163, 95, 0.4);
  background: rgba(255, 252, 246, 0.88);
  box-shadow: 0 16px 28px rgba(20, 20, 20, 0.14);
  backdrop-filter: blur(12px);
}

.service-pillar-action::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--accent-strong);
  border-bottom: 2px solid var(--accent-strong);
  transform: translate(-50%, -62%) rotate(45deg);
  transition: transform 180ms ease;
}

.service-pillar-disclosure[open] .service-pillar-action::before {
  transform: translate(-50%, -34%) rotate(-135deg);
}

.service-pillar-overlay {
  position: absolute;
  inset: 72px 16px 16px;
  z-index: 1;
  border-radius: calc(var(--radius-xl) - 8px);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(245, 237, 224, 0.98));
  box-shadow: 0 18px 32px rgba(20, 20, 20, 0.12);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.service-pillar-disclosure[open] .service-pillar-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.service-pillar-copy,
.service-pillar-footer,
.portrait-copy {
  padding: 22px;
}

.service-pillar-copy {
  height: 100%;
  overflow-y: auto;
  padding-bottom: 22px;
  background: transparent;
}

.service-pillar-summary {
  margin-bottom: 10px;
  color: var(--text-main);
  font-weight: 700;
}

.service-pillar-footer {
  margin-top: 18px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  background: transparent;
}

.service-pillar-footer strong,
.portrait-copy .signature-tag + h3,
.media-caption strong {
  margin-bottom: 6px;
}

.service-pillar-footer strong {
  display: block;
  font-size: 1rem;
}

.service-pillar-footer span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portrait-card {
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(247, 239, 228, 0.78));
}

.portrait-media {
  aspect-ratio: 4 / 5;
}

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

.gallery-strip-stack {
  align-content: start;
}

.gallery-card {
  min-height: 260px;
}

.stat-grid,
.page-link-grid,
.catalog-grid,
.staff-grid,
.channel-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.page-link-card,
.catalog-card,
.staff-card,
.hours-card,
.channel-card,
.mini-card,
.footer-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 246, 0.8);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 163, 95, 0.18);
}

.stat-card strong,
.page-link-card strong,
.mini-card strong,
.channel-card strong,
.footer-card h3,
.hours-card h2 {
  display: block;
  margin-bottom: 8px;
}

.stat-card strong {
  color: var(--text-inverse);
  font-size: 1.3rem;
}

.stat-card span {
  color: rgba(248, 241, 230, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}

.page-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-link-card {
  padding: 28px;
  color: inherit;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.page-link-card:hover,
.channel-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.page-link-card p,
.catalog-card p,
.staff-card p,
.mini-card span,
.channel-card small,
.footer-card p,
.schedule-row small {
  color: var(--text-soft);
  line-height: 1.75;
}

.page-link-card strong {
  margin-top: 20px;
  color: var(--text-main);
  font-size: 0.94rem;
}

.inline-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-strong);
  font-weight: 700;
}

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

.catalog-card,
.staff-card,
.hours-card {
  padding: 28px;
}

.service-accordion {
  display: grid;
  gap: 16px;
}

.service-accordion-home {
  max-width: 1080px;
  gap: 20px;
}

.service-disclosure {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 246, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-disclosure[open] {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(247, 239, 228, 0.84));
}

.service-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}

.service-summary::-webkit-details-marker {
  display: none;
}

.service-summary-copy {
  max-width: 760px;
}

.service-summary h3,
.service-staff-copy h4,
.service-detail-card h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.service-summary p,
.service-staff-copy p,
.service-description {
  margin-bottom: 0;
  color: var(--text-soft);
  line-height: 1.78;
}

.service-summary-action {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(200, 163, 95, 0.1);
}

.service-summary-action::before {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  font-size: 1.8rem;
  line-height: 1;
}

.service-disclosure[open] .service-summary-action::before {
  content: "\2212";
}

.service-summary:focus-visible {
  outline: 2px solid rgba(200, 163, 95, 0.28);
  outline-offset: -2px;
}

.home-service-summary {
  align-items: center;
  padding: 20px 24px;
}

.home-service-summary .service-summary-action {
  margin-left: auto;
}

.home-service-summary-media {
  flex: 0 0 160px;
  width: 160px;
}

.home-service-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  object-fit: cover;
  background: rgba(255, 255, 255, 0.42);
}

.home-service-summary-copy {
  display: grid;
  gap: 8px;
}

.home-service-summary-copy .signature-tag {
  margin-bottom: 0;
}

.home-service-meta {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
}

.home-service-meta strong {
  margin: 0;
  color: var(--text-main);
  font-size: 1rem;
}

.home-service-meta span {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-disclosure-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  padding: 0 28px 28px;
}

.home-service-panel {
  align-items: stretch;
}

.home-service-panel .service-detail-card {
  height: 100%;
}

.service-staff-card,
.service-detail-card {
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.42);
}

.service-staff-card {
  overflow: hidden;
}

.service-staff-copy,
.service-detail-card {
  padding: 22px;
}

.service-portrait {
  margin-bottom: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.service-keypoints {
  margin-top: 20px;
}

.bullet-list,
.compact-list {
  margin-bottom: 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.8;
}

.staff-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.staff-portrait {
  aspect-ratio: 4 / 4.6;
  width: 100%;
  margin-bottom: 18px;
  border-radius: 22px;
  object-fit: cover;
}

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

.mini-card {
  padding: 18px 20px;
}

.mini-card span {
  display: block;
}

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

.channel-card {
  padding: 24px;
  color: inherit;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.channel-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 700;
}

.hours-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 20px;
}

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

.schedule-row {
  display: grid;
  grid-template-columns: 120px 120px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  align-items: start;
}

.schedule-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.schedule-row strong,
.schedule-row span {
  color: var(--text-main);
}

.schedule-row span {
  font-weight: 700;
}

.site-footer {
  padding: 0 clamp(20px, 4vw, 56px) 72px;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
}

.footer-card {
  padding: 24px;
}

.footer-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--text-soft);
}

.footer-links a:hover {
  color: var(--text-main);
}

[data-reveal] {
  --reveal-offset: 28px;
  opacity: 0;
  transform: translate3d(
    0,
    calc(var(--reveal-offset, 28px) + var(--parallax-offset, 0px)),
    0
  );
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  --reveal-offset: 0px;
}

.is-parallax-active {
  will-change: transform;
}

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .hero-copy,
  .page-copy {
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(252, 246, 236, 0.8));
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-intro,
  .split-showcase,
  .experience-band,
  .contact-layout,
  .hours-grid,
  .service-disclosure-panel {
    grid-template-columns: 1fr;
  }

  .signature-grid,
  .ritual-grid,
  .detail-grid,
  .experience-grid,
  .page-link-grid,
  .staff-grid,
  .editorial-grid-3,
  .portrait-grid,
  .service-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid,
  .channel-grid,
  .gallery-strip,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-photo-shell {
    grid-template-columns: minmax(0, 1fr) 160px;
  }

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

  .photo-panel-home-main {
    min-height: 460px;
  }

  .photo-panel-primary {
    min-height: 400px;
  }
}

@media (max-width: 720px) {
  .hero {
    overflow: clip;
    padding-inline: 18px;
    padding-bottom: 64px;
  }

  .section {
    padding-inline: 18px;
    padding-bottom: 64px;
  }

  .site-footer {
    padding-inline: 18px;
    padding-bottom: 64px;
  }

  .dark-section {
    margin-inline: 18px;
    margin-bottom: 64px;
  }

  .nav {
    display: grid;
    gap: 16px;
    z-index: 1;
    margin-bottom: 44px;
  }

  .brand {
    width: clamp(104px, 34vw, 148px);
    border-radius: 24px;
  }

  .nav-shell {
    display: grid;
    align-items: stretch;
    justify-items: stretch;
    position: static;
    width: 100%;
    margin-left: 0;
    gap: 12px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-scroll {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }

  .nav-scroll::before,
  .nav-scroll::after {
    display: none;
  }

  .nav-links {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px;
    margin: 0;
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 999px;
    background: #fffaf3;
    box-shadow: 0 10px 22px rgba(20, 20, 20, 0.06);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    touch-action: pan-x;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    font-size: 0.92rem;
  }

  .nav-links a.is-active {
    background: linear-gradient(135deg, rgba(214, 184, 122, 0.4), rgba(255, 255, 255, 0.96));
  }

  .nav-cta {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.98rem;
    background: linear-gradient(135deg, #dfc082, #f7eedf);
    box-shadow: 0 10px 22px rgba(20, 20, 20, 0.08);
  }

  .hero-copy h1,
  .page-copy h1 {
    font-size: 3.3rem;
  }

  .section-heading h2,
  .showcase-panel h2,
  .scene-card-dark h2,
  .page-aside h2 {
    font-size: 2.7rem;
  }

  .signature-grid,
  .ritual-grid,
  .detail-grid,
  .experience-grid,
  .page-link-grid,
  .catalog-grid,
  .staff-grid,
  .channel-grid,
  .footer-grid,
  .stat-grid,
  .editorial-grid-3,
  .portrait-grid,
  .service-pillar-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-photo-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-founder-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat-row {
    grid-template-columns: 1fr;
  }

  .photo-panel-primary,
  .photo-panel-secondary,
  .editorial-stat-grid {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-panel-primary,
  .photo-panel-story {
    min-height: 320px;
  }

  .about-founder-panel {
    min-height: 320px;
  }

  .photo-panel-home-main {
    min-height: 340px;
  }

  .hero-home .hero-copy h1 {
    max-width: none;
  }

  .photo-panel-secondary,
  .gallery-card {
    min-height: 220px;
  }

  .button {
    width: 100%;
  }

  .scene-list article {
    grid-template-columns: 1fr;
  }

  .hero-ambient-primary {
    width: min(54vw, 240px);
    height: min(54vw, 240px);
  }

  .hero-ambient-secondary,
  .panel-orbit,
  .section-orbit,
  .aside-orbit {
    opacity: 0.72;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-summary {
    padding: 22px 22px;
  }

  .home-service-summary {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
  }

  .home-service-summary-media,
  .home-service-summary-copy {
    width: 100%;
    flex-basis: 100%;
  }

  .home-service-portrait {
    aspect-ratio: 5 / 4;
  }

  .hero-logo-card {
    top: 16px;
    right: 16px;
    width: 112px;
    height: 112px;
    padding: 12px;
    border-radius: 22px;
  }

  .service-disclosure-panel {
    padding: 0 22px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    --reveal-offset: 0px;
    transition: none;
  }

  [data-parallax-rate] {
    --parallax-offset: 0px;
    transition: none;
  }
}

@media (max-width: 720px) {
  .hero-copy,
  .page-copy {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
