/* ==========================================================================
   6868 PAINT & RENOVATION — main.css
   Mobile-first. Vanilla CSS only. No preprocessor, no build step.
   ========================================================================== */

:root {
  /* Brand palette (matches reference site) */
  --color-cream: #efe8db;
  --color-cream-deep: #e3dac8;
  --color-brown-900: #170c06;
  --color-brown-800: #2b1508;
  --color-brown-700: #3d1f0f;
  --color-gold-300: #e8c37a;
  --color-gold-400: #d9a441;
  --color-gold-500: #b8791f;
  --color-white: #ffffff;
  --color-text-dark: #241407;
  --color-text-muted: #5c4c3c;
  --color-text-light: #f6efe3;
  --color-border-light: #d8cdb8;

  --font-heading: "Arial Black", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Segoe UI", Helvetica, Arial, sans-serif;

  --container-width: 1180px;
  --radius: 4px;
  --shadow-soft: 0 2px 10px rgba(23, 12, 6, 0.15);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85em 1.6em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

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

.btn-primary {
  background: var(--color-white);
  color: var(--color-brown-800);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-cream);
}

.btn-secondary {
  background: var(--color-gold-400);
  color: var(--color-brown-900);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--color-gold-300);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-gold-400);
  color: var(--color-text-light);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--color-gold-400);
  color: var(--color-brown-900);
}

/* ---------- Site header ---------- */
.site-header {
  background: var(--color-cream);
  border-bottom: 4px solid var(--color-brown-800);
  position: relative;
  z-index: 50;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: var(--container-width);
  margin: 0 auto;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.brand__logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-brown-800);
  letter-spacing: 0.02em;
}

.brand__tagline {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-500);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-brown-800);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-brown-800);
  position: relative;
  transition: transform 0.15s ease;
}

.nav-toggle__bar::before {
  content: "";
  position: absolute;
  top: -6px;
}

.nav-toggle__bar::after {
  content: "";
  position: absolute;
  top: 6px;
}

.site-nav {
  display: none;
  width: 100%;
  order: 3;
}

.site-nav.is-open {
  display: block;
}

.site-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border-light);
  margin-top: 0.75rem;
  padding-top: 0.5rem;
}

.site-nav__list a {
  display: block;
  padding: 0.65rem 0.25rem;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  border-bottom: 1px solid var(--color-border-light);
}

.site-nav__list a[aria-current="page"] {
  color: var(--color-gold-500);
  font-weight: bold;
}

.header-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    order: 2;
    width: auto;
  }

  .site-nav__list {
    flex-direction: row;
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    gap: 1.5rem;
  }

  .site-nav__list a {
    padding: 0.3rem 0;
    border-bottom: none;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    order: 4;
  }

  .header-cta__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .header-cta__label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--color-text-light);
  background: linear-gradient(180deg, rgba(23, 12, 6, 0.55), rgba(23, 12, 6, 0.75)),
    var(--color-brown-800);
  background-size: cover;
  background-position: center;
  padding: 3.5rem 0;
  text-align: center;
}

.hero__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero h1 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.05rem;
  color: var(--color-cream);
}

.hero .btn {
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .hero {
    padding: 6rem 0;
  }

  .hero h1 {
    font-size: 2.75rem;
  }
}

/* ---------- Sections ---------- */
.section {
  padding: 3rem 0;
}

.section-dark {
  background: #000;
  color: var(--color-text-light);
}

.section-cream {
  background: var(--color-cream);
}

.section-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.75rem;
}

.section-dark .section-title,
.section-dark h2,
.section-dark h3 {
  color: var(--color-text-light);
}

/* ---------- Split layout (image + panel) ---------- */
.split {
  display: grid;
  gap: 0;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

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

.split__panel {
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split__panel ul {
  list-style: disc;
  margin: 1rem 0 1.5rem 1.25rem;
}

.split__panel li {
  margin-bottom: 0.5rem;
}

/* ---------- Feature strip (icons) ---------- */
.feature-strip {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-brown-800);
}

@media (min-width: 700px) {
  .feature-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-strip__item {
  background: var(--color-white);
  padding: 2rem 1rem;
  text-align: center;
}

.feature-strip__item:nth-child(even) {
  background: var(--color-cream-deep);
}

.feature-strip__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
}

.feature-strip__label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-brown-800);
}

/* ---------- Cards / grids ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card,
.project-card {
  background: var(--color-white);
  color: var(--color-text-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-card__body {
  padding: 1.25rem;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--color-gold-500);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-card__label {
  text-align: center;
  padding: 0.6rem;
  background: var(--color-cream-deep);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---------- Before / after ---------- */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--color-brown-900);
  border-radius: var(--radius);
  overflow: hidden;
}

.before-after figure {
  margin: 0;
  position: relative;
}

.before-after figcaption {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--color-brown-900);
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25em 0.6em;
  border-radius: var(--radius);
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea {
  font: inherit;
  padding: 0.7em 0.85em;
  border: none;
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-text-dark);
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  outline: 2px solid #c0392b;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85em 1em;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.form-status[hidden] {
  display: none;
}

.form-status--success {
  background: #234d20;
  color: var(--color-text-light);
}

.form-status--error {
  background: #5c1f16;
  color: var(--color-text-light);
}

/* ---------- Map ---------- */
.map-embed {
  border: 0;
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
}

/* ---------- Site footer ---------- */
.site-footer {
  background: #000;
  color: var(--color-text-light);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-grid h2 {
  color: var(--color-gold-400);
  font-size: 1.4rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
}

.footer-contact-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav a {
  display: inline-block;
  padding: 0.3rem 0;
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  gap: 0.9rem;
  margin: 1rem 0;
}

.footer-social a {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(246, 239, 227, 0.2);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ---------- Utility ---------- */
.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: 2rem;
}

/* ==========================================================================
   Reference-inspired editorial home page
   ========================================================================== */

:root {
  --color-cream: #f1eee8;
  --color-cream-deep: #e6e0d6;
  --color-brown-900: #11110f;
  --color-brown-800: #1c1c19;
  --color-brown-700: #2c2b26;
  --color-gold-300: #e6c67a;
  --color-gold-400: #d1a94f;
  --color-gold-500: #a97d25;
  --color-text-dark: #191916;
  --color-text-muted: #68655e;
  --color-text-light: #f7f4ed;
  --font-heading: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --container-width: 1240px;
  --radius: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-cream);
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
}

.site-header {
  background: rgba(247, 244, 237, 0.97);
  border-bottom: 1px solid rgba(25, 25, 22, 0.12);
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
}

.site-header__bar {
  min-height: 90px;
  max-width: 100%;
  padding: 0.75rem clamp(1.25rem, 4vw, 4.5rem);
  flex-wrap: wrap;
}

.brand__logo {
  width: 52px;
  height: 52px;
}

.brand__name {
  font-size: 1rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.brand__tagline {
  margin-top: 0.2rem;
  color: var(--color-text-muted);
  letter-spacing: 0.17em;
}

.site-nav__list a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.site-nav__list a[aria-current="page"] {
  color: var(--color-gold-500);
}

.header-cta {
  padding: 0.9rem 1.1rem;
  background: var(--color-brown-900);
  color: var(--color-white);
}

.header-cta__icon {
  filter: brightness(0) invert(1);
}

.header-cta__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.btn {
  border-radius: 0;
  padding: 1.05em 1.7em;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
}

.btn-gold {
  background: var(--color-gold-400);
  color: var(--color-brown-900);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--color-gold-300);
}

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

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--color-brown-700);
}

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--color-gold-300);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

