/* =========================================================
   AKN PROJECTS — HOME PAGE
   ========================================================= */

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  max-height: 980px;
  margin-top: var(--header-h);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 116%;
  top: -8%;
  position: relative;
  object-fit: cover;
  object-position: 62% 50%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,31,37,0.88) 0%, rgba(12,31,37,0.72) 32%, rgba(12,31,37,0.28) 58%, rgba(12,31,37,0.05) 78%),
    linear-gradient(0deg, rgba(12,31,37,0.65) 0%, rgba(12,31,37,0.05) 26%, rgba(12,31,37,0) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 48px;
}

.hero-heading {
  font-size: clamp(40px, 4.6vw, 64px);
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  max-width: 680px;
  margin-bottom: 26px;
}

.hero-heading .accent { color: var(--gold-light); font-style: italic; font-weight: 500; }

.hero-copy {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.25);
}

.stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.stat-number {
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 600;
  color: var(--gold-light);
}

.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.hero-servicing {
  position: absolute;
  z-index: 2;
  right: 48px;
  bottom: 36px;
  text-align: right;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}

.hero-servicing p {
  display: flex;
  align-items: center;
  /* justify-content: flex-end; */
  gap: 8px;
  margin-bottom: 4px;
}

.hero-servicing svg { flex-shrink: 0; }

/* =========================================================
   FEATURE ICON STRIP — LUXURY
   ========================================================= */
.feature-strip {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(178,134,87,0.08), transparent 24%),
    radial-gradient(circle at 90% 80%, rgba(178,134,87,0.07), transparent 24%),
    linear-gradient(135deg, #fbfaf7 0%, #f5f1e9 48%, #fbfaf7 100%);
  padding: 90px 0;
  border-top: 1px solid rgba(178,134,87,0.12);
  border-bottom: 1px solid rgba(178,134,87,0.12);
}

.feature-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 25%,
      rgba(178,134,87,0.025) 25.3%,
      transparent 25.7%,
      transparent 68%,
      rgba(178,134,87,0.025) 68.3%,
      transparent 68.8%
    );
  pointer-events: none;
}

.feature-strip .container {
  position: relative;
  z-index: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  align-items: stretch;
}

.feature-item {
  position: relative;
  min-width: 0;
  text-align: center;
  padding: 2px 26px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 1px;
  height: calc(100% - 16px);
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(178,134,87,0.34) 12%,
    rgba(178,134,87,0.34) 88%,
    transparent
  );
}

.feature-item::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 24px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.35s var(--ease), transform 0.35s var(--ease);
}

.feature-icon {
width: 75px;
    height: 75px;
    margin: 0 auto 30px;
    object-fit: contain;
    padding: 17px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(247,241,231,0.96));
  border: 1px solid rgba(178,134,87,0.38);
  box-shadow:
    0 12px 35px rgba(51,39,26,0.08),
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -4px 10px rgba(178,134,87,0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.45vw, 25px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.feature-item p {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(12,31,37,0.58);
  max-width: 190px;
  margin: 0 auto;
}

.feature-item:hover .feature-icon {
  transform: translateY(-7px);
  border-color: rgba(178,134,87,0.72);
  box-shadow:
    0 18px 40px rgba(50,37,24,0.13),
    0 0 0 5px rgba(178,134,87,0.045),
    inset 0 1px 0 rgba(255,255,255,1);
}

.feature-item:hover::after {
  width: 72px;
}

.feature-item:hover h3 {
  color: #8f673f;
}

/* =========================================================
   SERVICES GRID — "COMPLETE SOLUTIONS UNDER ONE ROOF"
   ========================================================= */
.services-grid-section {
  background: #fbfaf7;
  padding: 90px 0;
}

.services-grid-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 32px;
  flex-wrap: wrap;
}

.services-grid-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.14;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  white-space: nowrap;
  transition: opacity 0.25s var(--ease), gap 0.25s var(--ease);
}

.view-all-link:hover { opacity: 0.75; gap: 14px; }

.view-all-link .arrow { font-size: 14px; }

/* Second "View All Services" link, shown only on mobile after the tile stack */
.view-all-mobile-wrap { display: none; }

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

.service-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(12,31,37,0.08);
  box-shadow: 0 10px 30px -22px rgba(12,31,37,0.35);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
}

.service-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(178,134,87,0.45);
  box-shadow: 0 30px 60px -30px rgba(12,31,37,0.45);
}

.service-tile-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark);
}

.service-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}

.service-tile:hover .service-tile-bg {
  transform: scale(1.07);
  filter: saturate(1.05);
}

