:root {
  --charcoal: #070707;
  --ink: #161616;
  --soft-ink: #55504a;
  --gold: #f2b10c;
  --gold-dark: #bf7900;
  --cream: #f7f6f3;
  --stone: #e7e2da;
  --white: #ffffff;
  --line: rgba(18, 18, 18, .12);
  --shadow: 0 16px 42px rgba(0, 0, 0, .10);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  background: rgba(7, 7, 7, .95);
  backdrop-filter: blur(14px);
  color: var(--white);
}

.nav {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  width: 246px;
  min-width: 206px;
}

.logo img {
  width: auto;
  height: 54px;
  max-width: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .84rem;
  font-weight: 700;
  color: #efefef;
}

.nav-links a {
  opacity: .9;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
  text-decoration: none;
  padding: 4px 6px;
  white-space: nowrap;
}

.header-phone-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  font-weight: 600;
  white-space: nowrap;
}

.header-phone-number {
  font-size: 18px;
  font-weight: 800;
  color: var(--white, #ffffff);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header-phone:hover .header-phone-number {
  color: var(--gold, #f2b10c);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  border-radius: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: #080808;
}

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

.btn-secondary {
  border-color: rgba(255, 255, 255, .26);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--charcoal);
  border-color: rgba(0, 0, 0, .08);
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--charcoal);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .58) 34%, rgba(0, 0, 0, .16) 68%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-top: 20px;
  font-size: clamp(2.45rem, 5vw, 4.95rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.8rem, 3.35vw, 3.05rem);
  font-weight: 900;
}

h3 {
  font-size: 1.18rem;
  font-weight: 900;
}

p {
  margin: 0;
}

.hero p {
  max-width: 610px;
  margin-top: 22px;
  color: #efefef;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

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

.trust-bar {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 40px));
  margin: -36px auto 0;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .10);
  border-radius: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}

.trust-item {
  min-height: 92px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 10px;
  align-content: center;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item b {
  color: var(--gold-dark);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.trust-item span {
  font-size: .92rem;
  font-weight: 850;
  line-height: 1.25;
}

.section {
  padding: 78px 0;
}

.section.dark {
  background: #090909;
  color: var(--white);
}

.section.dark p,
.section.dark li {
  color: #d7d7d7;
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 600px;
  color: var(--soft-ink);
}

.dark .section-head p {
  color: #d7d7d7;
}

.offer-strip {
  margin-top: 58px;
  background: var(--charcoal);
  color: var(--white);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.offer-strip .container {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 22px 0;
}

.offer-strip h2 {
  font-size: clamp(1.45rem, 2.45vw, 2.15rem);
}

.offer-strip p {
  margin-top: 10px;
  color: #d8d8d8;
}

.note {
  color: #7b7168;
  font-size: .88rem;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.service-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 0;
  display: grid;
  align-content: space-between;
}

.dark .service,
.dark .service strong {
  color: var(--ink);
}

.service::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.feature-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #090909;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .10);
}

.feature-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

.feature-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.feature-slide img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.feature-slide-copy {
  padding: clamp(34px, 5vw, 72px);
  display: grid;
  align-content: center;
  justify-items: start;
  background: linear-gradient(135deg, #090909, #171717);
}

.feature-slide-copy p {
  margin-top: 18px;
  color: #d6d6d6;
  max-width: 520px;
}

.feature-slide-copy .btn {
  margin-top: 30px;
}

.feature-slider-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  background: rgba(0, 0, 0, .66);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.slider-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .34);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--gold);
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  min-height: 560px;
  background: var(--white);
  border: 1px solid var(--line);
}

.dark .editorial-split {
  background: #101010;
  border-color: rgba(255, 255, 255, .14);
}

.dark .editorial-copy {
  color: var(--white);
}

.dark .editorial-copy p {
  color: #d6d6d6;
}

.editorial-split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.editorial-copy {
  padding: clamp(32px, 5vw, 68px);
  display: grid;
  align-content: center;
}

.editorial-copy p {
  margin-top: 18px;
  color: var(--soft-ink);
  max-width: 620px;
}