/* ---------- Homepage hero ---------- */
.home-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - 90px);
  align-items: center;
  background-position: 66% center;
  background-size: cover;
  color: var(--color-white);
  isolation: isolate;
}

.home-hero__video {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.home-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(9, 10, 10, 0.34), rgba(9, 10, 10, 0.14) 62%),
    rgba(9, 10, 10, 0.16);
  content: "";
}

.home-hero__content {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(3rem, 7vh, 6rem) 1.25rem;
  text-align: center;
}

.home-hero h1 {
  max-width: none;
  margin: 0 auto clamp(1.2rem, 2.8vh, 2rem);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.home-hero__lead {
  max-width: 760px;
  margin: 0 auto clamp(1.6rem, 3.5vh, 2.8rem);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.25rem, 2vw, 2.15rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.home-hero .home-hero__button {
  display: inline-flex;
  width: min(300px, 82vw);
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: linear-gradient(180deg, #d9a624 0%, #9a6200 43%, #210707 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.72rem, 0.9vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.14em;
}

.home-hero .home-hero__button:hover,
.home-hero .home-hero__button:focus-visible {
  background: linear-gradient(180deg, #edc457 0%, #b47705 43%, #32100a 100%);
  transform: translateY(-2px);
}

.home-hero__button-icon {
  display: inline-grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 0.82rem;
  letter-spacing: 0;
  line-height: 1;
}

@media (min-width: 1200px) {
  .home-hero h1 {
    white-space: nowrap;
  }
}

.scroll-cue {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

/* ---------- Trust band ---------- */
.trust-bar {
  background: var(--color-brown-900);
  color: var(--color-white);
}

.trust-bar__grid {
  display: grid;
}

.trust-bar__item {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-bar__item strong {
  margin-bottom: 0.2rem;
  color: var(--color-gold-300);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.trust-bar__item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

/* ---------- Services split ---------- */
.home-services {
  position: relative;
  display: block;
  padding: clamp(3.5rem, 4.4vw, 5.625rem) clamp(1.25rem, 3.9vw, 5rem);
  background-color: #efefec;
  background-image: url("../images/backgrounds/services-texture.png");
  background-position: center;
  background-size: cover;
}

.home-services__card {
  display: grid;
  width: 100%;
  max-width: 1880px;
  min-height: clamp(520px, 37vw, 760px);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(84, 63, 47, 0.3);
}

.home-services__social {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(0.75rem, 1.2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
  transform: translateY(-50%);
}

.home-services__social a {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  opacity: 0.94;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.home-services__social a:hover,
.home-services__social a:focus-visible {
  opacity: 1;
  transform: scale(1.12);
}

.home-services__social img {
  width: 16px;
  height: 16px;
}

.home-services__image {
  min-width: 0;
  min-height: 100%;
}

.home-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-services__panel {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem);
  background: #351706;
  color: #fff;
}

.home-services__content {
  width: min(100%, 490px);
}

.home-services__content h2 {
  margin: 0 0 clamp(2.5rem, 5vw, 5rem);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.home-services__content ul {
  margin: 0 0 clamp(2.7rem, 5vw, 4.5rem) 1.1rem;
  padding: 0;
  list-style: disc;
}

.home-services__content li {
  margin-bottom: 0.75rem;
  padding-left: 0.15rem;
  color: rgba(255, 255, 255, 0.86);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.18rem);
  line-height: 1.35;
}

.home-services__button {
  display: inline-flex;
  min-width: 205px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  background: #fff;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.32);
  color: #393431;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.home-services__button:hover,
.home-services__button:focus-visible {
  background: #e3ddd7;
  transform: translateY(-2px);
}

@media (max-width: 850px) {
  .home-services__social {
    display: none;
  }

  .home-services__card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home-services__image {
    min-height: clamp(360px, 75vw, 560px);
  }

  .home-services__panel {
    min-height: 500px;
    padding: 3.5rem clamp(2rem, 9vw, 5rem);
  }

  .home-services__content h2 {
    margin-bottom: 2.5rem;
  }
}

/* ---------- About split ---------- */
.home-about {
  display: grid;
  background: var(--color-brown-900);
  color: var(--color-white);
}

.home-about__image {
  min-height: 420px;
}

.home-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%);
}

.home-about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7rem);
}

.home-about__content h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
}

.home-about__content > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
}

.home-about__content .btn {
  align-self: flex-start;
}

/* ---------- Projects ---------- */
.home-projects {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.section-heading-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-heading-row h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.project-showcase {
  display: grid;
  gap: 1rem;
}

.project-tile {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: var(--color-brown-700);
  color: var(--color-white);
}

.project-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 8, 0.84), transparent 58%);
  content: "";
}

.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-tile:hover img,
.project-tile:focus-visible img {
  transform: scale(1.035);
}

.project-tile > span {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.4rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
}

.project-tile strong {
  font-size: 1.25rem;
}

.project-tile small {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.78rem;
}

/* ---------- Reviews ---------- */
.reviews {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--color-brown-900);
  color: var(--color-white);
}

