/* ============================================================
   Quality Painters & Decorators — Elegant Classic Cream
   ============================================================ */

:root {
  --cream:        #FAF5EB;
  --cream-alt:     #F3EADA;
  --ivory:         #FFFDF8;
  --ink:           #2A241D;
  --ink-soft:      #6E6255;
  --ink-faint:     #9A8E7E;
  --gold:          #A9824C;
  --gold-dark:     #8A6A3B;
  --gold-light:    #D8BD8E;
  --line:          #E5D9C3;
  --white:         #FFFFFF;
  --shadow-sm:     0 2px 10px rgba(42, 36, 29, 0.06);
  --shadow-md:     0 12px 32px rgba(42, 36, 29, 0.10);
  --shadow-lg:     0 24px 60px rgba(42, 36, 29, 0.16);
  --radius:        14px;
  --radius-sm:     8px;
  --serif:         'Playfair Display', Georgia, serif;
  --sans:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container:     1180px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }
ul { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
input, textarea, select { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ── Shared ────────────────────────────────────────────── */
.section-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  display: inline-block;
}
.section-label--light { color: var(--gold-light); }
.section-heading {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-heading em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark);
}
.section-heading--light { color: var(--ivory); }
.section-heading--light em { color: var(--gold-light); }
.section-sub {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
}
.section-header { text-align: center; margin: 0 auto 60px; max-width: 700px; }
.section-header .section-sub { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn--accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(169, 130, 76, 0.35);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(169, 130, 76, 0.42); }
.btn--outline {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(255, 253, 248, 0.55);
}
.btn--outline:hover { background: rgba(255, 253, 248, 0.12); border-color: var(--ivory); }
.btn--lg { padding: 16px 36px; font-size: 0.92rem; }
.btn--sm { padding: 10px 22px; font-size: 0.8rem; }
.btn--full { width: 100%; }

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(250, 245, 235, 0);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 22px 0;
}
.nav.nav--scrolled {
  background: rgba(250, 245, 235, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 13px 0;
}
.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1.15; }
.nav__logo-main {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--ink);
  transition: color 0.3s ease;
}
.nav.nav--transparent .nav__logo-main { color: var(--ivory); }
.nav__logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 2px;
}
.nav.nav--transparent .nav__logo-sub { color: var(--gold-light); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__link {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.nav.nav--transparent .nav__link { color: rgba(255, 253, 248, 0.85); }
.nav__link::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1.5px; background: var(--gold);
  transition: right 0.3s ease;
}
.nav__link:hover { color: var(--gold-dark); }
.nav.nav--transparent .nav__link:hover { color: var(--ivory); }
.nav__link:hover::after { right: 0; }
.nav__link.is-active { color: var(--gold-dark); }
.nav.nav--transparent .nav__link.is-active { color: var(--gold-light); }

.nav__cta { margin-left: 4px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px; height: 20px;
  z-index: 600;
}
.nav__toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.nav.nav--transparent .nav__toggle span { background: var(--ivory); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__toggle[aria-expanded="true"] span { background: var(--ink); }

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(42, 36, 29, 0.4);
  backdrop-filter: blur(2px);
  z-index: 490;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-overlay.is-visible { opacity: 1; visibility: visible; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__image { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 19, 14, 0.55) 0%, rgba(23, 19, 14, 0.42) 45%, rgba(23, 19, 14, 0.72) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 800px;
  padding: 0 28px;
  text-align: center;
  color: var(--ivory);
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 26px;
}
.hero__eyebrow-line { width: 40px; height: 1px; background: var(--gold-light); opacity: 0.7; }
.hero__heading {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.hero__heading em { font-style: italic; font-weight: 500; color: var(--gold-light); }
.hero__sub {
  margin-top: 26px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 253, 248, 0.86);
  font-weight: 300;
}
.hero__break { display: block; }
.hero__actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: floatY 2.6s ease-in-out infinite;
}
.hero__scroll-bar {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(255,253,248,0.9), transparent);
}
@keyframes floatY { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ── About ─────────────────────────────────────────────── */
.about { padding: 130px 0; background: var(--cream); }
.about__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.about__rule { width: 64px; height: 2px; background: var(--gold); margin: 22px 0 26px; }
.about__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.28rem;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 20px;
}
.about__body { color: var(--ink-soft); margin-bottom: 16px; font-size: 1rem; }
.about__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--serif); font-size: 2.1rem; font-weight: 700; color: var(--gold-dark); line-height: 1; }
.stat__lbl { font-size: 0.76rem; color: var(--ink-soft); margin-top: 8px; letter-spacing: 0.03em; }
.stat__sep { width: 1px; height: 40px; background: var(--line); }

