:root {
  --yellow: #ffd400;
  --yellow-soft: #fff2aa;
  --red: #d61428;
  --red-dark: #a90c1d;
  --ink: #171717;
  --muted: #666;
  --paper: #fffdf5;
  --white: #fff;
  --line: rgba(23,23,23,.13);
  --shadow: 0 20px 60px rgba(44,33,0,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 16px/1.6 "Manrope", system-ui, sans-serif; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 99; padding: 12px 16px; background: var(--white); border-radius: 10px; }
.skip-link:focus { top: 12px; }
header { position: sticky; top: 0; z-index: 20; background: rgba(255,253,245,.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 50px; aspect-ratio: 1; display: grid; place-items: center; border: 2px solid var(--red); border-radius: 15px; color: var(--red); background: var(--yellow); box-shadow: 4px 4px 0 var(--red); font: 800 20px/1 "Space Grotesk", sans-serif; letter-spacing: -2px; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { color: var(--red); font: 700 17px/1 "Space Grotesk", sans-serif; text-transform: uppercase; }
.brand-copy span { margin-top: 4px; font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { font-size: 14px; font-weight: 800; text-decoration: none; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 21px; border-radius: 999px; color: var(--white); background: var(--red); box-shadow: 0 8px 24px rgba(214,20,40,.22); font-weight: 800; text-decoration: none; transition: .2s ease; }
.button:hover { background: var(--red-dark); transform: translateY(-2px); }
.button.secondary { color: var(--ink); background: var(--white); border: 1px solid var(--line); box-shadow: none; }
.hero { overflow: hidden; padding: 82px 0; background: linear-gradient(120deg, var(--yellow) 0 64%, #ffe45c 64% 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; }
.eyebrow { display: inline-flex; padding: 8px 13px; border: 1px solid rgba(23,23,23,.17); border-radius: 999px; background: rgba(255,255,255,.42); font-size: 13px; font-weight: 800; }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; line-height: 1.07; letter-spacing: -.04em; }
h1 { margin: 24px 0 22px; font-size: clamp(48px, 7vw, 82px); }
h1 span { color: var(--red); }
.lead { max-width: 680px; margin: 0 0 28px; font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero figure { margin: 0; overflow: hidden; border: 8px solid var(--white); border-radius: 28px; box-shadow: 14px 14px 0 var(--red), var(--shadow); transform: rotate(1.5deg); }
.hero figure img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.section { padding: 86px 0; }
.section.white { background: var(--white); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.kicker { color: var(--red); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
h2 { margin: 10px 0 14px; font-size: clamp(36px, 5vw, 58px); }
.section-head p { margin: 0; color: var(--muted); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.card h3 { margin: 0 0 14px; color: var(--red); font-size: 24px; }
.card p { margin: 0; }
.card a { color: var(--red); font-weight: 800; }
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.offer { padding: 26px; border-radius: 20px; background: var(--yellow-soft); }
.offer h3 { margin: 0 0 9px; font-size: 24px; }
.offer p { margin: 0; color: #4b4324; }
.contact { color: var(--white); background: var(--ink); }
.contact .kicker { color: var(--yellow); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: start; }
.contact h2 { margin-top: 10px; }
.contact-list { display: grid; gap: 12px; }
.contact-list a { padding: 18px 20px; border: 1px solid #444; border-radius: 16px; color: var(--yellow); background: #242424; font-weight: 800; text-decoration: none; }
.other-locations { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.other-locations a { padding: 10px 15px; border: 1px solid #444; border-radius: 999px; color: var(--white); text-decoration: none; }
footer { padding: 30px 0; color: #c9c9c9; background: #101010; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--white); }
@media (max-width: 820px) {
  .nav-links a:not(.button) { display: none; }
  .hero { padding: 58px 0 68px; }
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero figure { margin-top: 14px; transform: none; }
  .info-grid, .offer-grid { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
}
@media (max-width: 520px) {
  .wrap { width: min(100% - 26px, 1120px); }
  .brand-copy span { display: none; }
  .nav-links .button { padding-inline: 15px; }
  h1 { font-size: 48px; }
}
