/* =========================================================
   REMODELING & MORE — CLEANED STYLESHEET
   Base styles + reviews + one final theme override block
   ========================================================= */

/* ------------------------------
   Remodeling and More
   Premium Responsive Website
--------------------------------- */

:root {
  --bg: #022A5C;
  --paper: #ffffff;
  --ink: #171717;
  --muted: #6f6b63;
  --charcoal: #171a1c;
  --charcoal-2: #22272a;
  --accent: #c79b5b;
  --accent-dark: #a97e3f;
  --line: rgba(23, 23, 23, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: 0.3s ease;
}

.site-header.scrolled {
  background: rgba(18, 20, 22, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.45);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -2px;
}

.brand-mark span {
  color: var(--accent);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

.brand-text small {
  margin-top: 5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 8px;
  opacity: .75;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: .25s ease;
}

.hero {
  position: relative;
  min-height: 810px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 80% 25%, rgba(199,155,91,.18), transparent 26%),
    radial-gradient(circle at 20% 85%, rgba(199,155,91,.10), transparent 35%),
    linear-gradient(125deg, #111416 0%, #1e2528 48%, #151719 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero-overlay {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  right: -120px;
  top: 130px;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 58px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 72px;
  align-items: center;
  padding-top: 110px;
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  font-size: 12px;
  font-weight: 700;
  color: #e7c38d;
}

.eyebrow.dark {
  color: var(--accent-dark);
}

.hero h1,
.section-heading h2,
.why-panel h2,
.contact-info h2,
.cta-strip h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -.035em;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(52px, 6.6vw, 90px);
  line-height: .97;
}

.hero h1 span {
  color: #d6b37a;
}

.hero-text {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #151515;
  box-shadow: 0 12px 30px rgba(199,155,91,.18);
}

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

.btn-secondary {
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  gap: 20px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  color: #fff;
}

.hero-proof span {
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

.hero-card {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
}

.mini-label {
  margin: 0 0 10px;
  color: #d6b37a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 700;
}

.hero-card h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 33px;
  line-height: 1.1;
}

.hero-card > p:not(.mini-label) {
  color: rgba(255,255,255,.64);
}

.contact-mini {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-mini a {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
}

.contact-mini .icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(199,155,91,.16);
  color: #e8c28a;
}

.contact-mini a span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-mini small {
  color: rgba(255,255,255,.5);
  font-size: 10px;
}

.contact-mini strong {
  margin-top: 2px;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.section {
  padding: 110px 0;
}

.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 95px;
  align-items: start;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06;
}

.section-heading.centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-heading.centered > p:last-child {
  color: var(--muted);
}

.about-copy {
  font-size: 18px;
  color: var(--muted);
}

.about-copy p:first-child {
  margin-top: 8px;
}

.about-copy strong {
  color: var(--ink);
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-dark);
  font-weight: 700;
}

.services {
  background: #efebe3;
}

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

.service-card {
  min-height: 290px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(23,23,23,.06);
  box-shadow: 0 10px 40px rgba(0,0,0,.03);
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-dark);
  border: 1px solid rgba(169,126,63,.22);
  font-size: 12px;
  font-weight: 700;
}

.service-card h3 {
  margin: 45px 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  line-height: 1.12;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.why-us {
  background: var(--charcoal);
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 92px;
  align-items: start;
}

.why-panel {
  position: sticky;
  top: 125px;
}

.why-panel h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.03;
}

.why-panel > p:last-child {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255,255,255,.6);
  font-size: 17px;
}

.why-list {
  display: grid;
}

.why-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.why-item > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.why-item h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 25px;
}

.why-item p {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 14px;
}

.cta-strip {
  padding: 64px 0;
  background: var(--accent);
}

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-strip .eyebrow {
  color: rgba(23,23,23,.68);
}

.cta-strip h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
}

.contact {
  background: #f8f6f1;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 85px;
}

.contact-info h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.04;
}

.contact-info > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 520px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 35px;
}

.contact-list a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
}

.contact-list span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.contact-list strong {
  margin-top: 4px;
  font-size: 20px;
  overflow-wrap: anywhere;
}

.contact-list small {
  margin-top: 2px;
  color: var(--muted);
}

.contact-form {
  background: #fff;
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  color: #424242;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #dedbd3;
  border-radius: 12px;
  background: #faf9f6;
  padding: 15px 14px;
  color: var(--ink);
  outline: none;
  transition: .2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(199,155,91,.12);
}

