/* =========================================================
   Cleaners Durham — main stylesheet
   Direction: refined cathedral-city, scholarly, italic serif
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --navy-900: #0F2440;
  --navy-800: #1B3A5C;   /* primary deep navy */
  --navy-700: #234A75;
  --navy-600: #3D6FA8;
  --navy-400: #7CA0CC;
  --navy-100: #DCE6F2;
  --navy-50:  #F1F5FB;

  --parchment-100: #F7F3E8;   /* warm cream accent */
  --parchment-200: #EDE5D0;
  --parchment-300: #D9CDA8;
  --parchment-dark: #6B5A3B;

  --gold: #B8924D;
  --gold-light: #D9B873;

  --ink-900: #0E1B2E;
  --ink-700: #1A2A3A;
  --ink-500: #4B5A6E;
  --ink-300: #8593A6;

  --bg:        #FAFAF8;
  --surface:   #FFFFFF;
  --border:    rgba(27, 58, 92, 0.13);
  --border-strong: rgba(27, 58, 92, 0.25);

  --font-display: 'Fraunces', 'Bricolage Grotesque', Georgia, serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;
  --font-italic: 'Fraunces', Georgia, serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(15, 36, 64, 0.04), 0 1px 3px rgba(15, 36, 64, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 36, 64, 0.07), 0 2px 4px rgba(15, 36, 64, 0.05);
  --shadow-lg: 0 16px 44px rgba(15, 36, 64, 0.13), 0 4px 12px rgba(15, 36, 64, 0.07);

  --container: 1240px;
  --gutter: clamp(1rem, 3vw, 2rem);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--navy-800); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 500; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

/* Display italic accent — the "signature" type move */
.italic-accent {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--navy-600);
}

p { margin: 0 0 1em; }
ul { padding-left: 1.2rem; }
li { margin-bottom: 0.4em; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-tight { padding: clamp(2rem, 5vw, 3.5rem) 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 0.9em;
}

.eyebrow::before {
  content: "—— ";
  color: var(--navy-400);
  letter-spacing: -0.2em;
  margin-right: 0.3em;
}

.section-head {
  max-width: 740px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-500); font-size: 1.08rem; margin-top: 0.5em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
}
.btn-primary:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
}

.btn-lg { padding: 1.1rem 2rem; font-size: 1.02rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}
.nav .logo img { height: 56px; width: auto; }
.nav-links {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--ink-700);
  font-size: 0.95rem;
  position: relative;
}
.nav-links a:hover { color: var(--navy-800); }
.nav-links a[aria-current="page"] {
  color: var(--navy-800);
}
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.1rem;
  height: 2px;
  background: var(--gold);
}
.nav-cta { margin-left: 0.5rem; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--navy-800);
  padding: 0.5rem 0.8rem;
  font-size: 0.95rem;
}
.nav-phone:hover { color: var(--navy-600); }

.mobile-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--navy-800);
}

@media (max-width: 960px) {
  .nav-links, .nav-cta, .nav-phone { display: none; }
  .mobile-toggle { display: inline-flex; }
  .site-header.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem var(--gutter);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 0.2rem;
  }
  .site-header.open .nav-links a {
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
  }
}

/* =========================================================
   THE RIVERSIDE ROUND — the hero / signature moment
   ========================================================= */

.river-hero {
  position: relative;
  background: linear-gradient(180deg, var(--parchment-100) 0%, #FAFAF6 100%);
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.river-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184, 146, 77, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(61, 111, 168, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

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

.hero-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 3rem;
}

@media (max-width: 800px) {
  .hero-intro { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
}

.hero-intro h1 {
  margin-bottom: 0.6rem;
}
.hero-intro h1 .small {
  display: block;
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--parchment-dark);
  margin-bottom: 0.4em;
  font-family: var(--font-body);
  text-transform: uppercase;
}
.hero-intro h1 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--navy-600);
}

