/* HERO */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 145px 0 95px;
  position: relative;
  overflow: hidden;
  background:
    url("../images/HeroBackground_Nero_AI_Image_Upscaler_Photo_Face-scaled.jpeg")
    center right / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(18, 22, 19, 0.86) 0%,
      rgba(18, 22, 19, 0.76) 32%,
      rgba(18, 22, 19, 0.34) 62%,
      rgba(18, 22, 19, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(18, 22, 19, 0.18) 0%,
      rgba(18, 22, 19, 0.08) 55%,
      var(--cream) 100%
    );
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  left: -220px;
  top: 180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(156, 175, 148, 0.18);
  filter: blur(55px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 64px;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
  opacity: 0.85;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(280px, 420px);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.hero-content {
  width: 100%;
  color: var(--white);
  padding-top: 55px;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.hero-eyebrow::before {
  background: var(--brass);
}

.hero-text {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.72;
}

.hero .btn-primary {
  background: var(--sage-light);
  color: var(--sage-deep);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.hero .btn-primary:hover {
  background: var(--white);
  color: var(--charcoal);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(14px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-color: var(--sage-light);
}

/* HERO REVIEW CARD */

.hero-review-card {
  position: relative;
  justify-self: end;
  width: min(390px, 100%);
  margin-top: 115px;
  padding: 34px 32px 30px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(251, 247, 239, 0.91));
  color: var(--charcoal);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.62);
  transform: rotate(-3.5deg);
  transform-origin: center;
}

.hero-review-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px solid rgba(185, 154, 99, 0.22);
  pointer-events: none;
}

.review-badge {
  position: absolute;
  top: -16px;
  right: 28px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--sage-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.review-stars {
  color: var(--star);
  letter-spacing: 4px;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 20px;
}

.hero-review-card p {
  margin: 0;
  color: #3a3d38;
  font-size: 15px;
  line-height: 1.72;
}

.hero-review-card p + p {
  margin-top: 16px;
}

.review-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(32, 35, 33, 0.12);
}

.review-footer strong,
.review-footer span {
  display: block;
}

.review-footer strong {
  font-size: 14px;
  color: var(--sage-deep);
}

.review-footer span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

/* TRUST */

.trust-section {
  position: relative;
  z-index: 3;
  margin-top: -38px;
}

.trust-grid {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.trust-grid div {
  padding: 28px;
  border-right: 1px solid var(--border);
}

.trust-grid div:last-child {
  border-right: none;
}

.trust-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--sage-dark);
  margin-bottom: 6px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* DESIGN INTRO */

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.image-wrap {
  position: relative;
}

.image-wrap img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  right: -24px;
  bottom: 42px;
  width: 230px;
  background: var(--white);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.floating-card strong {
  display: block;
  color: var(--sage-dark);
  margin-bottom: 6px;
}

.floating-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 46px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
}

.feature-card span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-weight: 900;
}

.feature-card h3,
.process-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.feature-card p,
.service-card p,
.process-grid p,
.faq-list p,
.form-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* SERVICES */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(65, 70, 62, 0.08);
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
}

.service-image-one {
  background-image:
    linear-gradient(rgba(251, 247, 239, 0.08), rgba(32, 35, 33, 0.14)),
    url("../images/Bathroom11.jpg");
}

.service-image-two {
  background-image:
    linear-gradient(rgba(251, 247, 239, 0.08), rgba(32, 35, 33, 0.14)),
    url("../images/Bathroom7.jpg");
}

.service-image-three {
  background-image:
    linear-gradient(rgba(251, 247, 239, 0.08), rgba(32, 35, 33, 0.14)),
    url("../images/Bathroom3.jpg");
}

.service-content {
  padding: 26px;
}

.service-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 12px;
}

/* PROJECTS */

.projects-section {
  background: var(--cream);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 42px;
  align-items: end;
}

.project-intro {
  margin-bottom: 6px;
}

.project-grid {
  margin-top: 52px;
}

.project-grid-four {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(65, 70, 62, 0.14);
  background: var(--charcoal);
  isolation: isolate;
}