.service-tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,31,37,0.28) 0%, rgba(12,31,37,0) 45%, rgba(12,31,37,0.18) 100%);
  transition: opacity 0.5s var(--ease);
  opacity: 1;
}

.service-tile:hover .service-tile-media::after { opacity: 0.6; }

.service-tile-index {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.9);
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(12,31,37,0.38);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), color 0.45s var(--ease);
}

.service-tile:hover .service-tile-index {
  background: rgba(178,134,87,0.9);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.service-tile-body {
  position: relative;
  padding: 26px 28px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--white);
}

.service-tile-rule {
  display: block;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(178,134,87,0.12));
  margin-bottom: 14px;
  transition: width 0.55s var(--ease);
}

.service-tile:hover .service-tile-rule { width: 64px; }

.service-tile-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--dark);
  transition: color 0.4s var(--ease);
}

.service-tile:hover .service-tile-title { color: var(--gold); }

.service-tile-desc {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.68;
  color: rgba(12,31,37,0.66);
}

.service-tile-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-tile-cta-text {
  transform: translateX(0);
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
  opacity: 0.85;
}

.service-tile:hover .service-tile-cta-text { transform: translateX(3px); opacity: 1; }

.service-tile-arrow {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(178,134,87,0.4);
  background: rgba(178,134,87,0.06);
  overflow: hidden;
  transition: color 0.45s var(--ease), border-color 0.55s var(--ease), transform 0.55s var(--ease);
}

.service-tile-arrow svg {
  width: 17px;
  height: 17px;
  position: relative;
  z-index: 1;
  transition: transform 0.55s var(--ease);
}

.service-tile-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: scale(0.2);
  opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.45s var(--ease);
}

.service-tile:hover .service-tile-arrow {
  color: var(--white);
  border-color: transparent;
  transform: translateX(4px);
}

.service-tile:hover .service-tile-arrow::before { transform: scale(1); opacity: 1; }

.service-tile:hover .service-tile-arrow svg { transform: translateX(2px); }

@media (prefers-reduced-motion: reduce) {
  .service-tile, .service-tile *, .service-tile *::before { transition-duration: 0.01ms !important; }
}

/* =========================================================
   MATERIALS & STYLE STRIP
   ========================================================= */
.materials-strip {
  background: var(--cream);
  padding: 58px 0;
}

.materials-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: center;
  gap: 48px;
}

.materials-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 14px;
}

.materials-copy {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(12,31,37,0.72);
  margin: 0;
}

.materials-col--media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.materials-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3.1;
  background: var(--white);
}

.materials-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.materials-shot:hover img { transform: scale(1.05); }

@media (max-width: 1024px) {
  .materials-strip-inner { grid-template-columns: 1fr 1fr; gap: 34px; }
  .materials-col--media { grid-column: 1 / -1; order: -1; }
}

@media (max-width: 640px) {
  .materials-strip { padding: 42px 0; }
  .materials-strip-inner { grid-template-columns: 1fr; gap: 26px; }
  .materials-title { font-size: 19px; }
}

/* =========================================================
   ABOUT — "COMPLETE TILING & RENOVATION SOLUTIONS"
   ========================================================= */
.about {
  background: var(--white);
  padding: 90px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3.35;
  background: var(--dark);
}

.about-media img {
  width: 100%;
  height: 116%;
  top: -8%;
  position: relative;
  object-fit: cover;
  object-position: 50% 38%;
  will-change: transform;
}

.about-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 84px;
  height: 84px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12,31,37,0.38);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow:
    0 0 0 1.5px rgba(217,180,138,0.9),
    0 0 0 8px rgba(217,180,138,0.12),
    0 14px 34px rgba(0,0,0,0.35);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.about-play-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(217,180,138,0.55);
  animation: aboutPlayPulse 2.6s var(--ease) infinite;
  pointer-events: none;
}

.about-play-icon {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--gold-light);
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.35));
}

.about-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(12,31,37,0.52);
  box-shadow:
    0 0 0 1.5px var(--gold-light),
    0 0 0 10px rgba(217,180,138,0.2),
    0 18px 42px rgba(0,0,0,0.4);
}

.about-play:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 6px; }

@keyframes aboutPlayPulse {
  0%   { transform: scale(0.82); opacity: 0.9; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { opacity: 0; }
}

.about-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 38px 36px;
  background: linear-gradient(0deg, rgba(12,31,37,0.8) 0%, rgba(12,31,37,0.42) 45%, rgba(12,31,37,0) 75%);
}

