/* ============================================
   STILES ANIMAL REMOVAL
   Editorial heritage. Cormorant Garamond + Lora.
   Sage + cream + charcoal palette.
   ============================================ */

:root {
  /* Palette */
  --bg-cream: #f5f0e6;
  --bg-cream-deep: #ebe3d2;
  --bg-paper: #faf6ef;
  --sage-deep: #4a5d4d;
  --sage: #6b7e6e;
  --sage-soft: #a8b3a4;
  --charcoal: #1f1f1d;
  --charcoal-soft: #3a3a37;
  --muted: #6f6c66;
  --rust: #8c4a32;
  --rust-deep: #6f3a26;
  --rule: #d8d0c0;

  /* Type */
  --display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --body: "Lora", "Iowan Old Style", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* Scale */
  --container: 1240px;
  --container-narrow: 920px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   RESET + BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-deep); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--rust); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1.2em; }

/* Editorial small caps label used throughout */
.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sage-deep);
  display: inline-block;
}

/* ============================================
   LAYOUT PRIMITIVES
   ============================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(60px, 8vw, 110px) 0; }
.section--cream { background: var(--bg-paper); }
.section--deep { background: var(--bg-cream-deep); }
.section--sage { background: var(--sage-deep); color: var(--bg-cream); }
.section--sage h1, .section--sage h2, .section--sage h3 { color: var(--bg-cream); }
.section--sage .eyebrow { color: var(--sage-soft); }
.section--sage .eyebrow::before { background: var(--sage-soft); }

.divider { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 26px;
  font-family: var(--body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--bg-cream);
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
}
.btn:hover { background: var(--sage-deep); border-color: var(--sage-deep); color: var(--bg-cream); }
.btn--ghost { background: transparent; color: var(--charcoal); }
.btn--ghost:hover { background: var(--charcoal); color: var(--bg-cream); }
.btn--rust { background: var(--rust); border-color: var(--rust); color: #fff8ed; }
.btn--rust:hover { background: var(--rust-deep); border-color: var(--rust-deep); color: #fff8ed; }
.btn--lg { padding: 17px 34px; font-size: 1.02rem; }

.text-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
  background: var(--bg-paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  background-color: rgba(250, 246, 239, 0.92);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.brand-mark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.brand-mark strong { font-style: normal; font-weight: 600; }
.brand-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: 5px;
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--sage-deep);
  transition: width .3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--sage-deep); }

.header-phone {
  display: flex;
  flex-direction: column;
  text-align: right;
  text-decoration: none;
  border-left: 1px solid var(--rule);
  padding-left: 22px;
  line-height: 1.2;
}
.header-phone .phone-label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.header-phone .phone-num {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 2px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-family: var(--body);
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--charcoal);
  padding: 4px 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: clamp(70px, 10vw, 130px) 0 clamp(70px, 10vw, 130px);
  background: var(--bg-cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}
.hero-lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
  max-width: 32em;
  margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-figure {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(31,31,29,0.35), 0 1px 0 rgba(31,31,29,0.05);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,31,29,0.12) 100%);
  pointer-events: none;
}
.hero-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--bg-paper);
  padding: 14px 18px;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--charcoal);
  max-width: 240px;
  line-height: 1.4;
  border-left: 2px solid var(--sage-deep);
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-paper);
  padding: 32px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-item {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--rule);
}
.trust-item:last-child { border-right: 0; }
.trust-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--sage-deep);
  display: block;
  line-height: 1;
}
.trust-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  display: block;
  font-weight: 600;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-title {
  margin: 0 0 18px;
  font-weight: 400;
}
.section-title em { font-style: italic; color: var(--sage-deep); }
.section-lede {
  font-size: 1.1rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  max-width: 36em;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.service-card {
  background: var(--bg-paper);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: background .3s var(--ease);
}
.service-card:hover { background: var(--bg-cream-deep); }
.service-num {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 14px; }
.service-card p {
  color: var(--charcoal-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}
.service-card .text-link {
  align-self: flex-start;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 600;
}

/* ============================================
   STORY / ABOUT TEASER
   ============================================ */
