/* ===== Schutz Builders ===================================================
   Palette + type are defined here so the whole look can be re-themed
   by editing these variables.
=========================================================================== */
:root {
  --navy: #1b2a3a;
  --navy-deep: #14202d;
  --amber: #e8a13d;
  --amber-dark: #c9852a;
  --cream: #faf7f2;
  --white: #ffffff;
  --ink: #2a3440;
  --ink-soft: #5b6675;
  --line: #e5ddd0;
  --radius: 10px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.site-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:hover { color: var(--navy); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-phone {
  background: var(--amber);
  color: var(--navy-deep);
  padding: 10px 18px;
  white-space: nowrap;
}
.btn-phone:hover { background: var(--amber-dark); }

.btn-primary {
  background: var(--amber);
  color: var(--navy-deep);
  font-size: 1.05rem;
}
.btn-primary:hover { background: var(--amber-dark); }

.btn-ghost {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

.btn-ghost-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-ghost-light:hover { background: var(--white); color: var(--navy); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 96px 0 104px;
}

.hero-kicker {
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Sections ===== */
.section { padding: 80px 0; }

.section h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
}

.section-lead {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 620px;
}

.section-alt { background: var(--white); }

.section-dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
}
.section-dark h2 { color: var(--white); }
.section-dark .section-lead { color: rgba(255, 255, 255, 0.8); }

/* ===== Service cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.card-icon { font-size: 1.8rem; margin-bottom: 14px; }

.card h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-grid p { margin-bottom: 16px; color: var(--ink-soft); font-size: 1.05rem; }

.about-badge {
  justify-self: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

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

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(
    45deg,
    #f0eae0,
    #f0eae0 12px,
    #ece5d9 12px,
    #ece5d9 24px
  );
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ===== Contact ===== */
.contact-inner { text-align: center; }

.contact-inner .section-lead { margin-left: auto; margin-right: auto; }

.contact-phone {
  display: inline-block;
  color: var(--amber);
  text-decoration: none;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  margin: 8px 0 28px;
}
.contact-phone:hover { color: var(--amber-dark); }

.contact-emails { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 24px 0;
  font-size: 0.9rem;
  text-align: center;
}

/* ===== Mobile ===== */
@media (max-width: 720px) {
  .site-nav { display: none; }
  .header-inner { justify-content: space-between; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { justify-self: start; }
  .section { padding: 60px 0; }
  .hero { padding: 72px 0 80px; }
}
