/* ============================================================
   CUSTOMIZE — edit these tokens to retheme the entire site.
   Colors, fonts, and key sizes are wired through CSS variables
   so changes here propagate everywhere.
   ============================================================ */
@font-face {
  font-family: 'Magic Makers';
  src: url('fonts/MagicMakers.otf') format('opentype');
  font-display: swap;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* Brand palette */
  --sage: #92A5A4;          /* primary green – nav, accents */
  --cream: #DDDDD4;         /* light text / footer ivory */
  --blush: #E3BDBA;         /* portrait + section backgrounds */
  --warm: #5F5A46;          /* body copy on cream */
  --charcoal: #444240;      /* footer + dark text */
  --off-white: #F4F2EE;     /* page background */

  /* Typography */
  --font-script: 'Magic Makers', 'Cormorant Garamond', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;

  /* Layout */
  --nav-height: 104px;
  --page-pad-x: 52px;
  --page-pad-x-mobile: 24px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--off-white); color: var(--charcoal); font-weight: 300; line-height: 1.7; font-size: 16px; padding-top: 104px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--sage);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 104px;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 68px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 44px; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif; font-size: 10.5px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; opacity: 0.82;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.is-active { opacity: 1; }
.nav-links a.is-active { border-bottom: 1px solid var(--cream); padding-bottom: 2px; }
.nav-book-btn {
  font-size: 10.5px !important; font-weight: 500 !important;
  color: var(--sage) !important; background: var(--cream) !important;
  border: 1.5px solid var(--cream) !important; border-radius: 3px !important;
  padding: 8px 20px !important; opacity: 1 !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-book-btn:hover { background: transparent !important; color: var(--cream) !important; }
.nav-instagram { color: var(--cream); opacity: 0.75; transition: opacity 0.2s; }
.nav-instagram:hover { opacity: 1; }
.nav-instagram svg { display: block; width: 18px; height: 18px; }

/* TAGLINE BANNER */
.tagline-banner {
  background: var(--blush);
  border-bottom: 1px solid rgba(95,90,70,0.12);
  padding: 44px 52px 48px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  text-align: center;
}
.tagline-eyebrow {
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important; font-style: normal !important;
  letter-spacing: 0.32em !important; text-transform: uppercase;
  color: var(--sage) !important; font-weight: 500 !important;
  opacity: 0.85;
}
.tagline-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400; font-style: italic;
  color: var(--warm); letter-spacing: 0.01em;
  text-align: center; line-height: 1.3;
  max-width: 1100px;
}
.tagline-banner p em {
  font-family: 'Magic Makers', 'Cormorant Garamond', serif;
  font-style: normal; font-weight: 400;
  color: var(--sage);
  font-size: 1em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'><path d='M4 4 Q 60 11, 110 7 T 196 5' stroke='%2392A5A4' stroke-width='1.7' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 9px;
  padding-bottom: 8px;
  margin: 0 2px;
}

/* COMMON TYPE */
.section-label { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; }
.section-heading {
  font-family: 'Magic Makers', 'Cormorant Garamond', serif;
  font-size: clamp(42px, 4.4vw, 60px); font-weight: 400; font-style: normal;
  line-height: 1.1; color: var(--sage); margin-bottom: 26px; letter-spacing: 0.01em;
}
.section-body { font-size: 15px; color: var(--warm); line-height: 1.9; margin-bottom: 14px; font-weight: 300; }

/* BUTTONS */
.btn-outline {
  display: inline-block; font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--charcoal);
  border: 1.5px solid var(--charcoal); border-radius: 3px;
  padding: 15px 38px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }
.btn-outline-lg { padding: 17px 46px; font-size: 11.5px; letter-spacing: 0.24em; }
.btn-outline-cream { color: var(--cream); border-color: var(--cream); }
.btn-outline-cream:hover { background: var(--cream); color: var(--charcoal); }
.btn-sage {
  font-family: 'Jost', sans-serif; font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream); background: var(--sage);
  border: 1.5px solid var(--sage); border-radius: 3px;
  padding: 13px 28px; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-sage:hover { background: transparent; color: var(--sage); }