.editorial-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #111;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 12px solid rgba(255, 255, 255, .10);
  pointer-events: none;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.proof {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof b {
  display: block;
  color: var(--gold-dark);
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 8px;
}

.proof span {
  color: var(--soft-ink);
  font-weight: 800;
}

.package-board {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #0d0d0d;
}

.package-board .card {
  box-shadow: none;
  border-color: rgba(255, 255, 255, .12);
}

.package-board-media {
  min-height: 100%;
  overflow: hidden;
}

.package-board-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-list {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
}

.package-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.package-line:last-child {
  border-bottom: 0;
}

.package-line h3 {
  color: var(--white);
}

.package-line p {
  margin-top: 8px;
  color: #cfcfcf;
}

.package-line strong {
  color: var(--gold);
  font-size: 1.35rem;
  white-space: nowrap;
}

.image-band {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  min-height: 460px;
  background: #0b0b0b;
  color: var(--white);
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band-content {
  padding: clamp(28px, 4vw, 54px);
  display: grid;
  align-content: center;
}

.image-band-content p {
  color: #d5d5d5;
  margin-top: 16px;
}

.material-showcase {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.material-showcase img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.material-panel {
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  align-content: center;
}

.material-panel p {
  margin-top: 16px;
  color: var(--soft-ink);
}

.page-hero.hero-offers {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .42)), url("assets/brochure-packages.png");
}

.page-hero.hero-process {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .42)), url("assets/design-consultation.png");
}

.page-hero.hero-install {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .42)), url("assets/installation-detail.png");
}

.page-hero.hero-materials {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .42)), url("assets/materials-flatlay.png");
}

.card {
  border-radius: 0;
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .075);
}

.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

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

.card-body {
  padding: 22px;
}

.price {
  margin: 10px 0 12px;
  color: var(--gold-dark);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.muted {
  color: var(--soft-ink);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 0;
  background: #fff4d5;
  color: #6d4600;
  font-size: .78rem;
  font-weight: 850;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 26px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.image-stack img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .12);
}

.image-stack img:first-child {
  margin-top: 38px;
}

.style-card {
  position: relative;
  min-height: 250px;
  border-radius: 0;
  overflow: hidden;
  color: var(--white);
  display: grid;
  align-items: end;
  padding: 20px;
  background: var(--charcoal);
}

.style-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
  transition: transform .35s ease, opacity .35s ease;
}

.style-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .86));
}

.style-card:hover img {
  opacity: .88;
  transform: scale(1.04);
}

.style-card strong,
.style-card span {
  position: relative;
  z-index: 1;
}

.style-card strong {
  font-size: 1.18rem;
}

.style-card span {
  color: #e6e6e6;
  margin-top: 6px;
}

.project-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.stars {
  color: var(--gold-dark);
  letter-spacing: .08em;
  font-weight: 900;
}

.review {
  padding: 24px;
}

.review blockquote {
  margin: 14px 0 18px;
  color: var(--soft-ink);
}

.review cite {
  font-style: normal;
  font-weight: 800;
}

.review.has-photo {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.review-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.review-body {
  padding: 24px;
}

.review-body blockquote {
  margin: 14px 0 18px;
  color: var(--soft-ink);
}

.reviews-text {
  margin-top: 24px;
}

.reviews-text .review {
  display: flex;
  flex-direction: column;
}

.reviews-text .review blockquote {
  flex: 1 0 auto;
}

.reviews-text .review cite {
  margin-top: auto;
}

.project-quote {
  margin: 16px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--gold-dark);
  background: var(--cream, #f7f6f3);
  border-radius: 0 10px 10px 0;
}

.project-quote .stars {
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}

.project-quote blockquote {
  margin: 0 0 10px;
  color: var(--soft-ink);
  font-size: .95rem;
  line-height: 1.5;
}

.project-quote cite {
  font-style: normal;
  font-weight: 800;
  font-size: .9rem;
}

.steps {
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 24px 24px 24px 72px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 24px;
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: var(--gold);
  color: #17110b;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 1.05rem;
}

.faq p {
  margin-top: 10px;
  color: var(--soft-ink);
}

.page-hero {
  min-height: 390px;
  padding: 84px 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .42)), url("assets/hero-kitchen.png") center / cover;
  color: var(--white);
  display: grid;
  align-items: center;
}

.page-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: #e8e8e8;
  font-size: 1.08rem;
}

.banner {
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  background: #fffaf0;
  border-radius: 0;
}

.offer-detail {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.offer-detail .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-detail .section-actions {
  margin-top: auto;
  padding-top: 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-btn {
  min-height: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 0;
  padding: 7px 14px;
  cursor: pointer;
  font-weight: 850;
}

.filter-btn.active {
  background: var(--charcoal);
  color: var(--white);
}

.before-after {
  position: relative;
  min-height: 240px;
  border-radius: 0;
  overflow: hidden;
  background: var(--stone);
}

.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after .before {
  filter: grayscale(.85) contrast(.86) brightness(.72);
  clip-path: inset(0 50% 0 0);
}

.before-after input {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 18px;
  width: 86%;
  z-index: 3;
  accent-color: var(--gold);
}

.ba-line {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 2;
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .16);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.timeline span {
  min-height: 76px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 0;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 850;
}

.form-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .10);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: .86rem;
  font-weight: 850;
  color: #39342d;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8cec2;
  border-radius: 0;
  padding: 11px 12px;
  background: #ffffff;
  color: var(--ink);
}