.reviews h2 {
  margin-bottom: 2.5rem;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.reviews__grid {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.reviews blockquote {
  margin: 0;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.reviews blockquote p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-family: Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.reviews cite {
  color: var(--color-gold-300);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Final CTA ---------- */
.quote-banner {
  padding: 3.5rem 0;
  background: var(--color-gold-400);
}

.quote-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.quote-banner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.quote-banner .eyebrow {
  margin-bottom: 0.75rem;
}

.site-footer {
  padding-top: 4rem;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.46);
}

@media (min-width: 700px) {
  .trust-bar__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-bar__item {
    padding-left: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
  }

  .section-heading-row,
  .quote-banner__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .project-showcase {
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: repeat(2, 260px);
  }

  .project-tile {
    min-height: 0;
  }

  .project-tile--large {
    grid-row: 1 / 3;
  }

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

  .reviews blockquote {
    padding: 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
  }

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

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

@media (min-width: 900px) {
  .home-services,
  .home-about {
    grid-template-columns: 42% 58%;
  }

  .home-about {
    grid-template-columns: 50% 50%;
  }

  .home-about__image {
    min-height: 720px;
  }
}

@media (max-width: 899px) {
  .site-header__bar {
    min-height: 72px;
  }

  .home-hero {
    min-height: calc(100svh - 72px);
    background-position: 62% center;
  }

  .home-hero::before {
    background:
      linear-gradient(0deg, rgba(9, 10, 10, 0.42), rgba(9, 10, 10, 0.2)),
      rgba(9, 10, 10, 0.12);
  }

  .home-hero__content {
    padding-right: 1.25rem;
  }

  .brand__logo {
    width: 44px;
    height: 44px;
  }

  .brand__name {
    font-size: 0.82rem;
  }
}

@media (max-width: 520px) {
  .brand__text {
    display: none;
  }

  .home-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    letter-spacing: -0.045em;
  }

  .home-hero__lead {
    font-size: clamp(1.05rem, 5.5vw, 1.45rem);
  }

  .home-hero .home-hero__button {
    width: min(280px, 82vw);
    min-height: 46px;
    padding-inline: 1.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .home-hero__button-icon {
    width: 23px;
    height: 23px;
    font-size: 0.82rem;
  }

  .scroll-cue span:first-child {
    display: none;
  }

  .service-list li {
    grid-template-columns: 44px 1fr;
    gap: 0.75rem;
  }

  .service-list div {
    grid-template-columns: 34px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Original Wix-style textured header
   Uses the supplied 6868 logo and supplied white texture artwork.
   ========================================================================== */

.site-header {
  position: relative;
  top: auto;
  border: 0;
  border-bottom: 12px solid #777775;
  background-color: #f3f2ee;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
    url("../images/header-texture.png");
  background-position: center;
  background-size: cover;
  box-shadow: 0 1px 8px rgba(56, 39, 25, 0.12);
  backdrop-filter: none;
}

.site-header__bar {
  width: 100%;
  max-width: 1600px;
  min-height: 150px;
  padding: 0 2rem;
  flex-wrap: nowrap;
  gap: clamp(0.75rem, 1.5vw, 1.75rem);
}

.brand {
  width: clamp(310px, 27vw, 420px);
  height: 138px;
  flex: 0 1 420px;
  justify-content: center;
  overflow: visible;
}

.brand__logo {
  width: 100%;
  max-width: 100%;
  height: 100%;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: none;
}

.brand__text {
  display: none;
}

.site-nav {
  flex: 1 1 auto;
}

.site-nav__list {
  justify-content: flex-end;
  gap: 0.2rem;
}

.site-nav__list a {
  padding: 0.72rem 0.68rem;
  color: #26221e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  background: #26221e;
  color: #fff;
}

.site-nav__list a[aria-current="page"] {
  background: #43210c;
  color: #cfc8c0;
}

.header-cta {
  min-width: 142px;
  min-height: 42px;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: #43210c;
  box-shadow: 0 3px 10px rgba(67, 33, 12, 0.22);
  color: #fff;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #26221e;
  transform: translateY(-1px);
}

.header-cta__icon {
  width: 18px;
  height: 18px;
}

.header-cta__label {
  font-size: 0.68rem;
  letter-spacing: 0.055em;
}

.home-hero {
  min-height: calc(100svh - 162px);
}

@media (max-width: 1320px) and (min-width: 1100px) {
  .site-header__bar {
    padding-inline: 1.25rem;
  }

  .brand {
    width: 310px;
    flex-basis: 310px;
  }

  .brand__logo {
    width: 100%;
  }

  .site-nav__list a {
    padding-inline: 0.48rem;
    font-size: 0.68rem;
  }

  .header-cta {
    min-width: 126px;
    padding-inline: 0.75rem;
  }
}

@media (max-width: 1099px) {
  .site-header__bar {
    min-height: 92px;
    padding: 0.3rem 1.25rem;
    flex-wrap: wrap;
  }

  .brand {
    width: 235px;
    height: 82px;
    flex: 0 1 235px;
    justify-content: center;
  }

  .brand__logo {
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-basis: 100%;
    order: 3;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 0;
    margin: 0 -1.25rem;
    padding: 0.5rem 1.25rem 1rem;
    border-top: 1px solid rgba(67, 33, 12, 0.16);
    background:
      linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
      url("../images/header-texture.png") center / cover;
  }

  .site-nav__list a {
    padding: 0.8rem 0.9rem;
    border-bottom: 1px solid rgba(67, 33, 12, 0.12);
    font-size: 0.75rem;
  }

  .header-cta {
    display: none;
  }

  .home-hero {
    min-height: calc(100svh - 104px);
  }
}

@media (max-width: 420px) {
  .site-header__bar {
    padding-inline: 0.85rem;
  }

  .brand {
    width: 195px;
    height: 78px;
    flex-basis: 195px;
  }

  .brand__logo {
    width: 100%;
  }
}

/* ---------- Raised ribbon navigation from the original design ---------- */
@media (min-width: 1100px) {
  .site-nav {
    display: flex;
    width: min(780px, 100%);
    max-width: 780px;
    min-width: 0;
    flex: 0 1 780px;
    align-items: center;
  }

  .site-nav__list {
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr 1.45fr 1.5fr 1.1fr 1fr;
    width: 100%;
    height: 42px;
    align-items: stretch;
    justify-content: stretch;
    column-gap: clamp(1.25rem, 2vw, 2rem);
    row-gap: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: #cfc8c0;
    box-shadow:
      0 2px 3px rgba(0, 0, 0, 0.7),
      0 1px 1px rgba(255, 255, 255, 0.72) inset;
  }

  .site-nav__list li {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: stretch;
  }

  .site-nav__list a {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 1.15rem;
    border: 0;
    background: transparent;
    color: #262626;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(0.58rem, 0.65vw, 0.7rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
    transition:
      background-color 0.16s ease,
      color 0.16s ease,
      transform 0.16s ease;
  }

  .site-nav__list a:hover,
  .site-nav__list a:focus-visible {
    background: #262626;
    color: #fff;
  }

  .site-nav__list a:active {
    background: #171717;
    color: #fff;
    transform: translateY(1px);
  }

  .site-nav__list a[aria-current="page"] {
    z-index: 2;
    height: 64px;
    margin-top: -11px;
    margin-bottom: -11px;
    background: #262626;
    box-shadow: 3px 3px 4px rgba(31, 27, 24, 0.22);
    color: #fff;
  }

  .site-nav__list a[aria-current="page"]::before,
  .site-nav__list a[aria-current="page"]::after {
    position: absolute;
    left: -14px;
    width: 0;
    height: 0;
    content: "";
  }

  .site-nav__list a[aria-current="page"]::before {
    top: 0;
    border-right: 14px solid #55493f;
    border-top: 11px solid transparent;
  }

  .site-nav__list a[aria-current="page"]::after {
    bottom: 0;
    border-right: 14px solid #55493f;
    border-bottom: 11px solid transparent;
  }

  /* Home remains the raised brown default tab, as in the reference menu. */
  .site-nav__list a[href="index.html"] {
    z-index: 3;
    height: 64px;
    margin-top: -11px;
    margin-bottom: -11px;
    background: #43210c;
    box-shadow: 3px 3px 4px rgba(31, 27, 24, 0.24);
    color: #cfc8c0;
  }

  .site-nav__list a[href="index.html"]::before,
  .site-nav__list a[href="index.html"]::after {
    position: absolute;
    left: -14px;
    width: 0;
    height: 0;
    content: "";
  }

  .site-nav__list a[href="index.html"]::before {
    top: 0;
    border-right: 14px solid #55493f;
    border-top: 11px solid transparent;
  }

  .site-nav__list a[href="index.html"]::after {
    bottom: 0;
    border-right: 14px solid #55493f;
    border-bottom: 11px solid transparent;
  }

  .site-nav__list a[href="index.html"]:hover,
  .site-nav__list a[href="index.html"]:focus-visible,
  .site-nav__list a[href="index.html"]:active {
    background: #262626;
    color: #fff;
  }

  .site-nav__list a:not([href="index.html"]):hover,
  .site-nav__list a:not([href="index.html"]):focus-visible,
  .site-nav__list a:not([href="index.html"]):active {
    z-index: 4;
    height: 64px;
    margin-top: -11px;
    margin-bottom: -11px;
    background: #262626;
    box-shadow: 3px 3px 4px rgba(31, 27, 24, 0.24);
    color: #fff;
    transform: none;
  }

  .site-nav__list a:not([href="index.html"]):hover::before,
  .site-nav__list a:not([href="index.html"]):focus-visible::before,
  .site-nav__list a:not([href="index.html"]):active::before,
  .site-nav__list a:not([href="index.html"]):hover::after,
  .site-nav__list a:not([href="index.html"]):focus-visible::after,
  .site-nav__list a:not([href="index.html"]):active::after {
    position: absolute;
    left: -14px;
    width: 0;
    height: 0;
    content: "";
  }

  .site-nav__list a:not([href="index.html"]):hover::before,
  .site-nav__list a:not([href="index.html"]):focus-visible::before,
  .site-nav__list a:not([href="index.html"]):active::before {
    top: 0;
    border-right: 14px solid #55493f;
    border-top: 11px solid transparent;
  }

  .site-nav__list a:not([href="index.html"]):hover::after,
  .site-nav__list a:not([href="index.html"]):focus-visible::after,
  .site-nav__list a:not([href="index.html"]):active::after {
    bottom: 0;
    border-right: 14px solid #55493f;
    border-bottom: 11px solid transparent;
  }
}

/* ---------- Raised call button with overlapping phone medallion ---------- */
.header-cta {
  position: relative;
  min-width: 194px;
  min-height: 48px;
  justify-content: center;
  margin-left: 34px;
  padding: 0 1.25rem 0 3.45rem;
  overflow: visible;
  border: 1px solid rgba(78, 67, 58, 0.14);
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 9px 12px rgba(34, 29, 25, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  color: #242424;
}

.header-cta::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -34px;
  width: 76px;
  height: 76px;
  border: 8px solid #5c2d0c;
  border-radius: 50%;
  background: #c88d00;
  box-shadow:
    0 0 0 3px #7b4212,
    0 4px 5px rgba(42, 28, 18, 0.32),
    0 0 0 2px rgba(255, 192, 28, 0.2) inset;
  content: "";
  transform: translateY(-50%);
  transform-origin: center;
  animation: header-phone-pulse 1.65s ease-in-out infinite;
}

.header-cta__icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -12px;
  width: 32px;
  height: 32px;
  filter: none;
  transform: translateY(-50%);
  transform-origin: center;
  animation: header-phone-ring 1.65s ease-in-out infinite;
}

.header-cta__label {
  position: relative;
  z-index: 2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #fff;
  box-shadow:
    0 11px 14px rgba(34, 29, 25, 0.36),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  color: #242424;
  transform: translateY(-1px);
}

@keyframes header-phone-pulse {
  0%,
  100% {
    transform: translate(-3px, -50%) scale(0.97);
  }

  50% {
    transform: translate(4px, -50%) scale(1.08);
  }
}

@keyframes header-phone-ring {
  0%,
  100% {
    transform: translate(-3px, -50%) rotate(0deg) scale(0.97);
  }

  25% {
    transform: translate(0, -50%) rotate(-7deg) scale(1.02);
  }

  50% {
    transform: translate(4px, -50%) rotate(0deg) scale(1.08);
  }

  75% {
    transform: translate(0, -50%) rotate(7deg) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-cta::before,
  .header-cta__icon {
    animation: none;
  }
}

/* ---------- Service value blocks below the homepage services ---------- */
.service-values {
  padding: clamp(2.5rem, 2.8vw, 3.6rem);
  background: #351706;
}

.service-values__grid {
  display: grid;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-values__item {
  display: flex;
  min-height: 240px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 1.25rem;
  background: #fff;
  text-align: center;
}

.service-values__item:nth-child(even) {
  background: #c9c9c9;
}

.service-values__item img {
  width: 68px;
  height: 68px;
  margin-bottom: 1.4rem;
  object-fit: contain;
  opacity: 0.72;
}

.service-values__item p {
  margin: 0;
  color: #2d2b29;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  line-height: 1.45;
}

@media (max-width: 899px) {
  .service-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-values__item {
    min-height: 210px;
  }
}

@media (max-width: 499px) {
  .service-values {
    padding-inline: 1rem;
  }

  .service-values__grid {
    grid-template-columns: 1fr;
  }

  .service-values__item {
    min-height: 185px;
  }
}

/* ---------- Homepage About split using the supplied renovation image ---------- */
.home-about {
  display: grid;
  padding: 0 clamp(1.25rem, 3.5vw, 4.25rem) clamp(3rem, 5vw, 5rem);
  background: #351706;
  color: #292725;
}

.home-about__content {
  order: 1;
  display: flex;
  min-width: 0;
  min-height: 620px;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem);
  background: #fff;
}

.home-about__heading {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.home-about__heading h2 {
  flex: 0 0 auto;
  margin: 0;
  color: #252525;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
}

.home-about__brand {
  display: flex;
  width: clamp(240px, 22vw, 350px);
  height: clamp(88px, 8vw, 110px);
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.home-about__brand img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 3px 2px rgba(55, 30, 14, 0.32));
  transform: translateX(-4rem) scale(1.36);
  transform-origin: left center;
}

.home-about__content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 0.3rem;
  color: #4c4946;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.98rem, 1.2vw, 1.16rem);
  line-height: 1.72;
}

.home-about__content strong {
  color: #171717;
  text-transform: uppercase;
}

.home-about__image {
  order: 2;
  min-height: 620px;
  overflow: hidden;
}

.home-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

@media (min-width: 900px) {
  .home-about {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 899px) {
  .home-about__content {
    min-height: 0;
    padding: 3rem clamp(1.5rem, 7vw, 4rem);
  }

  .home-about__image {
    min-height: 430px;
  }
}

@media (max-width: 560px) {
  .home-about__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-about__brand {
    width: 260px;
    height: 110px;
    justify-content: flex-start;
  }

  .home-about__brand img {
    width: 100%;
    object-position: left center;
    transform: scale(1.12);
    transform-origin: left center;
  }

  .home-about__image {
    min-height: 320px;
  }
}

/* ---------- "For Your Ideal Home" interactive gallery ---------- */
.ideal-home {
  overflow: hidden;
  background: #351706;
}

.ideal-home__heading {
  display: grid;
  min-height: clamp(120px, 7.5vw, 155px);
  place-items: center;
  padding: 2rem 1.25rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url("../images/header-texture.png") center / cover;
}

.ideal-home__heading h2 {
  margin: 0;
  color: #292725;
  font-size: clamp(2rem, 2.4vw, 3rem);
  letter-spacing: 0.02em;
  text-align: center;
}

.ideal-gallery {
  display: grid;
  width: 100%;
  max-width: none;
  height: clamp(720px, 41.6vw, 855px);
  min-height: 0;
  margin: 0;
  grid-template-columns: 35vw 51vw 12vw;
  gap: 3.2vw;
  padding: clamp(3.5rem, 3.6vw, 4.75rem) 3.2vw clamp(3.75rem, 4vw, 5rem);
}

.ideal-gallery__thumbs {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(0, 1fr));
  column-gap: 3.2vw;
  row-gap: 0;
}

.ideal-gallery__thumb:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 8;
}

.ideal-gallery__thumb:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / 6;
}

.ideal-gallery__thumb:nth-child(3) {
  grid-column: 1;
  grid-row: 9 / 13;
}

.ideal-gallery__thumb:nth-child(4) {
  grid-column: 2;
  grid-row: 7 / 13;
}

.ideal-gallery__thumb {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid #9d8f80;
  background: #241f1c;
  cursor: pointer;
  transition: border-color 0.35s ease;
}

.ideal-gallery__thumb::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(65, 65, 65, 0.75);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.ideal-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2.2s cubic-bezier(0.14, 0.4, 0.09, 0.99);
}

.ideal-gallery__thumb:hover,
.ideal-gallery__thumb:focus-visible,
.ideal-gallery__thumb.is-active {
  border-color: #e3c989;
}

.ideal-gallery__thumb:hover img,
.ideal-gallery__thumb:focus-visible img {
  transform: scale(1.1);
}

.ideal-gallery__thumb:hover::after,
.ideal-gallery__thumb:focus-visible::after {
  opacity: 1;
}

.ideal-gallery__main {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 2px solid #9d8f80;
  background: #272523;
}

.ideal-gallery__main::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: rgba(65, 65, 65, 0.75);
  content: "";
  opacity: 0.55;
  transition: opacity 0.4s ease;
}

.ideal-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition:
    opacity 0.24s ease,
    transform 2.2s cubic-bezier(0.14, 0.4, 0.09, 0.99);
}

