@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --green: #18381d;
  --green-light: #234a2a;
  --charcoal: #2b2620;
  --cream: #f6efe1;
  --white: #ffffff;
  --text: #1c1f1c;
  --muted: #5b625c;
  --border: #e2e0d8;
  --radius: 14px;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.5;
  position: relative;
  overflow-x: clip;
}

/* Giant fixed brand mark: stays put behind the page as you scroll, shows
   through wherever the background is plain cream, hidden under opaque
   cards/forms — a texture, not a logo slapped on top. */
.bg-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1300px;
  max-width: none;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 880px) {
  .bg-watermark { width: 900px; }
}

/* Accessibility: visible keyboard focus + skip link */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.testimonial-feature :focus-visible,
.services-feature :focus-visible,
.service-card.featured :focus-visible,
footer :focus-visible {
  outline-color: var(--cream);
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 3000;
  background: var(--green);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 16px;
}

/* Subtle grain texture — the thing flat "AI-made" sites never have */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, .logo-word, .stat-num {
  font-family: 'Playfair Display', 'PT Serif', Georgia, serif;
  letter-spacing: -0.01em;
  font-weight: 600;
}

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 242, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img { height: 40px; width: 40px; border-radius: 50%; }

.brand .logo-word {
  font-size: 22px;
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--green);
  transition: right 0.25s ease;
}

.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { right: 0; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
}

.portal-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-light);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px dashed var(--green-light);
}

.lang-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
}

.lang-toggle button {
  border: none;
  background: transparent;
  padding: 6px 12px;
  cursor: pointer;
  color: var(--muted);
}

.lang-toggle button.active {
  background: var(--green);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--green); color: var(--white); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-light { background: var(--white); color: var(--green); }
.btn-light-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--green);
}

.mobile-menu { display: none; }

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}

.hero .container { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 1px 1fr;
  gap: 40px;
  align-items: center;
}

.hero-divider {
  align-self: stretch;
  width: 1px;
  background: var(--border);
  margin: 6px 0;
}

.hero-copy > * {
  opacity: 0;
  animation: hero-copy-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.22s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.3s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.38s; }

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > * { animation: none; opacity: 1; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--green);
  margin-bottom: 22px;
  max-width: 15ch;
}

.hero p.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 46ch;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease, gap 0.2s ease;
}

.hero-link:hover, .hero-link:focus-visible {
  border-bottom-color: var(--green);
  gap: 12px;
}

.hero-credentials {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  max-width: 46ch;
}

.hero-credentials-list {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--green);
  aspect-ratio: 4/5;
  animation: hero-visual-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-visual-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual { animation: none; }
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transition: transform 0.5s ease;
}

.hero-visual:hover img { transform: scale(1.035); }

.hero-visual .badge {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 130px;
  height: 130px;
  background: var(--white);
  border-radius: 50%;
  margin: 18px;
}

.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 24px rgba(24,56,29,0.18);
}

.hero-badge .stars { color: #d4a017; font-size: 12px; letter-spacing: 1px; }
.hero-badge .rating { font-weight: 700; font-size: 15px; color: var(--green); }
.hero-badge .rating small { font-weight: 500; color: var(--muted); font-size: 11px; }

/* Sections — deliberate rhythm rather than a uniform 72px everywhere */
section { padding: 72px 0; }

/* Section rhythm: alternating density so the page doesn't read as one
   uniform block after another — tight sections keep momentum, generous
   ones give the flagship moments room to breathe. */
#who { padding: 48px 0; }
#services { padding: 100px 0; }
#process { padding: 64px 0; }
#testimonials { padding: 96px 0; }
#faq { padding: 56px 0; }
#booking { padding: 104px 0; }
#instagram { padding: 56px 0; }

@media (max-width: 880px) {
  #who, #process, #faq, #instagram { padding: 40px 0; }
  #services, #testimonials, #booking { padding: 64px 0; }
}
#testimonials { padding: 88px 0; }
#faq { padding: 60px 0; }
#booking { padding: 80px 0; }
#about { padding: 88px 0; }
#contact { padding: 96px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.who-layout > .section-head {
  text-align: left;
  max-width: none;
  margin: 0;
}

.section-head .eyebrow { margin-bottom: 14px; }

.section-head h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--green);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.price-disclaimer {
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
  font-style: italic;
}

/* Who I help — an editorial capability index instead of a tag cloud */
.who-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}

.who-flow {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.9;
  color: var(--text);
}

.who-flow span {
  white-space: nowrap;
}

.who-flow span:not(:last-child)::after {
  content: "\00a0\00a0\00b7\00a0\00a0";
  color: var(--border);
}

@media (max-width: 880px) {
  .who-layout { grid-template-columns: 1fr; gap: 20px; }
  .who-flow { font-size: 18px; line-height: 1.8; }
  .who-flow span { white-space: normal; }
}

#services .container { position: relative; z-index: 1; }

/* Services — editorial layout: flagship card + dense list */
.services-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 56px;
  align-items: start;
}