/* FOOTER */
footer {
  background: var(--charcoal); padding: 48px 52px 28px;
  display: flex; flex-direction: column; gap: 28px;
}
.footer-row {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px;
}
.footer-logo { height: 132px; width: auto; opacity: 0.95; flex-shrink: 0; }
.footer-name { font-family: 'Magic Makers', 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--cream); opacity: 0.78; letter-spacing: 0.02em; }
.footer-links { display: flex; gap: 22px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); opacity: 0.42; text-decoration: none; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 0.7; }
.footer-copyright {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); opacity: 0.32; margin: 0; padding-top: 22px;
  border-top: 1px solid rgba(246,239,222,0.1);
  text-align: center;
}

/* SPECIALTY QUOTE BAND */
.specialty-band { background: var(--blush); padding: 48px 64px; text-align: center; display: flex; justify-content: center; }
.specialty-band p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.8vw, 22px); font-weight: 300; font-style: italic;
  color: var(--warm); max-width: 660px; margin: 0 auto; line-height: 1.65;
  text-align: center;
}

/* SERVICE CARDS (used on home + services overview) */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  display: flex; flex-direction: column;
  background: var(--cream); border-radius: 4px; padding: 32px 26px 26px;
  text-decoration: none; color: inherit;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--sage); transform: scaleY(0); transform-origin: top;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px -18px rgba(68,66,64,0.35);
  background: #E5E5DC;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card .service-tag {
  display: none;
}
.service-name {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-weight: 400; font-style: italic; color: var(--sage); margin-bottom: 10px;
  line-height: 1.2;
}
.service-desc { font-size: 13.5px; color: var(--warm); line-height: 1.8; font-weight: 300; }
.service-card .service-cta {
  margin-top: auto; padding-top: 22px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--charcoal); display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500;
}
.service-card .service-cta .arrow {
  display: inline-block; transition: transform 0.25s ease;
}
.service-card:hover .service-cta .arrow { transform: translateX(4px); }

/* PAGE HERO (used on subpages) */
.page-hero {
  background: var(--off-white); color: var(--warm);
  padding: 88px 52px 96px; text-align: center;
  border-bottom: 1px solid rgba(146,165,164,0.25);
}
.page-hero .section-label { color: var(--sage); opacity: 1; }
.page-hero h1 {
  font-family: 'Magic Makers', 'Cormorant Garamond', serif;
  font-size: clamp(56px, 6vw, 84px); font-weight: 400; line-height: 1.05;
  color: var(--sage); margin-bottom: 18px; letter-spacing: 0.01em;
}
.page-hero .lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.7vw, 22px); font-style: italic; font-weight: 300;
  color: var(--warm); opacity: 1; max-width: 640px; margin: 0 auto;
  line-height: 1.55;
}

/* CONTAINER */
.container { max-width: 1100px; margin: 0 auto; padding: 0 52px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 52px; }