textarea {
  min-height: 122px;
  resize: vertical;
}

.success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 0;
  background: #eef6ea;
  color: #244b1b;
  font-weight: 750;
}

.success.visible {
  display: block;
}

.estimator-result {
  margin-top: 18px;
  padding: 18px;
  border-radius: 0;
  background: #fffaf0;
  border: 1px solid #edd3af;
}

.footer {
  padding: 48px 0 80px;
  background: #060606;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 28px;
}

.footer a,
.footer p {
  color: #d8d8d8;
}

.footer nav {
  display: grid;
  gap: 9px;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .16);
  background: var(--charcoal);
}

.mobile-cta a {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 850;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.mobile-cta a:last-child {
  background: var(--gold);
  color: #18110a;
  border-right: 0;
}

@media (max-width: 1060px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 18px 24px 24px;
    background: rgba(17, 17, 15, .98);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .trust-bar,
  .service-grid,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    border-bottom: 1px solid var(--line);
  }

  .split,
  .offer-strip .container,
  .footer-grid,
  .feature-slide,
  .editorial-split,
  .editorial-split.reverse,
  .package-board,
  .image-band,
  .material-showcase {
    grid-template-columns: 1fr;
  }

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

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

  .package-board-media,
  .editorial-media,
  .feature-slide img {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 58px;
  }

  .header-actions .btn {
    display: none;
  }

  .header-phone-label {
    display: none;
  }

  .header-phone-number {
    font-size: 17px;
  }

  .header-phone {
    padding: 2px 4px;
  }

  .hero {
    min-height: 600px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .6));
  }

  .trust-bar,
  .grid-2,
  .grid-3,
  .grid-4,
  .service-grid,
  .timeline,
  .form-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .feature-slider {
    min-height: 0;
  }

  .feature-slide {
    grid-template-columns: 1fr;
  }

  .feature-slide img {
    min-height: 260px;
    height: 260px;
  }

  .feature-slide-copy {
    padding: 28px 22px 84px;
  }

  .feature-slider-controls {
    left: 22px;
    right: auto;
    bottom: 22px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    display: grid;
  }

  .trust-bar {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .trust-item {
    min-height: auto;
    padding: 18px 20px;
  }

  .hero-content {
    width: min(100% - 32px, 1240px);
    padding: 64px 0 72px;
  }

  .nav {
    width: min(100% - 28px, 1240px);
  }

  .logo {
    width: 198px;
    min-width: 176px;
  }

  .logo img {
    height: 48px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:first-child {
    height: 250px;
    margin-top: 0;
  }

  .form-panel {
    padding: 20px;
  }

  .editorial-copy,
  .image-band-content,
  .material-panel {
    padding: 26px 22px;
  }

  .editorial-media,
  .package-board-media,
  .material-showcase img {
    min-height: 280px;
  }

  .package-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mobile-cta {
    display: grid;
  }
}

/* ---- Brochure / ghost button ---- */
.btn-ghost {
  background: rgba(255, 255, 255, .06);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost:hover {
  background: var(--gold);
  color: #0a0a0a;
}

/* ---- Hero all-in strapline ---- */
.hero-allin {
  max-width: 620px;
  margin-top: 18px;
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(0, 0, 0, .34);
  color: #fff;
  font-size: .98rem;
  line-height: 1.45;
}

.hero-allin b {
  color: var(--gold);
}

/* ---- Everything-in-one-price graphic ---- */
.allin-section {
  background: var(--stone);
}

.allin {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 26px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.allin-parts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.allin-chip {
  padding: 9px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-weight: 850;
  font-size: .92rem;
}

.allin-plus {
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 1.1rem;
}

.allin-equals {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold-dark);
  line-height: 1;
}

.allin-total {
  display: grid;
  gap: 4px;
  padding: 22px 28px;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  min-width: 240px;
}

.allin-total-label {
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #cfc8bb;
}

.allin-total strong {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.allin-total-note {
  font-size: .82rem;
  color: #d8d3ca;
}

.allin-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 6px 12px;
  background: #fff4d5;
  color: #6d4600;
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.allin-flag::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 900;
}

/* ---- Hidden cost / pricing comparison ---- */
.cost-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cost-card {
  padding: 26px;
  background: #131313;
  border: 1px solid rgba(255, 255, 255, .12);
}

.cost-card.cost-pk {
  background: #14120b;
  border-color: rgba(242, 177, 12, .5);
  box-shadow: 0 0 0 1px rgba(242, 177, 12, .3);
}

.cost-tag {
  display: inline-block;
  padding: 5px 11px;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .1);
  color: #e6e0d5;
}

.cost-tag-gold {
  background: var(--gold);
  color: #0a0a0a;
}

.cost-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.cost-head span {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #b7b1a6;
}

.cost-head b {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
}

.cost-pk .cost-head b {
  color: var(--gold);
}

.cost-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.cost-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: .94rem;
  color: #dcd7cd !important;
}

