/* ===================== GLOBAL / BASE ===================== */
:root {
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(255, 255, 255, 0.22);
  --glass: rgba(255, 255, 255, 0.14);

  --container: 1120px;
  --pad: 16px;

  --radius: 18px;
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: #0b0f14;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Container helper */
.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== TOPBAR ===================== */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(101, 103, 95, 0.231);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.topbar-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: #fff;
  text-decoration: none;
  margin-left: 0;
}

.brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 2px;
  opacity: 0.9;
  white-space: nowrap;
}

.nav a:hover {
  opacity: 1;
}

.nav a[aria-current="page"] {
  opacity: 1;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  transition: width 0.35s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a[aria-current="page"]::after {
  width: 100%;
}

.nav-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.92);
  color: #0b0f14;
  border-color: rgba(255, 255, 255, 0.92);
}

.btn-primary:hover {
  background: #fff;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 96px var(--pad) 48px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35)),
    url("images/hero-wallpaper.jpg") center/cover no-repeat;
}

.hero-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  color: #fff;
}

.hero-lead,
.work-title,
.about-title,
.reviews-title,
.cta-title,
.svc-label {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-lead {
  max-width: 820px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.06;
}

.hero-sub {
  max-width: 680px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.35;
}

.hero-sub-small {
  max-width: 680px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

:root {
  --container: 1120px;
  --sage: #7b8577;
  --beige: #ece8e2;
  --dark: #3c473b;
  --text: #111827;
  --white: #ffffff;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: #fff;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

:root {
  --container: 1120px;
  --beige: #ece8e2;
  --text: #111827;
  --title: #0b0f14;
  --border: #e5e7eb;
  --about-gradient: linear-gradient(90deg, #ffffff, #ffffff);
  --how-gradient: linear-gradient(90deg, #ffffff, #ffffff);
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: #fff;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* ===================== ABOUT ===================== */
.split-block {
  padding: 0 0;
}

.split-block--about {
  background: linear-gradient(#baafa2, #fff);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: 1fr 2.6fr;
  gap: 50px;
}

.split--centerY {
  align-items: center;
  min-height: 360px;
}

.split-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(52px, 5vw, 84px);
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: rgba(20, 20, 20, 0.75);
}

.split-title--center {
  text-align: center;
}

.split-text p {
  margin: 0 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(17, 24, 39, 0.78);
}

.split-text p:last-child {
  margin-bottom: 0;
}

/* ===================== RES / COM layout ===================== */
.gallery-split {
  padding: 50px 0;
}

.gallery-split--white {
  background: #fff;
}

.gallery-split--beige {
  background: linear-gradient(#dbd5cf, #fff);
}

.gallery-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.gallery-grid.gallery-grid--img-left {
  grid-template-columns: 1.55fr 1fr;
}

.gallery-grid.gallery-grid--img-right {
  grid-template-columns: 1fr 1.55fr;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.thumb {
  margin: 0;
  height: 360px;
  overflow: hidden;
  background: #f3f4f6;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-copy--right {
  justify-self: end;
  text-align: right;
}

.gallery-title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(52px, 5vw, 82px);
  line-height: 1.05;
  color: rgba(20, 20, 20, 0.7);
}

.gallery-sub {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(17, 24, 39, 0.75);
  max-width: 520px;
}

.gallery-copy--right .gallery-sub {
  margin-left: auto;
  margin-right: 0;
}

.gallery-grid--img-right .thumbs {
  justify-self: end;
}

/* ===================== HOW WE WORK ===================== */
.howwork {
  padding: 85px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.howwork--gradient {
  background: linear-gradient(#8a8682, #958f8f);
}

.howwork-inner {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.howwork-title {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(54px, 5vw, 86px);
  letter-spacing: 0.02em;
  color: rgb(255, 255, 255);
}

.howwork-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: rgb(255, 255, 255);
}

/* ===================== 3 SERVICE CARDS ===================== */
.cards-section {
  background: #fff;
  padding: 100px 5px 40px;
}

.work-cards {
  width: min(1280px, calc(100% - 32px));
  min-height: 420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.svc-media {
  height: 320px;
  background: #f7f7f7;
}

.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-text {
  padding: 18px 18px 20px;
}

.svc-label {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--title);
  margin-bottom: 6px;
  text-align: center;
}

.svc-sub {
  font-size: 14.5px;
  line-height: 1.7;
  color: #374151;
  text-align: center;
}

/* ===================== REVIEWS ===================== */
.reviews {
  background: url("images/rewievs.jpg") center/cover no-repeat;
  padding: 18px var(--pad) 72px;
}

.reviews-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.reviews-title {
  margin: 0 0 16px;
  font-size: 44px;
  color: #0b0f14;
}

.reviews-summary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 6px auto 26px;
}

.reviews-headline {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: #0b0f14;
}

.reviews-quality,
.reviews-score {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 28px;
}

.reviews-stars {
  color: #22c55e;
  font-size: 28px;
  letter-spacing: 0.12em;
}

.reviews-count {
  color: #111827;
  opacity: 0.85;
  font-size: 14px;
}

.reviews-link {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111827;
  opacity: 0.75;
  border-bottom: 1px solid rgba(17, 24, 39, 0.25);
  padding-bottom: 2px;
}

.reviews-link:hover {
  opacity: 1;
}

/* Slider */
.reviews-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.18);
  background: #fff;
  color: #111827;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.reviews-arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  background: #fafafa;
}

.reviews-track {
  flex: 1;
  display: flex;
  gap: 18px;
  overflow: auto;
  scroll-behavior: smooth;
  padding: 6px 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 320px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  text-align: left;
  scroll-snap-align: start;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.review-text {
  margin: 0 0 14px;
  color: #111827;
  opacity: 0.92;
  font-size: 14.5px;
  line-height: 1.7;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  padding-top: 12px;
}

.review-name {
  font-size: 13px;
  color: #475569;
}

.review-stars {
  color: #22c55e;
  letter-spacing: 0.1em;
  font-size: 14px;
}

/* ===================== THUMBTACK REVIEWS ===================== */

.reviews--thumbtack .reviews-logo-thumb {
  width: 240px;
  height: auto;
  margin: -4px auto 4px;
  display: block;
}

.reviews--thumbtack .reviews-summary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 2px auto 10px;
}

.reviews--thumbtack .reviews-headline {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.reviews--thumbtack .reviews-quality,
.reviews--thumbtack .reviews-score {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 28px;
  color: #0b0f14;
}

.reviews--thumbtack .reviews-stars {
  color: #22c55e;
  font-size: 28px;
  letter-spacing: 0.12em;
}

.reviews--thumbtack .reviews-count {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111827;
  opacity: 0.72;
}

.reviews--thumbtack .reviews-link {
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111827;
  opacity: 0.78;
  border-bottom: 1px solid rgba(17, 24, 39, 0.25);
  padding-bottom: 2px;
  text-decoration: none;
}

.reviews--thumbtack .reviews-link:hover {
  opacity: 1;
}

.reviews--thumbtack .reviews-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.reviews--thumbtack .reviews-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.18);
  background: #fff;
  color: #111827;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  flex: 0 0 auto;
  position: relative;
  z-index: 5;
}

.reviews--thumbtack .reviews-track {
  flex: 1;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px 2px;
  align-items: flex-start;
}

.reviews--thumbtack .reviews-track::-webkit-scrollbar {
  display: none;
}

.reviews--thumbtack .review-card {
  position: relative;
  flex: 0 0 320px;
  width: 320px;
  min-height: 260px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 22px 22px 18px;
  text-align: left;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}

.reviews--thumbtack .review-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reviews--thumbtack .review-text {
  margin: 0;
  color: #111827;
  opacity: 0.92;
  font-size: 14.5px;
  line-height: 1.7;
  overflow: hidden;
  max-height: 150px;
  transition: max-height 0.45s ease;
}

.reviews--thumbtack .review-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.reviews--thumbtack .review-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.reviews--thumbtack .review-meta .review-stars {
  font-size: 14px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #22c55e;
}

.reviews--thumbtack .review-toggle {
  margin-top: 14px;
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: #15803d;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  padding: 0;
  flex: 0 0 auto;
  user-select: none;
}

.reviews--thumbtack .review-toggle--less {
  display: none;
}

.reviews--thumbtack .review-check:checked ~ .review-text {
  max-height: 1200px;
}

.reviews--thumbtack .review-check:checked ~ .review-toggle--more {
  display: none;
}

.reviews--thumbtack .review-check:checked ~ .review-toggle--less {
  display: inline-block;
}

/* ===================== GOOGLE REVIEWS ===================== */
.reviews--google {
  background: url("images/rewievs.jpg") center/cover no-repeat;
  padding: 98px var(--pad) 82px;
}

.reviews--google .reviews-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.reviews--google .reviews-title {
  margin: 0 0 6px;
  font-size: 44px;
  color: #0b0f14;
}

.reviews--google .reviews-summary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 4px auto 16px;
}

.reviews--google .reviews-headline {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: #0b0f14;
}

.reviews--google .reviews-quality,
.reviews--google .reviews-score {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 28px;
}

.reviews--google .reviews-stars {
  color: #d4af37;
  font-size: 28px;
  letter-spacing: 0.12em;
}

.reviews--google .reviews-link {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111827;
  opacity: 0.78;
  border-bottom: 1px solid rgba(17, 24, 39, 0.25);
  padding-bottom: 2px;
  text-decoration: none;
}

.reviews--google .reviews-link:hover {
  opacity: 1;
}

.reviews--google .reviews-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews--google .reviews-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.18);
  background: #fff;
  color: #111827;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  flex: 0 0 auto;
}

.reviews--google .reviews-track {
  flex: 1;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px 2px;
  align-items: flex-start;
}

.reviews--google .reviews-track::-webkit-scrollbar {
  display: none;
}

.reviews--google .review-card {
  position: relative;
  flex: 0 0 320px;
  width: 320px;
  min-height: 250px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 18px;
  text-align: left;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}

.reviews--google .review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex: 0 0 auto;
}

.reviews--google .review-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.reviews--google .review-stars-card {
  color: #d4af37;
  font-size: 14px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.reviews--google .review-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reviews--google .review-text-wrap {
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
  max-height: 148px;
  transition: max-height 0.45s ease;
}

.reviews--google .review-text {
  margin: 0;
  color: #111827;
  opacity: 0.92;
  font-size: 14.5px;
  line-height: 1.7;
}

.reviews--google .review-toggle {
  margin-top: 12px;
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: #8b6b1f;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  padding: 0;
  flex: 0 0 auto;
  user-select: none;
}

.reviews--google .review-toggle:focus {
  outline: none;
}

.reviews--google .review-toggle--less {
  display: none;
}

.reviews--google .review-check:checked ~ .review-text-wrap {
  max-height: 1200px;
}

.reviews--google .review-check:checked ~ .review-toggle--more {
  display: none;
}

.reviews--google .review-check:checked ~ .review-toggle--less {
  display: inline-block;
}

.reviews--google .reviews-logo {
  width: 260px;
  height: auto;
  margin: 0 auto 0;
  display: block;
  margin-top: -75px;
  margin-bottom: -65px;
}

/* ===================== FINAL CTA ===================== */
.cta {
  background: #d7d6d5;
  padding: 86px var(--pad) 96px;
}

.cta-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  margin: 0 0 18px;
  font-size: 44px;
  color: #3f4144;
}

.cta-btn {
  margin-top: 4px;
}

/* ===================== MODAL ===================== */
body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}

