:root {
  --yellow: #f9c400;
  --yellow-light: #ffe071;
  --red: #d21919;
  --black: #0a0a0a;
  --ink: #151515;
  --muted: #555;
  --paper: #fff8dc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, .2);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff4bd 0%, #fffdf2 55%, #fff4bd 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 5vw, 76px);
  background: rgba(10, 10, 10, .94);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .5px;
  font-size: 1.08rem;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  background: var(--yellow);
}
nav { display: flex; gap: 22px; flex-wrap: wrap; }
nav a { text-decoration: none; font-weight: 800; font-size: 1.02rem; opacity: .92; }
nav a:hover { color: var(--yellow); opacity: 1; }

.section-pad { padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 76px); }
.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1fr .88fr;
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  background:
    radial-gradient(circle at 78% 30%, rgba(210, 25, 25, .2), transparent 22%),
    linear-gradient(135deg, var(--yellow) 0%, #ffda45 45%, #fff1a0 100%);
  overflow: hidden;
}
.eyebrow {
  margin: 0 0 14px;
  font-weight: 900;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .96rem;
}
h1, h2, h3 { margin-top: 0; line-height: .98; }
h1 {
  max-width: 900px;
  font-size: clamp(3.25rem, 8.25vw, 7.25rem);
  letter-spacing: -4px;
  text-transform: uppercase;
}
h2 { font-size: clamp(2.45rem, 5.4vw, 4.65rem); letter-spacing: -2px; }
h3 { font-size: 1.55rem; }
p { font-size: 1.06rem; }
.lead {
  max-width: 760px;
  font-size: clamp(1.22rem, 2.15vw, 1.55rem);
  line-height: 1.55;
  font-weight: 700;
}
.note, .form-note, .tiny { color: var(--muted); font-size: 1rem; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 34px 0 18px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 26px;
  border-radius: 999px;
  border: 3px solid var(--black);
  font-weight: 900;
  font-size: 1.08rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 7px 7px 0 var(--black);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 4px 4px 0 var(--black); }
.btn.primary { background: var(--red); color: var(--white); }
.btn.secondary { background: var(--white); color: var(--black); }
.btn.full { width: 100%; font-size: 1.18rem; }
.hero-card {
  position: relative;
  padding: clamp(12px, 2vw, 20px);
  background: var(--black);
  border: 5px solid var(--black);
  border-radius: 38px;
  box-shadow: var(--shadow);
  transform: rotate(1.25deg);
}
.hero-card img { border-radius: 26px; background: var(--yellow); }

