:root {
  --ink: #102433;
  --ink-soft: #1b3a4f;
  --paper: #f4efe6;
  --paper-2: #e8e0d2;
  --card: #fffdf8;
  --cyan: #117f8c;
  --cyan-dark: #0c5f69;
  --brass: #c3923c;
  --muted: #5a6a76;
  --line: rgba(16, 36, 51, 0.12);
  --shadow: 0 18px 50px rgba(16, 36, 51, 0.12);
  --max: 1120px;
  --radius: 18px;
  --sans: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--cyan-dark); }
.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

.topbar {
  background: var(--ink);
  color: #dce7ee;
  font-size: 0.86rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.brand img { width: 42px; height: 42px; }
.brand strong { display: block; letter-spacing: 0.08em; font-size: 0.95rem; }
.brand small { display: block; color: var(--muted); letter-spacing: 0.14em; font-size: 0.68rem; }

.site-nav { display: flex; align-items: center; gap: 1.1rem; }
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--cyan-dark); }
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  font-weight: 700;
}

.hero {
  padding: 3.2rem 0 2.4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}
.eyebrow {
  margin: 0 0 0.7rem;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--cyan-dark);
}
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h1 em { font-style: italic; color: var(--cyan-dark); }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 38rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.4rem 0 1.1rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
}
.button-primary { background: var(--cyan); color: #fff; }
.button-primary:hover { background: var(--cyan-dark); }
.button-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.button-ghost:hover { background: var(--ink); color: #fff; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.trust-row b { color: var(--ink); }

.hero-photo {
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.photo-chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(16, 36, 51, 0.86);
  color: #fff;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  font-size: 0.88rem;
}

.strip {
  background: var(--ink);
  color: #d7e4ec;
  padding: 1rem 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.section { padding: 4rem 0; }
.section-heading { max-width: 40rem; margin-bottom: 2rem; }
.section-heading h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); margin-bottom: 0.7rem; }
.section-heading p { color: var(--muted); }

.card-grid, .service-grid, .post-grid {
  display: grid;
  gap: 1.1rem;
}
.service-grid { grid-template-columns: 1.15fr 1fr 1fr; }
.card, .service-card, .post-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 0 8px 24px rgba(16, 36, 51, 0.04);
}
.service-card.featured {
  background: var(--ink);
  color: #eef5f8;
}
.service-card.featured p, .service-card.featured a { color: #c9dbe4; }
.service-card h3 { margin: 0.4rem 0 0.6rem; font-size: 1.45rem; }
.price { color: var(--brass); font-weight: 700; }
.service-card a { font-weight: 700; text-decoration: none; }

.about-grid, .split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}
.year-panel {
  background: linear-gradient(160deg, var(--ink), var(--ink-soft));
  color: #fff;
  border-radius: 28px;
  min-height: 320px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.year-panel .year {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.9;
  color: var(--brass);
}
.media-frame img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 24px;
}

.post-grid { grid-template-columns: repeat(3, 1fr); }
.post-card time { color: var(--muted); font-size: 0.85rem; }
.post-card h3 { margin: 0.4rem 0 0.6rem; font-size: 1.25rem; }
.post-card a { text-decoration: none; color: inherit; }

.cta-band {
  background: var(--paper-2);
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--ink);
  color: #d5e1e8;
  padding: 2.4rem 0 1.4rem;
  margin-top: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}
.site-footer a { color: #fff; }
.tiny { margin-top: 1.6rem; color: #93a6b2; font-size: 0.82rem; }

.prose { max-width: 46rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose h1 { margin-bottom: 0.6rem; }
.article-meta { color: var(--muted); margin-bottom: 1.4rem; }
.page-hero { padding: 2.4rem 0 0.4rem; }

.map-embed {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 20px;
}

.form-note {
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    inset: 100% 1rem auto 1rem;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  body.nav-open .site-nav { display: flex; }
  .hero-grid, .service-grid, .about-grid, .split, .post-grid, .footer-grid, .strip-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo img, .media-frame img { height: 260px; }
  h1 { font-size: 2.3rem; }
}
