/* Albino Remodeling LLC — Static site
   Brand colors pulled from logo approximation:
   Navy: #0b3159, Red: #d2181d
*/

:root {
  --brand-blue: #0b3159;
  --brand-red: #d2181d;
  --brand-red-dark: #b00f12;

  --ink: #0b1320;
  --muted: #516074;
  --bg: #f6f8fb;
  --card: #ffffff;
  --border: #e6eaf1;
  --shadow: 0 10px 30px rgba(11, 19, 32, 0.08);
  --radius: 18px;

  --container: 1150px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

img { max-width: 100%; height: auto; }
svg { flex: 0 0 auto; } 
.topbar svg, .badge svg, .btn svg { width: 18px; height: 18px; }
.icon-btn svg { width: 22px; height: 22px; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
.lead { font-size: 1.12rem; color: var(--muted); }
ul { margin: 0; padding-left: 1.2rem; }
h1,h2,h3 { line-height: 1.15; margin: 0 0 0.8rem; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--card);
  padding: .75rem 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 9999;
}
.skip-link:focus { left: 1rem; }

.topbar {
  background: linear-gradient(90deg, rgba(11,49,89,0.98), rgba(11,49,89,0.86));
  color: #fff;
  font-size: .95rem;
}
.topbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .55rem 0;
  flex-wrap: wrap;
}
.topbar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.topbar .pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .25rem .6rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(246,248,251,0.92);
  border-bottom: 1px solid var(--border);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.brand img {
  width: 170px;
  max-width: 44vw;
}
.brand .tagline {
  display: none;
  font-size: .9rem;
  color: var(--muted);
}

nav.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
nav.primary-nav a {
  color: var(--ink);
  font-weight: 650;
  font-size: 0.98rem;
  opacity: 0.92;
}
nav.primary-nav a:hover {
  opacity: 1;
  color: var(--brand-blue);
}
nav.primary-nav a.active {
  color: var(--brand-blue);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .78rem 1.05rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  letter-spacing: .01em;
  transition: transform .08s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  cursor: pointer;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(210, 24, 29, 0.22);
}
.btn-primary:hover { background: var(--brand-red-dark); }
.btn-secondary {
  background: #fff;
  border-color: var(--border);
  color: var(--brand-blue);
}
.btn-secondary:hover {
  border-color: rgba(11,49,89,0.25);
  box-shadow: 0 12px 24px rgba(11,49,89,0.12);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
}
.icon-btn:hover {
  box-shadow: 0 12px 24px rgba(11,49,89,0.12);
}

.mobile-toggle {
  display: none;
}

.mobile-panel {
  display: none;
  padding-bottom: .9rem;
}
.mobile-panel a {
  display: block;
  padding: .75rem 0;
  border-top: 1px solid var(--border);
  font-weight: 700;
}
.mobile-panel .cta {
  padding: .9rem 0 0;
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  padding: 4.2rem 0 2.5rem;
  background:
    radial-gradient(900px 300px at 20% 10%, rgba(11,49,89,0.18), rgba(11,49,89,0.00) 60%),
    radial-gradient(650px 260px at 80% 5%, rgba(210,24,29,0.15), rgba(210,24,29,0.00) 55%),
    linear-gradient(180deg, #ffffff, var(--bg));
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.hero p.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 60ch;
}
.hero .badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.15rem 0 1.3rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(11,49,89,0.08);
  border: 1px solid rgba(11,49,89,0.16);
  color: var(--brand-blue);
  font-weight: 750;
  font-size: .92rem;
}
.badge.red {
  background: rgba(210,24,29,0.08);
  border-color: rgba(210,24,29,0.16);
  color: var(--brand-red-dark);
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}
.hero-card h3 {
  margin-bottom: .5rem;
}
.quicklist {
  display: grid;
  gap: .75rem;
  margin-top: .9rem;
}
.quicklist .item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: .35rem;
  background: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(210,24,29,0.15);
}

.section {
  padding: 3.2rem 0;
}
.section.tight { padding: 2.4rem 0; }
.section .kicker {
  color: var(--brand-red-dark);
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: .55rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 14px 26px rgba(11, 19, 32, 0.06);
}
.card h3 {
  margin-bottom: .35rem;
}
.card p {
  color: var(--muted);
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-clean li {
  margin: .5rem 0;
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  color: var(--muted);
}
.check {
  margin-top: .28rem;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(11,49,89,0.10);
  border: 1px solid rgba(11,49,89,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.check svg { width: 12px; height: 12px; }

.callout {
  background: linear-gradient(90deg, rgba(11,49,89,0.10), rgba(210,24,29,0.08));
  border: 1px solid rgba(11,49,89,0.16);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.callout strong { color: var(--brand-blue); }

footer {
  background: #0a1d33;
  color: rgba(255,255,255,0.88);
  padding: 2.6rem 0 1.5rem;
  margin-top: 1rem;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1.25rem;
}
footer a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
footer .muted {
  color: rgba(255,255,255,0.72);
}
footer .mini {
  font-size: .92rem;
}
footer .subfooter {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 1.5rem;
  padding-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.footer-brand img {
  width: 170px;
  background: #fff;
  border-radius: 12px;
  padding: .25rem .4rem;
}

.form {
  display: grid;
  gap: .85rem;
}
.field {
  display: grid;
  gap: .35rem;
}
label {
  font-weight: 750;
  font-size: .95rem;
}
input, select, textarea {
  width: 100%;
  padding: .8rem .9rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(11,49,89,0.35);
  box-shadow: 0 0 0 4px rgba(11,49,89,0.10);
}

.note {
  font-size: .95rem;
  color: var(--muted);
}
.small {
  font-size: .92rem;
}

.breadcrumb {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-call {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
}

.mobile-call a {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 18px 34px rgba(210, 24, 29, 0.30);
  border-radius: 999px;
  padding: .85rem 1.1rem;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

/* FAQ */
details.faq {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 14px 26px rgba(11, 19, 32, 0.06);
}
details.faq + details.faq { margin-top: .9rem; }
details.faq summary {
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "＋";
  float: right;
  color: var(--brand-blue);
  font-weight: 900;
}
details.faq[open] summary::after { content: "—"; }
details.faq .answer {
  color: var(--muted);
  margin-top: .65rem;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  footer .footer-grid { grid-template-columns: 1fr; }
  nav.primary-nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .mobile-panel.open { display: block; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .mobile-call { display: block; }
}

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