@font-face {
  font-family: 'PPNeueMontreal';
  src: url('ppneuemontreal-book.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* ============================================================
   Destiny Aariyan, Shared Brand Stylesheet
   Single source of truth for colors, fonts, and components.
   Link from every page: <link rel="stylesheet" href="styles.css">
   Update brand values here, they cascade across the site.
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors */
  --dark: #3b2c1e;
  --soft: #6b5c4e;
  --sand: #d5cfc4;
  --sand-light: #eae6df;
  --sand-mid: #c4bdb1;
  --white: #ffffff;
  --cream: #f5f3f0;
  --green: #4a7c59;       /* For Stripe / payment CTAs only */
  --notice-bg: #fff7e6;   /* Warning banners */
  --notice-border: #f0d896;

  /* Type */
  --font-serif: 'Tobias', 'EditorsNote', 'Cormorant Garamond', 'Playfair Display', serif;
  --font-sans: 'PPNeueMontreal', sans-serif;

  /* Radii */
  --radius-button: 8px;
  --radius-card: 16px;
  --radius-pill: 99px;

  /* Spacing */
  --section-pad-y: 80px;
  --section-pad-y-mobile: 60px;
  --content-max: 820px;
}

/* ---------- FONT ---------- */
@font-face {
  font-family: 'Tobias';
  src: url('TobiasTRIAL-Thin-BF6719af6deb112.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EditorsNote';
  src: url('TobiasTRIAL-Thin-BF6719af6deb112.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* ---------- BASE ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #ffffff;
  font-family: var(--font-sans);
  color: var(--dark);
  overflow-x: hidden;
}

/* Override the bright blue browser default on date/time pickers, checkboxes, etc. */
html { accent-color: var(--dark); }
input, select, textarea, button { accent-color: var(--dark); }
input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="number"] {
  accent-color: var(--dark);
  color-scheme: light;
}
::selection { background: var(--sand); color: var(--dark); }

/* ---------- BRAND RIBBON (scrolling marquee under nav) ---------- */
.scroll-band {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 95;
  background: var(--cream);
  border-bottom: 1px solid var(--sand-mid);
  padding: 10px 0;
  overflow: hidden;
}
.scroll-band::before,
.scroll-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 2;
}
.scroll-band::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.scroll-band::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}
.scroll-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollLeft 105s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.scroll-item {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--soft);
  white-space: nowrap;
  padding: 0 22px;
  line-height: 1;
  opacity: 0.85;
}
.scroll-divider {
  font-size: 9px;
  color: var(--sand-mid);
  opacity: 0.8;
  flex-shrink: 0;
}
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-track { animation: none; }
}
/* Page-content offset so the brand ribbon doesn't overlap content */
body { padding-top: 38px; }

/* ---------- NAVIGATION ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(59,44,30,0.08);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-nav .nav-logo-text { font-family: var(--font-serif); font-weight: 100; font-size: 20px; color: var(--dark); letter-spacing: 0.02em; }
.site-nav .nav-links { display: flex; gap: 18px; list-style: none; align-items: center; }
.site-nav .nav-links a { font-size: 9.5px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--soft); text-decoration: none; transition: color 0.2s; white-space: nowrap; font-family: var(--font-sans); }
.site-nav .nav-links a:hover,
.site-nav .nav-links a.active { color: var(--dark); }
.site-nav .nav-cta { background: var(--dark) !important; color: var(--white) !important; padding: 6px 14px; border-radius: var(--radius-button); }
.site-nav .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.site-nav .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); transition: transform 0.25s ease, opacity 0.2s ease; transform-origin: center; }

/* Hamburger → X transform when menu is open (works across all pages) */
.hamburger span { transition: transform 0.25s ease, opacity 0.2s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu soft fade (overrides inline display:none/flex with opacity+visibility) */
body .mobile-menu {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}
body .mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: #ffffff; border-bottom: 1px solid var(--sand); padding: 20px 24px; flex-direction: column; gap: 14px; z-index: 99; max-height: calc(100vh - 64px); overflow-y: auto; }
.mobile-menu a { font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soft); text-decoration: none; font-family: var(--font-sans); }
.mobile-menu.open { display: flex; }
@media (max-width: 900px) {
  .site-nav { padding: 0 16px; }
  .site-nav .nav-links { display: none; }
  .site-nav .hamburger { display: flex; }
}

