/* ── FONTS ── */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display/playfair-display-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/playfair-display/playfair-display-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display/playfair-display-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display/playfair-display-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/playfair-display/playfair-display-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond/cormorant-garamond-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond/cormorant-garamond-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond/cormorant-garamond-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond/cormorant-garamond-300-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond/cormorant-garamond-400-italic.woff2') format('woff2');
}

/* ── THEME STYLES ── */
:root {
  --ivory:  #F4ECE6;
  --blush:  #F2D5CF;
  --mocha:  #7B4E3E;
  --terra:  #D58A76;
  --mocha-dk: #5a3830;
  --mocha-lt: #9a7060;
}

body {
  background-color: var(--ivory);
  color: var(--mocha);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--mocha);
}

em { font-style: italic; font-weight: 400; }

/* ── NAV ── */
.navbar {
  background: transparent;
  padding: 28px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
  z-index: 100;
}
.navbar.scrolled {
  background: rgba(244,236,230,0.96) !important;
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(123,78,62,0.1);
}
.navbar.menu-open {
  background: rgba(244,236,230,0.96) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(123,78,62,0.1);
}
.navbar-brand img { height: 60px; width: auto; }
.nav-link {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 13px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--mocha) !important;
  opacity: 0.85;
  transition: opacity 0.25s, background 0.4s;
  padding: 8px 16px !important;
  margin: 0 4px;
  background: var(--blush);
  border-radius: 2px;
}
.nav-link:hover { opacity: 1; color: var(--mocha) !important; }
.navbar.scrolled .nav-link,
.navbar.menu-open .nav-link {
  background: transparent;
}
@media (max-width: 991.98px) {
  .navbar-nav { align-items: flex-start !important; }
  .nav-link { margin: 4px 0 !important; }
}
.btn-nav-book {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory) !important;
  background: var(--mocha);
  border: none;
  padding: 12px 28px;
  border-radius: 0;
  transition: background 0.25s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-nav-book:hover { background: var(--terra); transform: translateY(-1px); color: var(--ivory) !important; }
.navbar-toggler { border: 1px solid var(--mocha); border-radius: 0; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%237B4E3E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
.hero-section {
  min-height: 90vh;
  background-color: var(--blush);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 30%, rgba(244,236,230,0.35) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-left {
  position: relative; z-index: 1;
  padding-top: 160px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 28px;
  display: block;
}
.hero-h1 {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 32px;
}
.hero-body-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  opacity: 0.85;
  max-width: 430px;
  margin-bottom: 48px;
}
.hero-right-panel {
  background-color: var(--ivory);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-right-panel::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 35%, rgba(242,213,207,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 85% 80%, rgba(213,138,118,0.1) 0%, transparent 55%);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
}

/* ── BUTTONS ── */
.btn-primary-ac {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--mocha);
  border: none;
  padding: 16px 44px;
  border-radius: 0;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-ac:hover { background: var(--terra); transform: translateY(-2px); color: var(--ivory); }
.btn-outline-ac {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mocha);
  text-decoration: none;
  border-bottom: 1px solid var(--terra);
  padding-bottom: 4px;
  background: none;
  border-top: none; border-left: none; border-right: none;
  display: inline-block;
  transition: color 0.25s;
}
.btn-outline-ac:hover { color: var(--terra); }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--mocha);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,236,230,0.7);
  padding: 0 36px;
}
.marquee-sep { color: var(--terra); margin-left: 28px; }

/* ── SECTION TAGS ── */
.section-tag {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.section-tag::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--terra);
  display: inline-block;
}

/* ── ABOUT ── */
.about-visual {
  background: var(--blush);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 35% 55%, rgba(213,138,118,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 72% 25%, rgba(244,236,230,0.45) 0%, transparent 60%);
}
.about-quote-wrap {
  position: relative; z-index: 1;
  padding: 64px;
  text-align: center;
  max-width: 380px;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--terra);
  opacity: 0.22;
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
}
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: var(--mocha);
}
.about-text-col {
  padding: 80px 72px;
}
.about-text-col p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.85;
  opacity: 0.9;
}