.btn-full {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
}

footer {
  padding: 70px 0 24px;
  background: #111416;
  color: rgba(255,255,255,.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr 1fr;
  gap: 55px;
  padding-bottom: 50px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid p {
  max-width: 420px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #141414;
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
  font-size: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 1000px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 170px 0 90px;
  }

  .hero-card {
    max-width: 650px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .why-grid,
  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
    z-index: 1002;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: #111416;
    padding: 125px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    transform: translateX(100%);
    transition: .3s ease;
    z-index: 1001;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    font-family: "Playfair Display", serif;
    font-size: 32px;
  }

  .nav-cta {
    border: 0;
    padding: 0;
  }

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

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

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

  .two-col,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-panel {
    position: static;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .floating-call {
    display: grid;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    height: 76px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .hero-grid {
    padding: 140px 0 72px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-proof div {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }

  .hero-card {
    padding: 24px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .why-panel h2,
  .contact-info h2 {
    font-size: 42px;
  }

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

  .service-card {
    min-height: 230px;
  }

  .service-card h3 {
    margin-top: 32px;
  }

  .cta-flex {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .contact-form {
    padding: 22px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* =========================================================
   CUSTOMER REVIEWS
   ========================================================= */

.reviews {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(193, 139, 74, 0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(193, 139, 74, 0.08),
            transparent 35%
        ),
        #f7f5f1;
}


/* Decorative background shapes */

.reviews::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    top: -220px;
    right: -140px;
    pointer-events: none;
}

.reviews::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(181, 129, 68, 0.15);
    bottom: -160px;
    left: -100px;
    pointer-events: none;
}


/* Section heading */

.reviews .section-heading {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
}

.reviews .section-heading h2 {
    margin-bottom: 12px;
}

.reviews .section-heading p:last-child {
    color: #6d6d6d;
    line-height: 1.7;
}


/* =========================================================
   OVERALL RATING
   ========================================================= */

.review-summary {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    padding: 25px 32px;

    background: #151515;
    color: #fff;

    border-radius: 22px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.10);

    overflow: hidden;
}


/* subtle gold accent */

.review-summary::before {
    content: "";
    position: absolute;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212, 165, 92, 0.28),
            transparent 70%
        );

    right: -25px;
    top: -55px;
}


.review-rating {
    display: flex;
    align-items: center;
    gap: 18px;
}


.review-rating > strong {
    font-family: "Playfair Display", serif;
    font-size: 3.8rem;
    line-height: 1;
    color: #fff;
}


.review-rating > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


.review-rating span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    color: rgba(255, 255, 255, 0.65);
}


.review-summary > p {
    max-width: 430px;
    margin: 0;

    font-size: 0.95rem;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   STARS
   ========================================================= */

.review-stars {
    color: #d7a34d;
    font-size: 1.15rem;
    letter-spacing: 4px;
    line-height: 1;
}


/* =========================================================
   MAIN REVIEW CARD
   ========================================================= */

.reviews-slider {
    position: relative;
    z-index: 2;

    max-width: 900px;
    min-height: 400px;

    margin: 0 auto;

    padding: 65px 75px 35px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fdfcf9 100%
        );

    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.08);

    overflow: hidden;
}


/* large quotation mark */

.reviews-slider::before {
    content: "“";

    position: absolute;
    top: 5px;
    left: 35px;

    font-family: Georgia, serif;
    font-size: 9rem;
    line-height: 1;

    color: rgba(198, 145, 77, 0.12);

    pointer-events: none;
}


/* Gold accent corner */

.reviews-slider::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -110px;
    right: -90px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(213, 165, 88, 0.20),
            rgba(213, 165, 88, 0)
        );

    pointer-events: none;
}


/* =========================================================
   REVIEW
   ========================================================= */

.review-slide {
    position: relative;
    z-index: 2;

    text-align: center;

    animation: reviewFade 0.45s ease;
}


.review-slide[hidden] {
    display: none !important;
}


@keyframes reviewFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.review-slide .review-stars {
    margin-bottom: 28px;

    font-size: 1.3rem;
    letter-spacing: 5px;
}


.review-text {
    max-width: 720px;

    margin: 0 auto 35px;

    font-family: "Playfair Display", serif;

    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 600;

    line-height: 1.55;

    color: #242424;
}