.modal.is-open {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.modal-dialog {
  position: relative;
  width: min(560px, calc(100% - 32px));
  margin: 92px auto 0;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  padding: 22px 22px 18px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.modal-title {
  margin: 6px 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 34px;
  color: #0b0f14;
  text-align: left;
}

.modal-subtitle {
  margin: 0 0 16px;
  color: #475569;
  font-size: 14.5px;
  line-height: 1.6;
  text-align: left;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field {
  display: block;
  text-align: left;
}

.field-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #475569;
  margin: 0 0 6px;
}

.field-input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field-input:focus {
  border-color: rgba(17, 24, 39, 0.32);
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.08);
}

.field-textarea {
  resize: vertical;
  min-height: 110px;
}

.modal-submit {
  width: 100%;
  margin-top: 6px;
}

.modal-footnote {
  margin: 10px 0 0;
  font-size: 12.5px;
  color: #475569;
  text-align: left;
}

/* ===================== QUOTE MODAL ===================== */

.quote-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(18, 18, 20, 0.78);
  color: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.quote-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 3000;
}

.quote-modal.is-open {
  display: block;
}

.quote-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      1200px 600px at 50% 10%,
      rgba(255, 255, 255, 0.16),
      rgba(0, 0, 0, 0) 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.62));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.quote-card {
  position: relative;
  width: min(640px, calc(100% - 32px));
  margin: 4vh auto;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82),
    rgba(255, 255, 255, 0.62)
  );
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 26px 22px 18px;
  color: #111;
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  background: radial-gradient(
    900px 280px at 20% 0%,
    rgba(255, 255, 255, 0.45),
    rgba(255, 255, 255, 0) 60%
  );
}

