:root {
  --bg: #f5f3ef;
  --bg-alt: #faf9f7;
  --text: #3a3632;
  --text-muted: #7a746c;
  --accent: #c4b5a5;
  --accent-deep: #8f9a84;
  --blush: #e8ddd6;
  --border: #e5e1da;
  --shadow: 0 18px 48px rgba(58, 54, 50, 0.06);
  --radius: 10px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --container: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}

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

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.logo em {
  font-style: italic;
  color: var(--accent-deep);
}

.nav {
  position: relative;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font: inherit;
  cursor: pointer;
}

.nav-list {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-list a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--accent-deep);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 6rem 0 4rem;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(58, 54, 50, 0.15) 0%,
    rgba(58, 54, 50, 0.4) 55%,
    rgba(58, 54, 50, 0.52) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.eyebrow {
  margin: 0 0 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.03em;
}

.section {
  padding: 6.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 3.75rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-label {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.section-head h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
}

.section-intro {
  margin: 0;
  color: var(--text-muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.split-text .section-head {
  margin-bottom: 1.85rem;
}

.split-text p {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
}

.split-text p:last-child {
  margin-bottom: 0;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

.ritual-item {
  margin: 0;
}

.ritual-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1.35rem;
}

.ritual-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.ritual-item:hover .ritual-image img {
  transform: scale(1.025);
}

.ritual-item figcaption h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
}

.ritual-item figcaption p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.location-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.75rem;
  align-items: start;
}

.location-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2.25rem;
}

.location-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.location-text h2 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  font-weight: 400;
}

.location-address {
  margin: 0 0 1.35rem;
  font-size: 1.06rem;
  line-height: 1.7;
}

.location-note {
  margin: 0 0 1.6rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.contact-details p {
  margin: 0 0 0.55rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.contact-details strong {
  color: var(--text);
  font-weight: 400;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 26rem;
}

#map {
  width: 100%;
  height: 26rem;
  z-index: 1;
}

.site-footer {
  padding: 2.75rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .split,
  .location-block {
    grid-template-columns: 1fr;
  }

  .split-image {
    order: -1;
  }

  .ritual-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    flex-direction: column;
    gap: 0;
    min-width: 11rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    box-shadow: var(--shadow);
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li a {
    display: block;
    padding: 0.75rem 1.25rem;
  }

  .hero {
    min-height: 88vh;
  }

  .section {
    padding: 4.25rem 0;
  }
}