.ideal-gallery__main img.is-changing {
  opacity: 0;
  transform: translateX(-2%) scale(1.035);
}

.ideal-gallery__main:hover::after {
  opacity: 0.75;
}

.ideal-gallery__main:hover img:not(.is-changing) {
  transform: scale(1.1);
}

.ideal-gallery__next {
  display: grid;
  min-width: 0;
  place-items: center;
  border: 2px solid #9d8f80;
  background: #252525;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.ideal-gallery__next span {
  font-family: Georgia, serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  transform: translateX(-6.6vw);
  transition: transform 0.35s ease;
}

.ideal-gallery__next:hover,
.ideal-gallery__next:focus-visible {
  background: #171717;
  color: #fff;
}

.ideal-gallery__next:hover span,
.ideal-gallery__next:focus-visible span {
  transform: translateX(calc(-6.6vw + 8px));
}

@media (prefers-reduced-motion: reduce) {
  .ideal-gallery__thumb img,
  .ideal-gallery__thumb::after,
  .ideal-gallery__main img,
  .ideal-gallery__main::after,
  .ideal-gallery__next span {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 999px) {
  .ideal-gallery {
    width: 100%;
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr 90px;
    gap: clamp(1.5rem, 3vw, 3.5rem);
    padding: clamp(3rem, 5vw, 5rem) clamp(1.25rem, 3vw, 3.5rem);
  }

  .ideal-gallery__thumbs {
    grid-column: 1 / 3;
    grid-row: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 150px;
    gap: clamp(1rem, 2vw, 2rem);
  }

  .ideal-gallery__thumb:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .ideal-gallery__main {
    min-height: 430px;
  }

  .ideal-gallery__next span,
  .ideal-gallery__next:hover span,
  .ideal-gallery__next:focus-visible span {
    transform: none;
  }
}

@media (max-width: 620px) {
  .ideal-home__heading {
    min-height: 115px;
  }

  .ideal-gallery {
    grid-template-columns: 1fr 64px;
    gap: 1rem;
    padding: 2rem 1rem;
  }

  .ideal-gallery__main {
    min-height: 300px;
  }

  .ideal-gallery__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 120px);
  }

  .ideal-gallery__next span {
    font-size: 3rem;
  }
}