.hero-intro .lead {
  font-size: 1.08rem;
  color: var(--ink-500);
  max-width: 540px;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

/* The actual map widget */
.round-map {
  background: var(--parchment-100);
  border: 1px solid var(--parchment-300);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 3vw, 2rem);
  position: relative;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.round-map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 30px, rgba(107, 90, 59, 0.04) 30px, rgba(107, 90, 59, 0.04) 31px),
    repeating-linear-gradient(90deg, transparent 0, transparent 30px, rgba(107, 90, 59, 0.04) 30px, rgba(107, 90, 59, 0.04) 31px);
  z-index: 0;
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--parchment-300);
  position: relative;
  z-index: 1;
}
.map-header .title {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--navy-800);
  font-weight: 500;
}
.map-header .stamp {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--parchment-dark);
  border: 1px solid var(--parchment-300);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
}

.map-svg-wrap {
  position: relative;
  z-index: 1;
  background: var(--parchment-100);
}
.map-svg-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Stops below the map */
.map-stops {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--parchment-300);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}
.map-stops a {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease;
}
.map-stops a:hover { background: rgba(184, 146, 77, 0.1); }
.map-stops .stop-no {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.map-stops .stop-name {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--navy-800);
  font-weight: 500;
}
.map-stops .stop-pc {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--ink-500);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 720px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; } }
.trust-grid div { color: var(--ink-500); font-size: 0.92rem; }
.trust-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy-800);
  margin-bottom: 0.1rem;
  letter-spacing: -0.02em;
  font-weight: 600;
}

/* =========================================================
   AREA SECTIONS — each round-stop expanded
   ========================================================= */

.area-section {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--border);
}
.area-section:last-of-type { border-bottom: none; }
.area-section:nth-child(even) {
  background: var(--navy-50);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 800px) {
  .area-grid { grid-template-columns: 1fr; }
}

.area-meta {
  position: sticky;
  top: 100px;
}

.area-no {
  display: inline-block;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.area-postcode {
  display: inline-block;
  background: var(--navy-100);
  color: var(--navy-800);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.area-meta h2 {
  margin-bottom: 0.4rem;
}
.area-meta h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--navy-600);
}

.area-meta .area-summary {
  color: var(--ink-500);
  font-size: 1rem;
  margin: 0.5rem 0 1.2rem;
}

.area-services {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.area-service {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem;
  transition: all 0.2s ease;
}
.area-service:hover {
  border-color: var(--navy-600);
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
}
.area-service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
  gap: 0.5rem;
}
.area-service h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy-800);
}
.area-service .price {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.area-service p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-500);
  line-height: 1.55;
}

/* ---------- Why us split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.feature-list li {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  align-items: flex-start;
}
.feature-list li:first-child { border-top: none; padding-top: 0; }
.feature-list .check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 0.1rem;
}
.feature-list h4 { margin: 0 0 0.2rem; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.feature-list p { margin: 0; font-size: 0.95rem; color: var(--ink-500); }

/* Heritage panel — replaces stat panel */
.heritage-panel {
  background: linear-gradient(165deg, var(--navy-800) 0%, var(--navy-700) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.heritage-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(184, 146, 77, 0.3);
  border-radius: 50%;
}
.heritage-panel::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(184, 146, 77, 0.2);
  border-radius: 50%;
}
.heritage-panel .stat {
  position: relative;
  z-index: 1;
}
.heritage-panel .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--gold-light);
}
.heritage-panel .stat span {
  font-size: 1.05rem;
  opacity: 0.9;
}
.heritage-panel blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 400;
}
.heritage-panel blockquote::before {
  content: "\201C";
  display: block;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
}
.heritage-panel blockquote footer {
  margin-top: 0.8rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.88rem;
  opacity: 0.8;
  font-weight: 500;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--navy-800);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 100% 50%, rgba(184, 146, 77, 0.12) 0%, transparent 50%);
}
.cta-strip h2 { color: #fff; margin-bottom: 0.4em; position: relative; z-index: 1;}
.cta-strip h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.cta-strip p { color: rgba(255,255,255,0.85); margin-bottom: 0; position: relative; z-index: 1;}
.cta-strip .container {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}
.cta-strip .actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 720px) {
  .cta-strip .container { grid-template-columns: 1fr; }
  .cta-strip .actions { justify-content: flex-start; }
}
.cta-strip .btn-primary {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
}
.cta-strip .btn-primary:hover { background: var(--gold-light); color: var(--navy-900); }
.cta-strip .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-strip .btn-outline:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