/* ── SERVICES ── */
.services-section { background: var(--ivory); padding-bottom: 0 !important; }
.services-header {
  border-bottom: 1px solid rgba(123,78,62,0.1);
  padding-bottom: 40px;
  margin-bottom: 4px;
}
.services-header h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 700; line-height: 1.1; }
.services-header-desc { font-size: 17px; font-weight: 400; line-height: 1.75; opacity: 0.8; }
.service-card {
  background: var(--blush);
  padding: 48px 40px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  height: 100%;
}
.service-card.is-clickable { cursor: pointer; }
.service-card.is-clickable:focus-visible { outline: 2px solid var(--terra); outline-offset: -4px; }
.service-card.is-clickable:hover { background: var(--mocha); }
.service-card.is-clickable:hover .svc-num,
.service-card.is-clickable:hover .svc-name,
.service-card.is-clickable:hover .svc-desc { color: var(--ivory); }
.service-card.is-clickable:hover .svc-num { color: var(--terra); }
.service-card.is-clickable:hover .svc-arrow { opacity: 1; transform: translate(4px,-4px); }
.svc-num {
  font-size: 12px; letter-spacing: 0.25em;
  color: var(--terra); margin-bottom: 40px;
  display: block; transition: color 0.35s;
}
.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; line-height: 1.2;
  margin-bottom: 14px; transition: color 0.35s;
}
.svc-desc {
  font-size: 16px; font-weight: 400; line-height: 1.75;
  opacity: 0.85; transition: color 0.35s, opacity 0.35s;
}
.service-card.is-clickable:hover .svc-desc { opacity: 0.8; }
.svc-arrow {
  position: absolute; bottom: 36px; right: 36px;
  font-size: 20px; color: var(--terra); opacity: 0.35;
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}
.service-card.is-clickable:hover .svc-arrow { color: var(--terra); }

/* Service modal */
.modal.service-modal {
  --bs-modal-border-radius: 0;
  --bs-modal-inner-border-radius: 0;
  --bs-modal-bg: var(--ivory);
  --bs-modal-color: var(--mocha);
}
.modal.service-modal .modal-content {
  background: var(--ivory);
  color: var(--mocha);
  border: none;
  overflow: hidden;
  position: relative;
}
.modal.service-modal .svc-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.modal.service-modal .svc-modal-close:hover { opacity: 1; }
.modal.service-modal .svc-modal-close:focus-visible { outline: 2px solid var(--terra); outline-offset: 2px; }
.modal.service-modal .svc-modal-close-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: var(--mocha);
  transform-origin: center;
}
.modal.service-modal .svc-modal-close-bar:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.modal.service-modal .svc-modal-close-bar:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.service-modal .svc-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--mocha);
  margin: 0 0 20px;
}
.service-modal .svc-modal-body {
  padding: 48px 40px 36px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--mocha);
}
.service-modal .svc-modal-body p { margin-bottom: 1em; }
.service-modal .svc-modal-body p:last-child { margin-bottom: 0; }
.service-modal .svc-modal-body a { color: var(--terra); text-decoration: underline; }
.service-modal .svc-modal-body a:hover { color: var(--mocha-dk); }
@media (max-width: 575.98px) {
  .service-modal .svc-modal-body { padding: 44px 24px 28px; }
}
.services-row { gap: 2px; display: flex; flex-wrap: wrap; }
.services-row > [class*="col"] { padding: 0; flex: 0 0 calc(50% - 1px); max-width: calc(50% - 1px); }
@media (max-width: 767.98px) {
  .services-row > [class*="col"] { flex: 0 0 100%; max-width: 100%; }
}

/* ── PROMISE / PILLARS ── */
.promise-section { background: var(--mocha); }
.promise-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400; font-style: italic;
  line-height: 1.25; color: var(--ivory);
}
.promise-section p { font-size: 17px; font-weight: 400; line-height: 1.85; color: rgba(244,236,230,0.78); }
.pillar-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(244,236,230,0.08);
}
.pillar-item:last-child { border-bottom: none; }
.pillar-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--terra);
}
.pillar-desc { font-size: 16px; font-weight: 400; line-height: 1.7; color: rgba(244,236,230,0.8); }

