/* ═══════════════════════════════════════
   Bob's Roofing - Warm Organic Theme
   ═══════════════════════════════════════ */

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

:root {
  --primary: #D4644E;
  --primary-hover: #c05540;
  --dark: #2D2522;
  --dark-deep: #241E1C;
  --bg: #FFFBF7;
  --bg-alt: #FAF6F3;
  --text: #2D2522;
  --text-secondary: #6B5E5E;
  --text-muted: #A89890;
  --border: #E8DDD8;
  --tag-bg: #FEF0E8;
  --tag-border: #E8C4B8;
  --font-heading: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ═══════════════════════════════
   HERO SCROLL-UP REVEAL SYSTEM
═══════════════════════════════ */
.hero-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 1;
}
.page-content {
  position: relative;
  z-index: 2;
  margin-top: 100vh;
  background: var(--bg);
  box-shadow: 0 -20px 60px rgba(0,0,0,0.3);
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 120px;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.header.scrolled {
  background: rgba(45,37,34,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding-top: 16px;
  padding-bottom: 16px;
}
.header__logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.header__nav a:hover { color: #fff; }
.header__cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 28px;
}
.header__cta:hover { background: var(--primary-hover); }

/* ── Hero ── */
.hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/image1.jpeg') center/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.06) 0%,
    rgba(0,0,0,0.19) 35%,
    rgba(0,0,0,0.50) 60%,
    rgba(0,0,0,0.80) 85%,
    rgba(0,0,0,0.93) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1000px;
  padding: 0 24px;
  transition: opacity 0.1s, transform 0.1s;
}
.hero__sub {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--primary);
}
.hero__title {
  font-family: var(--font-heading);
  font-size: 96px;
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 1;
  color: #fff;
}
.hero__tagline {
  font-size: 20px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.73);
}
.hero__contact {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color 0.2s;
}
.hero__contact a:hover { color: #fff; }
.hero__contact a svg { flex-shrink: 0; }
.hero__line {
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: var(--primary);
}
.hero__scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 1px;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll svg { opacity: 0.7; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ── Roof Transition ── */
.roof-transition {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--bg);
}
.roof-transition__edge {
  position: absolute;
  top: -50px; left: 0; right: 0;
  height: 100px;
  border-radius: 0 0 100px 100px;
  background: linear-gradient(to right, #2D2522, #3D302A 50%, #2D2522);
  box-shadow: 0 24px 50px rgba(0,0,0,0.38), 0 8px 20px rgba(0,0,0,0.25);
}
.roof-transition__label {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-muted);
}

/* ── Intro Section ── */
.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 160px;
  gap: 32px;
  background: var(--bg);
  text-align: center;
}
.intro__tag {
  display: inline-block;
  padding: 10px 24px;
  background: var(--tag-bg);
  border: 1px solid var(--tag-border);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(212,100,78,0.08);
}
.intro__heading {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--text);
  max-width: 700px;
}
.intro__text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
}
.intro__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(212,100,78,0.25);
}
.btn--primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 12px 32px rgba(212,100,78,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
  box-shadow: 0 6px 16px rgba(45,37,34,0.08);
}
.btn--outline-light {
  background: transparent;
  color: var(--bg);
  border: 1px solid var(--text-muted);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); }
.btn--dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(45,37,34,0.19);
}
.btn svg { width: 18px; height: 18px; }