.quote-card::-webkit-scrollbar {
  width: 8px;
}

.quote-card::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.quote-card::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.16);
  border-radius: 12px;
}

.quote-card::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.22);
}

.quote-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: transparent;
  color: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  font-size: 14px;
  z-index: 2;
}

.quote-close:hover {
  color: rgba(0, 0, 0, 0.75);
}

.quote-title {
  margin: 4px 0 8px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 44px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.quote-sub {
  margin: 0 0 18px;
  text-align: center;
  color: rgba(0, 0, 0, 0.58);
  position: relative;
  z-index: 1;
}

.quote-form {
  display: block;
  position: relative;
  z-index: 1;
}

.q-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.q-row:first-of-type {
  border-top: none;
}

.q-label {
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
}

.q-input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  outline: none;
}

.q-input:focus {
  border-color: rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.78);
}

.q-row--textarea {
  grid-template-columns: 1fr;
}

.q-row--textarea .q-label {
  margin-bottom: 8px;
}

.q-textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  padding: 12px;
  font: inherit;
  outline: none;
  resize: vertical;
}

.q-textarea:focus {
  border-color: rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.78);
}

.q-upload {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.q-upload-title {
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  margin-bottom: 10px;
}

.q-upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 18px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  text-align: center;
}

.q-upload-icon {
  font-size: 22px;
  opacity: 0.75;
}

.q-upload-btn {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.72);
}

.q-upload-hint {
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
  max-width: 420px;
}

.q-file {
  display: none;
}

.q-files {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
}

.q-submit {
  width: 100%;
  margin-top: 14px;
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(18, 18, 20, 0.88);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.q-submit:hover {
  background: rgba(18, 18, 20, 0.95);
}

.q-note {
  text-align: center;
  margin: 10px 0 4px;
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
}

.q-wa {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.55);
  font-size: 14px;
}

.q-wa-link {
  color: rgba(0, 0, 0, 0.75);
  font-weight: 600;
}

.q-wa-link:hover {
  text-decoration: underline;
}

.q-wa-sep {
  opacity: 0.5;
}

.q-phone {
  color: rgba(0, 0, 0, 0.75);
  font-weight: 600;
}

.q-phone:hover {
  text-decoration: underline;
}

/* ===== SERVICES PAGE ===== */

:root {
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(255, 255, 255, 0.22);
  --glass: rgba(255, 255, 255, 0.14);
}

body {
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: #0b0f14;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===================== SERVICES HERO ===================== */
.page-hero {
  width: 100%;
  color: #fff;
}

.page-hero--services {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 56px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35)),
    url("images/service-wallpapers.jpg") center/cover no-repeat;
}