/* =========================================================
   CUSTOMER NAME
   ========================================================= */

.review-customer {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 6px;
}


.review-customer::before {
    content: "";

    display: block;

    width: 45px;
    height: 2px;

    margin-bottom: 8px;

    background: #c6924e;
}


.review-customer strong {
    font-size: 1.05rem;
    color: #171717;
}


.review-customer span {
    color: #8b8b8b;

    font-size: 0.82rem;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   SLIDER CONTROLS
   ========================================================= */

.review-controls {
    position: relative;
    z-index: 4;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-top: 42px;
    padding-top: 25px;

    border-top: 1px solid rgba(0, 0, 0, 0.07);
}


.review-btn {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(0, 0, 0, 0.10);

    border-radius: 50%;

    background: #fff;

    color: #202020;

    font-size: 1.3rem;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.06);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.review-btn:hover {
    background: #171717;
    color: #fff;

    border-color: #171717;

    transform: translateY(-3px);

    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.14);
}


.review-btn:active {
    transform: scale(0.95);
}


.review-counter {
    min-width: 70px;

    text-align: center;

    font-size: 0.83rem;
    font-weight: 700;

    letter-spacing: 1px;

    color: #8a8a8a;
}


/* =========================================================
   HOMEADVISOR BUTTON AREA
   ========================================================= */

.reviews-footer {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 15px;

    margin-top: 35px;
}


.reviews-footer .btn {
    min-width: 260px;

    text-align: center;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.reviews-footer .btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.16);
}


.reviews-footer small {
    color: #8c8c8c;

    font-size: 0.75rem;

    text-align: center;

    line-height: 1.6;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .reviews {
        padding: 75px 0;
    }


    .review-summary {
        flex-direction: column;

        align-items: flex-start;

        padding: 25px;

        gap: 15px;

        border-radius: 18px;
    }


    .review-rating > strong {
        font-size: 3rem;
    }


    .reviews-slider {
        min-height: 430px;

        padding:
            55px
            25px
            28px;

        border-radius: 20px;
    }


    .reviews-slider::before {
        font-size: 7rem;

        left: 12px;
        top: 5px;
    }


    .review-text {
        font-size: 1.25rem;
        line-height: 1.55;
    }


    .review-controls {
        margin-top: 32px;
    }


    .review-btn {
        width: 46px;
        height: 46px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .reviews {
        padding: 60px 0;
    }


    .review-summary {
        padding: 22px 20px;
    }


    .review-rating {
        gap: 12px;
    }


    .review-rating > strong {
        font-size: 2.6rem;
    }


    .review-stars {
        font-size: 1rem;
        letter-spacing: 3px;
    }


    .reviews-slider {
        min-height: 440px;

        padding:
            50px
            20px
            25px;
    }


    .review-text {
        font-size: 1.15rem;
    }


    .review-customer strong {
        font-size: 1rem;
    }


    .review-customer span {
        font-size: 0.72rem;
    }


    .reviews-footer .btn {
        width: 100%;
        min-width: 0;
    }

}

/* =========================================================
   REMODELING & MORE — FINAL LOGO THEME
   Keep this section LAST in the stylesheet.
   ========================================================= */

:root {
  --logo-blue: #032C5E;
  --logo-blue-deep: #012656;
  --logo-blue-dark: #011F45;
  --logo-black: #101212;
  --logo-black-soft: #151719;
  --logo-gold: #FFD84D;
  --logo-gold-deep: #D7A34D;

  --bg: var(--logo-blue);
  --paper: #ffffff;
  --ink: #171717;
  --muted: #6f6b63;
  --charcoal: var(--logo-black);
  --charcoal-2: var(--logo-black-soft);
  --accent: var(--logo-gold);
  --accent-dark: var(--logo-gold-deep);
}

/* ---------- Header ---------- */

.site-header.scrolled {
  background: rgba(1, 31, 69, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 216, 77, 0.18);
}

.brand-mark {
  border-color: rgba(255, 216, 77, 0.55);
}

.brand-mark span,
.brand-text small {
  color: var(--logo-gold);
}

.brand-text small {
  opacity: 1;
}

.main-nav a {
  color: #ffffff;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--logo-gold);
}

/* ---------- Hero ---------- */

.hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 25%, rgba(255, 216, 77, 0.14), transparent 28%),
    radial-gradient(circle at 15% 80%, rgba(255, 216, 77, 0.07), transparent 30%),
    linear-gradient(
      180deg,
      var(--logo-blue) 0%,
      var(--logo-blue-deep) 38%,
      var(--logo-blue-dark) 63%,
      var(--logo-black) 100%
    );
}

