:root {
  --orange: #F08F2F;
  --orange-dark: #d5761c;
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --paper: #f7f4ef;
  --white: #fff;
  --line: #e6e0d6;
  --header: #111;
  --max: 1120px;
  --font-body: "Lato", system-ui, sans-serif;
  --font-head: "Raleway", system-ui, sans-serif;
  --font-accent: "Crete Round", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.25rem;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; margin: 0 0 0.5em; }
h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: 0.02em; }
h3 { font-size: 1.15rem; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.skip {
  position: absolute; left: -999px;
}
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: 0.5rem; z-index: 100; }

/* Header — one bar */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.site-header a { color: var(--ink); }
.nav-bar {
  display: flex; align-items: center; gap: 1rem;
  min-height: 3.4rem;
  position: relative;
  flex-wrap: nowrap;
}
a.nav-wordmark {
  display: flex; align-items: center;
  flex: 0 0 auto;
  margin-right: 1.6rem;
  line-height: 0;
}
a.nav-wordmark img {
  height: 44px;
  width: auto;
  max-height: 44px;
  object-fit: contain;
  display: block;
}
.nav {
  display: flex; align-items: center; flex: 1; gap: 1.2rem;
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  min-width: 0;
}
.nav a { text-decoration: none; opacity: 0.88; display: inline; }
.nav a:hover { opacity: 1; color: var(--orange); text-decoration: none; }
.nav-end {
  margin-left: auto;
  display: flex; align-items: center; gap: 1.4rem; flex: 0 0 auto;
}
.site-header .nav-rescue,
.site-header .nav-portal {
  display: inline;
}
.site-header .phone { color: var(--orange); opacity: 1; white-space: nowrap; }
.nav-toggle {
  display: none; background: none; border: 0; color: var(--ink);
  font-size: 1.6rem; cursor: pointer; margin-left: auto;
}
.svc-more { border: 0; }
.svc-more > summary { display: none; cursor: pointer; font-family: var(--font-head); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.8rem; padding: 0.7rem 0; }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem; align-items: start;
  padding: 2.4rem 0 3.2rem;
}
.hero-logo {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 1rem;
}
.kicker {
  font-family: var(--font-accent); font-style: italic;
  color: var(--orange-dark); margin: 0 0 0.6rem;
}
.hero h1 { margin-bottom: 0.35rem; }
.hero .lead {
  font-size: 1.25rem; color: var(--muted); margin: 0.4rem 0 1.1rem;
}
.since {
  font-family: var(--font-accent); font-style: italic;
  font-size: 1.15rem; margin: 0 0 1.4rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.btn {
  display: inline-block; padding: 0.7rem 1.15rem;
  border-radius: 2px; font-family: var(--font-head);
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none !important;
}
.btn-primary { background: var(--orange); color: #111; }
.btn-primary:hover { background: var(--orange-dark); color: #111; }
.btn.is-disabled,
.btn[aria-disabled="true"] {
  background: #c8c8c8;
  color: #666;
  pointer-events: none;
  cursor: not-allowed;
}
.rescue-download-msg {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
}
.btn-ghost { border: 1px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.hero-art {
  border: 1px solid var(--line); background: #fff;
}
.hero-art img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top; }
.hero-mark {
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mark img {
  width: min(100%, 22rem);
  aspect-ratio: auto;
  object-fit: contain;
}

/* Sections */
.section { padding: 3.2rem 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-head { max-width: 38rem; margin-bottom: 1.8rem; }
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }
.illust img {
  width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top;
  border: 1px solid var(--line); background: #fff;
}
.illust img + img { margin-top: 1rem; }
.cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem;
}
.card {
  background: #fff; border: 1px solid var(--line); padding: 1.15rem 1.2rem;
}
.card h3 { color: var(--orange-dark); margin-bottom: 0.35rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* Showcase — X-style row */
.showcase-row {
  display: flex; gap: 0.7rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.2rem 0 1rem;
  scrollbar-color: var(--orange) var(--line);
}
.showcase-row img {
  flex: 0 0 auto;
  height: min(72vh, 620px);
  width: auto;
  max-width: 78vw;
  object-fit: cover;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  background: #111;
}
.gallery-ui {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; margin-top: 0.4rem;
  font-size: 0.9rem; color: var(--muted);
}
.gallery-ui button {
  font-family: var(--font-head); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.75rem;
  background: #fff; border: 1px solid var(--ink); padding: 0.5rem 0.9rem;
  cursor: pointer;
}
.gallery-ui button:hover { background: var(--ink); color: #fff; }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.big-phone {
  font-family: var(--font-head); font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 700; color: var(--ink);
}
.hours { margin: 1rem 0; }
.hours dt { font-weight: 700; margin-top: 0.6rem; }
.hours dd { margin: 0.15rem 0 0; color: var(--muted); }
.note { font-size: 0.95rem; color: var(--muted); }

footer {
  background: var(--header); color: #ccc;
  padding: 1.6rem 0; font-size: 0.9rem;
}
footer .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
footer a { color: var(--orange); }

@media (max-width: 860px) {
  html { scroll-padding-top: 3.8rem; }
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; flex-direction: column; align-items: flex-start;
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.2rem 1.3rem; gap: 0.8rem;
  }
  .nav.open { display: flex; }
  .nav-end {
    margin-left: 0; flex-direction: column; align-items: flex-start; gap: 0.8rem;
  }
  .site-header .nav-rescue { display: none; }
  .hero, .split, .split.flip, .contact-grid, .cards {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 1.4rem; }
  a.nav-wordmark { margin-right: 0.6rem; }
  a.nav-wordmark img { height: 32px; max-height: 32px; }
  .showcase-row img { height: min(62vh, 480px); }
  .svc-more > summary { display: list-item; }
  .svc-more:not([open]) .cards { display: none; }
}