.about-caption p {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.1vw, 27px);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.32;
  max-width: 260px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.about-content { max-width: 560px; }

.about-heading {
  font-size: clamp(32px, 3.2vw, 44px);
  color: var(--dark);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 22px;
}

.about-copy {
  font-size: 15.5px;
  color: rgba(12,31,37,0.62);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 38px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}

.check-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.about-footer {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.about-call {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-call-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}

.about-call-icon img { width: 20px; height: 20px; }

.about-call-text {
  font-size: 13.5px;
  color: rgba(12,31,37,0.6);
  line-height: 1.5;
}

.about-call-text strong {
  display: block;
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
  margin-top: 1px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.5s var(--ease);
}

.video-modal.active { visibility: visible; pointer-events: auto; }

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,14,17,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.video-modal.active .video-modal-backdrop { opacity: 1; }

.video-modal-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(217,180,138,0.4);
  box-shadow:
    0 0 0 1px rgba(217,180,138,0.12),
    0 0 70px rgba(178,134,87,0.18),
    0 40px 100px rgba(0,0,0,0.65);
  opacity: 0;
  transform: scale(0.9) translateY(28px);
  filter: blur(10px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.08s,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.08s,
    filter 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
}

.video-modal.active .video-modal-inner {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

.video-modal video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* ---- Luxury corner-bracket frame ---- */
.vm-corner {
  position: absolute;
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 0 solid var(--gold-light);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease) 0.35s;
}

.video-modal.active .vm-corner { opacity: 0.85; }

.vm-corner-tl { top: 16px; left: 16px; border-top-width: 2px; border-left-width: 2px; border-radius: 6px 0 0 0; }

.vm-corner-tr { top: 16px; right: 16px; border-top-width: 2px; border-right-width: 2px; border-radius: 0 6px 0 0; }

.vm-corner-bl { bottom: 16px; left: 16px; border-bottom-width: 2px; border-left-width: 2px; border-radius: 0 0 0 6px; }

.vm-corner-br { bottom: 16px; right: 16px; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 6px 0; }

/* ---- Glass gold close button ---- */
.video-modal-close {
  position: absolute;
  top: -60px;
  right: -4px;
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(217,180,138,0.75);
  background: rgba(12,31,37,0.55);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 10px 26px rgba(0,0,0,0.35),
    0 0 0 6px rgba(217,180,138,0.08);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
    opacity 0.45s var(--ease) 0.25s;
}

.video-modal.active .video-modal-close { opacity: 1; transform: translateY(0); }

.video-modal-close:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: rotate(180deg) scale(1.08);
  box-shadow:
    0 14px 32px rgba(0,0,0,0.4),
    0 0 0 8px rgba(217,180,138,0.16);
}

.video-modal-close:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

@media (max-width: 700px) {
  .video-modal { padding: 0; }
  .video-modal-inner {
          max-width: 100%;
          width: 100%;
          height: 100%;
          aspect-ratio: auto;
          border-radius: 0;
          border-width: 0;
        }
  .video-modal-close {
          top: 16px;
          right: 16px;
          background: rgba(6,14,17,0.7);
          transform: translateY(0) scale(0.94);
        }
  .video-modal.active .video-modal-close { transform: translateY(0) scale(1); }
  .video-modal-close:hover { transform: rotate(180deg) scale(1); }
  .vm-corner { width: 20px; height: 20px; }
  .vm-corner-tl, .vm-corner-tr { top: 12px; }
  .vm-corner-bl, .vm-corner-br { bottom: 12px; }
  .vm-corner-tl, .vm-corner-bl { left: 12px; }
  .vm-corner-tr, .vm-corner-br { right: 12px; }
}

/* =========================================================
   CLIENT TESTIMONIALS — "TRUSTED BY HOMEOWNERS ACROSS SYDNEY"
   ========================================================= */
.testimonials {
  position: relative;
  padding: 90px 0;
  background: var(--cream);
  border-top: 1px solid rgba(178,134,87,0.16);
  border-bottom: 1px solid rgba(178,134,87,0.16);
}

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.testimonials-eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.65;
  margin-bottom: 16px;
}

.testimonials-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.18;
}

.testimonials-controls { display: flex; align-items: center; gap: 30px; }

.testimonials .carousel-btn {
  border-color: rgba(12,31,37,0.18);
  color: var(--dark);
  background: var(--white);
}

.testimonials .carousel-btn:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.testimonial-carousel { position: relative; overflow: hidden; }

.testimonial-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 28px * 2) / 3);
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(12,31,37,0.06);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 14px 34px rgba(12,31,37,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(12,31,37,0.1);
}