.about__media { position: relative; }
.about__frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.about__frame img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
}
.about__badge-num { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: var(--gold-dark); line-height: 1; }
.about__badge-txt { font-size: 0.72rem; color: var(--ink-soft); margin-top: 6px; line-height: 1.35; }

/* ── Services ──────────────────────────────────────────── */
.services { padding: 130px 0; background: var(--cream-alt); }
.services__container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.svc-card__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-alt), var(--cream));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  font-size: 1.15rem;
  margin-bottom: 20px;
  border: 1px solid var(--line);
}
.svc-card__title { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; margin-bottom: 10px; color: var(--ink); }
.svc-card__desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; }
.svc-card--cta {
  background: linear-gradient(150deg, var(--ink) 0%, #3B3226 100%);
  border-color: transparent;
}
.svc-card--cta .svc-card__icon { background: rgba(216, 189, 142, 0.16); color: var(--gold-light); border-color: rgba(216, 189, 142, 0.3); }
.svc-card--cta .svc-card__title,
.svc-card--cta .svc-card__desc { color: var(--ivory); }
.svc-card--cta .svc-card__desc { color: rgba(255, 253, 248, 0.72); }
.svc-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 600;
  transition: gap 0.25s ease;
}
.svc-card__link:hover { gap: 12px; }