/* ---------- NAV SERVICES DROPDOWN (shared across all pages) ---------- */
.nav-links .nav-dropdown { position: relative; }
.nav-links .nav-dropdown-toggle {
  font-size: 9.5px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--soft); background: none; border: none; cursor: pointer; padding: 0; margin: 0;
  font-family: var(--font-sans); display: inline; white-space: nowrap; transition: color 0.2s;
  vertical-align: baseline;
}
.nav-links .nav-dropdown:hover .nav-dropdown-toggle,
.nav-links .nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-links .nav-dropdown-toggle.active { color: var(--dark); }
.nav-links .nav-caret { font-size: 7px; margin-left: 5px; display: inline-block; transition: transform 0.2s; }
.nav-links .nav-dropdown:hover .nav-caret,
.nav-links .nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
/* invisible bridge so the menu doesn't close when moving the cursor down to it */
.nav-links .nav-dropdown::after { content: ''; position: absolute; top: 100%; left: -10px; right: -10px; height: 12px; }
.nav-links .nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #ffffff; border: 1px solid var(--sand-mid); border-radius: 10px;
  box-shadow: 0 14px 36px rgba(59,44,30,0.14);
  padding: 8px; min-width: 188px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease; z-index: 101;
}
.nav-links .nav-dropdown:hover .nav-dropdown-menu,
.nav-links .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}
.nav-links .nav-dropdown-menu a {
  font-size: 10px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--soft); text-decoration: none; padding: 9px 14px; border-radius: 6px;
  white-space: nowrap; transition: background 0.15s, color 0.15s;
  font-family: var(--font-sans); text-align: left;
}
.nav-links .nav-dropdown-menu a:hover,
.nav-links .nav-dropdown-menu a.active { background: var(--sand-light); color: var(--dark); }

/* Mobile menu: tap-to-expand Services submenu (native <details>) */
.mobile-menu details.mobile-services { width: 100%; }
.mobile-menu summary.mobile-services-summary {
  list-style: none; cursor: pointer;
  font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: #6b5c4e; font-family: var(--font-sans);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu summary.mobile-services-summary::-webkit-details-marker { display: none; }
.mobile-menu summary.mobile-services-summary::marker { content: ''; }
.mobile-menu .mobile-caret { font-size: 8px; transition: transform 0.2s; }
.mobile-menu details.mobile-services[open] .mobile-caret { transform: rotate(180deg); }
.mobile-menu details.mobile-services a.mobile-sub {
  display: block; padding: 12px 0 0 16px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-button);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary { background: var(--dark); color: var(--white); }
.btn-primary:hover { opacity: 0.85; }

.btn-secondary { background: var(--white); color: var(--dark); border: 1px solid var(--dark); }
.btn-secondary:hover { background: var(--dark); color: var(--white); }

.btn-sand { background: var(--sand); color: var(--dark); }
.btn-sand:hover { opacity: 0.85; }

.btn-outline-sand { border: 1px solid rgba(213,207,196,0.35); color: var(--sand); background: transparent; }
.btn-outline-sand:hover { background: rgba(213,207,196,0.1); }

.btn-pay { background: var(--green); color: var(--white); }
.btn-pay:hover { opacity: 0.9; }

.btn-small { padding: 7px 18px; font-size: 9px; letter-spacing: 0.2em; border-radius: 6px; }

/* ---------- TYPOGRAPHY UTILITIES ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--soft);
  opacity: 0.8;
}
.label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
}
.display-xl { font-family: var(--font-serif); font-weight: 100; font-size: clamp(52px, 9vw, 96px); color: var(--dark); line-height: 1.05; }
.display-lg { font-family: var(--font-serif); font-weight: 100; font-size: clamp(42px, 8vw, 72px); color: var(--dark); line-height: 1; }
.display-md { font-family: var(--font-serif); font-weight: 100; font-size: clamp(28px, 5vw, 44px); color: var(--dark); line-height: 1.1; }

/* ---------- ACCORDION (Good to Know) ---------- */
.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 48px; }
.policy-card { border-left: 2px solid var(--sand-mid); padding: 0; background: var(--white); border-radius: 0 8px 8px 0; overflow: hidden; }
.policy-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.policy-title::-webkit-details-marker { display: none; }
.policy-title::after { content: '+'; font-size: 18px; font-weight: 300; color: var(--soft); margin-left: 12px; line-height: 1; }
.policy-card[open] .policy-title::after { content: '−'; }
.policy-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.75;
  padding: 0 20px 16px;
  margin: 0;
}