.testimonial-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-mark {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.35;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
  display: block;
  transform-origin: left bottom;
}

.testimonial-card:hover .testimonial-mark { opacity: 0.6; transform: scale(1.06); }

.testimonial-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 10px;
  letter-spacing: 0.005em;
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(12,31,37,0.68);
  margin: 0;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.testimonial-stars svg { fill: #e5a13a; }

@media (max-width: 960px) {
  .testimonials { padding: 64px 0; }
  .testimonials-header { margin-bottom: 32px; }
  .testimonial-card { flex: 0 0 calc((100% - 28px) / 2); }
}

@media (max-width: 640px) {
  .testimonials { padding: 50px 0; }
  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  /* Mobile design relies on swipe + dots, not the header arrow buttons */
        .testimonials-controls { display: none; }
  .testimonial-track { gap: 18px; }
  .testimonial-card { flex: 0 0 100%; padding: 24px 22px; border-radius: 16px; }
}

/* =========================================================
   RECENT PROJECTS — "TRANSFORMING SPACES. INSPIRING HOMES."
   ========================================================= */
.recent-projects {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 90px 0;
  border-top: 1px solid rgba(217,180,138,0.16);
  border-bottom: 1px solid rgba(217,180,138,0.16);
  background:
    linear-gradient(180deg, rgba(12,31,37,0.86) 0%, rgba(12,31,37,0.9) 100%),
    url('../images/recent-projects-bg.jpg') center / cover no-repeat;
}

.recent-projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.recent-projects-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}

.recent-projects-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.16;
}

.recent-projects-controls {
  display: flex;
  align-items: center;
  gap: 30px;
}

.carousel-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(217,180,138,0.45);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Mobile-only prev/next arrows overlaid on the project image itself,
   matching the mobile design (header controls are hidden at 640px) */
.carousel-nav--overlay {
  display: none;
}

/* Dot pagination shown under carousels on mobile */
.carousel-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(12,31,37,0.18);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.carousel-dots .dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

.recent-projects .carousel-dots .dot { background: rgba(12,31,37,0.16); }

.recent-projects .carousel-dots .dot.active { background: var(--gold); }

.project-carousel {
  position: relative;
  overflow: hidden;
}

.project-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.project-card {
  flex: 0 0 calc((100% - 28px * 3) / 4);
  min-width: 0;
}

.project-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 4.6;
  background: var(--dark-soft);
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.project-card:hover .project-card-media img { transform: scale(1.07); }

.project-card-title {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--white);
  margin: 18px 0 4px;
  letter-spacing: -0.005em;
}

.project-card-loc {
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 400;
}

.project-card-tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(12,31,37,0.42);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  transition: background 0.45s var(--ease);
}

.project-card:hover .project-card-tag { background: rgba(178,134,87,0.9); }

.project-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(6,14,18,0.55) 0%, rgba(6,14,18,0.06) 45%, transparent 70%);
  transition: opacity 0.45s var(--ease);
}

.project-card:hover .project-card-media::before { opacity: 0.65; }

.project-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin: 0 0 8px;
}

/* =========================================================
   PROJECT VIDEOS — "WATCH THE CRAFT IN MOTION"
   ========================================================= */
.project-videos-section {
  background: #f4f4f2;
  padding: 96px 0;
}

.project-videos { margin: 0; }

.project-videos-head {
  max-width: 620px;
  margin-bottom: 44px;
}

.project-videos-head .section-eyebrow { color: var(--gold); }

.project-videos-head .eyebrow-rule { background: rgba(178,134,87,0.45); }

.project-videos-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.16;
  color: var(--dark);
  margin: 12px 0 14px;
}

.project-videos-copy {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(12,31,37,0.62);
  max-width: 520px;
}

.project-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0c1f25;
  border: 1px solid rgba(12,31,37,0.1);
  box-shadow: 0 22px 50px -30px rgba(12,31,37,0.45);
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.project-video:hover .project-video-frame {
  transform: translateY(-6px);
  border-color: rgba(178,134,87,0.55);
  box-shadow: 0 36px 70px -32px rgba(12,31,37,0.55);
}

.project-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-video-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12,31,37,0.1) 0%, rgba(12,31,37,0.55) 100%);
  opacity: 1;
  transition: opacity 0.5s var(--ease);
}

.project-video.is-playing .project-video-glow,
.project-video.is-playing .project-video-play { opacity: 0; pointer-events: none; }

.project-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(251,250,247,0.14);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease), opacity 0.4s var(--ease);
}