.story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.story-figure {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
}
.story-figure img { width: 100%; height: 100%; object-fit: cover; }
.story-figure-meta {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--bg-paper);
  padding: 10px 14px;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--charcoal-soft);
}
.story-text h2 { margin-bottom: 22px; }
.story-text p { color: var(--charcoal-soft); font-size: 1.08rem; }
.story-signature {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--sage-deep);
  margin-top: 30px;
  display: block;
}

/* ============================================
   AREA / SERVICE REGIONS
   ============================================ */
.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  margin-top: 50px;
}
.area-region h4 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--sage-soft);
  color: var(--bg-cream);
}
.area-region ul {
  list-style: none;
  padding: 0; margin: 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--sage-soft);
}

/* ============================================
   QUOTE / TESTIMONIAL
   ============================================ */
.quote {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--sage-soft);
  display: block;
  margin-bottom: 20px;
}
.quote-text {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.5;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 30px;
}
.quote-attribution {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ============================================
   CTA PANEL
   ============================================ */
.cta-panel {
  background: var(--sage-deep);
  color: var(--bg-cream);
  padding: clamp(50px, 7vw, 90px) clamp(28px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
.cta-panel h2 { color: var(--bg-cream); margin: 0 0 16px; }
.cta-panel p { color: var(--sage-soft); margin: 0; font-size: 1.05rem; }
.cta-panel-actions { text-align: right; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.cta-phone {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--bg-cream);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1;
}
.cta-phone:hover { color: var(--bg-cream); opacity: 0.85; }
.cta-hours {
  font-size: 0.85rem;
  color: var(--sage-soft);
  letter-spacing: 0.04em;
}

/* ============================================
   PARTNERS DIRECTORY
   ============================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--rule);
}
.partner {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  padding-right: 30px;
}
.partner:nth-child(odd) { border-right: 1px solid var(--rule); padding-right: 30px; }
.partner:nth-child(even) { padding-left: 30px; padding-right: 0; }
.partner h4 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--charcoal);
}
.partner-meta {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
  margin: 0;
}
.partner-phone {
  font-family: var(--display);
  font-weight: 600;
  color: var(--sage-deep);
  font-size: 1.1rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 26px 60px 26px 0;
  cursor: pointer;
  position: relative;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--body);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--sage-deep);
  transition: transform .3s var(--ease);
}
.faq-item[open] .faq-question::after { content: "−"; }
.faq-answer {
  padding: 0 0 26px;
  color: var(--charcoal-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 60em;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info-block { padding-top: 8px; }
.contact-info-block h3 {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-deep);
  font-family: var(--body);
  margin-top: 32px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.contact-info-block h3:first-child { margin-top: 0; }
.contact-info-block p { margin: 0 0 6px; font-size: 1.05rem; }
.contact-phone-large {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--charcoal);
  display: block;
  margin: 4px 0 4px;
  line-height: 1.1;
}
.contact-phone-large:hover { color: var(--sage-deep); }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dotted var(--rule);
  font-size: 0.98rem;
}
.hours-row:last-child { border-bottom: 0; }
.hours-row .day { font-weight: 600; }

.emergency-flag {
  background: var(--rust);
  color: #fff8ed;
  padding: 18px 22px;
  margin-top: 18px;
  border-left: 3px solid var(--rust-deep);
}
.emergency-flag strong { letter-spacing: 0.04em; }
.emergency-flag p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: #fff8ed; }

/* Form */
.contact-form {
  background: var(--bg-paper);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--rule);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  font-weight: 600;
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: var(--bg-cream);
  font-family: var(--body);
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--sage-deep);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-help { font-size: 0.8rem; color: var(--muted); margin-top: 14px; font-style: italic; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  color: #c8c5bc;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .brand-mark { color: var(--bg-cream); }
.footer-brand p { color: #9b9890; font-size: 0.95rem; margin-top: 16px; max-width: 28em; }
.footer-col h4 {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg-cream);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; font-size: 0.95rem; }
.footer-col a { color: #c8c5bc; }
.footer-col a:hover { color: var(--bg-cream); }
.footer-phone {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--bg-cream);
  display: block;
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid #2f2f2c;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #7a786f;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */
.page-header {
  background: var(--bg-paper);
  padding: clamp(60px, 8vw, 100px) 0 clamp(50px, 6vw, 80px);
  border-bottom: 1px solid var(--rule);
}
.page-header .eyebrow { margin-bottom: 16px; }
.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  margin: 0 0 18px;
  max-width: 16em;
}
.page-header h1 em { font-style: italic; color: var(--sage-deep); }
.page-header p {
  font-size: 1.15rem;
  color: var(--charcoal-soft);
  max-width: 38em;
  margin: 0;
}

/* ============================================
   SERVICES PAGE — DETAILED LIST
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 0.5fr 2fr;
  gap: 60px;
  padding: 50px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.service-detail:last-child { border-bottom: 0; }
.service-detail-num {
  font-family: var(--display);
  font-size: 3.6rem;
  font-weight: 400;
  color: var(--sage-soft);
  font-style: italic;
  line-height: 1;
}
.service-detail h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.service-detail p {
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  margin-bottom: 14px;
  max-width: 40em;
}
.service-detail-meta {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-top: 8px;
}

/* ============================================
   SERVICE AREA PAGE — REGION CARDS
   ============================================ */
.region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.region-card {
  background: var(--bg-paper);
  padding: 36px 36px 32px;
  border: 1px solid var(--rule);
}
.region-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.region-card .region-counties {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 16px;
  font-weight: 600;
  display: block;
}
.region-card p {
  color: var(--charcoal-soft);
  margin-bottom: 18px;
  font-size: 1rem;
}
.region-cities {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   ABOUT PAGE — TIMELINE
   ============================================ */
.timeline {
  margin-top: 50px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 110px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--rule);
}
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 50px;
  padding: 30px 0;
  position: relative;
}
.timeline-year {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--sage-deep);
  font-weight: 500;
  text-align: right;
  padding-right: 24px;
}
.timeline-item::after {
  content: "";
  position: absolute;
  left: 106px;
  top: 42px;
  width: 9px; height: 9px;
  background: var(--sage-deep);
  border-radius: 50%;
}
.timeline-content h3 { margin-bottom: 8px; font-size: 1.4rem; }
.timeline-content p { color: var(--charcoal-soft); margin: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .hero-grid, .story, .contact-grid, .cta-panel { grid-template-columns: 1fr; }
  .services-grid, .partners-grid, .region-grid { grid-template-columns: 1fr; }
  .partner:nth-child(odd) { border-right: 0; padding-right: 0; }
  .partner:nth-child(even) { padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust-item:nth-child(2) { border-right: 0; }
  .area-list { grid-template-columns: 1fr 1fr; }
  .cta-panel-actions { text-align: left; align-items: flex-start; }
  .timeline::before { left: 0; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .timeline-year { text-align: left; padding-right: 0; }
  .timeline-item::after { display: none; }
  .service-detail { grid-template-columns: 1fr; gap: 12px; }
  .service-detail-num { font-size: 2.4rem; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    background: var(--bg-paper);
    border-bottom: 1px solid var(--rule);
    gap: 14px;
  }
  .menu-toggle { display: block; }
  .header-phone { padding-left: 14px; }
  .header-phone .phone-num { font-size: 1.1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--rule); padding: 16px 0; }
  .trust-item:last-child { border-bottom: 0; }
  body { font-size: 16px; }
}

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Print */
@media print {
  .site-header, .site-footer, .cta-panel, form { display: none; }
}
