:root {
  --dark: #1a2310;
  --forest: #1A412F; /* new */
  --sage: #7A8F62; /* new (and old) */
  --cream: #F0EADE; /* new */
  --warm: #EDE4D0;
  --gold: #8faa6a;
  --text: #1a2310;
  --muted: #84472A; /* earth */ /* new */
  --border: rgb(63 82 40 / 15%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: Jost, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

a {
  color: var(--sage);
  text-decoration: underline;
  transition: color 0.2s;
}

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

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 3.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-brand img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.nav-toggle::before,
.nav-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--forest);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle::before {
  box-shadow: 0 -6px 0 var(--forest), 0 6px 0 var(--forest);
}

.nav-toggle::after {
  opacity: 0;
}

.nav-toggle[aria-expanded='true']::before {
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: none;
}

.nav-toggle[aria-expanded='true']::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

nav ul {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

nav ul a {
  color: var(--forest);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s;
  font-weight: 500;
}

nav ul a:hover {
  opacity: 1;
}

nav ul .nav-active {
  color: var(--sage);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 1;
  display: inline-block;
  pointer-events: none;
  cursor: default;
}

.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.5rem 1.3rem;
  opacity: 1 !important;
}

.nav-cta:hover {
  background: var(--sage) !important;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/redalen-image-15.png');
  background-position: center 35%;
  background-size: cover;
  background-repeat: no-repeat;
  animation: slowZoom 24s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.11);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(26 35 16 / 20%) 0%, rgb(26 35 16 / 5%) 40%, rgb(26 35 16 / 78%) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 2rem 7rem;
  animation: fadeUp 1.4s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo-wrap {
  margin-bottom: 1.8rem;
}

.hero-logo-wrap img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 4px 24px rgb(0 0 0 / 40%));
  border-radius: 4px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: rgb(247 243 236 / 90%);
  letter-spacing: 0.04em;
  margin-bottom: 2.2rem;
}

.hero-pills {
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px solid rgb(143 170 106 / 35%);
  display: inline-flex;
  background-color: rgb(0 0 0 / 30%);
}

.hero-pills span {
  color: rgb(247 243 236 / 70%);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-right: 1px solid rgb(143 170 106 / 30%);
}

.hero-pills span:last-child {
  border-right: none;
}