/* ---------- FOOTER ---------- */
.da-footer { background: var(--sand); color: var(--dark); padding: 64px 32px 0; margin-top: 0; }
.da-footer-inner { max-width: 1100px; margin: 0 auto; padding-bottom: 0; }
.da-footer-brand { text-align: center; margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(59,44,30,0.18); }
.da-footer-logo { font-family: 'EditorsNote', serif; font-weight: 100; font-size: 38px; color: var(--dark); text-decoration: none; letter-spacing: 0.02em; display: inline-block; margin-bottom: 12px; line-height: 1; }
.da-footer-tag { font-family: 'PPNeueMontreal', sans-serif; font-size: 12px; font-weight: 300; color: var(--dark); opacity: 0.78; letter-spacing: 0.04em; max-width: 480px; margin: 0 auto; line-height: 1.7; }
.da-footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 48px; text-align: center; justify-items: center; }
.da-footer-col-label { font-family: 'PPNeueMontreal', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dark); margin-bottom: 18px; opacity: 0.95; }
.da-footer-list { list-style: none; padding: 0; margin: 0; }
.da-footer-list li { margin-bottom: 10px; }
.da-footer-list a { font-family: 'PPNeueMontreal', sans-serif; font-size: 12px; font-weight: 400; color: var(--dark); opacity: 0.85; text-decoration: none; letter-spacing: 0.02em; transition: opacity 0.2s ease; }
.da-footer-list a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.da-footer-chat-btn,
.da-footer-chat-btn:link,
.da-footer-chat-btn:visited { display: inline-block; background: var(--dark); color: #ffffff !important; padding: 11px 22px; border-radius: 8px; font-family: 'PPNeueMontreal', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none !important; transition: opacity 0.2s; margin-bottom: 18px; line-height: 1; }
.da-footer-chat-btn:hover,
.da-footer-chat-btn:active { opacity: 0.85; color: #ffffff !important; text-decoration: none !important; }
.da-footer-text { font-family: 'PPNeueMontreal', sans-serif; font-size: 12px; font-weight: 300; color: var(--dark); opacity: 0.85; line-height: 1.8; margin: 0 0 10px; }
.da-footer-text-muted { font-family: 'PPNeueMontreal', sans-serif; font-size: 11px; font-weight: 300; color: var(--dark); opacity: 0.55; line-height: 1.6; margin: 0; }
.da-footer-social { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 36px 0; border-top: 1px solid rgba(59,44,30,0.18); border-bottom: 1px solid rgba(59,44,30,0.18); margin-bottom: 0; }
.da-footer-social-label { font-family: 'PPNeueMontreal', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: var(--dark); margin: 0; }
.da-footer-icons { display: flex; gap: 22px; align-items: center; }
.da-footer-icons a { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; color: var(--dark); opacity: 0.85; transition: opacity 0.2s ease, transform 0.2s ease; }
.da-footer-icons a:hover { opacity: 1; transform: translateY(-2px); }
.da-footer-icons svg { width: 22px; height: 22px; display: block; }
.da-footer-bottom { padding: 22px 0 28px; display: flex; justify-content: space-between; align-items: center; font-family: 'PPNeueMontreal', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 0.15em; color: var(--dark); opacity: 0.7; flex-wrap: wrap; gap: 12px; text-transform: uppercase; }
.da-footer-bottom p { margin: 0; }
@media (max-width: 1000px) {
  .da-footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}
@media (max-width: 760px) {
  .da-footer { padding: 52px 22px 0; }
  .da-footer-cols { grid-template-columns: 1fr 1fr; gap: 32px 20px; text-align: center; }
  .da-footer-brand { padding-bottom: 32px; margin-bottom: 36px; }
  .da-footer-logo { font-size: 32px; }
  .da-footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding-bottom: 24px; }
}

/* ---------- GIFT / THANK YOU CALLOUT ---------- */
.gift-card {
  background: var(--cream);
  border: 1px solid var(--sand-mid);
  border-radius: 16px;
  padding: 30px 36px;
  margin: 40px auto 56px;
  text-align: center;
  max-width: 640px;
  position: relative;
}
.gift-card-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--soft);
  opacity: 0.85;
  margin: 0 0 12px;
}
.gift-card-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.8;
  margin: 0;
  max-width: 520px;
  margin: 0 auto;
}
.gift-card-text em {
  font-style: italic;
  color: var(--soft);
}
@media (max-width: 600px) {
  .gift-card { padding: 24px 22px; margin: 32px auto 40px; }
  .gift-card-text { font-size: 12px; }
}

