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

html { scroll-behavior: smooth; }

body {
  background: #FBFBF9;
  color: #2F2F2F;
  font-family: 'Spectral', serif;
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Goudy Bookletter 1911', serif;
  color: #2F2F2F;
  font-weight: 400;
}

/* ── Layout helpers ───────────────────────────────── */
.wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 28px;
}
.wrap-wide {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Eyebrow label ────────────────────────────────── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8A7A55;
  margin-bottom: 18px;
  display: block;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-block;
  padding: 13px 30px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn:focus-visible {
  outline: 2px solid #8A7A55;
  outline-offset: 3px;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, #8A7A55 0%, #A8935E 100%);
  color: #FBFBF9;
  border: 1px solid #7A6A45;
  box-shadow: 0 2px 8px rgba(138,122,85,0.22), 0 6px 20px rgba(138,122,85,0.14);
}
.btn-primary:hover { background: linear-gradient(135deg, #7A6A45 0%, #957E4E 100%); border-color: #6A5A38; }

.btn-secondary {
  background: transparent;
  color: #2F2F2F;
  border: 1px solid #898987;
}
.btn-secondary:hover { border-color: #2F2F2F; }

.btn-accent {
  background: #FBFBF9;
  color: #8A7A55;
  border: 1px solid #8A7A55;
  box-shadow: 0 1px 4px rgba(138,122,85,0.10);
}
.btn-accent:hover { background: #F4F2EC; border-color: #776849; color: #776849; }

#main-nav ul li a.btn { border-radius: 100px; }

/* ── Header ───────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,251,249,0.90);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #E6E6E4;
  box-shadow: 0 1px 0 rgba(47,47,47,0.04);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
header.nav-hidden { transform: translateY(-100%); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 32px;
  transition: height 0.3s ease;
}
@media (min-width: 746px) {
  .header-inner { padding-right: 190px; }
}
header.scrolled .header-inner { height: 54px; }
header.scrolled { box-shadow: 0 2px 16px rgba(47,47,47,0.09); }

.nav-cta-float {
  position: fixed;
  top: 20px;
  right: 32px;
  z-index: 51;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 100px;
  background: rgba(251,251,249,0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #8A7A55;
  border: 1px solid #8A7A55;
  box-shadow: 0 1px 4px rgba(138,122,85,0.12), 0 0 14px rgba(138,122,85,0.16);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, opacity 0.22s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), top 0.3s ease;
}
header.scrolled ~ .nav-cta-float { top: 12px; }
.nav-cta-float:hover { background: rgba(244,242,236,0.85); border-color: #776849; color: #776849; }
.nav-cta-float:focus-visible { outline: 2px solid #8A7A55; outline-offset: 3px; }
.nav-cta-float:active { transform: scale(0.97); }
@media (max-width: 745px) {
  .nav-cta-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    top: 16px;
    right: 16px;
  }
  header.nav-hidden ~ .nav-cta-float {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
@media (min-width: 746px) {
  #main-nav li:last-child { display: none; }
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.logo-mark img {
  height: 50px;
  width: 50px;
  opacity: 0.78;
  background-color: #FBFBF9;
  border-radius: 50%;
  transition: opacity 0.18s ease, height 0.3s ease, width 0.3s ease;
}
header.scrolled .logo-mark img { height: 36px; width: 36px; }
.logo-mark:hover img { opacity: 1; }
.logo-mark:focus-visible {
  outline: 2px solid #8A7A55;
  outline-offset: 4px;
  border-radius: 2px;
}
.logo-mark span {
  font-family: 'Goudy Bookletter 1911', serif;
  font-size: 16.5px;
  /* font-variant: small-caps; */
  letter-spacing: -0.01em;
  color: #2F2F2F;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Nav links with animated underline */
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #6F6F6F;
  text-decoration: none;
  letter-spacing: 0.02em;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: color 0.18s ease, background-size 0.25s ease;
}
.nav-link:hover { color: #2F2F2F; background-size: 100% 1px; }
.nav-link:focus-visible {
  outline: 2px solid #8A7A55;
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Hamburger button ─────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s ease;
}
.nav-toggle:hover { background: rgba(47,47,47,0.06); }
.nav-toggle:focus-visible {
  outline: 2px solid #8A7A55;
  outline-offset: 2px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #2F2F2F;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), opacity 0.15s ease;
}
header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 745px) {
  .nav-toggle { display: flex; }

  #main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(251,251,249,0.98);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(47,47,47,0.08);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.28s cubic-bezier(0.4,0,0.2,1);
  }
  header.nav-open #main-nav {
    max-height: 280px;
    border-bottom: 1px solid #E6E6E4;
  }
  #main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 16px;
  }
  #main-nav ul li { width: 100%; }
  #main-nav ul li a.nav-link {
    display: block;
    padding: 12px 28px;
    font-size: 15px;
  }
  #main-nav ul li a.btn {
    display: block;
    margin: 8px 28px 4px;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .logo-text { display: none; }
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse 110% 75% at 55% 45%, #F4F2EC 45%, #F0ECE4 75%, #EDE6DA 100%);
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  top: -25%;
  bottom: -25%;
  background-image: url('images/bg-hero-string-scale.png');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  will-change: transform;
  pointer-events: none;
}
.hero-logo {
  width: 192px;
  height: 192px;
  margin: 0 auto 36px;
  display: block;
  filter: drop-shadow(0 0 30px rgba(255,255,255,1));
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-variant: small-caps;
  line-height: 1.12;
  letter-spacing: -0em;
  margin-bottom: 18px;
}
.hero-subtitle {
  display: block;
  font-family: 'Spectral', serif;
  /* font-style: bold; */
  font-size: 1.4rem;
  color: #4A4A4A;
  margin-bottom: 52px;
}
.hero-statement {
  margin: 52px auto 0;
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: #6F6F6F;
  line-height: 1.72;
  text-align: center;
}
.hero-reviews {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #4A4A4A;
  transition: color 0.18s ease;
}
.hero-reviews:hover { color: #2F2F2F; }
.hero-reviews-top { display: flex; align-items: center; gap: 8px; }
.hero-star-row { display: flex; align-items: center; gap: 3px; }
.hero-star path {
  fill: #C8C8C5;
  animation: star-gold 0.45s ease forwards;
  animation-delay: calc(var(--i) * 160ms);
  animation-play-state: paused;
}
.hero-reviews.stars-animate .hero-star path { animation-play-state: running; }
@keyframes star-gold {
  0%   { fill: #C8C8C5; }
  100% { fill: #C8A040; }
}
.hero-banner {
  position: relative;
  background-image: url('images/hero-keys-rainbow.webp');
  background-size: 100%;
  background-position: 50% 0%;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1430 / 626;
  margin-top: 12px;
  filter: saturate(0.72) contrast(0.75);
}

/* Hero sequence animation */
.hero-seq {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero-seq.visible {
  opacity: 1;
}

@media (max-width: 540px) {
  .hero { padding: 72px 0 68px; }
}

/* ── Trust strip ──────────────────────────────────── */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 18px 28px;
  background: #F4F2EC;
  border-top: 1px solid #E6E6E4;
  border-bottom: 1px solid #E6E6E4;
  font-family: 'Spectral', serif;
  font-size: 17px;
  /* font-style: italic; */
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #4A4A4A;
  text-align: center;
}
.trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #C8C8C6;
  flex-shrink: 0;
}
.trust-reviews {
  color: #8A7A55;
  text-decoration: none;
  font-family: 'Spectral', serif;
  transition: color 0.18s ease;
}
.trust-reviews:hover { color: #2F2F2F; }
@media (max-width: 640px) {
  .trust-dot { display: none; }
  .trust-strip { flex-direction: column; gap: 6px; padding: 16px 28px; }
}

/* ── Section spacer ──────────────────────────────── */
.section-spacer {
  background: #FBFBF9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  gap: 24px;
}
.spacer-rule {
  flex: 1;
  height: 1px;
  background: #E6E6E4;
  max-width: 220px;
}
.spacer-logo {
  width: 28px;
  height: 28px;
  opacity: 0.35;
  flex-shrink: 0;
}

/* ── Page sections ────────────────────────────────── */
.page-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}
.page-section .section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.page-section > .wrap,
.page-section > .wrap-wide {
  position: relative;
  z-index: 1;
}
.section-parchment { background: #F4F2EC; }
.section-cream     { background: #FBFBF9; }

/* Section vignettes */
#approach     { background: radial-gradient(ellipse 110% 75% at 45% 55%, #F4F2EC 45%, #F2EEE2 75%, #EFE9D6 100%) !important; }
#services     { background: radial-gradient(ellipse 110% 75% at 55% 45%, #F4F2EC 45%, #EFF2EC 75%, #EAF0E6 100%) !important; }
#faq          { background: radial-gradient(ellipse 110% 75% at 45% 50%, #FBFBF9 45%, #F3F2F0 75%, #ECEAE6 100%) !important; }
#testimonials { background: radial-gradient(ellipse 110% 75% at 55% 50%, #F4F2EC 45%, #F0ECE2 75%, #EBE3D5 100%) !important; }
#writing      { background: radial-gradient(ellipse 110% 75% at 55% 55%, #FBFBF9 45%, #F2F0EC 75%, #E9E5DE 100%) !important; }

/* Section background images */
#approach     .section-bg { background-image: url('images/bg-approach-grand-action.png'); }
#writing      .section-bg { background-image: url('images/bach-manuscript.jpg'); background-position: center 30%; opacity: 0.07; }
#services     .section-bg { background-image: url('images/bg-services-chladni.jpg'); }
#faq          .section-bg { background-image: url('images/bg-faq-grand-strings.jpg'); background-position: center 55%; opacity: 0.10; filter: saturate(0.3); }
#testimonials .section-bg { background-image: url('images/bg-testimonials-hammers.jpeg'); opacity: 0.08; filter: saturate(0.2); }

.page-section h2 {
  font-size: 1.9rem;
  letter-spacing: -0.025em;
  line-height: 1.22;
  margin-bottom: 28px;
}

@media (max-width: 540px) {
  .page-section { padding: 60px 0; }
}

/* ── Animation system ─────────────────────────────── */

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Card wave */
.card-wave {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.card-wave.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* String divider */
.string-divider {
  margin-bottom: 36px;
  width: 72px;
}
.string-divider svg {
  display: block;
  width: 72px;
  height: 20px;
  overflow: visible;
}
.string-divider svg path {
  fill: none;
  stroke: #8A7A55;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.string-divider.in-view svg path:nth-child(1) { stroke-dashoffset: 0; transition-delay: 0ms; }
.string-divider.in-view svg path:nth-child(2) { stroke-dashoffset: 0; transition-delay: 150ms; }
.string-divider.in-view svg path:nth-child(3) { stroke-dashoffset: 0; transition-delay: 300ms; }
.string-divider.in-view svg path:nth-child(4) { stroke-dashoffset: 0; transition-delay: 450ms; }

/* ── Approach section ─────────────────────────────── */
.approach-photo {
  margin-top: 40px;
  border-radius: 4px;
  overflow: hidden;
}
.approach-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/7;
  filter: grayscale(15%);
  transition: transform 0.9s ease;
}
.approach-photo:hover img { transform: scale(1.03); }

.about-body p {
  color: #4A4A4A;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-body p:last-child { margin-bottom: 0; }

/* ── Service packages ─────────────────────────────── */
.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 44px;
}
.package {
  position: relative;
  padding: 32px 36px;
  background: #FBFBF9;
  border-top: 2px solid #E6E6E4;
  box-shadow: 0 2px 8px rgba(47,47,47,0.06), 0 8px 24px rgba(47,47,47,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
  align-items: flex-start;
  gap: 36px;
}
.package > * { position: relative; z-index: 1; }
.package:hover {
  box-shadow: 0 4px 16px rgba(47,47,47,0.09), 0 12px 32px rgba(47,47,47,0.06);
  border-top-color: #C8BA9A;
}
.package-featured { border-top-color: #8A7A55; background: #F3EFE4; }
.package-featured:hover { border-top-color: #8A7A55; }
.package-left {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.package-right {
  flex: 1;
  padding-top: 8px;
}
.package-right .package-desc { margin-top: 0; }
.package-name {
  font-family: 'Goudy Bookletter 1911', serif;
  font-size: 1.15rem;
  color: #2F2F2F;
  font-weight: 400;
  margin: 0;
}
.package-price {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #8A7A55;
  letter-spacing: 0.02em;
  margin-top: 6px;
}
.package-desc {
  font-size: 0.95rem;
  color: #6F6F6F;
  line-height: 1.65;
  margin-top: 20px;
}
.package-badge {
  display: inline-block;
  align-self: flex-start;
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A7A55;
  border: 1px solid #C8BA9A;
  padding: 3px 8px;
}
.services-footer {
  margin-top: 44px;
  border: 1px solid #E6E6E4;
  border-top: 2px solid #8A7A55;
  background: #FBFBF9;
  box-shadow: 0 2px 12px rgba(47,47,47,0.05);
}
.services-guarantee,
.services-contact {
  text-align: center;
  font-family: 'Spectral', serif;
  font-size: 0.92rem;
  color: #6F6F6F;
  padding: 20px 48px;
  margin: 0;
  font-weight: 400;
}
.services-guarantee::before {
  content: '✓\00a0';
  color: #8A7A55;
}
.services-footer-rule {
  border: none;
  border-top: 1px solid #E6E6E4;
  margin: 0 48px;
}
.services-contact p + p { margin-top: 6px; }
.services-contact a { color: #8A7A55; }
.services-contact a:hover { color: #2F2F2F; }
.services-contact a {
  color: #8A7A55;
  text-decoration: none;
  transition: color 0.18s ease;
}
.services-contact a:hover { color: #2F2F2F; }

@media (max-width: 640px) {
  .package { flex-direction: column; padding: 28px 24px; gap: 0; }
  .package-left { width: auto; }
  .package-right { padding-top: 0; }
  .package-right .package-desc { margin-top: 20px; }
}

/* ── FAQ accordion ────────────────────────────────── */
.faq-list { border-top: 1px solid #C8C8C5; margin-top: 40px; }
.faq-item { border-bottom: 1px solid #C8C8C5; }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-trigger:focus-visible { outline: 2px solid #8A7A55; outline-offset: 2px; }
.faq-question {
  font-family: 'Goudy Bookletter 1911', serif;
  font-size: 1.2rem;
  color: #2F2F2F;
  font-weight: 400;
}
.faq-arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-arrow::before,
.faq-arrow::after {
  content: '';
  position: absolute;
  background: #8A7A55;
  border-radius: 1px;
}
.faq-arrow::before { width: 1px; height: 12px; left: 8.5px; top: 3px; }
.faq-arrow::after  { width: 12px; height: 1px; left: 3px; top: 8.5px; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-body p {
  font-size: 1rem;
  color: #4A4A4A;
  line-height: 1.75;
  padding: 0 32px 24px 0;
}
.faq-body p a {
  color: #8A7A55;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s ease;
}
.faq-body p a:hover { color: #2F2F2F; }

/* ── Testimonials ─────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
.testimonial {
  position: relative;
  padding: 36px 28px 28px;
  background: #FBFBF9;
  border-top: 1px solid #E6E6E4;
  box-shadow: 0 2px 8px rgba(47,47,47,0.05), 0 6px 20px rgba(47,47,47,0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.testimonial-mark {
  font-family: 'Goudy Bookletter 1911', serif;
  font-size: 4rem;
  line-height: 1;
  color: #8A7A55;
  opacity: 0.18;
  position: absolute;
  top: 12px;
  left: 22px;
  pointer-events: none;
  user-select: none;
}
.testimonial-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  position: absolute;
  top: 24px;
  right: 24px;
}
.testimonial-stars svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.testimonial-stars path { fill: #C8A040; }
.testimonial-quote {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 1rem;
  color: #4A4A4A;
  line-height: 1.75;
  margin-top: 32px;
  margin-bottom: 20px;
  flex: 1;
}
.testimonial-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2F2F2F;
}
.testimonial-name::before {
  content: '— ';
  color: #8A7A55;
  font-weight: 400;
  letter-spacing: 0;
}
.testimonial-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: #6F6F6F;
}

.testimonial-google-link {
  text-align: center;
  margin-top: 40px;
}
.google-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  background: #FBFBF9;
  border: 1px solid #E6E6E4;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A4A4A;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 3px rgba(47,47,47,0.06), 0 2px 8px rgba(47,47,47,0.04);
  transition: border-color 0.18s ease, color 0.18s ease, box-shadow 0.22s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.google-reviews-btn:hover {
  border-color: #8A7A55;
  color: #2F2F2F;
  box-shadow: 0 2px 8px rgba(47,47,47,0.10), 0 6px 20px rgba(47,47,47,0.07);
  transform: translateY(-2px);
}
.google-reviews-btn:focus-visible {
  outline: 2px solid #8A7A55;
  outline-offset: 3px;
}
.google-reviews-btn:active { transform: scale(0.97); }
.google-g {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* ── CTA section ──────────────────────────────────── */
.cta-section { text-align: center; }
#schedule .section-bg {
  background-image: url('images/bg-cta-keys-prism-new2.jpg');
  background-position: center 70%;
  opacity: 0.5;
}
#schedule::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(251, 251, 249, 0.72);
  pointer-events: none;
  z-index: 1;
}
#schedule > .wrap {
  z-index: 2;
}
.cta-section h2 {
  font-size: 1.9rem;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.18;
}
.cta-sub {
  color: #6F6F6F;
  margin-bottom: 36px;
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 1rem;
}
.cta-book-online {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 14px;
  letter-spacing: 0.07em;
}
.cta-or {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px auto;
  max-width: 480px;
}
.cta-or::before,
.cta-or::after {
  content: '';
  flex: 1;
  border-top: 1px solid #E6E6E4;
}
.cta-or span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #6F6F6F;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}
.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-form input,
.cta-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  background: #FBFBF9;
  border: 1px solid #E6E6E4;
  color: #2F2F2F;
  padding: 12px 16px;
  border-radius: 4px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: #9F9F9F; }
.cta-form input:focus,
.cta-form textarea:focus { border-color: #8A7A55; }
.cta-form textarea { resize: vertical; min-height: 100px; }
.cta-form button {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: #2F2F2F;
  color: #FBFBF9;
  border: 1px solid #2F2F2F;
  padding: 13px 28px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.cta-form button:hover { background: #1a1a1a; border-color: #1a1a1a; }
.cta-form button:active { transform: scale(0.97); }

@media (max-width: 540px) {
  .cta-form-row { grid-template-columns: 1fr; }
}

/* ── Contact modal ────────────────────────────────── */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47,47,47,0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 28px;
}
.contact-modal:not([hidden]) { opacity: 1; }
.contact-modal[hidden] { display: none; }
.contact-modal-box {
  background: #FBFBF9;
  border: 1px solid #E6E6E4;
  box-shadow: 0 8px 32px rgba(47,47,47,0.18), 0 2px 8px rgba(47,47,47,0.08);
  padding: 32px 32px 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-modal:not([hidden]) .contact-modal-box { transform: translateY(0); }
.contact-modal-box h3 {
  font-family: 'Goudy Bookletter 1911', serif;
  font-size: 1.5rem;
  color: #2F2F2F;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.contact-modal-box p {
  font-family: 'Source Serif 4', serif;
  font-size: 0.97rem;
  color: #4A4A4A;
  line-height: 1.65;
  margin-bottom: 20px;
}
.contact-modal-close { min-width: 120px; }

/* ── Home: Recent writing ─────────────────────────── */
.home-post-list {
  list-style: none;
  border-top: 1px solid #E6E6E4;
  margin-top: 32px;
  margin-bottom: 28px;
}
.home-post-list li { border-bottom: 1px solid #E6E6E4; }
.home-post-link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  text-decoration: none;
  color: inherit;
}
.home-post-link:focus-visible {
  outline: 2px solid #8A7A55;
  outline-offset: 3px;
  border-radius: 2px;
}
.home-post-title {
  font-family: 'Goudy Bookletter 1911', serif;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: #2F2F2F;
  transition: color 0.18s ease;
}
.home-post-link:hover .home-post-title { color: #8A7A55; }
.home-post-date {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A7A55;
  white-space: nowrap;
  flex-shrink: 0;
}
.home-post-all {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #8A7A55;
  text-decoration: none;
  transition: color 0.18s ease;
  display: inline-block;
}
.home-post-all:hover { color: #2F2F2F; }
.home-post-all:focus-visible {
  outline: 2px solid #8A7A55;
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Blog listing ─────────────────────────────────── */
.blog-header {
  padding: 80px 0 60px;
  background: #F4F2EC;
}
.blog-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}
#blog-listing {
  padding-top: 60px;
}
.blog-intro {
  font-family: 'Spectral', serif;
  font-size: 1.1rem;
  color: #6F6F6F;
  margin-top: 8px;
  margin-bottom: 52px;
  line-height: 1.65;
}
.blog-list {
  border-top: 1px solid #E6E6E4;
}
.blog-card {
  border-bottom: 1px solid #E6E6E4;
  padding: 36px 0;
}
.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-card-link:focus-visible {
  outline: 2px solid #8A7A55;
  outline-offset: 4px;
  border-radius: 2px;
}
.blog-card-date {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A7A55;
  display: block;
  margin-bottom: 12px;
}
.blog-card h2 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #2F2F2F;
  transition: color 0.18s ease;
}
.blog-card-link:hover h2 { color: #8A7A55; }
.blog-card-excerpt {
  font-family: 'Spectral', serif;
  font-size: 1rem;
  color: #6F6F6F;
  line-height: 1.72;
  margin-bottom: 16px;
}
.blog-read-more {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #8A7A55;
  font-weight: 500;
  transition: color 0.18s ease;
}
.blog-card-link:hover .blog-read-more { color: #2F2F2F; }

/* ── Post page ────────────────────────────────────── */
.post-header {
  padding: 80px 0 60px;
  background: #F4F2EC;
}
.post-back {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #8A7A55;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.18s ease;
}
.post-back:hover { color: #2F2F2F; }
.post-back:focus-visible {
  outline: 2px solid #8A7A55;
  outline-offset: 3px;
  border-radius: 2px;
}
.post-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 20px;
}
.post-date {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A7A55;
}

/* Post prose body */
.post-body-wrap {
  background: #FBFBF9;
  padding: 72px 0 88px;
}
.post-body {
  font-size: 1.05rem;
  line-height: 1.85;
}
.post-body p {
  color: #4A4A4A;
  margin-bottom: 22px;
}
.post-body h2 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin-top: 52px;
  margin-bottom: 16px;
  color: #2F2F2F;
}
.post-body em { font-style: italic; }
.post-body strong {
  font-weight: 600;
  color: #2F2F2F;
}
.post-body a {
  color: #8A7A55;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s ease;
}
.post-body a:hover { color: #2F2F2F; }

.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; margin: 2rem 0; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* Post CTA strip */
.post-cta-strip {
  border-top: 1px solid #E6E6E4;
  padding: 44px 0;
  background: #F4F2EC;
  text-align: center;
}
.post-cta-strip p {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #4A4A4A;
}
.post-cta-btn {
  margin-top: 24px;
}

/* ── About page ───────────────────────────────────── */
.about-2col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.about-2col-text p {
  color: #4A4A4A;
  line-height: 1.75;
  font-size: 1rem;
  margin: 0;
}
.about-photo-full {
  margin-bottom: 44px;
  overflow: hidden;
}
.about-photo-full img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-photo-smile img {
  object-position: center 20%;
  filter: grayscale(15%);
}
.about-photo-full:hover img { transform: scale(1.03); }

@media (max-width: 640px) {
  .about-2col-text { grid-template-columns: 1fr; gap: 20px; }
  .about-photo-full img { aspect-ratio: 4/3; }
}

/* ── Footer ───────────────────────────────────────── */
footer {
  border-top: 1px solid #E6E6E4;
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.footer-brand img { height: 22px; width: 22px; opacity: 0.55; }
.footer-brand span {
  font-family: 'Goudy Bookletter 1911', serif;
  font-size: 15px;
  color: #2F2F2F;
}
.footer-tagline {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 15px;
  color: #6F6F6F;
}
.footer-contact {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.9;
  text-align: right;
}
.footer-contact a {
  color: #8A7A55;
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-contact a:hover { color: #2F2F2F; }
.footer-serving {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #4A4A4A;
  text-align: center;
  margin-top: 20px;
}
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #ADADAB;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E6E6E4;
  letter-spacing: 0.04em;
}

@media (max-width: 540px) {
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .footer-brand { justify-content: center; }
  .footer-contact { text-align: center; }
  .footer-serving { text-align: center; }
}
