/* ================================================================
   GROVE CIRCLE HEALING — REDESIGN
   Shared Stylesheet
   ================================================================ */

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

:root {
  --cream:        #FAF8F3;
  --cream-dark:   #F0EAE0;
  --cream-deeper: #E5DDD0;
  --charcoal:     #1A1916;
  --charcoal-soft:#2C2A26;
  --teal:         #2A9D8F;
  --teal-light:   #3BBFAF;
  --teal-dark:    #1E7A6F;
  --teal-pale:    rgba(42, 157, 143, 0.08);
  --gold:         #C4994A;
  --gold-light:   #DFB96A;
  --body-text:    #3A3630;
  --muted:        #7A7268;
  --border:       rgba(42, 157, 143, 0.14);
  --shadow-soft:  0 8px 40px rgba(26, 25, 22, 0.07);
  --shadow-hover: 0 24px 64px rgba(26, 25, 22, 0.13);
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-pill:  100px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--cream);
  color: var(--body-text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.12;
  color: var(--charcoal);
}

h1 { font-size: clamp(3rem, 7vw, 7.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4vw, 4rem);   letter-spacing: -0.015em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); letter-spacing: -0.01em; }

p  { font-size: 1rem; line-height: 1.85; color: var(--body-text); }
a  { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ----------------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

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

/* ----------------------------------------------------------------
   TYPOGRAPHY UTILITIES
   ---------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow--light { color: rgba(255,255,255,0.5); }
.eyebrow--gold  { color: var(--gold); }

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(42, 157, 143, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--teal);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-1px);
}

/* ----------------------------------------------------------------
   SCROLL ANIMATIONS
   ---------------------------------------------------------------- */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.22s; }
.animate-delay-3 { transition-delay: 0.34s; }
.animate-delay-4 { transition-delay: 0.46s; }
.animate-delay-5 { transition-delay: 0.58s; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 2rem 0;
  transition: all 0.45s ease;
}