/* ---------- Nine-card services gallery below Ideal Home ---------- */
.services-showcase {
  padding: 0;
  background: #fff;
}

.services-showcase__heading {
  display: grid;
  min-height: clamp(170px, 12vw, 244px);
  place-items: center;
  padding: 2.5rem 1.25rem;
  background: #fff;
}

.services-showcase__heading h2 {
  margin: 0;
}

.services-showcase__heading a {
  display: grid;
  width: min(510px, 82vw);
  min-height: clamp(82px, 5.1vw, 104px);
  place-items: center;
  padding: 1.25rem 2rem;
  background: #a79784;
  color: #252525;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.45rem, 1.7vw, 2.15rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.services-showcase__heading a:hover,
.services-showcase__heading a:focus-visible {
  background: #b8aa99;
  transform: translateY(-2px);
}

.services-showcase__body {
  padding: clamp(3.5rem, 3.5vw, 4.5rem) clamp(1.25rem, 4vw, 5rem) clamp(3rem, 5vw, 5rem);
  background: #351706;
}

.services-showcase__grid {
  display: grid;
  width: 100%;
  max-width: 1810px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.services-showcase__card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #8e7d6f;
  grid-template-rows: minmax(0, 1fr) 58px;
  background: #c9c9c9;
}

.services-showcase__card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.25s ease;
}

.services-showcase__card span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.6rem;
  background: #c9c9c9;
  color: #34312f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.services-showcase__card:hover img,
.services-showcase__card:focus-visible img {
  filter: brightness(1.05);
  transform: scale(1.025);
}

.services-showcase__card:focus-visible {
  outline: 3px solid #e3c989;
  outline-offset: 2px;
}