.page-hero--services .page-hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-left: 12px;
  text-align: left;
}

.page-hero .eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.9;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.page-hero .lead {
  margin: 0 0 22px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

/* TOC */
.toc {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.toc-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.toc-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

#wallpaper-installation,
#wallpaper-removal,
#interior-painting {
  scroll-margin-top: 86px;
}

/* ===================== SERVICE BLOCKS ===================== */
.services {
  background: #fff;
}

.service-block {
  padding: 70px 16px;
}

.bg-white {
  background: #ffffff;
}

.bg-gray {
  background: url(images/rewievs.jpg);
}

.service-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  transition: transform 0.45s ease;
}

.service-inner:hover {
  transform: translateY(-4px);
}

.service-content h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #0b0f14;
}

.service-content p {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.9;
  color: #111827;
  max-width: 520px;
}

.img-placeholder {
  height: 400px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.service-inner:hover .img-placeholder {
  transform: scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.service-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.service-title a {
  text-decoration: none;
  color: inherit;
  position: relative;
}

.service-title a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.service-title a:hover::after {
  width: 100%;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Transparent Outline Button ===== */
.service-actions {
  margin-top: 26px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
}

.service-btn:hover {
  transform: scale(1.06);
  border-color: #d6b46a;
  color: #000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

/* ===== GALLERY PAGE ===== */
.page-hero--gallery {
  background: url("images/tre.jpg") center/cover no-repeat;
}

.page-hero--gallery {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero--gallery h1 {
  color: #685c5c;
  margin-top: 65px;
}

.page-hero-inner--gallery {
  text-align: center;
  margin-bottom: 0;
  transform: translateY(-1px);
}

.hero-title--gallery {
  display: flex;
  align-items: baseline;
  gap: 16px;
  justify-content: center;
  text-align: center;
}

.hero-number--gallery {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(88px, 10vw, 140px);
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero-text--gallery {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(42px, 4.5vw, 72px);
  letter-spacing: 0.08em;
}

/* ===== Gallery Grid ===== */
.gallery {
  background: #ffffff;
  padding: 70px 16px 90px;
}

.gallery-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.img-placeholder--gallery {
  height: 240px;
  border-radius: 0;
  border: 0;
  background: linear-gradient(180deg, #ffffff, #f2f4f7);
  transition: transform 0.6s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.14);
  border-color: rgba(17, 24, 39, 0.22);
}

.gallery-item:hover .img-placeholder--gallery {
  transform: scale(1.03);
}

.gallery-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.gallery-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.03);
}

.gallery-caption {
  margin-top: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #111;
  text-align: center;
  margin-bottom: 14px;
}

/* ===== BLOG PAGE ===== */
.page-hero--blog {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.35)),
    url("images/blog-wallpaper.jpg") center / cover no-repeat;
}

.blog-hero-center {
  text-align: center;
}

.page-blog .page-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-blog .page-hero-inner {
  text-align: center;
}

.page-blog .page-hero .eyebrow,
.page-blog .page-hero h1,
.page-blog .page-hero .lead {
  color: #ffffff;
}

.page-blog .page-hero .eyebrow {
  margin-bottom: 12px;
}

.page-blog .page-hero h1 {
  margin-bottom: 16px;
}

.page-blog .page-hero .lead {
  max-width: 560px;
  margin: 0 auto;
}

.page-hero--blog .lead {
  text-align: center;
}

/* ===== BLOG LAYOUT ===== */
.blog {
  background: #ffffff;
  padding: 70px 16px 90px;
}

.blog-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* ===== POST CARD ===== */
.post {
  display: block;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.post:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.14);
  border-color: rgba(17, 24, 39, 0.22);
}

.post-media {
  overflow: hidden;
}

.img-placeholder--post-lg {
  height: 360px;
  border-radius: 0;
  border: 0;
  background: linear-gradient(180deg, #ffffff, #f2f4f7);
  transition: transform 0.6s ease;
}

.img-placeholder--post {
  height: 320px;
  border-radius: 0;
  border: 0;
  background: linear-gradient(180deg, #ffffff, #f2f4f7);
  transition: transform 0.6s ease;
}

.post:hover .img-placeholder--post,
.post:hover .img-placeholder--post-lg {
  transform: scale(1.03);
}

.img-placeholder--post img,
.img-placeholder--post-lg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== POST BODY ===== */
.post-body {
  padding: 24px 24px 26px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #111827;
  opacity: 0.75;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.post-tag {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f4f4f5;
}

.post-date {
  opacity: 0.85;
}

.post-title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #0b0f14;
}

.featured .post-title {
  font-size: 38px;
  line-height: 1.1;
}

.post:not(.featured) .post-title {
  font-size: 28px;
  line-height: 1.1;
}

.post-excerpt {
  margin: 0 0 18px;
  color: #4b5563;
  opacity: 1;
  font-size: 16px;
  line-height: 1.7;
}

.post-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
  border-bottom: 1px solid rgba(17, 24, 39, 0.25);
  padding-bottom: 4px;
}

/* ===== FEATURED POST ===== */
.featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  margin-bottom: 26px;
}

.featured .post-body {
  padding: 26px 24px 26px;
}

/* ========================= CONTACT PAGE ========================= */

.page-contact {
  background: #fff;
  color: #111;
}

.contact-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 44px;
}