/* ── Section Headers ── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.section-header__line {
  width: 48px;
  height: 2px;
  background: var(--border);
}
.section-header__tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary);
}
.section-header__title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--text);
}

/* ── Services ── */
.services {
  padding: 80px 120px;
  background: var(--bg-alt);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 8px 24px rgba(45,37,34,0.06), 0 2px 6px rgba(45,37,34,0.04);
  transition: transform 0.3s;
}
.service-card:nth-child(odd) { transform: rotate(-1deg); }
.service-card:nth-child(even) { transform: rotate(1deg); }
.service-card:hover { transform: rotate(0deg) translateY(-4px); }
.service-card__number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.3;
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
}
.service-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Stats ── */
.stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 120px;
  background: var(--bg);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat__value {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--primary);
}
.stat__label {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Why Choose Us ── */
.why {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 120px;
  background: var(--bg-alt);
}
.why__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why__heading {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
}
.why__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.why__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why__item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.why__check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tag-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why__check svg { width: 16px; height: 16px; color: var(--primary); }
.why__item-text { font-size: 16px; font-weight: 500; }
.why__image {
  width: 520px;
  height: 440px;
  border-radius: 24px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 12px 32px rgba(45,37,34,0.15), 0 4px 8px rgba(45,37,34,0.08);
}

/* ── Past Works ── */
.works { padding: 80px 120px; background: var(--bg); }
.works .section-header { text-align: center; }
.works .section-header__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 620px;
  text-align: center;
}
.works__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.works__row { display: grid; gap: 24px; }
.works__row--top { grid-template-columns: 1fr 1fr; height: 360px; }
.works__row--bottom { grid-template-columns: 1fr 1fr 1fr; height: 300px; }
.work-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 28px rgba(45,37,34,0.12);
  transition: transform 0.3s;
}
.work-card:nth-child(odd) { transform: rotate(-1deg); }
.work-card:nth-child(even) { transform: rotate(1deg); }
.work-card:hover { transform: rotate(0deg) scale(1.02); }
.work-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.73));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  min-height: 80px;
}
.work-card__title { font-size: 16px; font-weight: 600; color: #fff; }
.work-card__location { font-size: 13px; color: rgba(255,255,255,0.8); }
.works__cta { display: flex; justify-content: center; }

/* ── Testimonials ── */
.testimonials { padding: 80px 120px; background: var(--bg); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 6px 20px rgba(45,37,34,0.07), 0 2px 4px rgba(45,37,34,0.04);
  transition: transform 0.3s;
}
.testimonial-card:nth-child(1) { transform: rotate(-1deg); }
.testimonial-card:nth-child(2) { transform: rotate(0.5deg); }
.testimonial-card:nth-child(3) { transform: rotate(-0.5deg); }
.testimonial-card:hover { transform: rotate(0deg) translateY(-4px); }
.testimonial-card__stars { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--primary); }
.testimonial-card__quote { font-size: 16px; line-height: 1.7; color: var(--text); }
.testimonial-card__author { font-size: 14px; font-weight: 500; color: var(--text-muted); }

/* ── CTA Section ── */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 120px;
  background: var(--dark);
  text-align: center;
}
.cta__heading {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--bg);
}
.cta__text { font-size: 18px; color: var(--text-muted); max-width: 480px; }
.cta__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Footer ── */
.footer {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 60px 120px;
  background: var(--dark);
}
.footer__brand { max-width: 300px; }
.footer__logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 16px;
}
.footer__desc { font-size: 14px; line-height: 1.7; color: var(--text-muted); }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-title { font-size: 14px; font-weight: 600; color: var(--primary); }
.footer__col a, .footer__col span { font-size: 14px; color: var(--text-muted); text-decoration: none; }
.footer__col a:hover { color: var(--bg); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 120px;
  background: var(--dark-deep);
}
.footer__copy { font-size: 13px; color: var(--text-secondary); }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 13px; color: var(--text-secondary); text-decoration: none; }
.footer__links a:hover { color: var(--bg); }

/* ── Hamburger Menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile Nav Overlay ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(45,37,34,0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 22px; font-weight: 500; color: rgba(255,255,255,0.85); text-decoration: none; }
.mobile-nav a:hover { color: #fff; }

/* ═══════════════════════════
   QUOTE FORM MODAL
═══════════════════════════ */
.quote-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(45,37,34,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.quote-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.quote-modal {
  background: var(--bg);
  border-radius: 28px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s ease;
  position: relative;
}
.quote-overlay.open .quote-modal {
  transform: translateY(0) scale(1);
}
.quote-modal__header {
  position: sticky;
  top: 0;
  background: var(--bg);
  padding: 36px 40px 0;
  z-index: 2;
  border-radius: 28px 28px 0 0;
}
.quote-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--bg-alt);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.quote-modal__close:hover { background: var(--border); }
.quote-modal__close svg { width: 20px; height: 20px; color: var(--text-secondary); }
.quote-modal__tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--tag-bg);
  border: 1px solid var(--tag-border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}