/* SECTIONS */
section {
  padding: 7rem 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-label {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  display: block;
  margin-bottom: 0.9rem;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.6rem;
}

h2 em {
  font-style: italic;
  color: var(--sage);
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.9rem;
}

p {
  font-size: 0.98rem;
  line-height: 1.85;

  /* color: var(--muted); */
  max-width: 62ch;
  margin-bottom: 1rem;
}

/* INTRO */
.intro {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

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

.intro-text p + p {
  margin-top: 1.1rem;
}

.intro-image {
  position: relative;
}

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

.intro-image::before {
  content: '';
  position: absolute;
  inset: -1.4rem 1.4rem 1.4rem -1.4rem;
  border: 1px solid rgb(143 170 106 / 30%);
  z-index: -1;
  pointer-events: none;
}

/* OFFERINGS */
.offerings {
  background: var(--forest);
  padding: 3rem 0;
  overflow: hidden;
}

.offering-card .section-label {
  color: rgb(143 170 106 / 80%);
}

.offering-card h2 {
  color: var(--warm);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.3rem;
}

.offering-card > p {
  color: rgb(247 243 236 / 68%);
  margin-bottom: 1.8rem;
}

.offering-card ul {
  list-style: none;
  margin-bottom: 2.5rem;
}

.offering-card ul li {
  color: rgb(247 243 236 / 72%);
  font-size: 0.88rem;
  padding: 0.48rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 6%);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.offering-card ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.offering-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  opacity: 0.82;
  margin-top: auto;
}

/* PROGRAM */
.program {
  background: var(--warm);
  border-top: 1px solid var(--border);
}

.program-header {
  text-align: center;
  margin-bottom: 5rem;
}

.program-header p {
  margin: 0 auto;
  text-align: center;
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.program-day {
  border-top: 2px solid var(--sage);
  padding-top: 2rem;
}

.program-day h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.4rem;
}

.program-item {
  display: flex;
  gap: 1.2rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.program-time {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  flex-shrink: 0;
  width: 52px;
  font-weight: 500;
}

.program-desc {
  font-size: 0.9rem;

  /* color: var(--muted); */
  line-height: 1.5;
}

/* SPACES */
.spaces {
  background: var(--cream);
}

.spaces-header {
  margin-bottom: 3.5rem;
}

.gallery-block {
  max-width: 1160px;
  margin: 1rem auto 3rem;
  padding: 0 2.5rem;
}

/* ABOUT */
.about {
  background: var(--forest);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}

.about img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.about .section-label {
  color: rgb(143 170 106 / 80%);
}

.about h2 {
  color: var(--warm);
}

.about p {
  color: rgb(247 243 236 / 70%);
}

.about p + p {
  margin-top: 1.1rem;
}

.facilitation-list,
.credentials {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.facilitation-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.6rem;
  margin-bottom: 1.2rem;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.83rem;
  color: rgb(247 243 236 / 60%);
}

.credential::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ACTIVITIES */
.activities {
  background: var(--warm);
  border-top: 1px solid var(--border);
}

.activities-header {
  margin-bottom: 3.5rem;
}

.activities-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.activities-cols h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  color: var(--dark);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  padding: 0.5rem 1.1rem;
  border: 1px solid rgb(44 58 30 / 30%);
  color: var(--forest);
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}

.tag:hover {
  background: var(--forest);
  color: var(--cream);
}

/* PRACTICAL */
.practical {
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.recycle {
  background: var(--warm);
  border-top: 1px solid var(--border);
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.practical-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
}

.practical-block p,
.practical-block li {
  font-size: 0.86rem;
  line-height: 1.78;

  /* color: var(--muted); */
  max-width: 100%;
}

.practical-block ul {
  list-style: none;
}

.practical-block ul li {
  padding: 0.28rem 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted rgb(0 0 0 / 7%);
}

.practical-block ul li span {
  font-weight: 500;
  color: var(--forest);
}

/* LOCATION */
.location {
  background: var(--forest);
  text-align: center;
}

.location .section-label {
  color: rgb(143 170 106 / 80%);
}

.location h2 {
  color: var(--warm);
  margin-bottom: 1rem;
}

.location > .container > p {
  color: rgb(247 243 236 / 65%);
  margin: 0 auto 3rem;
}

.distance-row {
  display: flex;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 10%);
  max-width: 680px;
  margin: 3rem auto 0;
}

.distance-item {
  flex: 1;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgb(255 255 255 / 10%);
}

.distance-item:last-child {
  border-right: none;
}

.distance-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.distance-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(247 243 236 / 50%);
}

.location-map-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  max-width: 980px;
  margin: 3rem auto 0;
}

.location-card,
.location-map-frame {
  border: 1px solid rgb(255 255 255 / 10%);
  background: rgb(247 243 236 / 4%);
}

.location-card {
  padding: 2rem;
  text-align: left;
}

.location-card .section-label {
  margin-bottom: 0.8rem;
}

.location-card h3 {
  color: var(--warm);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.location-card p {
  color: rgb(247 243 236 / 72%);
  max-width: 100%;
  margin-bottom: 0.9rem;
}

.location-address {
  color: rgb(247 243 236 / 72%);
  font-style: normal;
  line-height: 1.85;
  margin-bottom: 0.9rem;
}

.location-btn {
  margin-top: 0.8rem;
}

.location-map-frame {
  min-height: 420px;
  overflow: hidden;
}

.location-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* INTERIOR SLIDER */
.interior-gallery {
  background: var(--warm);
  border-top: 1px solid var(--border);
}

.interior-gallery .container > p {
  margin-bottom: 2rem;
}

.interior-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
}

.interior-slides {
  position: relative;
  width: 100%;
  max-width: 1080px;
  height: min(68vh, 640px);
  overflow: hidden;
  background: #121212;
}

.interior-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.interior-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.interior-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.interior-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 0;
  background: rgb(0 0 0 / 34%);
  color: rgb(255 255 255 / 90%);
  font-size: 2.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  padding: 0.4rem 1.2rem 0.8rem 1.2rem;
  margin: 0;
  font-weight: 300;
  letter-spacing: -0.1em;
}

