:root {
  /* Brand */
  --brand: #1a4f9d;
  --brand-600: #15407e;
  --brand-700: #103368;
  --brand-50: #ecf2fa;
  --brand-100: #d6e3f3;

  /* Warm earth palette */
  --cream: #f8f1e3;
  --cream-2: #f1e7d2;
  --sand: #e8dabb;
  --paper: #fbf6ea;
  --terracotta: #c8674a;
  --terracotta-700: #a4533a;
  --mustard: #d2a04a;
  --leaf: #4a7a5a;

  /* Ink */
  --ink: #2a1d12;
  --ink-2: #4a3a2a;
  --muted: #8a7a68;
  --line: #e0d4be;

  /* Footer */
  --footer-bg: #1c1208;
  --footer-line: #3a2a1a;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --t: .25s cubic-bezier(.4,.0,.2,1);

  --shadow-paper: 0 1px 0 rgba(42,29,18,.04), 0 6px 16px -8px rgba(42,29,18,.18);
  --shadow-card: 0 2px 0 rgba(42,29,18,.06), 0 14px 28px -16px rgba(42,29,18,.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

/* Subtle paper texture overlay across the whole page */
body::before {
  content: ""; position: fixed; inset: 0;
  pointer-events: none; z-index: 1000;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16  0 0 0 0 0.11  0 0 0 0 0.07  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .045;
  mix-blend-mode: multiply;
}

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

a { color: var(--brand-600); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--terracotta-700); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Source Serif Pro', Georgia, serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .55em;
  letter-spacing: -.005em;
  font-variation-settings: "SOFT" 50, "WONK" 0;
}
h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -.015em;
}
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 500; }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1em; }

.script {
  font-family: 'Caveat', 'Brush Script MT', cursive;
  font-weight: 500;
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 241, 227, .92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.nav-links a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--ink-2); font-weight: 500;
  transition: background var(--t), color var(--t);
}
.nav-links a:hover { background: var(--sand); color: var(--brand-700); }
.nav-links a.active { color: var(--brand-700); background: var(--cream-2); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 8px;
  cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column; align-items: stretch;
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform var(--t), opacity var(--t);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { width: 100%; padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600; font-size: .98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
  white-space: nowrap;
  font-family: inherit;
  position: relative;
}
.btn-primary {
  background: var(--brand);
  color: var(--cream);
  border-color: var(--brand);
  box-shadow: 0 3px 0 var(--brand-700);
}
.btn-primary:hover { background: var(--brand-600); color: var(--cream); transform: translateY(-2px); box-shadow: 0 5px 0 var(--brand-700); }
.btn-primary:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--brand-700); }

.btn-accent {
  background: var(--terracotta);
  color: #fff8ef;
  border-color: var(--terracotta);
  box-shadow: 0 3px 0 var(--terracotta-700);
}
.btn-accent:hover { background: var(--terracotta-700); color: #fff8ef; transform: translateY(-2px); box-shadow: 0 5px 0 #803f2c; }
.btn-accent:active { transform: translateY(1px); box-shadow: 0 1px 0 #803f2c; }

.btn-ghost {
  background: transparent; color: #f8f1e3;
  border-color: rgba(248,241,227,.5);
}
.btn-ghost:hover { background: rgba(248,241,227,.1); border-color: #f8f1e3; color: #f8f1e3; }

.btn-outline {
  background: var(--cream);
  color: var(--brand-700);
  border-color: var(--brand);
}
.btn-outline:hover { background: var(--brand-50); color: var(--brand-700); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #f8f1e3;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(125deg, rgba(28,18,8,.86) 0%, rgba(28,18,8,.6) 45%, rgba(26,79,157,.45) 100%);
  z-index: 1;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 .94  0 0 0 0 .85  0 0 0 .55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .12;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--ink) url('../assets/aerial.jpg') center/cover no-repeat;
  transform: scale(1.05);
  filter: contrast(1.05) saturate(.88) sepia(.08);
}
.hero-inner { position: relative; z-index: 2; padding: 110px 0 130px; max-width: 760px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(248,241,227,.12); color: #f8f1e3;
  padding: 7px 16px; border-radius: 999px;
  font-family: 'Caveat', cursive;
  font-size: 1.25rem; font-weight: 500;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(248,241,227,.22);
  transform: rotate(-1.5deg);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mustard); box-shadow: 0 0 0 4px rgba(210,160,74,.25); }

.hero h1 { color: var(--cream); margin-bottom: 22px; }
.hero h1 .underline {
  position: relative; display: inline-block;
}
.hero h1 .underline::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: -.18em;
  height: .18em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 8 C 40 2, 80 12, 120 6 S 180 2, 198 7' stroke='%23d2a04a' stroke-width='3' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-size: 100% 100%;
  pointer-events: none;
}
.hero p.lead { font-size: 1.2rem; color: #ece1cc; max-width: 620px; margin-bottom: 32px; font-family: 'Fraunces', Georgia, serif; font-weight: 300; font-style: italic; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(28,18,8,.32);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(248,241,227,.14);
}
.hero-stat {
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid rgba(248,241,227,.10);
  color: #f8f1e3;
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.85rem; font-weight: 500;
  letter-spacing: -.01em;
  color: var(--mustard);
}
.hero-stat .lbl { font-size: .82rem; color: #d6c8b0; text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }
@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-bottom: 1px solid rgba(248,241,227,.08); }
  .hero-stat:nth-child(2) { border-right: 0; }
  .hero-inner {
    padding: 70px 0 90px;
    text-align: center;
  }
  .hero-inner .eyebrow {
    transform: rotate(-1.5deg);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-inner h1,
  .hero-inner p.lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions { justify-content: center; }
  /* A touch more breathing room from the edges on small screens */
  .hero .container { padding-left: 28px; padding-right: 28px; }
}