.quote-modal__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.quote-modal__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}
.quote-form { padding: 0 40px 40px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row--full { grid-template-columns: 1fr; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}
.form-group label .required {
  color: var(--primary);
  margin-left: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,100,78,0.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A89890' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* File Upload */
.file-upload {
  border: 2px dashed var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.file-upload:hover {
  border-color: var(--primary);
  background: rgba(212,100,78,0.03);
}
.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  border: none;
  padding: 0;
}
.file-upload__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  color: var(--text-muted);
}
.file-upload__text { font-size: 14px; color: var(--text-secondary); }
.file-upload__text strong { color: var(--primary); font-weight: 600; }
.file-upload__hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.form-submit {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.form-submit .btn { flex: 1; justify-content: center; }
.form-privacy {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 16px;
  text-align: center;
}
.form-privacy svg {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 4px;
  color: var(--text-muted);
}

/* Success state */
.quote-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  gap: 16px;
}
.quote-success.show { display: flex; }
.quote-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--tag-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.quote-success__icon svg { width: 32px; height: 32px; color: var(--primary); }
.quote-success__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
}
.quote-success__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 400px;
}

/* ═══════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .header { padding: 24px 40px; }
  .header.scrolled { padding: 16px 40px; }
  .header__nav { gap: 20px; }
  .hero__title { font-size: 64px; }
  .intro { padding: 60px 40px; }
  .intro__heading { font-size: 42px; }
  .services { padding: 60px 40px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .section-header__title { font-size: 38px; }
  .stats { padding: 48px 40px; flex-wrap: wrap; gap: 32px; justify-content: center; }
  .stat__value { font-size: 40px; }
  .why { padding: 60px 40px; flex-direction: column; }
  .why__image { width: 100%; height: 320px; }
  .why__heading { font-size: 36px; }
  .works { padding: 60px 40px; }
  .works__row--bottom { grid-template-columns: 1fr 1fr; }
  .testimonials { padding: 60px 40px; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .cta { padding: 60px 40px; }
  .cta__heading { font-size: 40px; }
  .footer { padding: 48px 40px; flex-wrap: wrap; }
  .footer__bottom { padding: 20px 40px; }
}

/* Mobile */
@media (max-width: 768px) {
  .header { padding: 20px 24px; }
  .header.scrolled { padding: 14px 24px; }
  .header__nav { display: none; }
  .hamburger { display: flex; }
  .hero__title { font-size: 48px; letter-spacing: -1px; }
  .hero__sub { font-size: 13px; letter-spacing: 3px; }
  .hero__tagline { font-size: 16px; }
  .hero__scroll { bottom: 24px; }
  .page-content { border-radius: 24px 24px 0 0; }
  .roof-transition { height: 100px; }
  .roof-transition__edge { height: 60px; top: -30px; border-radius: 0 0 50px 50px; }
  .intro { padding: 48px 24px; gap: 24px; }
  .intro__heading { font-size: 34px; letter-spacing: -1px; }
  .intro__text { font-size: 16px; }
  .btn { padding: 14px 28px; font-size: 15px; }
  .services { padding: 48px 24px; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px; }
  .service-card__number { font-size: 36px; }
  .service-card__title { font-size: 22px; }
  .service-card:nth-child(odd),
  .service-card:nth-child(even) { transform: none; }
  .stats { padding: 40px 24px; gap: 24px; }
  .stat__value { font-size: 36px; }
  .why { padding: 48px 24px; gap: 32px; }
  .why__heading { font-size: 32px; }
  .why__image { height: 260px; }
  .works { padding: 48px 24px; }
  .works__row--top,
  .works__row--bottom { grid-template-columns: 1fr; height: auto; }
  .work-card { height: 240px; }
  .work-card:nth-child(odd),
  .work-card:nth-child(even) { transform: none; }
  .testimonials { padding: 48px 24px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card:nth-child(1),
  .testimonial-card:nth-child(2),
  .testimonial-card:nth-child(3) { transform: none; }
  .cta { padding: 48px 24px; }
  .cta__heading { font-size: 32px; }
  .cta__buttons { flex-direction: column; align-items: center; }
  .footer { padding: 40px 24px; gap: 32px; }
  .footer__bottom { padding: 16px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .footer__links { justify-content: center; }
  .section-header__title { font-size: 32px; }
  /* Quote modal mobile */
  .quote-modal { border-radius: 20px; max-height: 95vh; }
  .quote-modal__header { padding: 28px 24px 0; border-radius: 20px 20px 0 0; }
  .quote-modal__title { font-size: 26px; }
  .quote-form { padding: 0 24px 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__title { font-size: 36px; }
  .intro__heading { font-size: 28px; }
  .why__heading { font-size: 28px; }
  .cta__heading { font-size: 28px; }
  .stat { width: 45%; }
  .quote-modal__title { font-size: 22px; }
}