.nav.scrolled {
  background: rgba(250, 248, 243, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1.1rem 0;
  box-shadow: 0 1px 0 rgba(42, 157, 143, 0.1),
              0 4px 30px rgba(26, 25, 22, 0.05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo {
  width: 44px;
  height: auto;
  transition: transform 0.4s ease;
  /* Teal tint when scrolled */
  filter: invert(45%) sepia(60%) saturate(500%) hue-rotate(140deg) brightness(95%);
}

.nav:not(.scrolled) .nav__logo {
  filter: brightness(0) invert(1);
}

.nav__brand:hover .nav__logo {
  transform: rotate(12deg);
}

.nav__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav:not(.scrolled) .nav__brand-name { color: #fff; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body-text);
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 2px;
}

.nav:not(.scrolled) .nav__link { color: rgba(255,255,255,0.8); }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width 0.3s ease;
}
.nav:not(.scrolled) .nav__link::after { background: rgba(255,255,255,0.5); }
.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--teal); }
.nav:not(.scrolled) .nav__link:hover { color: #fff; }

.nav__cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.72rem 1.6rem;
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav:not(.scrolled) .nav__cta {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.45);
}
.nav:not(.scrolled) .nav__cta:hover {
  background: rgba(255,255,255,0.22);
}
.nav__cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--charcoal);
}
.nav:not(.scrolled) .nav__toggle { color: #fff; }
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: all 0.3s ease;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 999;
  padding: 8rem 2.5rem 4rem;
  gap: 2.5rem;
  overflow-y: auto;
}
.nav__mobile.open {
  display: flex;
}
.nav__mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 1.5rem;
  transition: color 0.2s ease;
}
.nav__mobile-link:hover { color: var(--teal); }
.nav__mobile-close {
  position: absolute;
  top: 2rem; right: 2.5rem;
  background: var(--cream-dark);
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ================================================================
   PAGE HERO (for interior pages)
   ================================================================ */
.page-hero {
  padding: 14rem 0 7rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  /* Background image set per-page via inline style;
     charcoal fallback if no image provided */
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Dark gradient overlay — sits above the image, below content */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(12, 26, 23, 0.82) 0%,
    rgba(15, 30, 26, 0.65) 50%,
    rgba(10, 22, 19, 0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Decorative concentric circles */
.page-hero::after {
  content: '';
  position: absolute;
  width: 680px; height: 680px;
  border-radius: 50%;
  border: 1px solid rgba(42, 157, 143, 0.18);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

/* Tiled poster image — subtle pattern layer behind gradient */
.page-hero__tile-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://cdn.prod.website-files.com/59d2fb2b23d54d000103af41/69a8702fe8fb20384aa9b503_chrisposter_poster.0000000.jpg');
  background-repeat: repeat;
  background-size: 260px auto;
  opacity: 0.09;
  pointer-events: none;
}

/* Second ring via a wrapper span injected in HTML */
.page-hero__ring {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(42, 157, 143, 0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

/* Sparkle stars */
.page-hero__stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.page-hero__stars .star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  animation: gchStarTwinkle var(--dur, 3s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes gchStarTwinkle {
  0%   { opacity: 0;                  transform: scale(0.4) translateY(0); }
  30%  { opacity: var(--peak, 0.7);   transform: scale(1)   translateY(-4px); }
  65%  { opacity: var(--peak, 0.7);   transform: scale(0.8) translateY(-2px); }
  100% { opacity: 0;                  transform: scale(0.3) translateY(-8px); }
}

/* Content sits above overlay */
.page-hero .container--narrow {
  position: relative;
  z-index: 3;
}

.page-hero .eyebrow {
  margin-bottom: 1.5rem;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 6rem);
}

.page-hero p {
  color: rgba(255,255,255,0.58);
  font-size: 1rem;
  margin-top: 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================================
   SECTION UTILITIES
   ================================================================ */
.section { padding: 8rem 0; }
.section--sm { padding: 5rem 0; }
.section--dark { background: var(--charcoal); }
.section--teal { background: var(--teal); }
.section--cream-dark { background: var(--cream-dark); }

.section-header { margin-bottom: 4rem; }
.section-header .eyebrow { margin-bottom: 1rem; }

/* Thin decorative divider */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 4rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.5;
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust {
  background: var(--cream-dark);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(42,157,143,0.08);
}

.trust__inner {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust__label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.trust__logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust__logo {
  opacity: 0.4;
  filter: grayscale(1);
  transition: opacity 0.3s ease;
  max-height: 30px;
  width: auto;
}
.trust__logo:hover { opacity: 0.65; }

/* ================================================================
   ABOUT TEASER
   ================================================================ */
.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.about-teaser__text .eyebrow { margin-bottom: 1.5rem; }
.about-teaser__text h2 { margin-bottom: 2rem; }
.about-teaser__text p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.2rem; }

/* Circle decorative motif */
.circle-motif {
  position: relative;
  width: 380px; height: 380px;
  flex-shrink: 0;
}
.circle-motif__ring {
  position: absolute;
  border-radius: 50%;
  inset: 0;
  transform-origin: center;
  animation: rippleOut 3.6s ease-out infinite;
}
.circle-motif__ring:nth-child(1) { animation-delay: 0s;    border: 2.5px solid rgba(42, 157, 143, 0.7); }
.circle-motif__ring:nth-child(2) { animation-delay: 0.9s;  border: 2.5px solid rgba(196, 153, 74, 0.6); }
.circle-motif__ring:nth-child(3) { animation-delay: 1.8s;  border: 2.5px solid rgba(42, 157, 143, 0.7); }
.circle-motif__ring:nth-child(4) { animation-delay: 2.7s;  border: 2.5px solid rgba(196, 153, 74, 0.6); }

@keyframes rippleOut {
  0%   { transform: scale(0.1);  opacity: 0.9; }
  60%  { opacity: 0.35; }
  100% { transform: scale(1.05); opacity: 0; }
}

@keyframes spinLogo {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.circle-motif__center {
  position: absolute;
  inset: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-motif__center img {
  width: 120px;
  opacity: 0.88;
  filter: invert(49%) sepia(45%) saturate(580%) hue-rotate(138deg) brightness(88%) contrast(92%);
  animation: spinLogo 22s linear infinite;
}

/* ================================================================
   OFFERING CARDS
   ================================================================ */
.offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.offerings__additional {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 220px;
}

.offering-card {
  display: block;
  background: var(--cream);
  overflow: hidden;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 12px rgba(26, 25, 22, 0.05);
}
.offering-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.offering-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
  background: var(--cream-deeper);
}
.offering-card:hover .offering-card__img { transform: scale(1.04); }

.offering-card__img-wrap { overflow: hidden; }

/* Wide / horizontal card variant */
.offering-card--wide {
  display: grid;
  grid-template-columns: 38% 1fr;
}
.offering-card--wide .offering-card__img-wrap {
  height: 100%;
}
.offering-card--wide .offering-card__img {
  aspect-ratio: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offering-card--wide .offering-card__body {
  border-top: none;
  border-left: 2px solid var(--teal);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offering-card__body {
  padding: 2rem;
  border-top: 2px solid var(--teal);
}

.offering-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.offering-card__text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.offering-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  transition: gap 0.3s ease;
}
.offering-card:hover .offering-card__link { gap: 0.8rem; }

/* ================================================================
   QUOTE SECTION
   ================================================================ */
.quote-section {
  padding: 10rem 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.quote-section__circles {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1px; height: 1px;
  pointer-events: none;
}

.quote-section__circles span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(42, 157, 143, 0.07);
  transform: translate(-50%, -50%);
}
.quote-section__circles span:nth-child(1) { width: 400px; height: 400px; border-color: rgba(42,157,143,0.12); }
.quote-section__circles span:nth-child(2) { width: 650px; height: 650px; }
.quote-section__circles span:nth-child(3) { width: 900px; height: 900px; }

.quote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.3;
  max-width: 820px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.quote-section cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  font-style: normal;
  position: relative;
  z-index: 1;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  padding: 9rem 0;
  background: var(--teal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  margin-bottom: 1.2rem;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-bottom: 3rem;
  position: relative;
  letter-spacing: 0.03em;
}

/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.contact__heading .eyebrow { margin-bottom: 1.5rem; }
.contact__heading h2 { margin-bottom: 1rem; }
.contact__heading p { color: var(--muted); font-size: 0.95rem; }

.contact__form { margin-top: 3rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field { margin-bottom: 2.2rem; }

.form-field label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--cream-dark);
  border: 1.5px solid var(--cream-deeper);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--body-text);
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  background: #fff;
}

.form-field textarea {
  resize: none;
  height: 110px;
}

.contact__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--charcoal-soft);
  color: rgba(255,255,255,0.65);
  padding: 5.5rem 0 3rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.footer__logo {
  width: 34px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.03em;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 260px;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer__social:hover {
  border-color: var(--teal);
  background: rgba(42, 157, 143, 0.15);
}
.footer__social img {
  width: 13px;
  filter: brightness(0) invert(1);
  opacity: 0.65;
}

.footer__col-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.footer__link:hover { color: var(--teal-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__credit {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.footer__credit a {
  color: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s ease;
}
.footer__credit a:hover { color: var(--teal-light); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-teaser__inner { gap: 4rem; }
  .circle-motif { width: 300px; height: 300px; }
}

@media (max-width: 900px) {
  .offerings__grid { grid-template-columns: 1fr 1fr; }
  .about-teaser__inner { grid-template-columns: 1fr; }
  .circle-motif { display: none; }
  .contact__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .contact__photo { display: none; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .offerings__grid { grid-template-columns: 1fr; }
  .offerings__additional { grid-template-columns: 1fr; }
  .offering-card--wide { grid-template-columns: 1fr; }
  .offering-card--wide .offering-card__img { aspect-ratio: 16/7; height: auto; }
  .offering-card--wide .offering-card__body { border-left: none; border-top: 2px solid var(--teal); }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ================================================================
   CONTACT MODAL
   ================================================================ */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 25, 22, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}
.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(26,25,22,0.22);
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-deeper);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
}
.modal__close:hover {
  background: var(--cream-deeper);
  border-color: var(--teal);
}

/* Form side */
.modal__form-side {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal__form-side .eyebrow { margin-bottom: 0.75rem; }
.modal__form-side h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.modal__form-side .modal__subtitle {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.modal__form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.modal__form .form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.modal__form .form-field:last-of-type { margin-bottom: 0; }
.modal__form label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.modal__form label span {
  font-weight: 400;
  opacity: 0.7;
  text-transform: none;
  letter-spacing: 0;
}
.modal__form input,
.modal__form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--cream-dark);
  border: 1.5px solid var(--cream-deeper);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}
.modal__form input:focus,
.modal__form textarea:focus {
  border-color: var(--teal);
  background: #fff;
}
.modal__form textarea {
  resize: none;
  height: 110px;
}
.modal__form .form-submit {
  margin-top: 1.75rem;
}
.modal__form .btn-submit {
  padding: 0.9rem 2.25rem;
  background: var(--teal);
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.modal__form .btn-submit:hover { background: var(--teal-dark); }

.modal__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
}
.modal__success.visible { display: flex; }
.modal__success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--charcoal);
}
.modal__success p { font-size: 0.9rem; color: var(--muted); }

/* Photo side */
.modal__photo-side {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.modal__photo-side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Responsive */
@media (max-width: 720px) {
  .modal {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .modal__photo-side { display: none; }
  .modal__form-side { padding: 2.5rem 2rem; }
  .modal__form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
