/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #C41E3A;
  --red-dark:  #A01830;
  --brown:     #3E3431;
  --cream:     #F5F1ED;
  --beige:     #E8E0D5;
  --warm-gray: #D4C4B0;
  --gray-500:  #9B8B7E;
  --gray-600:  #7A6F67;
  --shadow:    0 3px 12px rgba(0,0,0,.08);
  --radius:    12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--brown);
  background: #fff;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a   { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Utility ── */
.container        { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.container--narrow{ max-width: 760px; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .2s;
  text-decoration: none;
}
.btn--red  { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); text-decoration: none; }
.btn--full { width: 100%; text-align: center; }

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: #FFF0F2;
  color: var(--red);
  letter-spacing: .5px;
}

.required { color: var(--red); }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brown);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo {
  height: 56px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
}

.hero__logo {
  width: 380px;
  max-width: 80%;
  height: auto;
  margin: 0 auto 28px;
  filter: invert(1);
  mix-blend-mode: screen;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  color: #ddd;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s;
}
.nav__links a:hover { color: #fff; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #2E2A28 0%, #1a1210 100%);
  color: #fff;
  padding: 80px 20px 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(196,30,58,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content { position: relative; max-width: 680px; }
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: #FFAAB8;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.hero__headline {
  font-size: clamp(38px, 7vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__tagline {
  font-size: 18px;
  color: #FFD5DC;
  margin-bottom: 36px;
}
.hero__stats {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num   { font-size: 32px; font-weight: 700; color: #fff; }
.hero__stat-label { font-size: 12px; color: #FFAAB8; font-weight: 600; margin-top: 4px; letter-spacing: .5px; }

/* ── Sections ── */
.section        { padding: 80px 0; }
.section--cream { background: var(--cream); }

.section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 8px;
}
.section__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  text-align: center;
  color: var(--brown);
  margin-bottom: 8px;
}
.section__subtitle {
  font-size: 15px;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 48px;
}

/* ── Cards ── */
.card {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── Services ── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.service-card { padding: 28px 24px; }
.service-card__icon { font-size: 32px; margin-bottom: 12px; }
.service-card__title { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.service-card__desc  { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

.cta-inline {
  text-align: center;
  padding: 40px;
  background: var(--cream);
  border-radius: var(--radius);
}
.cta-inline h3 { font-size: 22px; margin-bottom: 6px; }
.cta-inline p  { color: var(--gray-600); margin-bottom: 20px; }

/* ── Portfolio ── */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.portfolio-card { padding: 0; overflow: hidden; }
.portfolio-card__header {
  padding: 18px 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.portfolio-card__header h3 { font-size: 16px; font-weight: 600; }
.portfolio-card__desc {
  padding: 8px 18px 12px;
  font-size: 13px;
  color: var(--gray-600);
}
.portfolio-card__label {
  padding: 6px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.portfolio-card__label--before { background: var(--beige); color: var(--gray-500); }
.portfolio-card__label--after  { background: #FFF0F2; color: var(--red); }

.photo-scroll {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 8px 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--warm-gray) transparent;
}
.photo-scroll::-webkit-scrollbar { height: 4px; }
.photo-scroll::-webkit-scrollbar-thumb { background: var(--warm-gray); border-radius: 2px; }

.photo-scroll img {
  flex: 0 0 auto;
  width: 260px;
  height: 195px;
  object-fit: cover;
  border-radius: 6px;
  background: #2A2A2A;
}

/* ── Estimate Form ── */
.form-card { padding: 36px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--brown); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--warm-gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--brown);
  background: #fff;
  transition: border-color .15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; gap: 16px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }

.form-feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
}
.form-feedback--success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.form-feedback--error   { background: #FFEBEE; color: #C62828; border: 1px solid #EF9A9A; }

/* ── Contact ── */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.contact-card { padding: 28px 24px; text-align: center; }
.contact-card__icon { font-size: 28px; margin-bottom: 10px; }
.contact-card h3    { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--brown); }
.contact-card p, .contact-card a { font-size: 14px; color: var(--gray-600); }
.contact-card a:hover { color: var(--red); }

/* ── Footer ── */
.footer {
  background: var(--brown);
  color: #aaa;
  text-align: center;
  padding: 40px 20px;
}
.footer__brand { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer__sub   { font-size: 13px; margin-bottom: 12px; }
.footer__copy  { font-size: 12px; color: #666; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--brown);
    padding: 16px 24px 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav__links.open { display: flex; }
  .nav__hamburger  { display: flex; }
  .nav__brand-name { display: none; }

  .hero__stats { flex-direction: column; gap: 0; }
  .hero__stat  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero__stat:last-child { border-bottom: none; }

  .form-row--2,
  .form-row--3 { grid-template-columns: 1fr; }

  .portfolio__grid { grid-template-columns: 1fr; }
}