.project-card-tall {
  min-height: 440px;
}

.project-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(
      180deg,
      rgba(32, 35, 33, 0.02) 0%,
      rgba(32, 35, 33, 0.14) 38%,
      rgba(32, 35, 33, 0.82) 100%
    );
  z-index: 1;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  z-index: 2;
  pointer-events: none;
}

.project-card:hover img {
  transform: scale(1.055);
}

.project-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 30px;
  z-index: 3;
  color: var(--white);
}

.project-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--sage-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  max-width: 360px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -1.2px;
}

/* PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.process-grid div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 50px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  color: var(--sage-dark);
}

/* LESS ABLED ADAPTATIONS */

.adaptations-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.adaptation-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.adaptation-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
}

.adaptation-list span {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.adaptation-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.adaptations-section .section-buttons {
  margin-top: 34px;
}

.adaptation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.adaptation-image-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--charcoal);
}

.adaptation-image-wrap img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: center 78%;
  display: block;
  transform: scale(1.03);
  transform-origin: center center;
}

.adaptation-card-content {
  padding: 28px;
}

.adaptation-card-content h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.adaptation-card-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* AREAS AND FAQ */

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.area-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--charcoal);
}

.faq-list p {
  margin-top: 14px;
}

/* CONTACT */

.contact-section {
  background: var(--stone);
  padding-top: 118px;
  padding-bottom: 118px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: clamp(30px, 5vw, 58px);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-details div {
  padding: 18px;
  background: var(--cream);
  border-radius: 18px;
  border: 1px solid var(--border);
}

.contact-details strong {
  display: block;
  margin-bottom: 4px;
}

.contact-form {
  background: var(--cream);
  border-radius: 28px;
  padding: 26px;
  border: 1px solid var(--border);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 14px;
  padding: 15px 16px;
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 12px;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.form-note {
  margin-top: 12px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-review-card {
    justify-self: start;
    margin-top: 22px;
    transform: rotate(-2deg);
  }

  .split-grid,
  .contact-card,
  .adaptations-grid,
  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card-tall {
    min-height: 400px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 140px 0 78px;
    align-items: flex-end;
    background:
      url("../images/HeroBackground_Nero_AI_Image_Upscaler_Photo_Face-scaled.jpeg")
      center / cover no-repeat;
  }

  .hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(32, 35, 33, 0.16) 0%,
        rgba(32, 35, 33, 0.42) 36%,
        rgba(32, 35, 33, 0.9) 100%
      );
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-review-card {
    width: 100%;
    margin-top: 36px;
    padding: 28px 24px 24px;
    transform: rotate(-1.5deg);
  }

  .review-stars {
    font-size: 18px;
  }

  .trust-section {
    margin-top: 0;
    padding-top: 18px;
    background: var(--cream);
  }

  .trust-grid,
  .service-grid,
  .process-grid,
  .feature-grid,
  .project-grid-four {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    gap: 18px;
  }

  .project-grid {
    margin-top: 34px;
  }

  .project-card-tall {
    min-height: 430px;
  }

  .project-card {
    border-radius: 28px;
  }

  .project-card h3 {
    font-size: 32px;
  }

  .trust-grid div {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .trust-grid div:last-child {
    border-bottom: none;
  }

  .image-wrap img {
    height: 420px;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .adaptation-image-wrap img {
    height: 300px;
    object-position: center 78%;
    transform: scale(1.03);
    transform-origin: center center;
  }

  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact-card {
    border-radius: 26px;
  }
}
/* Tighten spacing between Projects and Process */
.projects-section {
  padding-bottom: 70px;
}

.projects-section + .section {
  padding-top: 70px;
}

@media (max-width: 1024px) {
  .projects-section {
    padding-bottom: 56px;
  }

  .projects-section + .section {
    padding-top: 56px;
  }
}

@media (max-width: 760px) {
  .projects-section {
    padding-bottom: 44px;
  }

  .projects-section + .section {
    padding-top: 44px;
  }
}
/* HERO REVIEW SIDE SCROLLER - PREMIUM CLEAN VERSION */

.hero-review-card.hero-review-slider {
  position: relative;
  padding: 0;
  overflow: hidden;
  transform: none;
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(248, 244, 236, 0.94)
    );
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.review-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.review-slider-track::-webkit-scrollbar {
  display: none;
}

.review-slide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-height: 360px;
  padding: 34px 32px 72px;
}

.review-slide .review-badge {
  position: static;
  display: inline-flex;
  margin-bottom: 22px;
  background: var(--sage-dark);
  color: var(--white);
  box-shadow: none;
}

.review-slide .review-stars {
  margin-bottom: 22px;
  color: #d9a737;
  font-size: 18px;
  letter-spacing: 3px;
}

.review-slide p {
  margin: 0 0 18px;
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.68;
}

.review-slide p:last-of-type {
  margin-bottom: 0;
}

.hero-review-slider .review-footer {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(65, 70, 62, 0.12);
}

.hero-review-slider .review-footer strong {
  color: var(--sage-dark);
}

.hero-review-slider .review-footer span {
  color: var(--muted);
}

.review-slider-controls {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 24px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.review-slider-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(65, 70, 62, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  color: var(--sage-dark);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.review-slider-arrow:hover {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
  transform: translateY(-1px);
}

.review-slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  pointer-events: auto;
}

.review-slider-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(65, 70, 62, 0.22);
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.review-slider-dots span.active {
  width: 24px;
  background: var(--sage-dark);
}

/* Mobile refinement */

@media (max-width: 760px) {
  .hero-review-card.hero-review-slider {
    border-radius: 26px;
  }

  .review-slide {
    min-height: 340px;
    padding: 30px 28px 72px;
  }

  .review-slide p {
    font-size: 15px;
    line-height: 1.65;
  }

  .review-slider-controls {
    left: 28px;
    right: 28px;
    bottom: 22px;
  }

  .review-slider-arrow {
    width: 30px;
    height: 30px;
  }
}
/* HOMEPAGE FINAL SPACING POLISH */

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.trust-section {
  margin-top: -34px;
  padding-bottom: 34px;
}

.design-section {
  padding-top: 92px;
}

.section-stone {
  padding-top: 92px;
  padding-bottom: 92px;
}

.projects-section {
  padding-top: 92px;
  padding-bottom: 76px;
}

.projects-section + .section {
  padding-top: 76px;
}

.adaptations-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.local-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.contact-section {
  padding-top: 82px;
  padding-bottom: 82px;
}

/* Keep contact card visually balanced */

.contact-card-simple {
  grid-template-columns: 1fr;
  max-width: 980px;
  text-align: center;
}

.contact-card-simple .body-text {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card-simple .contact-details {
  max-width: 780px;
  margin: 36px auto 0;
}

/* Mobile spacing */

@media (max-width: 760px) {
  .section,
  .section-stone,
  .design-section,
  .projects-section,
  .adaptations-section,
  .local-section,
  .contact-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .trust-section {
    margin-top: -24px;
    padding-bottom: 24px;
  }

  .projects-section {
    padding-bottom: 58px;
  }

  .projects-section + .section {
    padding-top: 58px;
  }
}
/* FINAL CTA CARD - LEFT TEXT, RIGHT BUTTONS */

.contact-card-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
  max-width: 1180px;
  text-align: left;
}

.contact-card-cta h2 {
  max-width: 620px;
}

.contact-card-cta .body-text {
  max-width: 620px;
  margin-left: 0;
  margin-right: 0;
}

.contact-card-cta .section-buttons {
  margin-top: 0;
  justify-content: flex-end;
  white-space: nowrap;
}

/* Stop old centred CTA rules affecting this version */

.contact-card-cta.contact-card-simple,
.contact-card-cta {
  text-align: left;
}

@media (max-width: 900px) {
  .contact-card-cta {
    grid-template-columns: 1fr;
  }

  .contact-card-cta .section-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .contact-card-cta .section-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-card-cta .btn {
    width: 100%;
    justify-content: center;
  }
}