/* ---------- CARDS ---------- */
.card-light {
  background: var(--sand-light);
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-card);
  padding: 36px 30px;
}
.card-dark {
  background: var(--dark);
  color: var(--sand);
  border-radius: var(--radius-card);
  padding: 36px 30px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .display-xl { font-size: clamp(42px, 9vw, 72px); }
  .display-lg { font-size: clamp(32px, 7vw, 52px); }
  .policy-grid { grid-template-columns: 1fr; }
}

/* ---------- REVIEWS ON SERVICE PAGES ---------- */
.reviews-section { margin-bottom: 48px; }
.reviews-section .section-header { margin-bottom: 12px; }
.review-card { background: #ffffff; padding: 36px 32px 32px; border-radius: 14px; border: 1px solid rgba(59,44,30,0.08); text-align: center; max-width: 580px; margin: 0 auto; box-shadow: 0 4px 16px rgba(59,44,30,0.04); }
.review-stars { font-size: 18px; color: var(--dark); letter-spacing: 4px; margin-bottom: 18px; line-height: 1; }
.review-quote { font-family: var(--font-sans); font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--soft); margin-bottom: 18px; font-style: italic; }
.review-attribution { font-family: var(--font-sans); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dark); opacity: 0.7; }
.review-attribution span { display: block; font-weight: 300; opacity: 0.65; margin-top: 4px; letter-spacing: 0.15em; }