@media (max-width: 899px) {
  .services-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .services-showcase__body {
    padding-inline: 1rem;
  }

  .services-showcase__heading {
    min-height: 145px;
  }

  .services-showcase__heading a {
    min-height: 72px;
    font-size: 1.25rem;
  }

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

/* ---------- Five-panel client reviews strip ---------- */
.client-reviews {
  padding: clamp(2rem, 3vw, 3.5rem) clamp(1.25rem, 2.5vw, 3rem);
  background: #fff;
}

.client-reviews__grid {
  display: grid;
  width: 100%;
  max-width: 1600px;
  min-height: 265px;
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.client-reviews__heading {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 5vw, 5rem) 2rem;
  background: #aa9b89;
}

.client-reviews__heading h2 {
  margin: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.client-reviews__card {
  display: flex;
  min-width: 0;
  min-height: 265px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(2.75rem, 4vw, 4.25rem) clamp(2rem, 3vw, 3.5rem) 2.25rem;
  border-left: 1px solid rgba(198, 178, 158, 0.38);
  background: #351706;
}

.client-reviews__card:nth-of-type(2) {
  background: #3b1909;
}

.client-reviews__card:nth-of-type(3) {
  background: #230707;
}

.client-reviews__card:nth-of-type(4) {
  background: #1d0505;
}

.client-reviews__card p {
  max-width: 235px;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 0.9vw, 1.08rem);
  line-height: 1.78;
}

.client-reviews__card cite {
  color: #aa9b89;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 999px) {
  .client-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-reviews__heading {
    grid-column: 1 / 3;
    justify-content: flex-start;
    padding: 2.25rem;
  }

  .client-reviews__heading h2 br {
    display: none;
  }
}

@media (max-width: 560px) {
  .client-reviews {
    padding-inline: 1rem;
  }

  .client-reviews__grid {
    grid-template-columns: 1fr;
  }

  .client-reviews__heading {
    grid-column: auto;
  }

  .client-reviews__card {
    min-height: 235px;
  }
}

/* ---------- Homepage Get In Touch and map ---------- */
.home-contact {
  padding: clamp(3.5rem, 4.25vw, 5.5rem) clamp(1.25rem, 3.2vw, 4rem) 0;
  background-color: #f1f1ee;
  background-image: url("../images/backgrounds/services-texture.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-contact__grid {
  display: grid;
  width: 100%;
  max-width: 1920px;
  min-height: clamp(410px, 24vw, 490px);
  margin: 0 auto;
  grid-template-columns: 0.8fr 1.2fr 1fr;
}

.home-contact__heading {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(3rem, 5vw, 6rem);
  background: #351706;
  color: #fff;
}

.home-contact__heading p {
  margin: 0 0 1.3rem;
  color: #cbbca9;
  font-size: clamp(0.68rem, 0.78vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-contact__heading h2 {
  margin: 0;
  font-size: clamp(3.4rem, 4.8vw, 5.65rem);
  line-height: 0.92;
}

.home-contact__details {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: clamp(1.4rem, 1.7vw, 2rem);
  padding: clamp(3rem, 5vw, 6rem);
  background: #ad9d8a;
  color: #fff;
}

.home-contact__item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 1.1rem;
}

.home-contact__item img {
  width: 25px;
  height: 25px;
  margin-top: 0.1rem;
}

.home-contact__item strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: clamp(0.7rem, 0.76vw, 0.84rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-contact__item a {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 1vw, 1.08rem);
  line-height: 1.75;
}

.home-contact__details .btn {
  align-self: flex-start;
  min-width: 260px;
  min-height: 58px;
  margin-top: 0.8rem;
  padding: 1.1rem 1.6rem;
  letter-spacing: 0.12em;
}

.home-contact__partners {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(3rem, 4vw, 5rem);
  background: #fff;
}

.home-contact__partners > p {
  margin: 0 0 clamp(1.8rem, 2.2vw, 2.7rem);
  color: #5a544e;
  font-size: clamp(0.72rem, 0.84vw, 0.9rem);
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.home-contact__logos {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2vw, 2.4rem);
}

.partner-logo {
  display: grid;
  width: min(46%, 225px);
  min-height: 132px;
  place-items: center;
  padding: 1rem;
}

.partner-logo--resene {
  background: #242424;
}

.partner-logo--dulux {
  border: 1px solid #dedbd5;
  background: #fff;
}

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

.home-map {
  width: 100%;
  max-width: 1920px;
  height: clamp(390px, 23vw, 470px);
  margin: 0 auto;
  border: 0;
}

.home-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer--home {
  padding-top: 0;
}

.site-footer--home .footer-grid {
  display: none;
}

.site-footer--home .footer-bottom {
  margin-top: 0;
}

@media (max-width: 999px) {
  .home-contact__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-contact__heading {
    grid-column: 1 / 3;
    min-height: 220px;
  }

  .home-contact__heading h2 br {
    display: none;
  }
}

@media (max-width: 660px) {
  .home-contact {
    padding-inline: 1rem;
  }

  .home-contact__grid {
    grid-template-columns: 1fr;
  }

  .home-contact__heading {
    grid-column: auto;
  }

  .home-contact__logos {
    flex-direction: column;
  }

  .partner-logo {
    width: min(100%, 220px);
  }

  .home-map {
    height: 320px;
  }
}

/* ---------- Our Services page mosaic ---------- */
.services-page {
  background: #fff;
}

.services-page__social {
  position: fixed;
  z-index: 40;
  top: 50%;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  transform: translateY(-50%);
}

.services-page__social a {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
}

.services-page__social img {
  width: 16px;
  height: 16px;
}

.services-mosaic {
  padding: clamp(3rem, 5vw, 5rem) clamp(1.25rem, 4vw, 5rem);
  background-color: #f2f2ef;
  background-image: url("../images/backgrounds/services-texture.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.services-mosaic__grid {
  display: grid;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 1px;
  row-gap: 10px;
  background: #9a8a78;
  box-shadow: 0 0 0 1px rgba(77, 57, 42, 0.18);
}

.services-mosaic__title,
.services-mosaic__content,
.services-mosaic__media {
  min-width: 0;
  min-height: clamp(520px, 35vw, 700px);
}

.services-mosaic__title {
  display: grid;
  place-items: start center;
  padding: clamp(5rem, 9vw, 8.5rem) clamp(2rem, 3vw, 4rem);
  background: #9a8a78;
  color: #fff;
}

.services-mosaic__title h1 {
  margin: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.services-mosaic__content {
  padding: clamp(4rem, 6vw, 6rem) clamp(2rem, 3.4vw, 4.25rem);
  background: #fff;
  color: #000;
}

.services-mosaic__content h2 {
  margin: 0 0 clamp(2rem, 3.5vw, 3.4rem);
  color: #9a8a78;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.services-mosaic__content p {
  margin: 0;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 300;
  line-height: 1.8;
}

.services-mosaic__content strong {
  font-weight: 700;
}

.services-mosaic__media {
  margin: 0;
  overflow: hidden;
  background: #9a8a78;
}

.services-mosaic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.services-mosaic__media:hover img {
  transform: scale(1.025);
}

@media (max-width: 1100px) {
  .services-mosaic__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-mosaic__title,
  .services-mosaic__content,
  .services-mosaic__media {
    min-height: 470px;
  }
}

@media (max-width: 620px) {
  .services-page__social {
    display: none;
  }

  .services-mosaic {
    padding: 1rem;
  }

  .services-mosaic__grid {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .services-mosaic__title {
    min-height: 240px;
    place-items: center;
    padding: 3rem 1.5rem;
  }

  .services-mosaic__content {
    min-height: 0;
    padding: 3rem 2rem 3.5rem;
  }

  .services-mosaic__media {
    min-height: 410px;
  }

  .services-mosaic__content h2 {
    margin-bottom: 1.5rem;
  }
}

/* ---------- Our Projects page ---------- */
.projects-page {
  background: #fff;
}

.projects-page__social {
  position: fixed;
  z-index: 40;
  top: 50%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 1rem 0.75rem;
  border-radius: 0 8px 8px 0;
  background: rgba(53, 23, 6, 0.88);
  box-shadow: 0 5px 20px rgba(24, 10, 2, 0.18);
  transform: translateY(-50%);
}

.projects-page__social a,
.projects-page__social img {
  display: block;
  width: 17px;
  height: 17px;
}

.projects-hero {
  position: relative;
  display: flex;
  min-height: clamp(500px, 53vw, 720px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(35, 16, 6, 0.9) 0%, rgba(53, 23, 6, 0.72) 43%, rgba(28, 17, 10, 0.22) 100%),
    url("../images/services/gallery/home-exterior.jpg") center 56% / cover no-repeat;
  color: #fff;
}

.projects-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24, 10, 2, 0.28));
  content: "";
  pointer-events: none;
}

.projects-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1920px);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 9rem) clamp(2rem, 10vw, 12rem);
}

.projects-hero__content h1 {
  max-width: 700px;
  margin: 0 0 clamp(2rem, 3vw, 3.25rem);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3.6rem, 6vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
}

.projects-hero__content p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.8;
}

.projects-list {
  padding: clamp(4rem, 7vw, 8rem) clamp(1.25rem, 4vw, 5rem);
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("../images/backgrounds/services-texture.png") center / cover fixed;
}

.project-feature {
  display: grid;
  width: 100%;
  max-width: 1540px;
  min-height: clamp(430px, 38vw, 590px);
  margin: 0 auto clamp(4.5rem, 8vw, 9rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  background: #fff;
  box-shadow: 0 16px 55px rgba(55, 35, 20, 0.11);
}

.project-feature:last-child {
  margin-bottom: 0;
}

.project-feature:nth-child(even) .project-slider {
  order: 2;
}

.project-feature:nth-child(even) .project-feature__copy {
  order: 1;
}

.project-slider {
  position: relative;
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  background: #241f1c;
  perspective: 1200px;
}

.project-slider__frame {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.project-slider__frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(18, 10, 4, 0.28));
  content: "";
  pointer-events: none;
}

.project-slider__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: translateX(0) rotateY(0) scale(1.001);
  transform-origin: center;
  transition:
    opacity 0.32s ease,
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-slider__frame img.is-changing {
  opacity: 0;
  transform: translateX(-4%) rotateY(8deg) scale(1.035);
}

.project-slider__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 48px;
  height: 64px;
  padding: 0;
  place-items: center;
  border: 0;
  background: rgba(24, 19, 16, 0.62);
  color: #fff;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
  transition: background-color 0.25s ease, width 0.25s ease;
}

.project-slider__arrow:hover,
.project-slider__arrow:focus-visible {
  width: 56px;
  background: rgba(53, 23, 6, 0.92);
}

.project-slider__arrow--prev {
  left: 0;
}

.project-slider__arrow--next {
  right: 0;
}

.project-slider__count {
  position: absolute;
  z-index: 2;
  right: 1.3rem;
  bottom: 1rem;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.project-feature__copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(3.25rem, 6vw, 7rem);
  border-top: 1px solid rgba(154, 138, 120, 0.35);
  border-bottom: 1px solid rgba(154, 138, 120, 0.35);
}

