:root {
  --paper: #f7f5f2;
  --warm: #efe6dc;
  --gold: #d6b08a;
  --gold-dark: #b98149;
  --soft-gray: #c8c4cc;
  --ink: #1a1a1a;
  --white: #ffffff;
  --muted: #66636a;
  --line: rgba(26, 26, 26, 0.12);
  --shadow: 0 24px 70px rgba(26, 26, 26, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 112px;
  padding: 18px clamp(22px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(26, 26, 26, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  width: min(290px, 40vw);
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 15px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold-dark);
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
}

svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(126, 82, 39, 0.18);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.btn-outline {
  color: var(--ink);
  background: var(--white);
  border-color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section-pad {
  padding: clamp(72px, 8vw, 124px) clamp(22px, 5vw, 92px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: calc(100vh - 112px);
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 18%, rgba(214, 176, 138, 0.14), transparent 22%),
    linear-gradient(90deg, var(--paper) 0 48%, var(--warm) 48% 100%);
}

.hero::before {
  position: absolute;
  left: -80px;
  top: 110px;
  width: 230px;
  height: 230px;
  content: "";
  opacity: 0.38;
  background-image: radial-gradient(var(--gold) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 680px;
  padding-top: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding: 12px 18px;
  color: #935f2f;
  border: 1px solid rgba(185, 129, 73, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.12;
  font-weight: 800;
}

.hero h1 strong {
  display: block;
  color: var(--gold-dark);
}

.hero p {
  max-width: 620px;
  margin: 26px 0 0;
  color: #47444a;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  color: #5c5960;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  min-height: 650px;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center;
}

.hero-card {
  position: absolute;
  right: clamp(24px, 6vw, 95px);
  bottom: 72px;
  width: min(330px, calc(100% - 48px));
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-card span,
.section-heading span,
.split-copy span,
.areas span,
.final-cta span {
  display: inline-block;
  width: 34px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--gold-dark);
}

.hero-card h2 {
  max-width: 220px;
  margin: 0;
  font-size: 28px;
  line-height: 1.18;
}

.hero-card p {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.trust-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(1480px, calc(100% - 72px));
  margin: -72px auto 0;
  padding: 44px 46px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-bar article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  align-items: center;
  padding: 0 30px;
  border-right: 1px solid var(--line);
}

.trust-bar article:first-child {
  padding-left: 0;
}

.trust-bar article:last-child {
  padding-right: 0;
  border-right: 0;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: var(--gold-dark);
  border-radius: 50%;
  background: var(--warm);
  font-weight: 800;
}

.trust-bar h2,
.service-card h3,
.why h3,
.process h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  text-transform: uppercase;
}

.trust-bar p,
.service-card p,
.why p,
.process p {
  margin: 10px 0 0;
  color: #535057;
  line-height: 1.55;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading span,
.split-copy span,
.areas span,
.final-cta span {
  width: auto;
  height: auto;
  margin-bottom: 12px;
  color: var(--gold-dark);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2,
.split-copy h2,
.areas h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
}

.section-heading p {
  margin: 18px auto 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.compact {
  max-width: 760px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.07);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  padding-right: 26px;
  padding-left: 26px;
}

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

.service-card p {
  margin-bottom: 28px;
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  padding: 0 clamp(22px, 5vw, 92px) clamp(72px, 8vw, 124px);
  background: var(--paper);
}

.split-image img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  content: "\2713";
  color: var(--white);
  border-radius: 50%;
  background: var(--gold-dark);
  font-size: 13px;
}

.why {
  background: var(--warm);
}

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

.why-grid article,
.process-row article {
  padding: 30px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.process {
  padding: clamp(72px, 8vw, 112px) clamp(22px, 5vw, 92px);
  background: var(--white);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-row b {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 30px;
}

.portfolio {
  background: var(--paper);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  gap: 24px;
}

.portfolio-grid figure {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(26, 26, 26, 0.12);
}

.portfolio-grid .wide {
  grid-row: span 2;
  min-height: 704px;
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-grid figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(300px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  padding: clamp(72px, 8vw, 112px) clamp(22px, 5vw, 92px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 22%, rgba(214, 176, 138, 0.14), transparent 28%),
    var(--paper);
}

.reviews-summary {
  position: relative;
  z-index: 2;
}

.reviews-kicker {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.reviews-rule {
  width: 56px;
  height: 2px;
  margin: 18px 0 34px;
  background: var(--gold-dark);
}

.reviews-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.reviews-rating strong {
  font-size: clamp(70px, 8vw, 112px);
  line-height: 0.9;
  font-weight: 800;
}

.reviews-rating span,
.stars {
  color: var(--gold-dark);
  font-size: 28px;
  letter-spacing: 0;
}

.reviews-based {
  margin: 22px 0 34px;
  color: #545158;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
}

.reviews-based b {
  color: #4285f4;
  font-weight: 800;
}

.reviews-summary h2 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.22;
}

.reviews-copy {
  max-width: 520px;
  margin: 24px 0 42px;
  color: #4f4c52;
  font-size: 18px;
  line-height: 1.7;
}

.reviews-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  gap: 0;
}

.reviews-metrics article {
  display: grid;
  gap: 8px;
  padding: 0 22px;
  text-align: center;
  border-right: 1px solid rgba(214, 176, 138, 0.55);
}

.reviews-metrics article:first-child {
  padding-left: 0;
}

.reviews-metrics article:last-child {
  padding-right: 0;
  border-right: 0;
}

.reviews-metrics strong {
  color: var(--gold-dark);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.reviews-metrics span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.reviews-slider {
  position: relative;
  width: 100%;
  padding: 34px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 80px rgba(26, 26, 26, 0.1);
}

.reviews-slider::before,
.reviews-slider::after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 72px;
  height: 100%;
  content: "";
  pointer-events: none;
}

.reviews-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
}

.reviews-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: reviewMarquee 44s linear infinite;
  will-change: transform;
}

.review-card {
  position: relative;
  display: flex;
  flex: 0 0 clamp(280px, 24vw, 320px);
  min-height: 420px;
  flex-direction: column;
  padding: 34px 30px 32px;
  border: 1px solid rgba(214, 176, 138, 0.35);
  border-radius: 20px;
  background: linear-gradient(180deg, var(--white), rgba(239, 230, 220, 0.46));
  box-shadow: 0 18px 48px rgba(126, 82, 39, 0.12);
}

.quote-mark {
  height: 54px;
  color: rgba(214, 176, 138, 0.34);
  font-family: Georgia, serif;
  font-size: 94px;
  line-height: 0.85;
}

.review-card .stars {
  margin: 10px 0 20px;
  font-size: 23px;
}

.review-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  text-transform: none;
}

.review-city {
  display: block;
  margin-top: 8px;
  color: #5a565d;
  font-size: 15px;
  font-weight: 600;
}

.review-city::after {
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 18px;
  content: "";
  background: var(--gold-dark);
}

.review-card p {
  margin: 28px 0 0;
  color: #27242a;
  font-size: 16px;
  line-height: 1.75;
}

@keyframes reviewMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

.areas {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  padding: clamp(72px, 8vw, 112px) clamp(22px, 5vw, 92px);
  background: var(--warm);
}

.areas ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.areas li {
  padding: 18px 22px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: clamp(72px, 8vw, 112px) clamp(22px, 5vw, 92px);
  padding: clamp(38px, 5vw, 64px);
  color: var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(26, 26, 26, 0.88), rgba(26, 26, 26, 0.58)),
    url("assets/hero-kitchen.png") center/cover;
}

.final-cta span {
  color: var(--gold);
}

.final-cta p {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.final-cta .btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 32px clamp(22px, 5vw, 92px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: min(310px, 100%);
  height: auto;
  object-fit: contain;
}

.site-footer p {
  margin: 10px 0 0;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  color: #555158;
  font-weight: 700;
}

.site-footer > a {
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-header.nav-open .main-nav {
    flex-wrap: wrap;
    padding-top: 14px;
  }

  .site-header.nav-open .header-actions {
    padding-bottom: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-right: clamp(22px, 5vw, 92px);
    background: var(--paper);
  }

  .hero-media {
    min-height: 520px;
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .hero-media > img {
    min-height: 520px;
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 34px;
  }

  .trust-bar article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px;
  }

  .trust-bar article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service-grid,
  .why-grid,
  .process-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .reviews-summary {
    max-width: 720px;
  }

  .reviews-slider {
    width: calc(100vw - 44px);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 84px;
    padding: 14px 18px;
  }

  .brand {
    width: min(210px, 68vw);
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .phone-link {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 42px 18px 58px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .eyebrow {
    gap: 8px;
    font-size: 11px;
  }

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

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

  .hero-media,
  .hero-media > img {
    min-height: 390px;
  }

  .hero-card {
    right: 16px;
    bottom: 16px;
    padding: 22px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    padding: 16px;
  }

  .trust-bar article {
    grid-template-columns: 62px 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .trust-bar article:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .icon-box {
    width: 62px;
    height: 62px;
  }

  .section-pad,
  .process,
  .reviews,
  .areas {
    padding-right: 18px;
    padding-left: 18px;
  }

  .service-grid,
  .why-grid,
  .process-row,
  .areas,
  .areas ul,
  .split-section,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .reviews {
    gap: 34px;
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .reviews-rating {
    gap: 14px;
  }

  .reviews-rating span {
    font-size: 22px;
  }

  .reviews-metrics {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reviews-metrics article {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(214, 176, 138, 0.45);
  }

  .reviews-metrics article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .reviews-slider {
    width: calc(100vw - 36px);
    padding: 24px 0;
    border-radius: 18px;
  }

  .reviews-slider::before,
  .reviews-slider::after {
    width: 34px;
  }

  .reviews-track {
    gap: 16px;
    animation-duration: 38s;
  }

  .review-card {
    flex-basis: min(300px, calc(100vw - 80px));
    min-height: 390px;
    padding: 28px 24px;
  }

  .split-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .portfolio-grid .wide,
  .portfolio-grid figure {
    min-height: 330px;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
    margin-right: 18px;
    margin-left: 18px;
  }

  .final-cta .btn {
    width: 100%;
  }

  .final-cta-actions {
    width: 100%;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}