/* ---------- Quote form ---------- */
.form { display: grid; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 0.35rem;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink-700);
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(61, 111, 168, 0.18);
}
.form textarea { min-height: 110px; resize: vertical; }
.form-note {
  font-size: 0.83rem;
  color: var(--ink-300);
  margin-top: 0.2rem;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
}
.quote-card h3 { margin-bottom: 0.3em; }
.quote-card .small { color: var(--ink-500); font-size: 0.95rem; margin-bottom: 1.5rem; }

.success-msg {
  display: none;
  background: #e7f7ee;
  border: 1px solid #95d2af;
  color: #156736;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.success-msg.show { display: block; }

/* ---------- Page header (non-home) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--parchment-100) 0%, var(--navy-50) 100%);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
  position: relative;
}
.page-header h1 {
  margin-bottom: 0.3em;
}
.page-header h1 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--navy-600);
}
.page-header p { color: var(--ink-500); max-width: 600px; margin: 0 auto; font-size: 1.08rem; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--navy-800); }

/* ---------- Service detail ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-of-type { border-bottom: none; }
@media (max-width: 800px) { .service-detail { grid-template-columns: 1fr; } }
.service-detail .meta { position: sticky; top: 100px; }
.service-detail .meta-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--navy-100);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.service-detail h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.service-detail h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--navy-600);
}
.service-detail .price-tag {
  display: inline-block;
  background: var(--parchment-200);
  color: var(--parchment-dark);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.service-detail .checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem 1rem;
}
.service-detail .checklist li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.service-detail .checklist li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin-bottom: 1rem;
}
.info-card h3 { font-size: 1.1rem; margin-bottom: 0.4em; }
.info-card .row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.info-card .row:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.info-card .row-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--navy-100);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card .row strong {
  display: block;
  color: var(--ink-700);
  margin-bottom: 0.1rem;
}
.info-card .row p { margin: 0; color: var(--ink-500); font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(3rem, 6vw, 4rem) 0 2rem;
  font-size: 0.95rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid img { height: 64px; margin-bottom: 1rem; }
.footer-grid p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.5; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 0.5rem; }
.footer-grid a {
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
  transition: color 0.2s ease;
}
.footer-grid a:hover { color: var(--gold-light); }
.footer-grid .contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.footer-grid .contact-item strong {
  color: #fff;
  display: block;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- Utility ---------- */
.text-muted { color: var(--ink-500); }
.mb-0 { margin-bottom: 0; }

@media print {
  .site-header, .site-footer, .cta-strip, .hero-actions { display: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   BLOG — "The Riverbank Notes" (different feel from logbook)
   ========================================================= */

.notes-hero {
  background: var(--parchment-100);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--parchment-300);
  position: relative;
}
.notes-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(184, 146, 77, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 75% 60%, rgba(27, 58, 92, 0.05) 0%, transparent 40%);
  pointer-events: none;
}
.notes-hero .container { position: relative; z-index: 1; }

.notes-hero h1 {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.notes-hero h1 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--navy-600);
}
.notes-hero .lead {
  font-family: var(--font-body);
  color: var(--ink-500);
  font-size: 1.1rem;
  max-width: 620px;
  line-height: 1.6;
  margin: 0;
}
.notes-hero .meta-strip {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--parchment-dark);
}
.notes-hero .meta-strip strong { color: var(--ink-900); font-weight: 600; }

.notes-list {
  background: #FCFAF4;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.note-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 2rem 0;
  border-bottom: 1px solid var(--parchment-300);
  align-items: start;
}
.note-card:last-child { border-bottom: none; }

@media (max-width: 720px) {
  .note-card { grid-template-columns: 1fr; gap: 0.6rem; padding: 1.8rem 0; }
}