.project-feature__number {
  margin: 0 0 1.5rem;
  color: #b39c7e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.project-feature__copy h2 {
  margin: 0 0 clamp(1.5rem, 2.5vw, 2.4rem);
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.project-feature__copy > p:last-child {
  max-width: 510px;
  margin: 0;
  color: #242323;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.8;
}

.projects-cta {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: clamp(4rem, 7vw, 7rem) 1.25rem;
  background: #351706;
  color: #fff;
  text-align: center;
}

.projects-cta p {
  margin: 0 0 0.75rem;
  color: #c9b8a4;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.projects-cta h2 {
  margin: 0 0 2rem;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.projects-cta .btn {
  min-width: 230px;
}

@media (max-width: 900px) {
  .project-feature {
    grid-template-columns: 1fr;
  }

  .project-feature:nth-child(even) .project-slider,
  .project-feature:nth-child(even) .project-feature__copy {
    order: initial;
  }

  .project-slider {
    min-height: clamp(350px, 64vw, 520px);
  }

  .project-feature__copy {
    min-height: 310px;
  }
}

@media (max-width: 620px) {
  .projects-page__social {
    display: none;
  }

  .projects-hero {
    min-height: 520px;
    background-position: 63% center;
  }

  .projects-hero__content {
    padding: 5rem 1.5rem;
  }

  .projects-list {
    padding: 3rem 1rem;
    background-attachment: scroll;
  }

  .project-feature {
    margin-bottom: 3rem;
  }

  .project-slider {
    min-height: 310px;
  }

  .project-feature__copy {
    min-height: 0;
    padding: 3rem 2rem 3.5rem;
  }

  .project-slider__arrow {
    width: 42px;
    height: 56px;
  }
}

/* ---------- Homepage contact footer and map ---------- */
.contact-footer {
  background: #000;
  color: #fff;
}

.contact-footer__panel {
  display: grid;
  width: 100%;
  min-height: 560px;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 470px) minmax(0, 1fr);
  padding: clamp(2.75rem, 3.5vw, 4.25rem) clamp(2rem, 5vw, 6.25rem);
}

.contact-footer__details {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
}

.contact-footer__details h2 {
  margin: 0 0 clamp(1.7rem, 2.2vw, 2.5rem);
  color: #aa9b89;
  font: 400 clamp(2.2rem, 3vw, 3rem)/1 Arial, Helvetica, sans-serif;
}

.contact-footer__item {
  display: grid;
  width: 100%;
  max-width: 470px;
  align-items: center;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1.2rem;
  margin-bottom: clamp(1.4rem, 2vw, 2.4rem);
  color: rgba(255, 255, 255, 0.9);
  font: clamp(0.95rem, 1.05vw, 1.1rem)/1.5 Arial, Helvetica, sans-serif;
}

.contact-footer__item img {
  width: 40px;
  height: 40px;
  padding: 5px;
  opacity: 0.72;
}

.contact-footer__copyright {
  margin: auto 0 0;
  color: #8e7e6d;
  font: 0.78rem/1.55 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.contact-footer__social {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  margin-top: 2.5rem;
}

.contact-footer__social a,
.contact-footer__social img {
  display: block;
  width: 18px;
  height: 18px;
}

.contact-footer__form {
  width: min(100%, 470px);
  justify-self: center;
  padding-inline: clamp(0.5rem, 2vw, 2.25rem);
}

.contact-footer__form label {
  display: block;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  font: 0.92rem/1.3 Arial, Helvetica, sans-serif;
}

.contact-footer__fields {
  display: grid;
  gap: 0.9rem;
}

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

.contact-footer__form input,
.contact-footer__form textarea {
  display: block;
  width: 100%;
  margin-top: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  outline: 0;
  background: #fff;
  color: #25211e;
  font: inherit;
}

.contact-footer__form input {
  height: 44px;
  padding: 0 0.75rem;
}

.contact-footer__form textarea {
  min-height: 110px;
  padding: 0.9rem 0.75rem;
  resize: vertical;
}

.contact-footer__form input:focus,
.contact-footer__form textarea:focus {
  border-color: #d9a441;
  box-shadow: 0 0 0 2px rgba(217, 164, 65, 0.22);
}

.contact-footer__form button {
  width: 100%;
  min-height: 44px;
  border: 0;
  background: #aa9b89;
  color: #3f3933;
  cursor: pointer;
  font: 0.95rem Arial, Helvetica, sans-serif;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-footer__form button:hover,
.contact-footer__form button:focus-visible {
  background: #d9a441;
  color: #1d0505;
}

.contact-footer__status {
  margin: 0.8rem 0 0;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.5;
}

.contact-footer__aside {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
}

.contact-footer__aside nav {
  display: flex;
  width: min(100%, 200px);
  align-items: flex-start;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-footer__aside nav a {
  color: rgba(255, 255, 255, 0.76);
  font: 0.86rem Arial, Helvetica, sans-serif;
}

.contact-footer__aside nav a:hover,
.contact-footer__aside nav a:focus-visible {
  color: #d9a441;
}

.contact-footer__partners {
  display: flex;
  width: min(100%, 210px);
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-footer__partners span {
  display: grid;
  width: 100%;
  min-height: 80px;
  place-items: center;
}

.contact-footer__partners img {
  display: block;
  width: 100%;
  max-height: 85px;
  object-fit: contain;
}

.contact-footer__map {
  width: 100%;
  height: clamp(280px, 28vw, 340px);
  overflow: hidden;
  background: #242424;
}

.contact-footer__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.84) contrast(1.18) hue-rotate(180deg);
}

.site-footer--contact-hidden {
  display: none;
}

/* ---------- Careers page, matched to the original Wix layout ---------- */
.careers-page {
  background: #242424;
}

.careers-page__social {
  position: fixed;
  z-index: 40;
  top: 50%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0.9rem 1.15rem;
  transform: translateY(-50%);
}

.careers-page__social a,
.careers-page__social img {
  display: block;
  width: 17px;
  height: 17px;
}

.careers-page__social img,
.careers-application__facebook img {
  filter: brightness(0) invert(1);
}

.careers-hero {
  background: #242424;
}

.careers-hero__media {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
  overflow: hidden;
}

.careers-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 980 / 372;
  object-fit: cover;
}

.careers-hero__media h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 300px;
  margin: 0;
  padding: 1.45rem 2.5rem;
  background: #242424;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%);
}

.careers-content {
  background: #242424;
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, Helvetica, sans-serif;
}

.careers-content__inner {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 5rem 1.75rem 8rem;
}

.careers-intro h2,
.careers-application h2 {
  margin: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.careers-intro h2 {
  max-width: 900px;
  margin-bottom: 2.75rem;
}

.careers-intro p {
  max-width: 790px;
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.55;
}

.careers-intro strong {
  color: #fff;
}

.careers-application {
  margin-top: 7.5rem;
}

.careers-application > p {
  margin: 1.1rem 0 0.65rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
}

.careers-application__facebook {
  display: inline-flex;
  margin-bottom: 2.4rem;
}

.careers-application__facebook img {
  width: 24px;
  height: 24px;
}

.careers-application__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem 3rem;
}

.careers-application__identity {
  display: grid;
  gap: 0.9rem;
}

.careers-application__form label {
  display: grid;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.careers-application__form input,
.careers-application__form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}

.careers-application__form input {
  height: 82px;
  padding: 0.8rem;
}

.careers-application__form textarea {
  min-height: 175px;
  padding: 0.8rem;
  resize: vertical;
}

.careers-application__form input:focus,
.careers-application__form textarea:focus {
  border-color: #c6b4a2;
  box-shadow: 0 0 0 1px #c6b4a2;
}

.careers-application__message {
  align-self: start;
}

.careers-application__form button {
  min-width: 140px;
  min-height: 38px;
  grid-column: 2;
  justify-self: end;
  padding: 0.65rem 2rem;
  border: 0;
  background: #a99988;
  color: #3a342e;
  cursor: pointer;
}

.careers-application__form button:hover,
.careers-application__form button:focus-visible {
  background: #c0af9e;
}

.careers-application__form .contact-footer__status {
  grid-column: 1 / -1;
}

@media (max-width: 700px) {
  .careers-page__social {
    display: none;
  }

  .careers-hero__media h1 {
    min-width: 210px;
    padding: 1rem 1.5rem;
    font-size: 2.5rem;
  }

  .careers-content__inner {
    padding: 3.5rem 1.25rem 5rem;
  }

  .careers-application {
    margin-top: 5rem;
  }

  .careers-application__form {
    grid-template-columns: 1fr;
  }

  .careers-application__form button {
    grid-column: 1;
  }
}

@media (max-width: 1100px) {
  .contact-footer__panel {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }

  .contact-footer__aside {
    grid-column: 1 / 3;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-footer__partners {
    flex-direction: row;
  }
}

@media (max-width: 700px) {
  .contact-footer__panel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.75rem 1.5rem;
  }

  .contact-footer__form {
    width: 100%;
    justify-self: stretch;
    padding: 0;
  }

  .contact-footer__aside {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-footer__partners {
    width: 100%;
    max-width: 430px;
  }

  .contact-footer__copyright {
    margin-top: 1.5rem;
  }

  .contact-footer__map {
    height: 260px;
  }
}

@media (max-width: 430px) {
  .contact-footer__fields--two {
    grid-template-columns: 1fr;
  }

  .contact-footer__partners {
    flex-direction: column;
  }
}

/* ---------- Final reference layout refinements ---------- */
@media (min-width: 1100px) {
  .site-header__bar {
    max-width: 1800px;
    min-height: 160px;
    align-items: center;
  }

  .brand {
    width: clamp(520px, 34vw, 630px);
    height: 155px;
    flex-basis: 630px;
    align-self: center;
    justify-content: flex-start;
  }

  .brand__logo {
    object-position: left center;
    transform: translateX(10px) scale(1.25);
    transform-origin: left center;
  }

  .site-nav,
  .header-cta {
    align-self: center;
  }

  .home-hero {
    min-height: calc(100svh - 172px);
  }
}

@media (max-width: 1320px) and (min-width: 1100px) {
  .brand {
    width: 430px;
    flex-basis: 430px;
  }
}

.ideal-gallery {
  position: relative;
  height: clamp(700px, 41.8vw, 856px);
  grid-template-columns: 12vw minmax(0, 1fr) 24.5vw;
  gap: 3.2vw;
  padding: clamp(3.5rem, 3.7vw, 4.75rem) 3.1vw clamp(3.75rem, 4vw, 5rem);
}

.ideal-gallery__thumbs {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0.78fr 1fr;
  gap: 3.2vw;
}

.ideal-gallery__thumb:nth-child(n) {
  grid-column: auto;
  grid-row: auto;
}

.ideal-gallery__main::after {
  opacity: 0;
}

.ideal-gallery__preview {
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid #9d8f80;
  background: #241f1c;
  cursor: pointer;
}

.ideal-gallery__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2.2s cubic-bezier(0.14, 0.4, 0.09, 0.99);
}

.ideal-gallery__preview:hover img,
.ideal-gallery__preview:focus-visible img {
  transform: scale(1.08);
}

.ideal-gallery__preview:hover,
.ideal-gallery__preview:focus-visible,
.ideal-gallery__preview.is-active {
  border-color: #e3c989;
}

.ideal-gallery__previous {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 3.1vw;
  display: grid;
  width: 52px;
  height: 58px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #797979;
  cursor: pointer;
  transform: translateY(-50%);
}

.ideal-gallery__previous span {
  font: 300 3.5rem/1 Georgia, serif;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ideal-gallery__previous:hover span,
.ideal-gallery__previous:focus-visible span {
  color: #fff;
  transform: translateX(-5px);
}

.contact-footer__panel {
  position: relative;
  min-height: 560px;
}

.contact-footer__copyright {
  margin: 0;
}

.contact-footer__social {
  position: absolute;
  top: 195px;
  left: 20px;
  margin: 0;
}

.contact-footer__form button {
  border: 1px solid #8e7e6d;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 999px) {
  .ideal-gallery {
    height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 34%);
    gap: 1.5rem;
    padding: 3rem clamp(1.25rem, 3vw, 3.5rem);
  }

  .ideal-gallery__main {
    min-height: 500px;
  }

  .ideal-gallery__preview {
    min-height: 500px;
  }

  .ideal-gallery__thumbs {
    grid-column: 1 / 3;
    grid-row: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 190px;
    gap: 1.5rem;
  }

  .ideal-gallery__previous {
    top: 45%;
    left: 1rem;
  }

  .contact-footer__social {
    position: static;
    flex-direction: row;
    margin-top: 2.5rem;
  }
}

@media (max-width: 620px) {
  .ideal-gallery {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  .ideal-gallery__main,
  .ideal-gallery__preview {
    min-height: 320px;
  }

  .ideal-gallery__preview {
    grid-row: 2;
  }

  .ideal-gallery__thumbs {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 140px;
  }

  .ideal-gallery__previous {
    top: 28%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-slider__frame img,
  .project-slider__arrow {
    transition-duration: 0.01ms;
  }
}

/* ---------- Chat enquiry widget ---------- */
.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  font-family: var(--font-body);
}

.chat-widget__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: var(--color-gold-400);
  color: var(--color-brown-900);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s ease, transform 0.2s ease;
}

.chat-widget__toggle:hover,
.chat-widget__toggle:focus-visible {
  background: var(--color-gold-300);
  transform: translateY(-1px);
}

.chat-widget__toggle-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.chat-widget__toggle-icon svg {
  width: 100%;
  height: 100%;
}

.chat-widget__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: 320px;
  max-width: calc(100vw - 40px);
  max-height: 460px;
  display: flex;
  flex-direction: column;
  background: var(--color-cream);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(23, 12, 6, 0.25);
  overflow: hidden;
}