/* ========================= HERO CONTACT ========================= */

.hero-contact {
  position: relative;
  min-height: 450px;
  height: clamp(320px, 45vh, 520px);
  margin-top: 0;
  padding-top: 90px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.48)),
    url("images/contact.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-contact__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    900px 500px at 35% 15%,
    rgba(255, 255, 255, 0.18),
    rgba(0, 0, 0, 0) 60%
  );
  pointer-events: none;
}

.hero-contact__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 56px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-contact__inner h1 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(44px, 4vw, 74px);
  letter-spacing: 0.02em;
}

.hero-contact__inner p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 720px;
}

.hero-contact__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* ========================= GET A QUOTE Background block ========================= */

.quote-bg {
  margin-top: 56px;
  border-radius: 22px;
  padding: 44px 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.02)),
    url(images/rewievs.jpg);
  background-size: cover;
  background-position: center;
}

.quote-shell {
  width: min(780px, 100%);
  margin: 0 auto;
}

.quote-head {
  text-align: center;
  margin-bottom: 18px;
}

.quote-head h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(30px, 2.6vw, 46px);
  color: #111;
}

.quote-divider {
  width: 120px;
  height: 1px;
  margin: 0 auto 10px;
  background: rgba(0, 0, 0, 0.18);
}

.quote-head p {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
}

/* Form card */
.quote-form {
  margin-top: 18px;
  border-radius: 18px;
  padding: 18px 18px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.q-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.q-field {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.q-field:first-child {
  border-top: none;
}

.q-label {
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
}

.q-input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  outline: none;
}

.q-input:focus {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.22);
}

/* Upload */
.q-upload {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.q-upload-title {
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  margin-bottom: 10px;
}

.q-upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 18px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  text-align: center;
}

.q-upload-icon {
  font-size: 22px;
  opacity: 0.75;
}

.q-upload-btn {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.72);
}

.q-upload-hint {
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
  max-width: 520px;
}

.q-file {
  display: none;
}

.q-files {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
}

/* Textarea */
.q-field--textarea {
  grid-template-columns: 1fr;
}

.q-field--textarea .q-label {
  margin: 8px 0;
}

.q-textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 12px;
  font: inherit;
  outline: none;
  resize: vertical;
}

.q-textarea:focus {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.22);
}

/* Submit */
.q-submit {
  width: 100%;
  margin-top: 12px;
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(18, 18, 20, 0.88);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.q-submit:hover {
  background: rgba(18, 18, 20, 0.95);
}

.q-note {
  text-align: center;
  margin: 10px 0 0;
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
}

/* Bottom strip */
.quote-bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}

.qb-brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.qb-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  margin: 4px 0;
}

.qb-row--small {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
}

.qb-dot {
  opacity: 0.35;
}

.qb-link {
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
}

.qb-link:hover {
  text-decoration: underline;
  color: rgba(0, 0, 0, 0.85);
}

/* ========================= GOOGLE MAPS ========================= */

.map-section {
  margin-top: 90px;
}

.map-title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  color: #111;
}

.map-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
}

.map-embed iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
}

/* ===== Contact / Hero Social Icons ===== */

.contact-socials {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.contact-social-link {
  font-size: 22px;
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social-link:hover {
  color: #d4af37;
  transform: scale(1.18);
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.35);
}
/* ========================= GET A QUOTE SPLIT LAYOUT ========================= */

.quote-bg {
  margin-top: 56px;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.02)),
    url(images/rewievs.jpg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.quote-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1fr);
  gap: 26px;
  align-items: stretch;
}

.quote-media {
  position: relative;
  min-height: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.quote-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
}

.quote-shell {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.quote-head {
  text-align: center;
  margin-bottom: 18px;
}

.quote-form {
  margin-top: 0;
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 100%;
}

/* ========================= SERVICE AREA + MAP / ONE BLOCK ========================= */

.service-area-block {
  margin-top: 90px;
  padding: 34px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.service-area-block__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(380px, 1.08fr);
  gap: 30px;
  align-items: stretch;
}

.service-area-block__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-area-block__heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 26px;
}

.service-area-block__line {
  width: 72px;
  height: 1px;
  background: rgba(184, 146, 90, 0.8);
  flex: 0 0 auto;
}

.service-area-block__heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.06;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2b2a28;
}

.service-area-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-area-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 14px;
}

.service-area-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-area-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 8px 36px 8px 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.15;
  color: #171717;
  transition: color 0.25s ease;
}

.service-area-item summary::-webkit-details-marker {
  display: none;
}

.service-area-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #8b6b45;
  transition: transform 0.25s ease;
}

.service-area-item[open] summary::after {
  content: "−";
}

.service-area-item summary:hover {
  color: #8b6b45;
}

.service-area-item__body {
  padding: 12px 0 4px;
}

.service-area-item__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 26px;
}

.service-area-item__body li {
  break-inside: avoid;
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(17, 17, 17, 0.78);
}

.service-area-block__map {
  min-height: 100%;
}

.service-area-block__map-frame {
  height: 100%;
  min-height: 460px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.06);
}

.service-area-block__map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}