.interior-nav:hover {
  background: rgb(0 0 0 / 55%);
}

.interior-prev {
  left: 0;
  padding: 0.4rem 1.3rem 0.8rem 1.1rem;
}

.interior-next {
  right: 0;
}

.interior-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.interior-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  border: 1px solid rgb(26 65 47 / 35%);
  background: transparent;
  cursor: pointer;
}

.interior-dot.is-active {
  background: var(--forest);
  border-color: var(--forest);
}

/* ARRANGEMENT LINKS */
.arrangement-links {
  background: var(--warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}

.arrangement-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.arrangement-link-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background: var(--forest);
}

.arrangement-link-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  opacity: 0.82;
  transition: transform 0.45s ease, opacity 0.3s ease;
}

.arrangement-link-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.arrangement-link-text {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.1rem 1rem 0.95rem;
  background: rgb(26 35 16 / 86%);
}

.arrangement-link-text span {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(247 243 236 / 70%);
  margin-bottom: 0.3rem;
}

.arrangement-link-text h3 {
  color: var(--cream);
  font-size: 1.04rem;
  line-height: 1.2;
  margin: 0;
}

/* ARRANGEMENT COPY */
.arrangement-copy {
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.arrangement-copy-alt {
  background: var(--warm);
}

.arrangement-copy-grid {
  display: grid;
  gap: 3rem;
}

.arrangement-copy-with-art {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: center;
}

.arrangement-copy-content {
  min-width: 0;
}

.arrangement-copy-art {
  margin: 0;
}

.arrangement-copy-art-transparent {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.arrangement-copy-art-transparent img {
  width: min(100%, 440px);
  height: auto;
  display: block;
}

.arrangement-copy p + p {
  margin-top: 1rem;
}

.arrangement-practical {
  margin: 0.8rem 0 1.8rem 1.2rem;
}

.arrangement-practical li {
  margin-bottom: 0.5rem;
  font-size: 0.94rem;
  line-height: 1.65;
}

/* CTA */
.cta-section {
  background: var(--cream);
  text-align: center;
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}

.cta-section .logo-mark {
  height: 76px;
  margin-bottom: 2.5rem;
  opacity: 0.88;
}

.cta-section h2 {
  margin: 0 auto 1.2rem;
  max-width: 560px;
}

.cta-section > .container > p {
  margin: 0 auto 3rem;
  max-width: 48ch;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.95rem 2.8rem;
  background: var(--forest);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--sage);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
  margin-left: 1rem;
}

.btn-ghost:hover {
  background: var(--forest);
  color: var(--cream);
}

/* FOOTER */
footer {
  padding: 0;
  text-align: center;
  width: 100%;
  margin: 0 0 3rem;
}

.footer-pattern {
  display: block;
  width: 100%;
  height: 38px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCA1OCAzOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDkyOSA5Ljc5NTI0TDEwLjUwNDcgMjMuOTAzTDEwLjA5ODcgMjQuODE2NUw0LjgyMSAzNy4zMDA0SDBMMTYuNDkyOSAwLjAwMDk3NjU2MkwzMi45ODU5IDM3LjMwMDRIMjguMTY0OEwyMi45ODg2IDI1LjEyMUwyMi41ODI2IDI0LjEwNkwxNi40OTI5IDkuNzk1MjRaIiBmaWxsPSIjN0E4RjYyIi8+PHBhdGggZD0iTTE2LjQ4NjQgMzEuMDE1TDEzLjgyMjcgMzcuMjkwNkg5LjM2NzE5TDE2LjQ4NjQgMjEuMjIwN0wyMy41OTQyIDM3LjI5MDZIMTkuMTcyMUwxNi40ODY0IDMxLjAxNVoiIGZpbGw9IiM3QThGNjIiLz48cGF0aCBkPSJNNDAuNDkzNCAyNy41MDU1TDQ2LjQ4MTYgMTMuMzk3N0w0Ni44ODc2IDEyLjQ4NDNMNTIuMTY1MyAwLjAwMDQxNjIyM0w1Ni45ODYzIDAuMDAwNDE1ODAyTDQwLjQ5MzQgMzcuMjk5OEwyNC4wMDA1IDAuMDAwNDE4Njg2TDI4LjgyMTUgMC4wMDA0MTgyNjRMMzMuOTk3NyAxMi4xNzk4TDM0LjQwMzcgMTMuMTk0OEw0MC40OTM0IDI3LjUwNTVaIiBmaWxsPSIjN0E4RjYyIi8+PHBhdGggZD0iTTQwLjQ5OTkgNi4yODU4Mkw0My4xNjM3IDAuMDEwMTU3TDQ3LjYxOTEgMC4wMTAxNTY2TDQwLjQ5OTkgMTYuMDgwMUwzMy4zOTIyIDAuMDEwMTU3OUwzNy44MTQzIDAuMDEwMTU3NUw0MC40OTk5IDYuMjg1ODJaIiBmaWxsPSIjN0E4RjYyIi8+PC9zdmc+');
  background-repeat: repeat-x;
  background-size: 58px 38px;
  background-position: 0 0;
}


.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider span {
  color: var(--sage);
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (width <= 900px) {
  nav {
    padding: 0.85rem 1.5rem;
  }

  nav ul {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  nav ul.is-open {
    position: fixed;
    top: 75px;
    right: 1rem;
    left: 1rem;
    z-index: 99;
    padding: 1rem;
    border: 1px solid var(--border);
    background: var(--cream);
    box-shadow: 0 12px 34px rgb(26 35 16 / 14%);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }

  nav ul.is-open a,
  nav ul.is-open .nav-active {
    display: block;
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--forest);
    padding: 0.85rem 0.95rem;
    background: rgb(122 143 98 / 10%);
  }

  nav ul.is-open .nav-active {
    color: var(--sage);
    font-weight: 600;
  }

  nav ul.is-open .nav-cta {
    text-align: center;
    color: var(--cream);
    background: var(--forest);
  }

  .intro-grid,
  .about-grid,
  .offerings-grid,
  .program-grid,
  .activities-cols {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .offering-card {
    padding: 4rem 2rem;
    border-right: none;
    border-bottom: 1px solid rgb(255 255 255 / 7%);
  }

  .container {
    padding: 0 1.5rem;
  }

  .location-map-layout {
    grid-template-columns: 1fr;
  }

  .location-map-frame,
  .location-map-frame iframe {
    min-height: 320px;
  }

  .gallery-block {
    padding: 0 1.5rem;
  }

  .interior-slides {
    height: min(54vh, 420px);
  }

  .interior-nav {
    font-size: 1.7rem;
    padding: 0.3rem 0.95rem 0.6rem 0.95rem;
    background: rgb(0 0 0 / 46%);
  }

  .interior-prev {
    padding: 0.3rem 0.95rem 0.6rem 0.8rem;
  }

  .interior-nav:hover {
    background: rgb(0 0 0 / 46%);
  }

  .interior-dots {
    gap: 0.7rem;
    margin-top: 1.1rem;
  }

  .interior-dot {
    width: 0.85rem;
    height: 0.85rem;
  }

  .arrangement-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .arrangement-copy-with-art {
    grid-template-columns: 1fr;
  }

  .arrangement-copy-art-transparent {
    justify-content: center;
    margin-top: 0.5rem;
  }

  section {
    padding: 5rem 0;
  }
}

@media (width <= 640px) {
  .gallery-block {
    margin: 0.8rem auto 2rem;
    padding: 0 1rem;
  }

  .interior-slides {
    height: min(44vh, 320px);
  }

  .interior-nav {
    font-size: 1.5rem;
    padding: 0.24rem 0.78rem 0.5rem 0.78rem;
  }

  .interior-prev {
    padding: 0.24rem 0.78rem 0.5rem 0.65rem;
  }

  .interior-dots {
    margin-top: 0.85rem;
  }

  .interior-dot {
    width: 0.72rem;
    height: 0.72rem;
  }

  .arrangement-links-grid {
    grid-template-columns: 1fr;
  }
}