.project-video-play svg { width: 26px; height: 26px; margin-left: 3px; }

.project-video-play::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(217,180,138,0.35);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.project-video:hover .project-video-play {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  transform: translate(-50%, -50%) scale(1.06);
}

.project-video:hover .project-video-play::after { opacity: 1; transform: scale(1); }

.project-video-meta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 20px;
}

.project-video-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding-top: 3px;
}

.project-video-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 5px;
}

.project-video-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(12,31,37,0.6);
  margin: 0;
}

@media (max-width: 960px) {
  .project-videos-section { padding: 64px 0; }
  .project-videos-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .project-video-play { width: 62px; height: 62px; }
}

@media (max-width: 640px) {
  .project-videos-grid { grid-template-columns: 1fr; gap: 26px; }
  .project-videos-section { padding: 52px 0; }
  .project-videos-head { margin-bottom: 30px; }
}

@media (max-width: 960px) {
  .recent-projects { padding: 64px 0; }
  .recent-projects-header { margin-bottom: 30px; }
  .project-card { flex: 0 0 calc((100% - 28px) / 2); }
}

@media (max-width: 640px) {
  .recent-projects { padding: 50px 0; }
  .recent-projects-header { flex-direction: column; align-items: flex-start; gap: 22px; }
  .project-track { gap: 18px; }
  .project-card { flex: 0 0 100%; }
  /* Mobile design uses a light cream section (not the dark overlay used on
           larger screens), with the title/location text overlaid on the photo */
        .recent-projects {
          background: var(--cream);
        }
  .recent-projects-eyebrow { color: var(--gold); }
  .recent-projects-heading { color: var(--dark); }
  /* "View All Projects" link + header arrows are replaced on mobile by
           arrows overlaid on the image itself, plus dot pagination below */
        .recent-projects-controls { display: none; }
  .project-card { position: relative; }
  .project-card-media {
          border-radius: 16px;
          aspect-ratio: 4 / 3.3;
        }
  .project-card-media::after {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(to top, rgba(6,14,18,0.85) 0%, rgba(6,14,18,0.25) 42%, transparent 68%);
        }
  .project-card-desc { display: none; }
  .project-card-title {
          position: absolute;
          left: 20px;
          right: 20px;
          bottom: 46px;
          margin: 0;
          font-size: 17px;
          z-index: 2;
        }
  .project-card-loc {
          position: absolute;
          left: 20px;
          right: 20px;
          bottom: 22px;
          margin: 0;
          z-index: 2;
        }
  .carousel-nav--overlay {
          display: flex;
          position: absolute;
          top: 50%;
          left: 14px;
          right: 14px;
          transform: translateY(-50%);
          justify-content: space-between;
          z-index: 3;
          gap: 0;
          pointer-events: none;
        }
  .carousel-nav--overlay .carousel-btn {
          pointer-events: auto;
          width: 38px;
          height: 38px;
          background: rgba(255,255,255,0.9);
          border: none;
          color: var(--dark);
          box-shadow: 0 8px 18px rgba(12,31,37,0.2);
        }
  .carousel-nav--overlay .carousel-btn:hover:not(:disabled) {
          background: var(--white);
          color: var(--dark);
        }
  .carousel-dots { display: flex; }
}

/* =========================================================
   PROJECT ENQUIRY / QUOTE
   ========================================================= */
.quote {
  padding: 90px 48px;
  background: #f4f4f2;
}

.quote-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}

/* ---- Left dark panel ---- */
.quote-panel {
  position: relative;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #0f222a;
}

.quote-panel-bg {
  position: absolute;
  top: -8%;
  left: 0;
  right: 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: 60% 55%;
  will-change: transform;
}

.quote-panel-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(12,31,37,0.35) 0%, rgba(12,31,37,0.78) 42%, rgba(12,31,37,0.92) 100%);
}

.quote-panel-content {
  position: relative;
  z-index: 2;
padding: 60px 155px;
  /* max-width: 480px; */
}

.quote-heading {
 font-size: clamp(40px, 4.6vw, 64px);
  color: var(--white);
  font-weight: 600;
  line-height: 1.16;
  margin-bottom: 22px;
}

.quote-copy {
  font-size: 15.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 46px;
}

.quote-badges {
  display: flex;
  gap: 34px;
}

.quote-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.quote-badge img { width: 52px; height: 52px; }

