@font-face {
  font-family: 'Amiko';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/amiko-400.woff2) format('woff2');
}
@font-face {
  font-family: 'Amiko';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/amiko-600.woff2) format('woff2');
}
@font-face {
  font-family: 'Amiko';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/amiko-700.woff2) format('woff2');
}
@font-face {
  font-family: 'Yeseva One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/yesevaone-400.woff2) format('woff2');
}

:root {
  /* Brand red. --red is the original brand value and is used on dark
     backgrounds, where it clears WCAG AA (4.95:1 on #171717). On light
     backgrounds it only reaches 3.62:1, so text and fills there use
     --red-ink, a slightly darker shade of the same hue that clears AA
     (4.56:1 both as text on white and as a background behind white). */
  --red: #ff3529;
  --red-ink: #e02f24;
  --red-dark: #c62a1f;
  --ink: #1f1f1f;
  --dark: #272a2f;
  --header: #171717;
  --muted: #c6c6c6;
  --line: #e2e2e2;
  --bg-alt: #f4f4f4;
  --display: 'Yeseva One', Georgia, 'Times New Roman', serif;
  --body: 'Amiko', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --wrap: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.45rem); color: #000; }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--red-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

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

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--alt { background: var(--bg-alt); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: .75rem 1.25rem; font-weight: 700;
}
.skip:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: .85rem 1.9rem;
  border-radius: 999px;
  border: 2px solid var(--red-ink);
  background: var(--red-ink);
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; text-decoration: none; }
.btn--ghost { background: #fff; color: var(--red-ink); border-color: #fff; }
.btn--ghost:hover { background: var(--red-ink); border-color: var(--red-ink); color: #fff; }
.btn--outline { background: transparent; color: var(--red-ink); }
.btn--outline:hover { background: var(--red-ink); color: #fff; }

/* ---------- Header ---------- */
.site-header { background: var(--header); position: sticky; top: 0; z-index: 100; }
.header-inner {
  max-width: var(--wrap); margin-inline: auto; padding: .6rem var(--pad);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem;
}
.brand { display: flex; align-items: center; }
.brand img { width: 210px; height: auto; }
.header-mid { text-align: center; }
.tagline {
  font-family: var(--display); color: var(--red);
  font-size: 1.05rem; margin: 0 0 .15rem;
}
.nav ul { list-style: none; display: flex; align-items: center; justify-content: center; gap: 0; margin: 0; padding: 0; flex-wrap: wrap; }
.nav li { position: relative; }
.nav li + li::before { content: "|"; color: #6b6b6b; padding-inline: .9rem; }
.nav a, .nav .drop-toggle {
  font-family: var(--display); color: #fff; font-size: 1rem;
  padding: .35rem 0; display: inline-block; background: none; border: 0; cursor: pointer;
  font-weight: 400;
}
.nav a:hover, .nav .drop-toggle:hover { color: var(--red); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--red); border-bottom: 2px solid var(--red); }
.drop-toggle svg { width: .7em; height: .7em; margin-left: .35rem; vertical-align: baseline; fill: currentColor; }
.nav .submenu {
  position: absolute; left: 50%; transform: translateX(-50%); top: 100%;
  background: var(--header); border-top: 3px solid var(--red);
  min-width: 230px; padding: .5rem 0; display: none; flex-direction: column; gap: 0; z-index: 10;
}
.nav .submenu li + li::before { content: none; }
.nav .submenu a { display: block; padding: .55rem 1.2rem; font-size: .95rem; text-align: left; }
.nav .has-drop:hover .submenu,
.nav .has-drop:focus-within .submenu,
.nav .submenu.open { display: flex; }
.header-cta { display: flex; align-items: center; gap: .75rem; }
.header-cta .btn { padding: .7rem 1.7rem; font-family: var(--display); font-weight: 400; }

.nav-toggle {
  display: none; background: none; border: 0; color: #fff; padding: .4rem;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 28px; height: 28px; fill: currentColor; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(420px, 68vh, 640px);
  display: grid; place-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
  background: #111 center/cover no-repeat;
}
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.25); }
.hero-panel {
  position: relative; z-index: 1;
  background: rgba(245,245,245,.92);
  padding: clamp(2rem, 5vw, 3.75rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center; max-width: 820px; width: calc(100% - 2 * var(--pad));
}
.hero-panel h1 { margin-bottom: .35em; }
.hero-sub { font-family: var(--display); font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: var(--dark); margin: 0 0 .3rem; }
.hero-quote { font-family: var(--display); font-style: italic; color: var(--red-ink); font-size: clamp(1.05rem, 2.2vw, 1.35rem); margin: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--dark) center/cover no-repeat;
  color: #fff; text-align: center;
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  position: relative;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 0; }
.page-hero p { color: #eaeaea; margin-top: .8rem; max-width: 62ch; margin-inline: auto; }

/* ---------- Breadcrumbs ---------- */
.crumbs { background: var(--bg-alt); border-bottom: 1px solid var(--line); font-size: .875rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: .75rem 0; }
.crumbs li { color: #5c5c5c; }
.crumbs li + li::before { content: "›"; padding-right: .4rem; color: #9a9a9a; }
.crumbs a { color: #5c5c5c; }
.crumbs a:hover { color: var(--red-ink); }

/* ---------- Split panels ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split--flip .split-media { order: -1; }
.panel-dark {
  background: var(--dark) center/cover no-repeat; color: #fff;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.panel-dark::before { content: ""; position: absolute; inset: 0; background: rgba(20,20,20,.72); }
.panel-dark > * { position: relative; z-index: 1; }
.panel-dark h2, .panel-dark h3 { color: #fff; }
.panel-dark a:not(.btn) { color: #ff8c84; }
.lede { font-family: var(--display); font-size: 1.15rem; }

/* ---------- Service tiles ---------- */
.tiles { display: grid; grid-template-columns: 1fr 1fr; }
.tile { position: relative; display: block; overflow: hidden; background: #000; }
.tile img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform .4s ease, opacity .3s ease; opacity: .82; }
.tile:hover img { transform: scale(1.06); opacity: .6; }
.tile-label {
  position: absolute; inset: auto 0 0 0; padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  color: #fff; font-family: var(--display); font-size: clamp(1rem, 1.6vw, 1.25rem);
  text-align: center; margin: 0;
}
.tile:hover { text-decoration: none; }

/* ---------- Content + media rows ---------- */
.row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.row--flip .row-media { order: -1; }
.row-media img { width: 100%; border-radius: 2px; }
.prose { max-width: 68ch; }
.prose h2 + p, .prose h3 + p { margin-top: 0; }

.section-title { text-align: center; }
.section-title h2 { margin-bottom: 0; }

/* ---------- Photo grid (Why choose us) ---------- */
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.photo-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* ---------- Badge ---------- */
.badge {
  display: inline-block; background: var(--red-ink); color: #fff;
  font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 999px; margin-bottom: 1rem;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line); padding: .35rem 0;
}
.faq summary {
  font-family: var(--display); font-size: 1.1rem; color: var(--dark);
  padding: 1rem 2.5rem 1rem 0; cursor: pointer; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .5rem; top: 50%;
  width: 10px; height: 10px; margin-top: -7px;
  border-right: 2px solid var(--red-ink); border-bottom: 2px solid var(--red-ink);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details > div { padding-bottom: 1.1rem; }

/* ---------- Form ---------- */
.form-section {
  background: var(--dark) center/cover no-repeat; position: relative; color: #fff;
}
.form-section::before { content: ""; position: absolute; inset: 0; background: rgba(15,15,15,.78); }
.form-section .wrap { position: relative; z-index: 1; }
.form-section h2, .form-section h3 { color: #fff; }
.form-card {
  background: rgba(255,255,255,.97); color: var(--ink);
  padding: clamp(1.5rem, 4vw, 2.5rem); max-width: 760px; margin-inline: auto;
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; padding: .7rem .9rem;
  border: 1px solid #c4c4c4; border-radius: 2px; background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus { border-color: var(--red); outline: 2px solid rgba(255,53,41,.25); outline-offset: 0; }
.field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: .85rem; color: #5c5c5c; margin-top: 1rem; }
.form-embed { min-height: 200px; }

/* Coraline form: placeholder shown until the embed lazy-loads, then replaced
   by the iframe. min-height reserves the space so nothing shifts on load. */
.coraline-form { min-height: 320px; }
.coraline-form__placeholder {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  padding: clamp(1.75rem, 5vw, 3rem) 1.5rem;
  text-align: center;
}
.coraline-form__placeholder .lede { color: var(--dark); margin-bottom: .35rem; }
.coraline-form__placeholder p { margin-bottom: 1rem; }
.coraline-form__placeholder p:last-child { margin-bottom: 0; }
.coraline-form iframe { display: block; width: 100%; border: 0; }

/* ---------- Callout band ---------- */
.band {
  background: var(--red-ink); color: #fff;
  padding-block: clamp(2rem, 4vw, 3rem);
}
.band .wrap { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; }
.band h2 { color: #fff; margin-bottom: .2rem; }
.band p { margin: 0; }

/* ---------- Blog ---------- */
.post-list { display: grid; gap: 2.5rem; }
.post-card { display: grid; grid-template-columns: 320px 1fr; gap: 1.75rem; align-items: start; }
.post-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.post-card h3 { margin-bottom: .3rem; }
.post-card h3 a { color: var(--dark); }
.post-card h3 a:hover { color: var(--red); text-decoration: none; }
.post-meta { font-size: .85rem; color: #6b6b6b; margin-bottom: .6rem; text-transform: uppercase; letter-spacing: .06em; }
.post-body { max-width: 75ch; margin-inline: auto; }
.post-body h2 { margin-top: 2.2rem; }
.post-body h3 { color: var(--red-ink); font-size: 1.15rem; margin-bottom: .4rem; }
.post-hero img { width: 100%; max-height: 460px; object-fit: cover; }

/* ---------- Legal / long-form ---------- */
.legal { max-width: 78ch; }
.legal h2 { font-size: 1.4rem; margin-top: 2rem; }
.legal h3 { font-size: 1.1rem; margin-top: 1.5rem; }
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: .6rem; }

/* ---------- Contact cards ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.contact-card { background: #fff; border: 1px solid var(--line); padding: 1.75rem; text-align: center; }
.contact-card svg { width: 34px; height: 34px; fill: var(--red-ink); margin-bottom: .75rem; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.contact-card p { margin: 0; }
.contact-card a { font-weight: 600; word-break: break-word; }

/* ---------- Map (click to load) ---------- */
.map-shell { position: relative; background: var(--bg-alt); border: 1px solid var(--line); }
.map-placeholder {
  display: grid; place-items: center; gap: .75rem; text-align: center;
  min-height: 300px; padding: 2rem;
}
.map-shell iframe { display: block; width: 100%; height: 400px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--header); color: var(--muted); padding-block: clamp(2.5rem, 5vw, 4rem); font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: .9rem; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--red); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer address { font-style: normal; }
.footer-post img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; margin-bottom: .75rem; }
.footer-post h4 { font-family: var(--display); font-size: 1rem; color: #fff; margin: 0 0 .3rem; font-weight: 400; }
.footer-post h4 a { color: #fff; }
.footer-post time { font-size: .8rem; color: #9a9a9a; }
.hours { display: grid; grid-template-columns: auto auto; gap: .35rem 1rem; }
.hours dt { color: #fff; }
.hours dd { margin: 0; }
.socials { display: flex; gap: .75rem; margin-top: 1rem; }
.socials a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid #3a3a3a; border-radius: 50%; }
.socials svg { width: 18px; height: 18px; fill: var(--muted); }
.socials a:hover { border-color: var(--red); }
.socials a:hover svg { fill: var(--red); }
.footer-bottom {
  border-top: 1px solid #2e2e2e; margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .85rem;
}

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--red-ink); color: #fff;
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  color: #fff; font-weight: 700; padding: .95rem; font-size: 1.05rem;
}
.callbar a:hover { text-decoration: none; }
.callbar svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto auto; }
  .brand img { width: 165px; }
  .header-mid {
    grid-column: 1 / -1; order: 3;
    display: none;
  }
  .header-mid.open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav li + li::before { content: none; }
  .nav li { border-top: 1px solid #2e2e2e; }
  .nav a, .nav .drop-toggle { display: block; width: 100%; padding: .85rem 0; text-align: left; }
  .nav .submenu {
    position: static; transform: none; display: none; border-top: 0;
    background: #1f1f1f; min-width: 0; padding: 0;
  }
  .nav .has-drop:hover .submenu, .nav .has-drop:focus-within .submenu { display: none; }
  .nav .submenu.open { display: flex; }
  .nav .submenu a { padding-left: 1rem; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn--call { display: none; }
  .split, .row, .tiles { grid-template-columns: 1fr; }
  .split--flip .split-media, .row--flip .row-media { order: 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .post-card { grid-template-columns: 1fr; }
  .band .wrap { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  /* The Coraline form has its own internal padding, so give it back most of
     the card's on small screens rather than double-padding a narrow form. */
  .form-card { padding: .75rem; }
  .coraline-form__placeholder { padding: 1.75rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .callbar { display: block; }
  body { padding-bottom: 60px; }
  .hero { min-height: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