/* ===== DreamWalls MAIN FOOTER ===== */
:root {
  --text: rgba(255, 255, 255, 0.92);
  --line: rgba(255, 255, 255, 0.14);
  --hoverGray: rgba(239, 222, 166, 0.635);
}

.dw-footer {
  background: url(images/foot5.jpg);
  background-size: cover;
  background-position: center;
  color: var(--text);
  padding: 26px 16px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dw-footer__inner {
  width: calc(100% - 18px);
  max-width: 1200px;
  margin: 0 auto;
}

.dw-footer__cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 55px;
  align-items: stretch;
}

.dw-footer__col {
  min-width: 0;
  margin-top: 10px;
}

.dw-footer__col--right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 0;
}

.dw-footer__vline {
  width: 1px;
  background: var(--line);
  align-self: stretch;
  border-radius: 1px;
}

.dw-footer__block {
  margin-top: 28px;
}

.dw-footer__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.dw-footer__subtitle {
  font-size: 15px;
  opacity: 0.88;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}

.dw-footer__subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
  border-radius: 1px;
}

.dw-footer__label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
  margin: 14px 0 8px;
}

.dw-footer__label--big {
  font-size: 16px;
  letter-spacing: 0.2em;
  margin-top: 2px;
}

.dw-footer__text {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.92;
  margin-bottom: 20px;
}

.dw-footer__text--divider {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.dw-footer__text--divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
  border-radius: 1px;
}

.dw-link,
.dw-svc {
  color: var(--text);
  text-underline-offset: 3px;
  text-decoration-color: rgba(202, 204, 181, 0.795);
  text-decoration-thickness: 1px;
  letter-spacing: 0;
  transition:
    color 0.18s ease,
    letter-spacing 0.18s ease,
    text-decoration-color 0.18s ease,
    opacity 0.18s ease;
}

.dw-link:hover,
.dw-svc:hover {
  color: var(--hoverGray);
  letter-spacing: 0.04em;
  text-decoration-color: rgba(201, 193, 168, 0.856);
}

.dw-city {
  color: var(--text);
  letter-spacing: 0 !important;
  text-decoration: none;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(201, 193, 168, 0);
  transition:
    color 0.18s ease,
    text-decoration-color 0.18s ease,
    opacity 0.18s ease;
}

.dw-city:hover {
  color: var(--hoverGray);
  letter-spacing: 0 !important;
  text-decoration: underline;
  text-decoration-color: rgba(201, 193, 168, 0.86);
}

.dw-footer__socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 10px 0 10px;
}

.dw-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  padding: 2px;
  transition:
    transform 0.18s ease,
    color 0.18s ease,
    opacity 0.18s ease;
}

.dw-social i {
  font-size: 30px;
  line-height: 1;
  transition: color 0.18s ease;
}

.dw-social:hover {
  transform: translateY(-1px);
  color: var(--hoverGray);
  opacity: 1;
}

.dw-social:hover i {
  color: var(--hoverGray);
}

/* Brand colors */
.dw-social:hover .fa-instagram {
  color: #ed4ea8;
}

.dw-social:hover .fa-whatsapp {
  color: #25d366;
}

.dw-social:hover .fa-envelope {
  color: #6b7280;
}

.dw-social:hover .fa-google {
  color: #4285f4;
}

.dw-social:hover .fa-facebook-f {
  color: #1877f2;
}

.dw-social:hover .fa-thumbtack {
  color: #00b3a4;
}

.dw-social:hover .fa-yelp {
  color: #d32323;
}

.dw-social:hover .fa-houzz {
  color: #4dbc15;
}

.dw-social:hover .fa-youtube {
  color: #ff0000;
}

.dw-footer__services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}

.dw-footer__cities {
  margin-top: 10px;
  line-height: 1.9;
  font-size: 15px;
  text-align: left;
  text-justify: inter-word;
}

.dw-footer__cities::after {
  content: "";
  display: inline-block;
  width: 100%;
}

.dw-dot {
  display: inline-block;
  margin: 0 10px;
  opacity: 0.55;
  font-size: 14px;
  line-height: 1;
}

.dw-dot::before {
  content: "|";
}

.dw-footer__hline {
  height: 1px;
  background: var(--line);
  border-radius: 1px;
  margin: 18px 0 12px;
}

.dw-footer__bottom {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* =========================================================
   CONSOLIDATED RESPONSIVE / REPLACE OLD MEDIA QUERIES
   ========================================================= */

/* ---------- LARGE TABLET / SMALL DESKTOP ---------- */
@media (max-width: 1200px) {
  .areas-serve__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 28px;
  }
}

/* ---------- TABLET LANDSCAPE ---------- */
@media (max-width: 1100px) {
  .service-area-block__grid {
    grid-template-columns: 1fr;
  }

  .service-area-block__map-frame,
  .service-area-block__map-frame iframe {
    min-height: 420px;
  }
}