.services-feature {
  position: sticky;
  top: 100px;
  background: rgba(24,56,29,0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(24,56,29,0.22);
  padding: 32px 28px;
}

.services-feature .icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow:
    -4px -4px 10px rgba(255,255,255,0.08),
    5px 6px 14px rgba(0,0,0,0.35),
    inset 0 1px 1px rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.2);
}

.services-feature .icon svg { width: 22px; height: 22px; color: var(--white); }

.services-feature .eyebrow { color: rgba(255,255,255,0.75); }

.services-feature h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  margin: 10px 0 12px;
}

.services-feature p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.service-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s ease;
}

.service-row:first-child { padding-top: 4px; }
.service-row:last-child { border-bottom: none; }

.service-row:hover { padding-left: 10px; }

.service-row-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 11px;
  background: linear-gradient(145deg, #f4f8f2, #d8e4d3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    -3px -3px 8px rgba(255,255,255,0.8),
    4px 5px 11px rgba(24,56,29,0.16),
    inset 0 1px 1px rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.5);
}

.service-row-icon svg {
  width: 19px;
  height: 19px;
  color: var(--green);
}

.service-row-body { flex: 1; min-width: 0; }

.service-row-body h3 {
  font-size: 16.5px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  margin-bottom: 4px;
}

.service-row-body p {
  font-size: 14px;
  color: var(--muted);
  max-width: 62ch;
}

.service-row-price {
  flex-shrink: 0;
  background: #e7ede6;
  color: var(--green);
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  margin-top: 2px;
}

/* Process — full-bleed white band to break the cream monotony, tighter rhythm */
#process { background: var(--white); padding: 64px 0; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-step {
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.process-step .num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 42px;
  line-height: 1;
  color: var(--green-light);
  opacity: 0.45;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 32ch;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.about-photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-text .eyebrow { margin-bottom: 14px; }

.about-text h2 {
  font-size: 30px;
  color: var(--green);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 14px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  padding: 18px 0;
  margin-bottom: 12px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-credentials-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.about-credentials-list {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.about-credentials-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
}

.about-text .quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--green);
  border-left: 3px solid var(--green);
  padding-left: 20px;
  margin: 26px 0;
  line-height: 1.4;
}

/* Contact */
.contact {
  background: var(--white);
  border-radius: 28px;
  margin: 0 24px;
  padding: 60px 48px;
  border: 1px solid var(--border);
}

.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact h2 {
  font-size: 30px;
  color: var(--green);
  margin-bottom: 14px;
}

.contact > .contact-inner > div > p.lead {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 16px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
}

.contact-method:hover { border-color: var(--green); }

.contact-method-static { cursor: default; }
.contact-method-static:hover { border-color: var(--border); }

.contact-method .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(145deg, #f4f8f2, #d8e4d3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow:
    -3px -3px 8px rgba(255,255,255,0.8),
    4px 5px 10px rgba(24,56,29,0.15),
    inset 0 1px 1px rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.5);
}

.contact-note {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 6px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14.5px;
  background: var(--cream);
  color: var(--text);
}

.contact-form textarea { resize: vertical; min-height: 100px; }

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: -8px;
}

.hidden-field { position: absolute; left: -9999px; }

.form-privacy-note {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  border-left: 2px solid var(--border);
  padding-left: 12px;
  margin-top: -4px;
}

.form-privacy-note a {
  color: var(--green);
  text-decoration: underline;
  white-space: nowrap;
}

.form-status {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  margin-top: -4px;
}

.form-status.success { background: #e7ede6; color: var(--green); }
.form-status.error { background: #fbe9e7; color: #b3261e; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row > div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 24px;
}

.faq-item summary {
  padding: 18px 0;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  padding-bottom: 20px;
}

#booking { position: relative; overflow: hidden; }
#booking::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -90px;
  top: 20px;
  border-radius: 50%;
  filter: blur(80px);
  background: radial-gradient(circle, rgba(24,56,29,0.13), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
#booking .container { position: relative; z-index: 1; }

/* Pricing / Booking */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}

.price-card.featured {
  background: rgba(24,56,29,0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 16px 40px rgba(24,56,29,0.22);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 40px;
  color: var(--green);
}

.price-card.featured .price-amount { color: var(--white); }

.price-duration {
  font-weight: 700;
  font-size: 15px;
  margin: 4px 0 12px;
}

.price-card.featured .price-duration { color: var(--white); }

.price-card p {
  font-size: 14px;
  color: var(--muted);
}

.price-card.featured p { color: rgba(255,255,255,0.8); }

.booking-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 14.5px;
  color: var(--muted);
}

.booking-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}

/* Testimonials — one featured pull-quote + two supporting cards */
.testimonials-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
  align-items: stretch;
}