.quote-badge span {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

/* ---- Right form card ---- */
.quote-form-wrap {
  background: #ffffff;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  padding: 34px 40px;
}

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

.quote-form-card h3 {
  font-size: 28px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 5px;
}

.quote-form-sub {
  font-size: 13.5px;
  color: rgba(12,31,37,0.55);
  margin-bottom: 22px;
}

.quote-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quote-form-card .form-field { margin-bottom: 16px; }

.quote-form-card label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.quote-form-card label .req { color: #c0392b; }

.quote-form-card input,
.quote-form-card select,
.quote-form-card textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(12,31,37,0.15);
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 13.5px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.quote-form-card input::placeholder,
.quote-form-card textarea::placeholder { color: rgba(12,31,37,0.35); }

.quote-form-card input:focus,
.quote-form-card select:focus,
.quote-form-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(178,134,87,0.15);
}

.quote-form-card textarea { resize: vertical; min-height: 70px; }

.select-wrap { position: relative; }

.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px; top: 50%;
  width: 9px; height: 9px;
  border-right: 1.6px solid rgba(12,31,37,0.5);
  border-bottom: 1.6px solid rgba(12,31,37,0.5);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.quote-form-card select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.quote-form-card select:invalid { color: rgba(12,31,37,0.35); }

.quote-form-footer {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.quote-secure {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-secure img { width: 30px; height: 30px; flex-shrink: 0; }

.quote-secure span {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(12,31,37,0.55);
}

.quote .form-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--gold);
}

/* =========================================================
   WHY CHOOSE US — "MORE THAN TILING. IT'S OUR CRAFT."
   ========================================================= */
.why-us {
  background: var(--cream);
  padding: 90px 0;
  border-top: 1px solid rgba(178,134,87,0.16);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 70px;
  align-items: center;
}

.why-us-content { max-width: 340px; }

.why-us-heading {
  font-size: clamp(30px, 3vw, 42px);
  color: var(--dark);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 20px;
}

.why-us-copy {
  font-size: 15px;
  color: rgba(12,31,37,0.6);
  line-height: 1.75;
  margin-bottom: 30px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(12,31,37,0.1);
  border-left: 1px solid rgba(12,31,37,0.1);
  background: rgba(255,255,255,0.4);
}

.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 26px;
  border-right: 1px solid rgba(12,31,37,0.1);
  border-bottom: 1px solid rgba(12,31,37,0.1);
}

.why-us-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-us-item h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 7px;
  letter-spacing: -0.005em;
}

.why-us-item p {
  font-size: 12.5px;
  color: rgba(12,31,37,0.55);
  line-height: 1.6;
}

/* =========================================================
   CTA BANNER — "LET'S BRING YOUR VISION TO LIFE."
   ========================================================= */
.cta-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 90px 0;
  display: flex;
  align-items: center;
  min-height: 420px;
}

.cta-banner-bg {
  position: absolute;
  top: -8%;
  left: 0;
  right: 0;
  height: 116%;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(6,14,18,0.28) 0%, rgba(6,14,18,0.1) 45%, rgba(6,14,18,0.22) 100%),
    url('../images/CTA-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  will-change: transform;
}

.cta-panel {
  position: relative;
  width: min(1280px, 90%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 44px 52px;
  border-radius: 20px;
  border: 1px solid rgba(217,180,138,0.3);
  border-top-color: rgba(255,236,210,0.55);
  background: linear-gradient(135deg, rgba(8,19,24,0.74), rgba(8,19,24,0.52));
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.4),
    0 0 0 1px rgba(217,180,138,0.06),
    0 0 46px rgba(178,134,87,0.16),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.cta-panel-content { flex: 1; min-width: 0; }

.cta-panel-top {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 16px;
}

.cta-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}

.cta-rule {
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(90deg, rgba(217,180,138,0.55), rgba(217,180,138,0));
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 14px;
}

.cta-heading .accent { color: var(--gold-light); font-style: italic; font-weight: 500; }

.cta-copy {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
}

.cta-btn {
  flex-shrink: 0;
  padding: 18px 34px;
  border: 1.5px solid rgba(255,232,200,0.55);
  box-shadow:
    0 14px 32px rgba(178,134,87,0.45),
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -10px 14px rgba(140,100,58,0.25);
}

@media (max-width: 960px) {
  .cta-banner { padding: 64px 0; }
  .cta-panel { flex-direction: column; align-items: flex-start; padding: 36px 32px; }
  .cta-btn { width: 100%; justify-content: center; }
  .cta-rule { display: none; }
}

@media (max-width: 640px) {
  /* The mobile footer below carries its own "Ready to transform" CTA,
           matching the supplied mobile design, so this mid-page banner is hidden
           to avoid repeating the same message twice in a row. */
        .cta-banner { display: none; }
}