.cost-list em {
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.cost-trap .cost-list em {
  color: #ff9d8a;
}

.cost-pk .cost-list em {
  color: #8ee6a0;
}

.cost-foot {
  margin-top: 18px;
  padding: 14px;
  text-align: center;
  font-weight: 900;
  font-size: 1.02rem;
}

.cost-foot-bad {
  background: rgba(255, 90, 60, .14);
  color: #ff9d8a;
  border: 1px solid rgba(255, 90, 60, .3);
}

.cost-foot-good {
  background: rgba(242, 177, 12, .16);
  color: var(--gold);
  border: 1px solid rgba(242, 177, 12, .4);
}

/* ---- Competitor comparison table ---- */
.compare-table {
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1.15fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-cell {
  padding: 16px 18px;
  font-size: .94rem;
  font-weight: 750;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
}

.compare-cell:last-child {
  border-right: 0;
}

.compare-feature {
  font-weight: 850;
  background: var(--cream);
  color: var(--ink);
}

.compare-head {
  background: var(--charcoal);
}

.compare-head .compare-cell {
  display: grid;
  gap: 3px;
  align-content: center;
  color: var(--white);
  border-right-color: rgba(255, 255, 255, .12);
}

.compare-head .compare-cell strong {
  font-size: 1rem;
}

.compare-head .compare-cell span {
  font-size: .76rem;
  font-weight: 700;
  color: #b7b1a6;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.compare-head .compare-feature {
  background: #000;
  color: #b7b1a6;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.compare-col-pk {
  background: #fffaf0;
  box-shadow: inset 0 0 0 2px rgba(242, 177, 12, .55);
}

.compare-head .compare-col-pk {
  background: var(--gold);
}

.compare-head .compare-col-pk strong,
.compare-head .compare-col-pk span {
  color: #0a0a0a;
}

.compare-cell i {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
  font-size: .82rem;
  flex-shrink: 0;
}

.compare-cell i.ok {
  background: rgba(46, 160, 80, .16);
  color: #1f8a44;
}

.compare-cell i.no {
  background: rgba(200, 60, 40, .14);
  color: #c0392b;
}

.compare-cell i.part {
  background: rgba(191, 121, 0, .16);
  color: var(--gold-dark);
}

/* ---- Colour swatches ---- */
.swatches {
  margin: 4px 0 16px;
}

.swatch-label {
  display: block;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--soft-ink);
  margin-bottom: 9px;
}

.swatch-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sw);
  border: 1px solid rgba(0, 0, 0, .18);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
  cursor: pointer;
  transition: transform .15s ease;
}

.swatch:hover {
  transform: scale(1.14);
}

.swatch-more {
  font-size: .8rem;
  font-weight: 850;
  color: var(--gold-dark);
}

/* ---- Review badge ---- */
.review-badge {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.review-badge .stars {
  font-size: 1.15rem;
}

.review-badge span {
  font-size: .84rem;
  font-weight: 800;
  color: var(--soft-ink);
}

/* ---- Responsive for new components ---- */
@media (max-width: 900px) {
  .allin {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .allin-parts {
    justify-content: center;
  }

  .allin-equals {
    transform: rotate(90deg);
  }

  .allin-total {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .cost-compare {
    grid-template-columns: 1fr;
  }

  .compare-row {
    grid-template-columns: repeat(3, 1fr);
    padding: 6px 0;
  }

  .compare-feature {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .compare-cell {
    font-size: .82rem;
    padding: 12px 12px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 6px;
  }

  .compare-head .compare-cell strong {
    font-size: .84rem;
  }

  .compare-head .compare-cell span {
    display: none;
  }

  .review-badge {
    justify-items: start;
    text-align: left;
  }
}

/* ---- Floating WhatsApp button ---- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
  transition: transform .18s ease, box-shadow .18s ease;
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .34);
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .5);
  animation: waPulse 2.4s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 720px) {
  .wa-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 74px; /* clear the mobile CTA bar */
  }
}