/* ---------- GLOBAL TABLET ---------- */
@media (max-width: 980px) {
  /* Home / About */
  .split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .split-title--center {
    text-align: left;
  }

  /* Residential / Commercial split sections */
  .gallery-split .gallery-grid,
  .gallery-split .gallery-grid.gallery-grid--img-left,
  .gallery-split .gallery-grid.gallery-grid--img-right {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .gallery-split .thumbs {
    grid-template-columns: 1fr;
  }

  .gallery-split .thumb {
    height: 320px;
  }

  .gallery-split .gallery-copy--right {
    text-align: left;
  }

  .gallery-split .gallery-copy--right .gallery-sub {
    margin-left: 0;
    margin-right: 0;
  }

  /* Home cards */
  .work-cards,
  .page-home .work-cards {
    grid-template-columns: 1fr;
  }

  .svc-media {
    height: 260px;
  }

  .page-home .work-inner,
  .page-home .work-inner--wide {
    grid-template-columns: 1fr;
    width: min(var(--container), calc(100% - 32px));
  }

  .page-home .work-img {
    height: 280px;
  }

  .page-home .svc-media {
    height: 240px;
  }

  /* Generic reviews */
  .reviews-slider {
    gap: 10px;
  }

  .review-card {
    flex-basis: 300px;
  }
}

/* ---------- TABLET ---------- */
@media (max-width: 900px) {
  /* Footer */
  .dw-footer__cols {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dw-footer__vline {
    display: none;
  }

  .dw-footer__col--right {
    justify-content: flex-start;
  }

  .dw-footer__cities {
    text-align: left;
  }

  .dw-footer__cities::after {
    display: none;
  }

  /* Services page */
  .service-inner,
  .services .service-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .img-placeholder,
  .service-img,
  .services .img-placeholder,
  .services .service-img,
  .services .service-inner img {
    height: 280px;
  }

  .service-content h2,
  .services .service-content h2 {
    font-size: 32px;
  }

  /* Gallery page */
  .gallery .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery .img-placeholder--gallery {
    height: 260px;
  }

  /* Blog */
  .page-hero--blog {
    min-height: 80vh;
  }

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

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

  .img-placeholder--post-lg,
  .img-placeholder--post {
    height: 260px;
  }

  .featured .post-title {
    font-size: 32px;
  }

  .post:not(.featured) .post-title {
    font-size: 26px;
  }

  .post-body {
    padding: 22px 20px 24px;
  }

  /* Thumbtack reviews */
  .reviews--thumbtack .review-card {
    flex: 0 0 280px;
    width: 280px;
    min-height: 320px;
    padding: 20px 18px 18px;
  }

  .reviews--thumbtack .review-text {
    max-height: 175px;
  }

  /* Google reviews */
  .reviews--google .review-card {
    flex: 0 0 280px;
    width: 280px;
    min-height: 320px;
  }

  .reviews--google .review-text-wrap {
    max-height: 210px;
  }

  /* Contact page */
  .quote-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quote-media {
    min-height: 340px;
  }

  .hero-contact {
    height: clamp(320px, 42vh, 420px);
    padding-top: 88px;
  }

  .hero-contact__inner h1 {
    font-size: clamp(38px, 6vw, 56px);
  }

  .hero-contact__inner p {
    max-width: 620px;
  }

  .contact-socials {
    flex-wrap: wrap;
    gap: 16px;
  }

  .map-embed iframe {
    height: 400px;
  }

  .service-area-item summary {
    font-size: clamp(18px, 2.1vw, 24px);
  }
}

/* ---------- MOBILE / HEADER / GENERAL ---------- */
@media (max-width: 768px) {
  /* Header */
  .topbar {
    width: 100%;
    height: 72px;
  }

  .topbar-inner {
    width: 100%;
    max-width: none;
    min-height: 72px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-sizing: border-box;
    position: relative;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 56px);
    margin-left: 0;
  }

  .brand strong {
    display: block;
    font-size: 20px;
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 3px 0;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .mobile-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    display: none;
    padding: 0 14px 14px;
    box-sizing: border-box;
    background: rgba(15, 15, 15, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: visible;
    z-index: 1001;
  }

  .mobile-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-nav a {
    display: block;
    width: 100%;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .mobile-nav a[aria-current="page"] {
    opacity: 1;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Services hero */
  .page-hero--services {
    min-height: auto;
    padding: 96px 0 34px;
  }

  .page-hero--services .page-hero-inner {
    width: min(100%, calc(100% - 24px));
    padding-left: 0;
    padding-right: 0;
  }

  .toc {
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .toc::-webkit-scrollbar {
    display: none;
  }

  .toc-item {
    flex: 0 0 auto;
    font-size: 11px;
    padding: 10px 12px;
  }

  /* Footer socials */
  .dw-footer__socials {
    gap: 10px;
  }

  /* About points */
  .dw-about-points {
    flex-direction: column;
    gap: 10px;
  }

  /* Residential / Commercial mobile */
  .gallery-split .gallery-grid,
  .gallery-split .gallery-grid.gallery-grid--img-left,
  .gallery-split .gallery-grid.gallery-grid--img-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .gallery-split .gallery-copy,
  .gallery-split .gallery-copy--right {
    order: 1;
    width: 100%;
    text-align: left;
    justify-self: auto;
  }

  .gallery-split .gallery-copy--right .gallery-sub {
    margin-left: 0;
    margin-right: 0;
  }

  .gallery-split .thumbs {
    order: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
  }

  .gallery-split .thumb {
    height: 170px;
  }

  .gallery-split .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-split .gallery-title {
    font-size: clamp(34px, 9vw, 52px);
    line-height: 1.05;
    margin-bottom: 12px;
  }

  .gallery-split .gallery-sub {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.75;
  }

  /* Services mobile */
  .service-inner > :first-child {
    order: 1;
  }

  .service-inner > :last-child {
    order: 2;
  }

  .service-content {
    order: 1 !important;
  }

  .service-inner img,
  .service-img,
  .img-placeholder,
  .service-media,
  .service-image {
    order: 2 !important;
  }

  .service-content h2 {
    font-size: clamp(34px, 8vw, 46px);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .service-content p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.8;
  }

  .service-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .service-btn {
    width: 100%;
    justify-content: center;
  }

  /* Gallery page mobile */
  .gallery .gallery-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gallery .gallery-item {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .gallery .gallery-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
  }

  .gallery .gallery-caption {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    box-sizing: border-box;
  }

  /* Contact */
  .hero-contact__inner {
    padding: 44px 18px;
  }

  .hero-contact__actions {
    gap: 10px;
  }

  .quote-bg {
    padding: 18px;
  }

  .quote-head h2 {
    font-size: clamp(26px, 7vw, 36px);
  }

  .contact-socials {
    gap: 14px;
  }

  .service-area-block__heading {
    gap: 12px;
    margin-bottom: 20px;
  }

  .service-area-block__line {
    width: 38px;
  }

  .service-area-block__heading h2 {
    font-size: clamp(22px, 6vw, 30px);
    letter-spacing: 0.08em;
  }

  .service-area-item summary {
    font-size: 20px;
    padding-right: 28px;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 640px) {
  /* Thumbtack reviews */
  .reviews--thumbtack .review-card {
    flex: 0 0 86%;
    width: 86%;
    min-height: 320px;
  }

  .reviews--thumbtack .review-text {
    max-height: 175px;
  }

  .reviews--thumbtack .reviews-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  /* Google reviews */
  .reviews--google {
    padding: 64px 16px 76px;
  }

  .reviews--google .reviews-title {
    font-size: 34px;
  }

  .reviews--google .reviews-quality,
  .reviews--google .reviews-score {
    font-size: 24px;
  }

  .reviews--google .reviews-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .reviews--google .review-card {
    flex: 0 0 86%;
    width: 86%;
    min-height: 320px;
  }

  .reviews--google .review-text-wrap {
    max-height: 210px;
  }

  /* Blog */
  .blog {
    padding: 56px 12px 72px;
  }

  .blog-inner {
    width: min(1120px, calc(100% - 20px));
  }

  .img-placeholder--post-lg,
  .img-placeholder--post {
    height: 230px;
  }

  .post-body {
    padding: 18px 18px 20px;
  }

  .post-meta {
    gap: 10px;
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .post-tag {
    padding: 7px 14px;
  }

  .featured .post-title {
    font-size: 28px;
  }

  .post:not(.featured) .post-title {
    font-size: 24px;
  }

  .post-excerpt {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .post-cta {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  /* Contact */
  .q-field {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-form {
    padding: 16px 14px;
  }

  .map-embed iframe {
    height: 320px;
  }

  .hero-contact {
    height: clamp(280px, 40vh, 360px);
    padding-top: 80px;
  }

  .hero-contact__inner {
    padding: 36px 16px;
  }

  .hero-contact__inner h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .hero-contact__inner p {
    font-size: 14px;
  }

  .contact-social-link {
    font-size: 20px;
  }

  .service-area-block {
    margin-top: 70px;
    padding: 18px;
    border-radius: 18px;
  }

  .service-area-block__grid {
    gap: 20px;
  }

  .service-area-item summary {
    font-size: 18px;
  }

  .service-area-item__body ul {
    columns: 1;
  }

  .service-area-block__map-frame,
  .service-area-block__map-frame iframe {
    min-height: 320px;
  }
}

/* ---------- OLD AREAS BLOCK SUPPORT ---------- */
@media (max-width: 820px) {
  .areas-serve {
    padding: 62px 0 68px;
  }

  .areas-serve__inner {
    width: min(100%, calc(100% - 32px));
  }

  .areas-serve__heading {
    gap: 18px;
    margin-bottom: 34px;
  }

  .areas-serve__line {
    width: 40px;
  }

  .areas-serve__heading h2 {
    font-size: clamp(24px, 7vw, 34px);
    letter-spacing: 0.1em;
  }

  .areas-serve__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .areas-serve__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .areas-serve__col h3 {
    margin-bottom: 14px;
  }

  .areas-serve__list li {
    margin-bottom: 14px;
    font-size: 18px;
  }
}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 520px) {
  .reviews-arrow {
    display: none;
  }

  .modal-dialog {
    margin-top: 78px;
  }

  .quote-title {
    font-size: 36px;
  }

  .q-row {
    grid-template-columns: 1fr;
  }

  .quote-card {
    margin: 2vh auto;
    max-height: 94vh;
  }
}

@media (max-width: 480px) {
  .img-placeholder--post-lg,
  .img-placeholder--post {
    height: 210px;
  }

  .featured .post-title {
    font-size: 25px;
  }

  .post:not(.featured) .post-title {
    font-size: 22px;
  }

  .post-excerpt {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .quote-split {
    grid-template-columns: 1fr;
  }

  .quote-shell {
    order: 1;
  }

  .quote-media {
    order: 2;
  }
}
@media (max-width: 768px) {
  .quote-media {
    display: none;
  }
}
