:root {
  --paper: #f4efe2;
  --panel: #fffdf8;
  --ink: #211c16;
  --ink-muted: #6b6151;
  --red: #c22a2e;
  --red-deep: #8f1c1f;
  --navy: #1c2b49;
  --navy-soft: #2c3f63;
  --gold: #eaad1f;
  --gold-deep: #c98e0f;
  --line: #d9cfb8;
  --focus: #2c6fb0;

  --font-display: "Alfa Slab One", "Arial Black", serif;
  --font-label: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.wrap {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  text-wrap: balance;
  margin: 0;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy);
  color: #fff;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.topbar .call-now {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
}
.topbar .call-now span { color: #b9c4d8; font-weight: 500; }

/* ---------- Sign panel (hero) ---------- */
.signboard-wrap {
  padding: 2.2rem 1.5rem 2.6rem;
}
.signboard {
  max-width: 68rem;
  margin: 0 auto;
  background: var(--panel);
  border: 3px solid var(--navy);
  border-radius: 10px;
  box-shadow: 0 14px 0 -6px rgba(28,43,73,0.08), 0 18px 30px rgba(28,43,73,0.14);
  padding: clamp(1.6rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.signboard::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  pointer-events: none;
}
.sign-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 26rem) {
  .sign-top { flex-direction: column-reverse; align-items: flex-start; }
}
.sign-name {
  min-width: 0;
}
.sign-name h1 {
  color: var(--red);
  font-size: clamp(1.5rem, 8vw, 3.4rem);
  line-height: 1.02;
  text-shadow: 2px 2px 0 rgba(28,43,73,0.08);
  overflow-wrap: anywhere;
  hyphens: auto;
}
.sign-name h1 span { display: block; }
.badge {
  flex: none;
  width: clamp(4.2rem, 9vw, 6rem);
  height: clamp(4.2rem, 9vw, 6rem);
  border-radius: 50%;
  border: 3px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.badge span {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  color: var(--navy);
  letter-spacing: -0.05em;
}
.sign-tagline {
  margin-top: 1.1rem;
  font-family: var(--font-label);
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.sign-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold) 50%, var(--navy));
  margin: 1.4rem 0;
  border-radius: 2px;
}
.sign-location {
  margin-top: 0.9rem;
  font-family: var(--font-label);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  color: var(--navy-soft);
}
.sign-cta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp .wa-icon { width: 1em; height: 1em; }

/* ---------- Sections ---------- */
.section {
  padding: 3rem 0;
}
.section-head {
  max-width: 40rem;
  margin-bottom: 1.8rem;
}
.section-head h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--navy);
}
.section-head p {
  margin-top: 0.6rem;
  color: var(--ink-muted);
}

/* ---------- Services ---------- */
.services { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 34rem) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1.4rem 1.3rem;
}
.service-card h3 {
  font-family: var(--font-label);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-card .icon { font-size: 1.2rem; line-height: 1; }
.service-note { margin-top: 0.5rem; font-size: 0.92rem; color: var(--ink-muted); }

.item-tags {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.item-tags li {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
}

/* ---------- WhatsApp ---------- */
.wa-icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex: none;
}
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.wa-link:hover { background: #1fb457; }

/* ---------- Hours ---------- */
.hours-card {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 1.6rem 1.7rem;
  display: grid;
  gap: 0.9rem;
  max-width: 26rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-label);
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.6rem;
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-row .days { color: #d9c98a; text-transform: uppercase; letter-spacing: 0.03em; }
.hours-row .time { font-variant-numeric: tabular-nums; font-weight: 600; }

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 44rem) {
  .about-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}
.about-copy p { color: var(--ink-muted); max-width: 34rem; }
.about-copy .locate {
  margin-top: 1rem;
  font-family: var(--font-label);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- Contact ---------- */
.contact { background: var(--red); color: #fff; }
.contact .eyebrow { color: #ffd9a8; }
.contact h2 { color: #fff; }
.contact .section-head p { color: #f7d6d7; }

.contact-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.contact-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  padding: 1.4rem;
}
.contact-card .eyebrow { color: #ffe4b8; font-size: 0.78rem; }
.contact-card .primary-link {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-label);
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}
.contact-card .primary-link:hover { text-decoration: underline; }
.phone-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.phone-list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.phone-list .tel-link {
  font-family: var(--font-label);
  font-size: 1.12rem;
  font-weight: 600;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.phone-list .tel-link:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
footer { padding: 1.5rem 0; background: var(--navy); color: #b9c4d8; }
footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  justify-content: space-between;
  font-size: 0.85rem;
  font-family: var(--font-label);
  letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}
