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

html  { scroll-behavior: smooth; }

body {
  background: #FBFBF9;
  color: #2F2F2F;
  font-family: 'Source Serif 4', serif;
  font-size: 18px;
  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;
}

hr.rule {
  border: none;
  border-top: 1px solid #E6E6E4;
}

/* ── 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;
  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: #2F2F2F;
  color: #FBFBF9;
  border: 1px solid #2F2F2F;
  box-shadow: 0 2px 8px rgba(47,47,47,0.10), 0 6px 20px rgba(47,47,47,0.06);
}
.btn-primary:hover { background: #1a1a1a; border-color: #1a1a1a; }

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

/* ── Nav links ────────────────────────────────────── */
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #6F6F6F;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.18s ease;
}
.nav-link:hover       { color: #2F2F2F; }
.nav-link:focus-visible {
  outline: 2px solid #8A7A55;
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Header ───────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,251,249,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #E6E6E4;
  box-shadow: 0 1px 0 rgba(47,47,47,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.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;
}
.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;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  background-color: #f2edda;
  padding: 100px 0 96px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/string_scale.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0.07;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-logo {
  width: 192px;
  height: 192px;
  margin: 0 auto 28px;
  display: block;
/*   background-color: #FBFBF9;
  border-radius: 50%; */
  filter: drop-shadow(0 0 30px rgba(255,255,255,1));
}

.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.4rem);
  font-variant: small-caps;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  /* text-shadow: 0 1px 0 rgba(255,255,255,0.9), 0 2px 12px rgba(255,255,255,0.7); */
  text-shadow: /* 2px 2px 0 rgba(255,255,255,0.9), */ 2px 2px 0px rgba(255,255,255,0.9);
}
.hero-subtitle {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: #6F6F6F;
  margin-bottom: 28px;
}
.hero-statement {
  max-width: 500px;
  margin: 0 auto 52px;
  font-size: 1.05rem;
  color: #4A4A4A;
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Trust strip ──────────────────────────────────── */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 18px 28px;
  border-top: 1px solid #E6E6E4;
  border-bottom: 1px solid #E6E6E4;
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #8A8A88;
  text-align: center;
}
.trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #C8C8C6;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .trust-dot { display: none; }
  .trust-strip { flex-direction: column; gap: 6px; padding: 16px 28px; }
}

/* ── Benefits ─────────────────────────────────────── */
.benefits {
  padding: 80px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 40px; }
}
.benefit-rule {
  width: 28px;
  height: 1.5px;
  background: #8A7A55;
  margin-bottom: 20px;
}
.benefit h3 {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.benefit p {
  font-size: 0.93rem;
  color: #6F6F6F;
  line-height: 1.68;
}

/* ── Service list ─────────────────────────────────── */
.services-section { padding: 80px 0; }
.services-section h2 {
  font-size: 1.9rem;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 18px;
}
.services-section .lead {
  color: #4A4A4A;
  margin-bottom: 44px;
  max-width: 540px;
}
.service-list {
  border-top: 1px solid #E6E6E4;
}
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0 10px;
  border-bottom: 1px solid #E6E6E4;
}
.service-row h4 {
  font-size: 1.05rem;
}
.service-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A7A55;
}
.service-desc {
  padding: 6px 0 22px;
  font-size: 0.9rem;
  color: #6F6F6F;
  line-height: 1.6;
  border-bottom: 1px solid #E6E6E4;
}
.service-desc:last-child { border-bottom: none; }

/* ── About ────────────────────────────────────────── */
.about-section { padding: 80px 0; }
.about-section h2 {
  font-size: 1.9rem;
  letter-spacing: -0.025em;
  line-height: 1.22;
  margin-bottom: 28px;
}
.about-body p {
  color: #4A4A4A;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-body p:last-child { margin-bottom: 0; }

.content-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  border-top: 1px solid #E6E6E4;
}
.content-list li {
  font-size: 0.95rem;
  color: #4A4A4A;
  padding: 11px 0;
  border-bottom: 1px solid #E6E6E4;
  padding-left: 16px;
  position: relative;
}
.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background: #8A7A55;
}

.closing-statement {
  font-style: italic;
  color: #2F2F2F;
}

/* ── CTA ──────────────────────────────────────────── */
.cta-section {
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 1.9rem;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.18;
}
.cta-section p {
  color: #6F6F6F;
  margin-bottom: 40px;
  font-size: 1rem;
}

/* ── 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: 14.5px;
  color: #2F2F2F;
}
.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #6F6F6F;
}
.footer-contact {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #6F6F6F;
  line-height: 1.85;
  text-align: right;
}
.footer-contact a {
  color: #6F6F6F;
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-contact a:hover { color: #2F2F2F; }
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #ADADAB;
  text-align: center;
  margin-top: 32px;
  letter-spacing: 0.04em;
}

/* ── 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;
}

/* Animate to × when open */
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); }

/* ── Mobile ───────────────────────────────────────── */
@media (max-width: 640px) {
  .nav-toggle { display: flex; }

  #main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(251,251,249,0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #E6E6E4;
    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; }

  #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; }
}

@media (max-width: 540px) {
  .hero { padding: 72px 0 68px; }
  .benefits, .services-section, .about-section, .cta-section { padding: 60px 0; }
  .footer-contact { text-align: left; }
}