.hero .eyebrow,
.hero h1 span,
.mini-label {
  color: var(--logo-gold);
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
}

.hero h1 span {
  text-shadow: 0 3px 18px rgba(255, 216, 77, 0.12);
}

.hero-text {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
}

.hero-proof {
  border-top-color: rgba(255, 216, 77, 0.30);
}

.hero-proof strong {
  color: var(--logo-gold);
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.88);
}

.hero-card {
  background:
    linear-gradient(
      145deg,
      rgba(3, 44, 94, 0.76),
      rgba(16, 18, 18, 0.84)
    );
  border: 1px solid rgba(255, 216, 77, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.hero-card h2 {
  color: #ffffff;
}

.hero-card > p:not(.mini-label) {
  color: rgba(255, 255, 255, 0.90);
}

.contact-mini a {
  background: rgba(0, 0, 0, 0.24);
  border-color: rgba(255, 216, 77, 0.13);
}

.contact-mini .icon {
  background: rgba(255, 216, 77, 0.15);
  color: var(--logo-gold);
}

.contact-mini small {
  color: var(--logo-gold);
}

.contact-mini strong {
  color: #ffffff;
}

/* ---------- Buttons ---------- */

.btn-primary {
  background: linear-gradient(
    135deg,
    #FFE978 0%,
    var(--logo-gold) 50%,
    var(--logo-gold-deep) 100%
  );
  color: #101212;
  box-shadow: 0 12px 30px rgba(255, 216, 77, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFF09A, #FFE05C);
  box-shadow: 0 16px 38px rgba(255, 216, 77, 0.30);
}

.btn-secondary {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  color: #101212;
  background: var(--logo-gold);
  border-color: var(--logo-gold);
}

/* ---------- Why Us ---------- */

.why-us {
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      var(--logo-blue) 0%,
      var(--logo-blue-deep) 35%,
      var(--logo-blue-dark) 58%,
      var(--logo-black) 100%
    );
}

.why-us .eyebrow,
.why-item > span {
  color: var(--logo-gold);
}

.why-panel h2,
.why-item h3 {
  color: #ffffff;
}

.why-panel > p:last-child {
  color: rgba(255, 255, 255, 0.92);
}

.why-item p {
  color: rgba(255, 255, 255, 0.84);
}

.why-item {
  border-bottom-color: rgba(255, 216, 77, 0.20);
}

/* ---------- CTA ---------- */

.cta-strip {
  color: #101212;
  background: linear-gradient(
    135deg,
    #FFE978 0%,
    var(--logo-gold) 50%,
    var(--logo-gold-deep) 100%
  );
}

.cta-strip .eyebrow {
  color: rgba(16, 18, 18, 0.70);
}

/* ---------- Reviews ---------- */

.review-summary {
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--logo-blue) 0%,
    var(--logo-blue-deep) 48%,
    var(--logo-black) 100%
  );
  border: 1px solid rgba(255, 216, 77, 0.14);
}

.review-rating > strong {
  color: #ffffff;
}

.review-rating span,
.review-summary .review-stars {
  color: var(--logo-gold);
}

.review-summary > p {
  color: rgba(255, 255, 255, 0.90);
}

.review-stars {
  color: var(--logo-gold);
}

/* ---------- Footer ---------- */

footer {
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(
    180deg,
    var(--logo-blue-dark) 0%,
    var(--logo-black) 65%,
    #080909 100%
  );
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.80);
}

.footer-links a,
.footer-contact a {
  color: #ffffff;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--logo-gold);
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.70);
  border-top-color: rgba(255, 216, 77, 0.12);
}

.floating-call {
  color: #101212;
  background: linear-gradient(135deg, #FFE978, var(--logo-gold));
}

/* ---------- Mobile ---------- */

@media (max-width: 820px) {
  .main-nav {
    background: linear-gradient(
      180deg,
      var(--logo-blue) 0%,
      var(--logo-blue-deep) 42%,
      var(--logo-blue-dark) 68%,
      var(--logo-black) 100%
    );
  }

  .main-nav a {
    color: #ffffff;
  }

  .main-nav a:hover {
    color: var(--logo-gold);
  }
}