/* ── Why Us ────────────────────────────────────────────── */
.why { position: relative; padding: 130px 0; overflow: hidden; }
.why__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(169, 130, 76, 0.22), transparent 55%),
    linear-gradient(160deg, #211B15 0%, #2A241D 55%, #221C15 100%);
}
.why__container { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-card {
  background: rgba(255, 253, 248, 0.045);
  border: 1px solid rgba(216, 189, 142, 0.18);
  border-radius: var(--radius);
  padding: 34px 26px;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.trust-card:hover { transform: translateY(-6px); background: rgba(255, 253, 248, 0.07); border-color: rgba(216, 189, 142, 0.4); }
.trust-card__icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(216, 189, 142, 0.14);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.trust-card__title { font-family: var(--serif); font-size: 1.06rem; font-weight: 600; color: var(--ivory); margin-bottom: 10px; }
.trust-card__desc { font-size: 0.88rem; color: rgba(255, 253, 248, 0.66); line-height: 1.6; }

/* ── Gallery ───────────────────────────────────────────── */
.gallery { padding: 130px 0; background: var(--cream); }
.gallery__container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  grid-column: span 1; grid-row: span 1;
  box-shadow: var(--shadow-sm);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 18px 16px;
  background: linear-gradient(0deg, rgba(23,19,14,0.82) 0%, transparent 100%);
  color: var(--ivory);
  font-size: 0.86rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }

/* ── Testimonials ──────────────────────────────────────── */
.testimonials { padding: 130px 0; background: var(--cream-alt); }
.testimonials__container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.review__top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--serif); font-weight: 700; font-size: 0.92rem;
  flex-shrink: 0;
}
.review__avatar--green { background: linear-gradient(135deg, #7C9070, #5E7256); }
.review__avatar--teal  { background: linear-gradient(135deg, #6E9C97, #4C7570); }
.review__info { display: flex; flex-direction: column; line-height: 1.3; }
.review__name { font-size: 0.92rem; color: var(--ink); }
.review__loc { font-size: 0.76rem; color: var(--ink-faint); }
.review__google { margin-left: auto; color: var(--ink-faint); font-size: 1rem; }
.review__stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 3px; margin-bottom: 14px; }
.review__text { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.65; flex: 1; }
.review__date { display: block; margin-top: 18px; font-size: 0.74rem; color: var(--ink-faint); letter-spacing: 0.03em; }

/* ── Quote form ────────────────────────────────────────── */
.quote-sec { padding: 130px 0; background: var(--cream); }
.quote-sec__container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.quote-sec__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.qform {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; position: relative; }
.form-lbl { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.form-lbl span { color: var(--gold-dark); }
.form-ctrl {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  font-size: 0.92rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-ctrl::placeholder { color: var(--ink-faint); }
.form-ctrl:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(169, 130, 76, 0.15); }
.form-ctrl.is-invalid { border-color: #C0564A; }
.form-textarea { resize: vertical; min-height: 120px; }
.select-wrap { position: relative; }
.form-select { appearance: none; padding-right: 40px; cursor: pointer; }
.select-arrow { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--ink-faint); font-size: 0.8rem; pointer-events: none; }
.form-err { display: block; min-height: 16px; font-size: 0.74rem; color: #C0564A; margin-top: 6px; }
.form-submit { margin-top: 8px; }
.form-msg {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px; padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}
.form-msg--ok  { background: #EAF3E7; color: #3F6B36; border: 1px solid #C8E0C1; }
.form-msg--err { background: #FBEAE8; color: #A5382C; border: 1px solid #F1C6C0; }
.btn-spin { display: inline-flex; align-items: center; gap: 8px; }

.quote-aside {
  background: linear-gradient(160deg, #211B15 0%, #2A241D 100%);
  border-radius: var(--radius);
  padding: 44px 36px;
  color: var(--ivory);
}
.quote-aside__block { display: flex; flex-direction: column; }
.quote-aside__ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(216, 189, 142, 0.14);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 16px;
}
.quote-aside__block h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.quote-aside__block p { font-size: 0.86rem; color: rgba(255, 253, 248, 0.66); line-height: 1.55; }
.quote-aside__sep { border: none; border-top: 1px solid rgba(216, 189, 142, 0.2); margin: 28px 0; }
.quote-aside__fb { color: var(--gold-light); font-size: 0.88rem; font-weight: 600; }
.quote-aside__fb:hover { text-decoration: underline; }

/* ── Footer ────────────────────────────────────────────── */
.footer { background: #17130E; color: rgba(255, 253, 248, 0.7); padding: 90px 0 0; }
.footer__container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer__logo { display: flex; flex-direction: column; margin-bottom: 18px; }
.footer__logo-main { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--ivory); }
.footer__logo-sub { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-light); margin-top: 4px; }
.footer__tagline { font-family: var(--serif); font-style: italic; font-size: 0.98rem; color: rgba(255,253,248,0.6); margin-bottom: 22px; line-height: 1.5; }
.footer__social {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(216, 189, 142, 0.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.footer__social:hover { background: rgba(216, 189, 142, 0.14); border-color: var(--gold-light); }
.footer__col-title { font-family: var(--serif); font-size: 0.98rem; font-weight: 600; color: var(--ivory); margin-bottom: 20px; }
.footer__nav ul li,
.footer__services ul li { margin-bottom: 12px; font-size: 0.86rem; }
.footer__nav ul li a { transition: color 0.25s ease; }
.footer__nav ul li a:hover { color: var(--gold-light); }
.footer__contact address { font-style: normal; font-size: 0.86rem; line-height: 1.7; margin-bottom: 18px; }
.footer__bottom {
  border-top: 1px solid rgba(216, 189, 142, 0.14);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: rgba(255, 253, 248, 0.45);
}
.footer__loc { display: flex; align-items: center; gap: 8px; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer__contact { grid-column: span 2; }
}

@media (max-width: 880px) {
  .about__container { grid-template-columns: 1fr; gap: 60px; }
  .about__media { order: -1; max-width: 420px; margin: 0 auto; }
  .quote-sec__inner { grid-template-columns: 1fr; }
  .quote-aside { order: -1; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    box-shadow: -20px 0 50px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.22,.61,.36,1);
    z-index: 500;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link { color: var(--ink) !important; font-size: 1rem; }
  .nav__cta { margin-left: 0; margin-top: 10px; }
  .nav__toggle { display: flex; }

  .hero__break { display: none; }
  .about__stats { flex-wrap: wrap; gap: 20px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .qform { padding: 30px 24px; }
  .quote-aside { padding: 34px 26px; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__contact { grid-column: span 1; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
  .footer__main { grid-template-columns: 1fr; }
  .about__badge { position: static; margin-top: -40px; margin-left: 20px; width: fit-content; }
}