.testimonial-feature {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-feature .quote-mark {
  position: absolute;
  top: -16px;
  left: 34px;
  font-family: 'Playfair Display', serif;
  font-size: 130px;
  line-height: 1;
  color: rgba(255,255,255,0.14);
  pointer-events: none;
}

.testimonial-feature .quote-text {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: var(--white);
  max-width: 48ch;
  margin-bottom: 28px;
}

.testimonial-feature .feature-foot .stars {
  color: #d4a017;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 15px;
}

.testimonial-feature .testimonial-author { color: var(--white); }
.testimonial-feature .testimonial-source { color: rgba(255,255,255,0.55); }

.testimonials-support {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.testimonial-card .stars {
  color: #d4a017;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 15px;
}

.quote-text {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 18px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--green);
}

.testimonial-source {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* Instagram */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.instagram-grid iframe { margin: 0 auto !important; }

.instagram-facade {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, var(--green), var(--charcoal));
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
}

.instagram-facade-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.instagram-facade:hover .instagram-facade-icon,
.instagram-facade:focus-visible .instagram-facade-icon {
  background: rgba(255,255,255,0.28);
}

.instagram-fallback {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.instagram-fallback p {
  font-size: 14px;
  color: var(--muted);
}

.instagram-privacy-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 20px;
}

.instagram-follow { text-align: center; }

/* Footer */
footer {
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: rgba(255,255,255,0.85);
  padding: 48px 0 28px;
  margin-top: 40px;
}

.footer-watermark {
  position: absolute;
  right: -3%;
  bottom: -18%;
  font-family: 'Julius Sans One', sans-serif;
  font-size: min(38vw, 420px);
  line-height: 1;
  color: rgba(255,255,255,0.045);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.footer-inner, .footer-bottom, .footer-disclaimer {
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img { height: 44px; width: 44px; border-radius: 50%; }

.footer-brand .logo-word { color: var(--white); font-size: 20px; }
.footer-brand .tagline { font-size: 12.5px; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }

.footer-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}

.footer-col a, .footer-col p {
  display: block;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 14.5px;
  margin-bottom: 10px;
}

.footer-legal-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 24px;
}

.footer-legal-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-disclaimer {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  max-width: 720px;
}

/* Sticky mobile CTA */
.mobile-cta {
  display: none;
}

/* Responsive */
@media (max-width: 880px) {
  .hero-inner, .about, .contact-inner { grid-template-columns: 1fr; }
  .hero-divider { display: none; }
  .hero h1 { max-width: none; }
  .about-photo { max-width: 320px; margin: 0 auto; order: -1; }
  .services-layout { grid-template-columns: 1fr; gap: 28px; }
  .services-feature { position: static; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: 34px; }
  .contact { margin: 0 16px; padding: 40px 24px; }
  .pricing-grid, .instagram-grid, .testimonials-layout { grid-template-columns: 1fr; }
  .testimonial-feature { padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-box { padding: 28px 20px; }

  .nav-links, .nav-right .phone-link, .nav-right .portal-link { display: none; }
  .menu-toggle { display: block; }
  .nav-right { gap: 10px; }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px 20px;
    border-top: 1px solid var(--border);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 12px 0;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu .phone-link { padding: 14px 0 4px; font-weight: 700; }

  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    gap: 10px;
    padding: 10px 16px;
    background: var(--white);
    border-top: 1px solid var(--border);
  }
  .mobile-cta .btn { flex: 1; padding: 12px 10px; font-size: 14px; }
  body { padding-bottom: 68px; }
}

@media (max-width: 600px) {
  .service-row { gap: 12px; padding: 18px 2px; }
  .hero h1 { font-size: 28px; }
  .footer-inner { flex-direction: column; }
}

/* ===================== Legal / compliance pages ===================== */

.legal-hero {
  background: var(--charcoal);
  padding: 64px 0 48px;
}

.legal-hero .eyebrow { color: rgba(255,255,255,0.75); }

.legal-hero h1 {
  color: var(--white);
  font-size: 40px;
  margin: 14px 0 10px;
}

.legal-hero .legal-meta {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
  padding-top: 64px;
  padding-bottom: 96px;
}

.legal-toc {
  position: sticky;
  top: 100px;
  border-left: 2px solid var(--border);
  padding-left: 20px;
}

.legal-toc h2 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
}

.legal-toc ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-toc a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  line-height: 1.4;
}

.legal-toc a:hover, .legal-toc a:focus-visible { color: var(--green); text-decoration: underline; }

.legal-content {
  max-width: 74ch;
  color: var(--text);
}

.legal-content > p.legal-intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.legal-content section {
  padding: 0;
  margin: 40px 0 0;
  scroll-margin-top: 100px;
}

.legal-content h2 {
  font-size: 24px;
  color: var(--green);
  margin-bottom: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.legal-content section:first-of-type h2 { border-top: none; padding-top: 0; }

.legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 8px;
}

.legal-content p, .legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
}

.legal-content ul, .legal-content ol.legal-list {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-content a { color: var(--green); }

.legal-note {
  background: #fbf3e3;
  border: 1px solid #ecdcb0;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #6b5a2b;
  margin: 16px 0;
}

.legal-note strong { color: #4a3d1c; }

@media (max-width: 880px) {
  .legal-layout { grid-template-columns: 1fr; gap: 24px; padding-top: 40px; padding-bottom: 64px; }
  .legal-toc { position: static; border-left: none; border-top: 2px solid var(--border); padding-left: 0; padding-top: 16px; }
  .legal-hero h1 { font-size: 30px; }
}