.chat-widget__panel[hidden] {
  display: none;
}

.chat-widget__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--color-brown-900);
  color: var(--color-text-light);
}

.chat-widget__title {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.chat-widget__subtitle {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: var(--color-gold-300);
}

.chat-widget__close {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.chat-widget__log {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-widget__bubble {
  margin: 0;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 85%;
}

.chat-widget__bubble--bot {
  align-self: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  color: var(--color-text-dark);
  border-bottom-left-radius: 2px;
}

.chat-widget__bubble--user {
  align-self: flex-end;
  background: var(--color-gold-400);
  color: var(--color-brown-900);
  border-bottom-right-radius: 2px;
}

.chat-widget__form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--color-border-light);
  background: var(--color-white);
}

.chat-widget__input-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.chat-widget__input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.chat-widget__input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-family: inherit;
}

.chat-widget__input:disabled {
  opacity: 0.6;
}

.chat-widget__send {
  padding: 8px 14px;
  border: none;
  border-radius: var(--radius);
  background: var(--color-brown-900);
  color: var(--color-text-light);
  font-weight: 700;
  cursor: pointer;
}

.chat-widget__send:hover,
.chat-widget__send:focus-visible {
  background: var(--color-brown-800);
}

@media (max-width: 480px) {
  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-widget__panel {
    max-width: calc(100vw - 24px);
  }
}