.section-heading { max-width: 980px; margin-bottom: 34px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 8px 8px 0 var(--black);
}
.service-card span { font-size: 2.55rem; }
.service-card p { line-height: 1.58; color: #333; font-size: 1.08rem; }

.trust { background: var(--black); color: var(--white); }
.trust-panel {
  max-width: 1160px;
  margin: auto;
  text-align: center;
}
.trust-panel p { font-size: 1.32rem; line-height: 1.62; color: #f0f0f0; }
.trust-list {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-list span {
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  font-size: 1.05rem;
}

.quote {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}
.quote-copy p { font-size: 1.2rem; line-height: 1.65; }
.quote-tips {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1.06rem;
}
.quote-tips strong { font-size: 1.14rem; }
.quote-tips span::before { content: "✓ "; color: var(--yellow); font-weight: 900; }
.quote-form {
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: 32px;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow);
}
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  font-weight: 900;
  font-size: 1.08rem;
}
input, select, textarea {
  width: 100%;
  border: 2px solid #111;
  border-radius: 15px;
  padding: 16px 16px;
  font: inherit;
  font-size: 1.08rem;
  background: #fffdf5;
}
input:focus, select:focus, textarea:focus { outline: 4px solid rgba(249, 196, 0, .5); }
.upload-box {
  border: 3px dashed var(--black);
  border-radius: 22px;
  padding: 26px;
  text-align: center;
  background: #fff4bd;
  cursor: pointer;
}
.upload-box input { display: none; }
.upload-title { display: block; font-size: 1.35rem; font-weight: 900; }
.upload-subtitle { display: block; color: #555; font-weight: 700; margin-top: 7px; font-size: 1.02rem; }
.preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--black);
  border-radius: 15px;
}
.checkbox-line { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.checkbox-line input { width: auto; transform: scale(1.2); }

.area {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, #fff4bd 100%);
}
.area p { font-size: 1.22rem; line-height: 1.65; max-width: 900px; }
.area-card {
  background: var(--red);
  color: var(--white);
  border: 4px solid var(--black);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 8px 8px 0 var(--black);
  display: grid;
  gap: 12px;
}
.area-card strong { font-size: 1.8rem; }
.area-card span, .area-card a { font-size: 1.1rem; }
.area-card a { color: var(--white); font-weight: 900; }

.site-footer {
  padding: 30px clamp(18px, 5vw, 76px);
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.site-footer .tiny { color: #d8d8d8; }

@media (max-width: 1080px) {
  .hero, .quote, .area { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: auto; }
  h1 { letter-spacing: -2px; }
  .area-card { max-width: 520px; }
}
@media (max-width: 680px) {
  html { font-size: 17px; }
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { gap: 14px; }
  .service-grid, .form-row.two { grid-template-columns: 1fr; }
  .preview { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 3.25rem; }
  .btn { width: 100%; }
}



.photo-send-box {
  display: block;
  padding: 22px;
  border: 2px dashed #f2b705;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 16px;
}

.photo-send-box .upload-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.photo-send-box .upload-subtitle {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 16px;
}

.photo-send-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.photo-send-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f2b705;
  color: #111;
  font-weight: 800;
  text-decoration: none;
}

.photo-send-btn.secondary {
  background: transparent;
  color: #f2b705;
  border: 2px solid #f2b705;
}

/* ---------- Mobile refinements ---------- */
.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 12px;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
}

.mini-note {
  margin: 12px 0 0;
  font-size: .92rem;
  color: #555;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand span {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-card {
    max-width: 520px;
    margin-inline: auto;
  }

  .quote-form {
    width: 100%;
  }
}

@media (max-width: 680px) {
  html {
    font-size: 16px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .menu-toggle {
    display: inline-block;
  }

  nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    gap: 8px;
    padding-top: 8px;
  }

  nav.is-open {
    display: grid;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    font-size: 1rem;
  }

  .section-pad {
    padding: 44px 16px;
  }

  .hero {
    gap: 28px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 3.35rem);
    letter-spacing: -1.5px;
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
    letter-spacing: -1px;
  }

  h3 {
    font-size: 1.35rem;
  }

  .lead,
  .quote-copy p,
  .area p {
    font-size: 1.06rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .btn {
    min-height: 54px;
    padding: 14px 18px;
    box-shadow: 5px 5px 0 var(--black);
  }

  .hero-card {
    border-radius: 26px;
    transform: none;
  }

  .hero-card img {
    border-radius: 18px;
  }

  .service-card,
  .quote-form,
  .area-card {
    border-width: 3px;
    box-shadow: 5px 5px 0 var(--black);
  }

  .quote-form {
    padding: 20px 16px;
    border-radius: 24px;
  }

  input,
  select,
  textarea {
    min-height: 52px;
    font-size: 16px; /* prevents iPhone zoom-on-focus */
    padding: 14px;
  }

  textarea {
    min-height: 150px;
  }

  .photo-send-box {
    padding: 18px;
    background: #fff8dc;
    border-color: var(--black);
  }

  .photo-send-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .photo-send-btn {
    width: 100%;
    text-align: center;
    border: 2px solid var(--black);
  }

  .photo-send-btn.secondary {
    color: var(--black);
    border-color: var(--black);
    background: var(--white);
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .area-card {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .brand span {
    font-size: .92rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  .service-card {
    padding: 22px;
  }
}