@media (max-width: 1100px) {
  .feature-strip { padding: 64px 0; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); row-gap: 56px; }
  .feature-item { padding: 0 30px; }
  .feature-item:nth-child(4)::before { display: none; }
  .feature-icon { width: 88px; height: 88px; padding: 20px; }
  .feature-item h3 { font-size: 22px; }
}

@media (max-width: 960px) {
  .about { padding: 64px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-content { max-width: 100%; order: 1; }
  .about-media { aspect-ratio: 4 / 2.9; order: 2; }
  .services-grid-section { padding: 64px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid-header { margin-bottom: 40px; }
  .quote { padding: 64px 48px; }
  .quote-inner { grid-template-columns: 1fr; min-height: 0; }
  .quote-panel { border-radius: 8px 8px 0 0; min-height: 360px; }
  .quote-panel-bg { object-position: 62% 42%; }
  .quote-form-wrap { border-radius: 0 0 8px 8px; padding: 32px; }
  .quote-panel-content { padding: 44px 32px; }
  .quote-form-card .form-row { grid-template-columns: 1fr; }
  .quote-badges { gap: 24px; flex-wrap: wrap; }
  .why-us { padding: 64px 0; }
  .why-us-inner { grid-template-columns: 1fr; gap: 36px; }
  .why-us-content { max-width: 100%; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-heading { font-size: 40px; }
  .hero-stats { flex-wrap: wrap; row-gap: 20px; }
  .hero-servicing { display: none; }
}

@media (max-width: 640px) {
  .about { padding: 50px 0; }
  .about-media { aspect-ratio: 4 / 3.4; border-radius: 16px; }
  .about-caption { padding: 22px 20px 18px; }
  .about-caption p { font-size: 19px; max-width: 200px; }
  .about-play { width: 58px; height: 58px; }
  .about-play-ring { inset: -10px; }
  .about-play-icon { border-width: 7px 0 7px 11px; margin-left: 3px; }
  .about-heading { margin-bottom: 16px; }
  .about-copy { margin-bottom: 22px; }
  .about-list { gap: 13px; margin-bottom: 28px; }
  .about-list li { font-size: 14px; }
  .about-footer { flex-direction: column; align-items: flex-start; gap: 20px; width: 100%; }
  .about-footer .btn { width: 100%; justify-content: center; }
  .services-grid-section { padding: 50px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .services-grid-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-grid-header .view-all-link { display: none; }
  .view-all-mobile-wrap { display: flex; justify-content: center; margin-top: 30px; }
  .service-tile-title { font-size: 21px; }
  .service-tile-desc { font-size: 13.8px; }
  .service-tile-body { padding: 22px 22px; }
  .quote { padding: 50px 20px; }
  .quote-panel-content { padding: 36px 24px; }
  .quote-form-wrap { padding: 24px; }
  .quote-badges { gap: 18px; }
  .quote-badge img { width: 44px; height: 44px; }
  .quote-form-footer { flex-direction: column; align-items: flex-start; }
  .why-us { padding: 50px 0; }
  .why-us-content .btn { width: 100%; justify-content: center; }
  /* Mobile design shows only 5 items — "Custom Solutions" isn't part of the mobile card list */
        .why-us-grid .why-us-item:nth-child(3) { display: none; }
  .why-us-grid {
          grid-template-columns: 1fr;
          border: none;
          background: transparent;
          gap: 14px;
        }
  .why-us-item {
          border: none;
          background: var(--white);
          border-radius: 16px;
          padding: 20px 18px;
          box-shadow: 0 10px 26px rgba(12,31,37,0.05);
          align-items: center;
          gap: 16px;
        }
  .why-us-icon {
          width: 56px;
          height: 56px;
          padding: 14px;
          background: rgba(178,134,87,0.12);
          border-radius: 50%;
          margin-top: 0;
        }
  .container, .header-inner, .hero-content { padding-left: 24px; padding-right: 24px; }
  .hero-servicing { right: 24px; }
  .hero-actions { flex-wrap: wrap; }
  .feature-strip { padding: 50px 0; }
  .feature-strip .container { padding-left: 18px; padding-right: 18px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); column-gap: 0; row-gap: 44px; position: relative; }
  .feature-item { padding: 0 14px; }
  .feature-item::before { display: none !important; }
  /* Single continuous divider down the middle of the 2-column grid, as in the mobile design */
        .feature-grid::after {
          content: "";
          position: absolute;
          top: 6px;
          bottom: 6px;
          left: 50%;
          width: 1px;
          background: linear-gradient(to bottom, transparent, rgba(178,134,87,0.35) 8%, rgba(178,134,87,0.35) 92%, transparent);
        }
  .feature-icon { width: 78px; height: 78px; padding: 17px; margin-bottom: 21px; }
  .feature-item h3 { font-size: 19px; margin-bottom: 9px; }
  .feature-item p { font-size: 12.5px; line-height: 1.55; max-width: 155px; }
  /* Mobile design doesn't show the small gold underline accent beneath the copy */
        .feature-item::after { display: none; }
}

@media (max-width: 420px) {
  .feature-strip { padding: 50px 0; }
  .feature-grid { row-gap: 38px; }
  .feature-item { padding-left: 9px; padding-right: 9px; }
  .feature-icon { width: 72px; height: 72px; padding: 16px; }
  .feature-item h3 { font-size: 17px; }
  .feature-item p { font-size: 11.5px; max-width: 140px; }
}

/* <picture> wrapper for the mobile hero background */
.hero-media picture {
  position: absolute;
  inset: 0;
  display: block;
}

@media (max-width: 768px) {
  .hero {
          height: auto;
          min-height: calc(100vh - var(--header-h));
          min-height: calc(100svh - var(--header-h));
          max-height: none;
          display: flex;
          flex-direction: column;
          justify-content: flex-end;
          align-items: stretch;
        }
  .hero-media img { object-position: 50% 45%; }
  .hero-overlay {
          background: linear-gradient(
            to top,
            #0c1f25 0%,
            rgba(12,31,37,0.97) 12%,
            rgba(12,31,37,0.90) 26%,
            rgba(12,31,37,0.76) 42%,
            rgba(12,31,37,0.58) 58%,
            rgba(12,31,37,0.38) 74%,
            rgba(12,31,37,0.20) 88%,
            rgba(12,31,37,0.10) 100%
          );
        }
  /* Big breathing space at the top so the photo reads first —
           roughly the top third of the hero stays image-only, as in the design.
           The spacer flexes, so the block never gets cramped on short screens. */
        .hero-content {
          display: flex;
          flex-direction: column;
          justify-content: flex-end;
          flex: 1;
          padding: 0 22px 0;
        }
  .hero-content::before {
          content: "";
          display: block;
          flex: 1 1 auto;
          min-height: clamp(70px, 26svh, 230px);
        }
  .hero .eyebrow {
          font-size: 11px;
          letter-spacing: 0.19em;
          line-height: 1.85;
          max-width: 230px;
          margin-bottom: 16px;
        }
  .hero-heading {
          font-size: clamp(27px, 7.8vw, 34px);
          line-height: 1.2;
          margin-bottom: 18px;
          max-width: 100%;
        }
  .hero-copy {
          font-size: 13.5px;
          line-height: 1.75;
          max-width: min(100%, 296px);
          margin-bottom: 24px;
        }
  .hero-actions {
          flex-direction: column;
          flex-wrap: nowrap;
          gap: 11px;
          margin-bottom: 0;
        }
  .hero-actions .btn {
          width: 100%;
          justify-content: center;
          padding: 14px 20px;
          font-size: 12px;
          letter-spacing: 0.14em;
        }
  .hero-actions .btn-outline { border-color: rgba(255,255,255,0.55); }
  /* Stats band pinned to the bottom, edge to edge */
        .hero-stats {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 0;
          margin: 26px -22px 0;
          padding: 17px 8px calc(17px + env(safe-area-inset-bottom));
          background: #0c1f25;
          border-top: 1px solid rgba(217,180,138,0.18);
        }
  .stat {
          align-items: center;
          text-align: center;
          gap: 4px;
          padding: 0 6px;
          margin: 0;
          border-right: 1px solid rgba(255,255,255,0.2);
        }
  .stat:last-child { border-right: none; padding-right: 6px; }
  .stat-number { font-size: 27px; line-height: 1.1; }
  .stat-label {
          font-size: 11.5px;
          line-height: 1.35;
          max-width: 82px;
        }
}

@media (max-width: 380px) {
  .hero-content { padding: 0 18px 0; }
  .hero-content::before { min-height: clamp(50px, 20svh, 150px); }
  .hero-heading { font-size: 26px; }
  .hero-copy { font-size: 12.5px; max-width: min(100%, 268px); margin-bottom: 20px; }
  .hero-stats { margin-left: -18px; margin-right: -18px; }
  .stat-number { font-size: 24px; }
  .stat-label { font-size: 10.5px; max-width: 74px; }
}