/* ---------- Sections ---------- */
.section { padding: 95px 0; position: relative; }
.section-tight { padding: 60px 0; }
.section-soft { background: var(--cream-2); }
.section-paper { background: var(--paper); }

.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; position: relative; }
.section-head .kicker {
  display: inline-block;
  font-family: 'Caveat', cursive;
  color: var(--terracotta);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 6px;
  transform: rotate(-1deg);
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; font-family: 'Fraunces', Georgia, serif; font-weight: 300; font-style: italic; }

/* Hand-drawn squiggle divider */
.squiggle {
  display: block; margin: 0 auto;
  width: 110px; height: 22px;
  color: var(--terracotta);
  opacity: .8;
}
.section-head .squiggle { margin-bottom: 18px; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: var(--ink-2);
  position: relative;
}
.card:hover {
  transform: translateY(-4px) rotate(-.4deg);
  box-shadow: var(--shadow-card);
  border-color: var(--terracotta);
}
.card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-50); color: var(--brand-700);
  margin-bottom: 20px;
  border: 1.5px solid var(--brand-100);
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; color: var(--ink); }
.card p { color: var(--muted); font-size: .98rem; margin-bottom: 18px; }
.card .more { margin-top: auto; color: var(--terracotta-700); font-weight: 600; font-size: .94rem; display: inline-flex; align-items: center; gap: 6px; }
.card .more::after { content: "→"; transition: transform var(--t); }
.card:hover .more::after { transform: translateX(4px); }

/* ---------- Two-column feature ---------- */
.split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 6px solid var(--paper);
}
.split .reveal:nth-child(2) img {
  transform: rotate(1deg);
}
.split .reveal:nth-child(1) img {
  transform: rotate(-1deg);
}

.feature-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-2); }
.feature-list .check {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mustard); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
  border: 1.5px solid #c69240;
}
.feature-list .check svg { width: 14px; height: 14px; }