/* Pending placeholder styling */
.review-card.review-pending { background: #fafaf8; border: 1px dashed var(--sand-mid); box-shadow: none; }
.review-pending .review-stars { color: var(--sand-mid); opacity: 0.5; }
.review-pending .review-quote { color: var(--soft); opacity: 0.55; }
.review-pending .review-attribution { color: var(--soft); opacity: 0.5; }
.review-pending::before { content: 'PLACEHOLDER \2014 REPLACE BEFORE LAUNCH'; display: block; font-family: var(--font-sans); font-size: 9px; font-weight: 500; letter-spacing: 0.25em; color: #c87a3a; opacity: 0.7; margin-bottom: 16px; }

@media (max-width: 768px) {
  .review-card { padding: 28px 22px 24px; }
  .review-quote { font-size: 13px; }
}

/* ---------- PHOTO REVIEW CAROUSEL (.rc) ---------- */
.rc { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.rc-viewport { display: flex; align-items: stretch; gap: 26px; overflow-x: auto; overflow-y: visible; scroll-snap-type: x proximity; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; padding: 22px 2px; }
.rc-viewport::-webkit-scrollbar { display: none; }
.rc-track { display: contents; }
.rc-card {
  flex: 0 0 auto;
  width: clamp(290px, 46%, 460px);
  scroll-snap-align: center;
  background: #ffffff;
  border: 1px solid rgba(59,44,30,0.22);
  border-radius: 20px;
  padding: 30px 32px 26px;
  box-shadow: none;
  text-align: left;
  opacity: 0.45;
  transform: scale(0.93);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.rc-card.rc-active { opacity: 1; transform: scale(1); }
.rc-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.rc-ava { position: relative; flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%; overflow: hidden; background: var(--sand-light); display: flex; align-items: center; justify-content: center; }
.rc-ava img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rc-ava-mono { font-family: var(--font-serif); font-weight: 100; font-size: 22px; color: var(--dark); line-height: 1; }
.rc-id { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; min-width: 0; text-align: left; }
.rc-name { font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--dark); letter-spacing: 0.01em; line-height: 1.2; }
.rc-role { font-family: var(--font-sans); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soft); opacity: 0.9; white-space: nowrap; }
.rc-quote { font-family: var(--font-sans); font-size: 14.5px; font-weight: 400; line-height: 1.7; color: var(--dark); margin: 0 0 22px; }
.rc-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--sand-light); padding-top: 16px; }
.rc-stars { font-size: 14px; letter-spacing: 3px; color: var(--dark); opacity: 0.7; line-height: 1; }
.rc-tag { font-family: var(--font-sans); font-size: 9.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soft); opacity: 0.8; text-align: right; }
.rc-tag a { color: inherit; text-decoration: none; transition: color 0.15s; }
.rc-tag a:hover { color: var(--dark); text-decoration: underline; text-underline-offset: 2px; }
.rc-audio { display: flex; align-items: center; gap: 12px; background: var(--sand-light); border: 1px solid var(--sand-mid); border-radius: 999px; padding: 7px 16px 7px 7px; margin: 0 0 22px; }
.rc-audio-btn { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--dark); color: #ffffff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 13px; line-height: 1; padding-left: 2px; transition: transform 0.15s; }
.rc-audio-btn:hover { transform: scale(1.07); }
.rc-audio-bar { flex: 1; height: 4px; border-radius: 4px; background: var(--sand-mid); overflow: hidden; min-width: 0; }
.rc-audio-fill { height: 100%; width: 0%; background: var(--dark); border-radius: 4px; }
.rc-audio-time { flex-shrink: 0; font-family: var(--font-sans); font-size: 11px; color: var(--soft); min-width: 32px; text-align: right; font-variant-numeric: tabular-nums; }
.rc-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 44px; height: 44px; border-radius: 50%; background: var(--dark); color: #ffffff; border: none; font-size: 17px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(59,44,30,0.2); transition: transform 0.2s, opacity 0.2s; }
.rc-arrow:hover { transform: translateY(-50%) scale(1.08); }
.rc-prev { left: 4px; }
.rc-next { right: 4px; }
.rc-dots { display: flex; justify-content: center; gap: 7px; margin-top: 22px; }
.rc-dot { width: 7px; height: 7px; border-radius: 50%; border: none; padding: 0; background: var(--sand-mid); opacity: 0.5; cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
.rc-dot.active { opacity: 1; background: var(--dark); transform: scale(1.3); }
.rc.rc-single { padding: 0; }
.rc.rc-single .rc-card { width: 100%; max-width: 560px; margin: 0 auto; opacity: 1; transform: none; }
.rc.rc-single .rc-arrow, .rc.rc-single .rc-dots { display: none; }
@media (max-width: 600px) {
  .rc { padding: 0 36px; }
  .rc-card { width: 86%; max-width: 380px; padding: 22px 22px 18px; }
  .rc-card-top { margin-bottom: 14px; gap: 12px; }
  .rc-ava { width: 44px; height: 44px; }
  .rc-name { font-size: 13.5px; }
  .rc-role { font-size: 9.5px; letter-spacing: 0.14em; }
  .rc-quote { font-size: 12.5px; line-height: 1.55; margin: 0 0 14px; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
  .rc-card-foot { padding-top: 12px; }
  .rc-stars { font-size: 12px; letter-spacing: 2px; }
  .rc-tag { font-size: 9px; }
  .rc-arrow { width: 30px; height: 30px; font-size: 14px; box-shadow: 0 4px 12px rgba(59,44,30,0.22); }
  .rc-prev { left: 2px; }
  .rc-next { right: 2px; }
  .rc-dots { margin-top: 18px; }
}


/* ---------- REVIEW MODAL (full quote on tap/click) ---------- */
.rc-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.72); display: none; align-items: center; justify-content: center; z-index: 9998; padding: 24px; animation: rcModalFade 0.2s ease; }
.rc-modal.open { display: flex; }
@keyframes rcModalFade { from { opacity: 0; } to { opacity: 1; } }
.rc-modal-card { background: #ffffff; border-radius: 18px; max-width: 540px; width: 100%; max-height: 88vh; overflow-y: auto; padding: 32px 32px 28px; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.rc-modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 26px; line-height: 1; color: var(--soft); cursor: pointer; padding: 4px 10px; opacity: 0.7; transition: opacity 0.15s; }
.rc-modal-close:hover { opacity: 1; }
.rc-modal-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding-right: 36px; }
.rc-modal-ava { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; background: var(--sand-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; }
.rc-modal-ava img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rc-modal-ava-mono { font-family: var(--font-serif); font-weight: 100; font-size: 22px; color: var(--dark); }
.rc-modal-name { font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--dark); line-height: 1.2; }
.rc-modal-role { font-family: var(--font-sans); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soft); margin-top: 3px; }
.rc-modal-quote { font-family: var(--font-sans); font-size: 14.5px; font-weight: 400; line-height: 1.75; color: var(--dark); margin: 0 0 22px; }
.rc-modal-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--sand-light); padding-top: 16px; }
.rc-modal-stars { font-size: 14px; letter-spacing: 3px; color: var(--dark); opacity: 0.7; }
.rc-modal-tag { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soft); opacity: 0.85; }