/* FAQ ACCORDION */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(146,165,164,0.35);
}
.faq-item:first-child { border-top: 1px solid rgba(146,165,164,0.35); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  padding: 22px 4px; display: flex; align-items: center; justify-content: space-between;
  text-align: left; font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.6vw, 22px); font-style: italic; font-weight: 400;
  color: var(--warm); transition: color 0.2s;
}
.faq-q:hover { color: var(--sage); }
.faq-q .faq-toggle {
  flex: 0 0 auto; width: 22px; height: 22px; position: relative;
  margin-left: 20px;
}
.faq-q .faq-toggle::before, .faq-q .faq-toggle::after {
  content: ""; position: absolute; background: var(--sage);
  left: 50%; top: 50%; transition: transform 0.25s ease;
}
.faq-q .faq-toggle::before { width: 14px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-q .faq-toggle::after { width: 1.5px; height: 14px; transform: translate(-50%,-50%); }
.faq-item.is-open .faq-toggle::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.is-open .faq-a { max-height: 800px; padding: 0 4px 24px; }
.faq-a p {
  font-size: 15px; color: var(--warm); line-height: 1.85; font-weight: 300;
  margin-bottom: 12px;
}
.faq-a p:last-child { margin-bottom: 0; }

/* PROSE */
.prose p { font-size: 15.5px; color: var(--warm); line-height: 1.95; margin-bottom: 18px; font-weight: 300; }
.prose p strong { color: var(--charcoal); font-weight: 500; }
.prose ul { margin: 12px 0 24px 22px; }
.prose li { font-size: 15.5px; color: var(--warm); line-height: 1.85; font-weight: 300; margin-bottom: 6px; }

/* CTA STRIP */
.cta-strip {
  background: var(--blush); padding: 72px 52px; text-align: center;
}
.cta-strip h3 {
  font-family: 'Magic Makers', 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.4vw, 48px); font-weight: 400;
  color: var(--sage); margin-bottom: 14px; letter-spacing: 0.01em;
}
.cta-strip p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px); color: var(--warm);
  max-width: 540px; margin: 0 auto 28px; line-height: 1.55;
}

/* hamburger toggle — hidden on desktop */
.nav-toggle, .nav-toggle-cb { display: none; }

/* MOBILE NAV */
@media (max-width: 760px) {
  body { padding-top: 76px; }
  nav { padding: 0 20px; height: 76px; }
  .nav-logo img { height: 50px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; padding: 6px; color: var(--cream); cursor: pointer; }
  .nav-toggle svg { width: 28px; height: 28px; }
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0; z-index: 60;
    flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2px;
    background: var(--sage); padding: 0 20px;
    max-height: 0; overflow: hidden;
    box-shadow: 0 16px 26px -18px rgba(0,0,0,0.55);
    transition: max-height 0.32s ease, padding 0.32s ease;
  }
  .nav-toggle-cb:checked ~ .nav-links { max-height: 480px; padding: 16px 20px 22px; }
  .nav-links li { flex: 0 0 100%; width: 100%; display: block; border-top: 0; margin-left: 0 !important; text-align: center; }
  .nav-links a { display: block; padding: 12px 2px; font-size: 13px; text-align: center; }
  .nav-links li:nth-child(4) { position: fixed; top: 19px; right: 62px; z-index: 70; width: auto; flex: 0 0 auto; }
  .nav-book-btn { display: inline-block !important; margin: 0 !important; padding: 9px 18px !important; }
  .nav-links li:nth-child(5), .nav-links li:nth-child(6) { flex: 0 0 auto; width: auto; }
  .nav-instagram { padding: 12px 13px; }
  .nav-instagram svg { width: 22px; height: 22px; }
  .tagline-banner { padding: 16px 24px; gap: 14px; }
  .tagline-banner .rule { display: none; }
  .container, .narrow { padding: 0 24px; }
  .page-hero { padding: 64px 24px 72px; }
  .cta-strip { padding: 56px 24px; }
  .specialty-band { padding: 40px 24px; }
  footer { padding: 36px 24px 22px; gap: 22px; }
  .footer-logo { height: 96px; }
  .footer-row { flex-direction: column; align-items: center; justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
}

.cta-strip h3{text-shadow:0 0 2px #c9c9c9,0 0 6px rgba(201,201,201,0.85);}

/* Explore More cards - make clearly clickable */
.related .service-card{background:#F4F2EE;border:1px solid rgba(95,90,70,0.16);box-shadow:0 8px 20px -12px rgba(68,66,64,0.28);transition:transform .2s ease, box-shadow .2s ease;}
.related .service-card:hover{background:#F4F2EE;transform:translateY(-4px);box-shadow:0 16px 32px -14px rgba(68,66,64,0.4);}

/* allow vertical scrolling over image slots on touch devices */
.image-slot, .image-slot *{touch-action: pan-y !important;}

img{touch-action:pan-y;-webkit-user-drag:none;-webkit-touch-callout:none;}

image-slot, image-slot *{touch-action:pan-y !important;}

image-slot{pointer-events:none !important;}