/* ---------- Trust band ---------- */
.trust {
  background: var(--brand);
  background-image:
    linear-gradient(135deg, var(--brand-700) 0%, var(--brand) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-blend-mode: overlay;
  color: #f8f1e3;
  padding: 32px 0;
  border-top: 1px solid var(--brand-700);
  border-bottom: 1px solid var(--brand-700);
}
.trust-row { display: flex; flex-wrap: wrap; gap: 28px 40px; align-items: center; justify-content: space-between; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ico { width: 42px; height: 42px; border-radius: 10px; background: rgba(248,241,227,.16); display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(248,241,227,.18); }
.trust-item .ico svg { width: 22px; height: 22px; color: var(--mustard); }
.trust-item strong { display: block; font-size: 1rem; color: #f8f1e3; font-family: 'Fraunces', Georgia, serif; font-weight: 500; }
.trust-item span { font-size: .82rem; color: #c2d8ec; }

/* ---------- Pricing / option grid ---------- */
.options { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 800px) { .options { grid-template-columns: 1fr; } }
.option {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 34px 30px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.option:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.option.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, #fff8ec 0%, var(--paper) 100%);
}
.option .tag {
  position: absolute; top: -13px; left: 26px;
  background: var(--mustard); color: var(--ink);
  padding: 5px 14px; border-radius: 999px;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem; font-weight: 600;
  border: 1.5px solid #c69240;
  transform: rotate(-2deg);
}
.option h3 { margin-bottom: 6px; }
.option .sub { color: var(--muted); font-size: .96rem; margin-bottom: 20px; font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 300; }
.option ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 11px; }
.option ul li { display: flex; gap: 10px; color: var(--ink-2); }
.option ul li::before { content: "✦"; color: var(--terracotta); font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  background-image:
    linear-gradient(135deg, #1f1409 0%, #2d1f12 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 .9  0 0 0 0 .8  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-blend-mode: overlay;
  color: #f8f1e3;
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--cream); margin-bottom: 14px; }
.cta-band .kicker {
  display: inline-block;
  font-family: 'Caveat', cursive;
  color: var(--mustard);
  font-size: 1.5rem;
  margin-bottom: 4px;
  transform: rotate(-1deg);
}
.cta-band p { color: #d6c8b0; max-width: 580px; margin: 0 auto 30px; font-size: 1.08rem; font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 300; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-bg);
  color: #b6a896;
  padding: 60px 0 24px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--cream); font-size: .95rem;
  font-family: 'Fraunces', Georgia, serif; font-weight: 500;
  text-transform: none; letter-spacing: 0;
  margin-bottom: 14px;
}
.site-footer a { color: #b6a896; }
.site-footer a:hover { color: var(--mustard); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer .brand { margin-bottom: 14px; }
.site-footer .brand img { height: 44px; }
.foot-about p { font-size: .95rem; color: #93826e; margin-bottom: 14px; font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 300; }
.foot-bottom {
  border-top: 1px solid var(--footer-line);
  padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .86rem; color: #93826e;
}
.foot-bottom a { color: #93826e; }

/* ---------- Page header ---------- */
.page-hero {
  background: var(--brand);
  background-image:
    linear-gradient(135deg, var(--brand-700) 0%, var(--brand) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-blend-mode: overlay;
  color: #f8f1e3;
  padding: 86px 0 76px;
  text-align: center;
  border-bottom: 1px solid var(--brand-700);
}
.page-hero h1 { color: var(--cream); margin-bottom: 14px; }
.page-hero p { color: #d6e7f5; max-width: 640px; margin: 0 auto; font-size: 1.08rem; font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 300; }
.crumbs {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem; color: var(--mustard);
  margin-bottom: 8px;
}
.crumbs a { color: #f8f1e3; border-bottom: 1px dashed rgba(248,241,227,.5); padding-bottom: 1px; }
.crumbs a:hover { color: var(--mustard); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 34px; }
.contact-info h3 { margin-bottom: 18px; }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-50); color: var(--brand-700); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; border: 1.5px solid var(--brand-100); }
.info-row .icon svg { width: 22px; height: 22px; }
.info-row .lbl { font-family: 'Caveat', cursive; font-size: 1.15rem; color: var(--terracotta); margin-bottom: -2px; }
.info-row .val { color: var(--ink); font-weight: 600; font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: 1.05rem; }

.form { display: grid; gap: 16px; }
.form label { font-size: .9rem; color: var(--ink-2); font-weight: 600; display: block; margin-bottom: 6px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 13px 14px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink);
  background: var(--paper);
  transition: border-color var(--t), box-shadow var(--t);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 0; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(26,79,157,.12);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--muted); font-family: 'Fraunces', Georgia, serif; font-style: italic; }

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 6px solid var(--paper);
  aspect-ratio: 16/9;
  background: var(--cream-2);
}
.map-wrap iframe,
.map-wrap.leaflet-container { width: 100%; height: 100%; border: 0; display: block; }
#map { width: 100%; height: 100%; }

/* Custom map pin in brand colours */
.mts-pin .mts-pin-inner {
  width: 36px; height: 48px; position: relative;
  display: flex; align-items: flex-start; justify-content: center;
}
.mts-pin .mts-pin-inner::before {
  content: ""; position: absolute; left: 50%; top: 0;
  width: 28px; height: 28px; border-radius: 50% 50% 50% 0;
  background: var(--terracotta);
  border: 2.5px solid var(--cream);
  transform: translateX(-50%) rotate(-45deg);
  box-shadow: 0 4px 8px rgba(0,0,0,.25);
}
.mts-pin .mts-pin-dot {
  position: absolute; top: 7px; left: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--cream);
  transform: translateX(-50%);
}
.leaflet-popup-content {
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--ink);
}
.leaflet-popup-content strong {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--brand-700);
}

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Section dividers ---------- */
.divider {
  display: block; margin: 0 auto;
  width: 200px; height: 28px;
  color: var(--terracotta);
  opacity: .65;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.muted { color: var(--muted); }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-50); color: var(--brand-700);
  padding: 5px 14px; border-radius: 999px;
  font-size: .82rem; font-weight: 700;
  border: 1.5px solid var(--brand-100);
}
.badge.gold {
  background: #fff5dd; color: #8a6406;
  border-color: #efd99c;
  font-family: 'Caveat', cursive;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 4px 14px;
}
