:root {
  --clay: #c45c26;
  --clay-deep: #9a3f14;
  --charcoal: #1f2933;
  --ink: #12181f;
  --cream: #f5ede6;
  --cream-dark: #e8dcd2;
  --teal: #1aa6a0;
  --orange: #f0a202;
  --muted: #5c6b78;
  --radius: 16px;
  --shadow: 0 22px 50px rgba(18, 24, 31, 0.18);
  --font: "Source Sans 3", system-ui, sans-serif;
  --display: "Archivo Black", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); background: var(--cream); color: var(--charcoal); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--clay-deep); text-decoration: none; }
a:hover { color: var(--clay); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.container { width: min(1140px, calc(100% - 2rem)); margin-inline: auto; }

.top-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--clay), var(--orange), var(--teal), var(--clay));
  background-size: 220% 100%;
  animation: slide 10s linear infinite;
}
@keyframes slide { to { background-position: 220% 0; } }

.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(245, 237, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 70px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--ink); font-family: var(--display); letter-spacing: .02em; }
.nav-logo { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; box-shadow: var(--shadow); }
.nav-links { display: flex; list-style: none; margin: 0; padding: 0; gap: .2rem; align-items: center; }
.nav-links a { padding: .55rem .8rem; border-radius: 999px; color: var(--charcoal); font-weight: 600; font-size: .92rem; }
.nav-links a:hover { background: rgba(196, 92, 38, 0.08); }
.nav-cta { background: var(--clay) !important; color: #fff !important; box-shadow: 0 10px 24px rgba(196,92,38,.35); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid rgba(31,41,51,.15);
  background: #fff; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer;
}
.nav-toggle span:not(.sr-only) { width: 18px; height: 2px; background: var(--ink); }

.hero { position: relative; min-height: 88vh; display: grid; align-items: center; padding: 4rem 0 3rem; overflow: hidden; }
.hero-bleed {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(18,24,31,.88) 0%, rgba(18,24,31,.72) 42%, rgba(18,24,31,.35) 70%, rgba(18,24,31,.2) 100%),
    linear-gradient(180deg, transparent 60%, rgba(245,237,230,.85) 100%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; }
.hero-copy { color: #fff; }
.eyebrow {
  display: inline-block; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); font-weight: 700; margin-bottom: 1rem;
}
h1, h2, h3 { font-family: var(--display); line-height: 1.05; margin: 0 0 .8rem; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); max-width: 14ch; }
h1 span { color: var(--orange); }
.lead { font-size: 1.12rem; color: rgba(255,255,255,.88); max-width: 38ch; }
.hours { color: rgba(255,255,255,.7); font-size: .92rem; }
.hero-logo {
  margin: 0; justify-self: end; max-width: 340px;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.45));
  transform: rotate(-2deg);
}
.hero-logo img { border-radius: 18px; background: #d7d7d7; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.4rem 0 1rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.4rem; border-radius: 999px; font-weight: 700; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--clay), var(--clay-deep)); color: #fff; box-shadow: 0 14px 30px rgba(196,92,38,.35); }
.btn-ghost { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }

.trust { margin-top: -2.5rem; position: relative; z-index: 2; padding-bottom: 1rem; }
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  background: #fff; border-radius: 20px; padding: 1.25rem;
  box-shadow: var(--shadow); border: 1px solid rgba(31,41,51,.06);
}
.trust-item { padding: .5rem .75rem; border-left: 3px solid var(--teal); }
.trust-item:first-child { border-left-color: var(--clay); }
.trust-item strong { display: block; font-size: .98rem; color: var(--ink); }
.trust-item span { color: var(--muted); font-size: .85rem; }

.section { padding: 4.5rem 0; }
.section.alt { background: linear-gradient(180deg, var(--cream-dark), var(--cream)); }
.section-head { max-width: 36rem; margin-bottom: 2.25rem; }
.section-head .eyebrow { color: var(--clay); }
.section-head p { color: var(--muted); margin: 0; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); color: var(--ink); }

.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.timeline li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start;
  background: #fff; border-radius: var(--radius); padding: 1.35rem 1.5rem;
  border: 1px solid rgba(31,41,51,.06); box-shadow: var(--shadow);
  position: relative;
}
.timeline li::after {
  content: ""; position: absolute; left: 2.35rem; top: 4.2rem; bottom: -1.15rem; width: 2px;
  background: linear-gradient(180deg, var(--teal), transparent);
}
.timeline li:last-child::after { display: none; }
.step {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--ink); color: var(--orange); font-family: var(--display); font-size: .95rem;
}
.timeline h3 { margin-bottom: .35rem; font-size: 1.15rem; }
.timeline p { margin: 0; color: var(--muted); }

.services { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid rgba(31,41,51,.06); box-shadow: var(--shadow);
  border-top: 4px solid var(--clay);
}
.card:nth-child(2) { border-top-color: var(--teal); }
.card:nth-child(3) { border-top-color: var(--orange); }
.card:nth-child(4) { border-top-color: var(--charcoal); }
.card p { margin: 0; color: var(--muted); }

.masonry {
  columns: 3; column-gap: .85rem;
}
.m-item {
  break-inside: avoid; margin: 0 0 .85rem; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(31,41,51,.08); background: #fff; box-shadow: var(--shadow);
}
.m-item img { width: 100%; height: auto; transition: transform .45s ease; }
.m-item:hover img { transform: scale(1.08); }

.cta-band {
  background: linear-gradient(120deg, var(--ink), #2a3642);
  color: #fff; padding: 3.5rem 0;
}
.cta-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: .4rem; }
.cta-band p { margin: 0; color: rgba(255,255,255,.78); }

.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: start; }
.contact-list { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: 1rem; }
.contact-list li { display: grid; gap: .2rem; padding-bottom: .9rem; border-bottom: 1px solid rgba(31,41,51,.08); }
.contact-list strong { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.about-panel {
  background: #fff; border-radius: 24px; padding: 1.5rem; text-align: center;
  box-shadow: var(--shadow); border: 1px solid rgba(31,41,51,.06);
}
.about-panel img { max-width: 240px; margin: 0 auto 1rem; border-radius: 14px; }

.footer { background: var(--ink); color: rgba(255,255,255,.8); padding: 2.5rem 0; }
.footer a { color: #fff; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.dim { opacity: .65; font-size: .85rem; }
.legal { margin: 0; font-size: .82rem; color: rgba(255,255,255,.55); }

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

@media (max-width: 960px) {
  .hero-grid, .trust-strip, .services, .contact-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .hero-logo { justify-self: start; max-width: 260px; }
  .hero { min-height: auto; padding-top: 3rem; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; left: 1rem; right: 1rem; top: calc(100% + .4rem);
    flex-direction: column; background: #fff; border-radius: 14px; padding: .75rem; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .masonry { columns: 1; }
}