/* ── JOURNEY ── */
.journey-section { background: var(--ivory); }
.journey-section h2 { font-size: clamp(34px, 3.5vw, 52px); font-weight: 700; }
.step-node {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blush); border: 1.5px solid var(--terra);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700; color: var(--mocha);
  transition: background 0.3s, color 0.3s;
}
.journey-step:hover .step-node { background: var(--terra); color: var(--ivory); }
.step-label { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.step-note { font-size: 13px; font-weight: 400; opacity: 0.7; line-height: 1.5; }
.journey-connector {
  position: absolute; top: 25px; left: 50%; right: -50%;
  height: 1px; background: rgba(213,138,118,0.25); z-index: 0;
}

/* ── WHY US ── */
.voice-section { background: var(--blush); }
.voice-section h2 { font-size: clamp(32px, 3.2vw, 48px); font-weight: 700; line-height: 1.15; }
.voice-rule {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-style: italic;
  color: var(--mocha); opacity: 0.85;
  padding: 18px 0; border-top: 1px solid rgba(123,78,62,0.15);
}
.voice-avoid {
  background: rgba(123,78,62,0.06);
  padding: 20px 22px;
  border-left: 3px solid rgba(213,138,118,0.25);
  height: 100%;
}
.voice-say { background: var(--mocha); padding: 20px 22px; height: 100%; }
.voice-micro-label {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 8px; display: block;
}
.voice-avoid .voice-micro-label { color: var(--terra); opacity: 0.7; }
.voice-say .voice-micro-label { color: var(--terra); }
.voice-avoid p {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-style: italic;
  color: var(--mocha); opacity: 0.75; line-height: 1.5; margin: 0;
}
.voice-say p {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-style: italic;
  color: var(--ivory); line-height: 1.5; margin: 0;
}
.voice-pair-row { gap: 3px; margin-bottom: 3px; }

/* ── BOOK CTA ── */
.cta-section { background: var(--ivory); }
.cta-section h2 { font-size: clamp(36px, 4vw, 58px); font-weight: 700; line-height: 1.1; }
.cta-row-item {
  display: grid; grid-template-columns: 100px 1fr; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid rgba(123,78,62,0.1);
}
.cta-row-item:last-child { border-bottom: none; }
.cta-key {
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--terra); padding-top: 2px;
}
.cta-val { font-size: 16px; font-weight: 400; line-height: 1.65; opacity: 0.8; }
.cta-val small { font-size: 14px; opacity: 0.7; display: block; margin-top: 3px; }

/* ── FOOTER ── */
footer {
  background: var(--mocha);
  padding: 72px 0 40px;
}
.footer-logo img { height: 80px; width: auto; margin-bottom: 18px; opacity: 0.9; }
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-style: italic;
  color: rgba(244,236,230,0.65); line-height: 1.6;
}
.footer-col-title {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 20px; display: block;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 16px; font-weight: 400;
  color: rgba(244,236,230,0.65); text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--ivory); }
.footer-divider { border-top: 1px solid rgba(244,236,230,0.1); margin: 40px 0 28px; }
.footer-copy { font-size: 12px; letter-spacing: 0.1em; color: rgba(244,236,230,0.45); }
.footer-mark img { height: 26px; width: auto; opacity: 0.15; }

/* ── ANIMATIONS ── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.38s; }
.reveal-d4 { transition-delay: 0.52s; }

/* ── UTILITIES ── */
.bg-ivory { background-color: var(--ivory); }
.bg-blush { background-color: var(--blush); }
.bg-mocha { background-color: var(--mocha); }
.text-mocha { color: var(--mocha); }
.text-terra { color: var(--terra); }
.gap-2px { gap: 2px; }
.section-pad { padding: 100px 0; }

/* ── IMAGE SLIDER ── */
.image-slider { width: 100%; overflow: hidden; line-height: 0; font-size: 0; }
.image-slider .splide__slide { line-height: 0; }
.image-slider .slider-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}
.image-slider .splide__track { line-height: 0; }
.image-slider .splide__list { line-height: 0; }

/* ── BOXES EDITOR ── */
.oc-boxes-editor {
  padding-top: 120px;
}