.note-aside {
  font-family: var(--font-body);
  color: var(--parchment-dark);
}
.note-no {
  display: block;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.note-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy-800);
  border: 1px solid var(--navy-100);
  background: var(--navy-50);
  padding: 0.25rem 0.55rem;
  border-radius: 2px;
  font-weight: 600;
}

.note-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--navy-900);
  margin: 0 0 0.6rem;
  line-height: 1.2;
  font-weight: 600;
}
.note-body h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--navy-600);
}
.note-body h2 a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(transparent 92%, var(--gold) 92%);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease;
}
.note-body h2 a:hover {
  background-size: 100% 100%;
}
.note-body p {
  color: var(--ink-500);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 0.8rem;
}
.note-readmore {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy-800);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.note-readmore::after {
  content: "→";
  transition: transform 0.2s ease;
}
.note-readmore:hover::after { transform: translateX(4px); }

/* Individual blog post */
.note-page {
  background: #FCFAF4;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 7vw, 5rem);
  min-height: 80vh;
}
.note-page .container { max-width: 760px; }

.note-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--parchment-dark);
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.note-back:hover { color: var(--navy-800); }

.note-page header {
  margin-bottom: 2.5rem;
}
.note-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--navy-900);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 500;
}
.note-page h1 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--navy-600);
}
.note-page .post-meta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--parchment-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
}
.note-page .post-meta strong { color: var(--navy-800); font-weight: 600; }

.note-content {
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.78;
  color: var(--ink-900);
}
.note-content p { margin: 0 0 1.3rem; }
.note-content p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.8rem;
  float: left;
  line-height: 0.85;
  margin: 0.2rem 0.5rem 0 0;
  color: var(--gold);
  font-weight: 500;
}
.note-content h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy-900);
  margin: 2.5rem 0 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--parchment-300);
  font-weight: 600;
}
.note-content h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--navy-600);
}
.note-content h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--navy-900);
  margin: 2rem 0 0.6rem;
  font-weight: 600;
}
.note-content ul, .note-content ol {
  padding-left: 1.5rem;
  margin: 0 0 1.5rem;
}
.note-content li { margin-bottom: 0.6rem; }
.note-content blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.4rem;
  margin: 1.8rem 0;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--navy-800);
}

.note-content .marginalia {
  margin: 1.8rem 0;
  padding: 1.2rem 1.5rem;
  background: var(--parchment-100);
  border-left: 3px solid var(--gold);
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--parchment-dark);
}
.note-content .marginalia::before {
  content: "Note in the margin";
  display: block;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.note-content .lessons {
  margin-top: 3rem;
  padding: 1.5rem 1.8rem;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-md);
}
.note-content .lessons h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin: 0 0 0.8rem;
  font-weight: 700;
  border: none;
  padding: 0;
}
.note-content .lessons ul {
  padding-left: 1.2rem;
  margin: 0;
}
.note-content .lessons li {
  font-size: 0.97rem;
  color: var(--ink-700);
  line-height: 1.55;
  margin-bottom: 0.4rem;
}

.note-cta {
  margin-top: 3rem;
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.note-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.note-cta h3 {
  color: #fff;
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  border: none;
  padding: 0;
  font-weight: 600;
}
.note-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.2rem;
  font-size: 1rem;
}
.note-cta .btn-primary {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
}
.note-cta .btn-primary:hover { background: var(--gold-light); color: var(--navy-900); }

.related {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--parchment-300);
}
.related h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--parchment-dark);
  margin: 0 0 1.2rem;
  font-weight: 700;
  border: none;
  padding: 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.related-grid a {
  display: block;
  padding: 1rem 1.2rem;
  border: 1px solid var(--parchment-300);
  border-radius: var(--radius-md);
  background: var(--parchment-100);
  text-decoration: none;
  transition: all 0.2s ease;
}
.related-grid a:hover {
  border-color: var(--navy-600);
  transform: translateY(-2px);
  background: #fff;
}
.related-grid .r-no {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.related-grid .r-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1.3;
}