/* Make quote area visually inviting to tap on mobile */
@media (max-width: 600px) {
  .rc-quote { cursor: pointer; position: relative; }
  .rc-card { cursor: pointer; }
}

/* ---------- LEAVE A REVIEW CTA + MODAL ---------- */
.review-cta-wrap { text-align: center; margin-top: 18px; }
.review-cta { display: inline-block; font-family: var(--font-sans); font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soft); text-decoration: none; padding-bottom: 4px; border-bottom: 1px solid var(--sand-mid); transition: color 0.2s, border-color 0.2s; cursor: pointer; background: none; border-top: none; border-left: none; border-right: none; }
.review-cta:hover { color: var(--dark); border-bottom-color: var(--dark); }

/* Modal */
.rv-overlay { display: none; position: fixed; inset: 0; background: rgba(59,44,30,0.55); z-index: 1000; align-items: flex-start; justify-content: center; padding: 40px 20px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.rv-overlay.open { display: flex; }
.rv-modal { background: #fff; max-width: 520px; width: 100%; border-radius: 14px; padding: 36px 32px 32px; position: relative; box-shadow: 0 24px 60px rgba(59,44,30,0.2); }
.rv-close { position: absolute; top: 12px; right: 12px; width: 28px; height: 28px; border: none; background: var(--sand-light); border-radius: 50%; cursor: pointer; font-size: 14px; color: var(--dark); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.rv-close:hover { background: var(--sand-mid); }
.rv-eyebrow { font-family: var(--font-sans); font-size: 10px; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: var(--soft); opacity: 0.8; margin-bottom: 10px; }
.rv-title { font-family: var(--font-serif); font-weight: 100; font-size: 30px; color: var(--dark); margin-bottom: 8px; line-height: 1.1; }
.rv-sub { font-family: var(--font-sans); font-size: 12px; font-weight: 300; color: var(--soft); line-height: 1.6; margin-bottom: 24px; }
.rv-field { margin-bottom: 14px; }
.rv-label { display: block; font-family: var(--font-sans); font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dark); margin-bottom: 6px; }
.rv-input, .rv-select, .rv-textarea { width: 100%; padding: 11px 12px; border: 1px solid rgba(59,44,30,0.15); border-radius: 8px; font-family: var(--font-sans); font-size: 13px; color: var(--dark); background: #fff; box-sizing: border-box; }
.rv-input:focus, .rv-select:focus, .rv-textarea:focus { outline: none; border-color: var(--dark); }
.rv-textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
.rv-stars { display: flex; gap: 8px; margin-bottom: 6px; }
.rv-star { width: 28px; height: 28px; cursor: pointer; background: none; border: none; padding: 0; font-size: 24px; color: var(--sand-mid); transition: color 0.15s; line-height: 1; }
.rv-star.filled { color: var(--dark); }
.rv-permission { display: flex; align-items: flex-start; gap: 8px; margin: 16px 0 22px; font-family: var(--font-sans); font-size: 11px; font-weight: 300; color: var(--soft); line-height: 1.5; }
.rv-permission input { margin-top: 2px; flex-shrink: 0; }
.rv-submit { width: 100%; padding: 12px 24px; background: var(--dark); color: #fff; border: none; border-radius: 8px; font-family: var(--font-sans); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: opacity 0.2s; }
.rv-submit:hover { opacity: 0.88; }
.rv-success { display: none; text-align: center; padding: 16px 0; }
.rv-success.show { display: block; }
.rv-success h3 { font-family: var(--font-serif); font-weight: 100; font-size: 28px; color: var(--dark); margin-bottom: 10px; }
.rv-success p { font-family: var(--font-sans); font-size: 13px; color: var(--soft); line-height: 1.7; }
@media (max-width: 600px) {
  .rv-modal { padding: 28px 22px 24px; }
  .rv-title { font-size: 24px; }
}

/* Numbered service prefix in nav dropdown + mobile menu */
.nav-svc-num { font-family: 'PPNeueMontreal', sans-serif; font-size: 9px; font-weight: 400; letter-spacing: 0.22em; color: var(--soft); opacity: 0.65; margin-right: 8px; display: inline-block; min-width: 18px; }
