/*
Theme Name: Belux Interiors
Theme URI: http://beluxinteriors.com/
Author: Belux Interiors
Description: Custom editorial WordPress theme for Belux Interiors.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: belux-interiors
*/

:root {
  --belux-primary: #d8cbba;
  --belux-secondary: #736559;
  --belux-ink: #2f2823;
  --belux-muted: #756a61;
  --belux-paper: #fbfaf8;
  --belux-stone: #f1ece6;
  --belux-line: rgba(115, 101, 89, 0.22);
  --belux-dark: #100e0c;
  --belux-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --belux-parallax-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--belux-paper);
  color: var(--belux-ink);
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.55;
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

.serif {
  font-family: "Bacasime Antique", Cambria, Georgia, "Times New Roman", serif;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 86px;
  padding: 22px clamp(22px, 4vw, 54px);
  color: #fffaf4;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
}

.site-logo {
  display: block;
  width: clamp(150px, 14vw, 230px);
}

.site-logo img {
  width: 100%;
}

.site-nav,
.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.3vw, 48px);
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 7px;
}

.site-nav a:hover,
.site-nav .current-menu-item a,
.site-nav .current_page_item a {
  border-color: currentColor;
}

.site-nav-cta {
  border: 1px solid var(--belux-primary);
  background: var(--belux-primary);
  color: var(--belux-ink);
  padding: 14px 28px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.16);
  color: #fff;
}

.section {
  padding-left: clamp(22px, 5vw, 74px);
  padding-right: clamp(22px, 5vw, 74px);
}

.inner {
  width: min(1260px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fffaf4;
  background: var(--belux-dark);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  inset: -9%;
  background: var(--hero-image) center center / cover no-repeat;
  transform: translate3d(0, var(--belux-parallax-y), 0) scale(1.045);
  will-change: transform;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.9) 0%, rgba(18, 15, 12, 0.68) 37%, rgba(18, 15, 12, 0.24) 72%, rgba(18, 15, 12, 0.44) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.5));
}

.hero .inner {
  position: relative;
  z-index: 2;
  padding-top: 92px;
}

.hero-copy {
  width: min(660px, 100%);
}

.hero h1 {
  margin: 0 0 28px;
  max-width: 700px;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 400;
  line-height: 0.98;
}

.hero p {
  max-width: 600px;
  margin: 0 0 34px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  display: inline-flex;
  min-width: 154px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  padding: 16px 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.button.primary {
  border-color: var(--belux-primary);
  background: var(--belux-primary);
  color: var(--belux-ink);
}

.intro {
  position: relative;
  padding-top: 54px;
  padding-bottom: 54px;
  text-align: center;
}

.intro .inner {
  display: grid;
  grid-template-columns: 1fr minmax(520px, 980px) 1fr;
  align-items: center;
  gap: 34px;
}

.rule {
  height: 1px;
  background: var(--belux-line);
}

.intro h2 {
  margin: 0;
  font-size: clamp(28px, 2.35vw, 36px);
  font-weight: 400;
  line-height: 1.18;
}

.intro em {
  color: var(--belux-secondary);
  font-style: normal;
}

.projects {
  padding-top: 18px;
  padding-bottom: 72px;
}

.home-about {
  padding-top: 72px;
  padding-bottom: 72px;
}

.home-about-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.home-about-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(390px, 42vw, 620px);
  background: var(--belux-stone);
  --belux-parallax-y: 0px;
}

.home-about-media video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: translate3d(0, var(--belux-parallax-y), 0) scale(1.08);
  will-change: transform;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 14px;
}

.project-card {
  border: 1px solid var(--belux-line);
  background: #fff;
}

.project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.project-card.featured {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fffaf4;
}

.project-card.featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, var(--belux-parallax-y), 0) scale(1.075);
  will-change: transform;
}

.project-card.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.18));
}

.project-content {
  position: relative;
  z-index: 2;
  padding: 34px;
}

.project-card h3 {
  margin: 0 0 16px;
  font-size: clamp(30px, 2.5vw, 42px);
  font-weight: 400;
  line-height: 1.04;
}

.project-card:not(.featured) h3 {
  color: var(--belux-ink);
  font-size: 32px;
}

.project-card p {
  margin: 0 0 24px;
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.project-card:not(.featured) p {
  color: var(--belux-muted);
}

.text-link {
  display: inline-flex;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--belux-stone);
  border-top: 1px solid var(--belux-line);
  border-bottom: 1px solid var(--belux-line);
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(5, minmax(140px, 1fr));
}

.kicker {
  margin: 0 0 18px;
  color: var(--belux-secondary);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.services-heading {
  padding-right: 34px;
}

.services h2 {
  margin: 0;
  max-width: 250px;
  font-size: clamp(32px, 2.6vw, 44px);
  font-weight: 400;
  line-height: 1.08;
}

.service {
  min-width: 0;
  border-left: 1px solid var(--belux-line);
  padding: 8px 24px 0;
}

.service-number {
  margin-bottom: 18px;
  color: var(--belux-secondary);
  font-size: 16px;
}

.service h3 {
  margin: 0 0 16px;
  font-size: clamp(21px, 1.55vw, 27px);
  font-weight: 400;
  line-height: 1.12;
}

.service p {
  margin: 0;
  color: var(--belux-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.52;
}

.client-strip {
  overflow: hidden;
  padding-top: 28px;
  padding-bottom: 28px;
  background: #f8f4ee;
  border-top: 1px solid var(--belux-line);
  border-bottom: 1px solid var(--belux-line);
}

.client-marquee {
  overflow: hidden;
  width: 100%;
}

.client-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: client-marquee 42s linear infinite;
}

.client-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(190px, 15vw, 236px);
  min-width: clamp(190px, 15vw, 236px);
  height: 86px;
  margin-right: 0;
  padding: 0 28px;
  border-left: 1px solid rgba(115, 101, 89, 0.2);
  gap: 8px;
  text-align: center;
}

.client-logo img {
  display: block;
  width: auto;
  max-width: 132px;
  max-height: 36px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.92;
}

.client-logo-name {
  display: block;
  width: 100%;
  margin: 0;
  color: var(--belux-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.client-logo-mizen img {
  width: 36px;
  height: 36px;
  max-width: 36px;
  max-height: 36px;
  border-radius: 50%;
  clip-path: circle(43% at 50% 50%);
  object-fit: cover;
  mix-blend-mode: normal;
}

.client-logo-city-docklands {
  width: clamp(190px, 15vw, 236px);
  min-width: clamp(190px, 15vw, 236px);
}

.client-logo-city-docklands img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(508%) hue-rotate(348deg) brightness(93%) contrast(87%);
  opacity: 0.78;
  transform: none;
}

.client-logo-city-docklands .client-logo-name {
  transform: none;
}

.client-logo-text {
  color: var(--belux-secondary);
  font-family: "Bacasime Antique", Cambria, Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes client-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 170px;
  padding-bottom: 78px;
  background: var(--belux-dark);
  color: #fffaf4;
}

.page-hero.image-hero {
  min-height: clamp(420px, 58vh, 680px);
  display: grid;
  align-items: end;
  padding-top: 170px;
  padding-bottom: clamp(54px, 6vw, 86px);
}

.page-hero.image-hero::before,
.page-hero.image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-hero.image-hero::before {
  inset: -9%;
  background: var(--page-hero-image) var(--page-hero-position, center center) / cover no-repeat;
  transform: translate3d(0, var(--belux-parallax-y), 0) scale(1.045);
  will-change: transform;
}

.page-hero.image-hero::after {
  background:
    linear-gradient(180deg, rgba(16, 14, 12, 0.18), rgba(16, 14, 12, 0.5)),
    linear-gradient(90deg, rgba(16, 14, 12, 0.52), rgba(16, 14, 12, 0.08));
}

.page-hero .inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 400;
  line-height: 0.98;
}

.page-hero p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 250, 244, 0.86);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.page-content {
  padding-top: 72px;
  padding-bottom: 92px;
}

.alt-section {
  background: var(--belux-stone);
  border-top: 1px solid var(--belux-line);
  border-bottom: 1px solid var(--belux-line);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.split.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.split img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

.split h2,
.content-block h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.04;
}

.split p,
.content-block p,
.content-block li {
  color: var(--belux-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

.content-block {
  max-width: 850px;
}

.narrow-copy {
  max-width: 940px;
}

.services-intro {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.services-intro .kicker {
  margin-bottom: 22px;
}

.services-intro h2 {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.08;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--belux-line);
  border: 1px solid var(--belux-line);
}

.service-detail {
  background: var(--belux-paper);
  padding: clamp(28px, 4vw, 46px);
}

.service-detail > span {
  display: block;
  margin-bottom: 18px;
  color: var(--belux-secondary);
  font-size: 16px;
}

.service-detail h3 {
  margin: 0 0 18px;
  font-size: clamp(31px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.05;
}

.normal-amp {
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: 0.9em;
  font-style: normal;
}

.keep-together {
  display: inline-block;
  white-space: nowrap;
}

.service-detail p {
  margin: 0;
  color: var(--belux-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

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

.portfolio-item {
  display: grid;
  grid-template-rows: 310px 1fr;
  border: 1px solid var(--belux-line);
  background: #fff;
}

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

.portfolio-item h3 {
  margin: 0 0 16px;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.02;
}

.portfolio-item p {
  margin: 0;
  color: var(--belux-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.page-cta {
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--belux-dark);
  color: #fffaf4;
  text-align: center;
}

.page-cta .inner {
  max-width: 760px;
}

.page-cta h2 {
  margin: 0 0 28px;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
}

.dark-text {
  color: var(--belux-ink);
}

.portfolio-hero {
  position: relative;
  min-height: clamp(420px, 58vh, 680px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 170px clamp(22px, 5vw, 74px) clamp(54px, 6vw, 86px);
  background: var(--belux-dark);
  color: #fffaf4;
}

.portfolio-hero::before,
.portfolio-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.portfolio-hero::before {
  inset: -9%;
  background: var(--portfolio-hero-image) center center / cover no-repeat;
  transform: translate3d(0, var(--belux-parallax-y), 0) scale(1.045);
  will-change: transform;
}

.portfolio-hero::after {
  background:
    linear-gradient(180deg, rgba(16, 14, 12, 0.18), rgba(16, 14, 12, 0.5)),
    linear-gradient(90deg, rgba(16, 14, 12, 0.52), rgba(16, 14, 12, 0.08));
}

.portfolio-hero-content {
  position: relative;
  z-index: 2;
  width: min(1260px, 100%);
  margin: 0 auto;
}

.portfolio-hero h1 {
  margin: 0;
  max-width: 860px;
  font-family: "Bacasime Antique", Cambria, Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: none;
}

.portfolio-hero p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 250, 244, 0.86);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.portfolio-showcase {
  padding-top: clamp(70px, 8vw, 116px);
  padding-bottom: clamp(70px, 8vw, 116px);
  background: var(--belux-stone);
}

.portfolio-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.portfolio-tile {
  position: relative;
  min-height: clamp(460px, 48vw, 760px);
  overflow: hidden;
  background: var(--belux-dark);
  color: #fffaf4;
}

.portfolio-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--belux-parallax-y), 0) scale(1.055);
  transition: transform 900ms var(--belux-motion-ease);
  will-change: transform;
}

.portfolio-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 14, 12, 0.04) 38%, rgba(16, 14, 12, 0.7) 100%);
}

.portfolio-tile:hover img {
  transform: translate3d(0, var(--belux-parallax-y), 0) scale(1.09);
}

.portfolio-tile-content {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 4vw, 54px);
  right: clamp(22px, 4vw, 54px);
  bottom: clamp(28px, 4vw, 54px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.portfolio-tile h2 {
  margin: 0 0 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(20px, 2.3vw, 34px);
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.15;
  text-transform: uppercase;
}

.portfolio-tile p {
  max-width: 520px;
  margin: 0 0 20px;
  color: rgba(255, 250, 244, 0.86);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.portfolio-button {
  display: inline-flex;
  min-width: 156px;
  justify-content: center;
  border: 1px solid rgba(255, 250, 244, 0.85);
  padding: 12px 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-detail-hero {
  position: relative;
  min-height: min(82vh, 880px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--belux-dark);
}

.project-detail-hero::before,
.project-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.project-detail-hero::before {
  inset: -9%;
  background: var(--project-hero-image) center center / cover no-repeat;
  transform: translate3d(0, var(--belux-parallax-y), 0) scale(1.045);
  will-change: transform;
}

.project-detail-hero::after {
  background:
    linear-gradient(180deg, rgba(16, 14, 12, 0.1), rgba(16, 14, 12, 0.42)),
    linear-gradient(90deg, rgba(16, 14, 12, 0.22), rgba(16, 14, 12, 0.02), rgba(16, 14, 12, 0.24));
}

.project-detail-hero.text-only-hero {
  min-height: auto;
  place-items: start;
  background: var(--belux-stone);
  color: var(--belux-ink);
}

.project-detail-hero.text-only-hero::before,
.project-detail-hero.text-only-hero::after {
  content: none;
}

.project-detail-hero.text-only-hero .project-detail-title {
  color: var(--belux-ink);
  text-align: left;
}

.project-detail-title {
  position: relative;
  z-index: 2;
  width: min(1000px, calc(100% - 44px));
  padding: 150px 0 90px;
  color: #fffaf4;
  text-align: center;
}

.project-detail-title p {
  margin: 0 0 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-detail-title h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 400;
  line-height: 0.95;
}

.project-story {
  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: clamp(70px, 8vw, 110px);
}

.project-story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.project-story h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 400;
  line-height: 0.98;
}

.project-story p:not(.kicker) {
  margin: 0;
  color: var(--belux-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.project-gallery {
  padding-top: 0;
  padding-bottom: clamp(70px, 8vw, 110px);
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.project-gallery figure {
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  background: var(--belux-stone);
  --belux-parallax-y: 0px;
}

.project-gallery figure.wide {
  grid-column: 1 / -1;
  min-height: 620px;
}

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

.compact-gallery figure {
  min-height: 360px;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--belux-parallax-y), 0) scale(1.065);
  will-change: transform;
}

.project-next {
  padding-top: 48px;
  padding-bottom: 72px;
  background: var(--belux-stone);
  border-top: 1px solid var(--belux-line);
}

.project-next .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--belux-line);
  border-bottom: 1px solid var(--belux-line);
}

.contact-panel > div {
  padding: 42px;
}

.contact-panel > div + div {
  border-left: 1px solid var(--belux-line);
}

.contact-page {
  padding-top: clamp(64px, 7vw, 108px);
  padding-bottom: clamp(70px, 8vw, 118px);
  background: var(--belux-stone);
  border-top: 1px solid var(--belux-line);
  color: var(--belux-secondary);
}

.contact-enquiry-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
}

.contact-info-block h2 {
  margin: 0 0 34px;
  max-width: 440px;
  color: var(--belux-secondary);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.08;
}

.contact-detail-group {
  margin-top: 28px;
}

.contact-detail-group h3,
.enquiry-form span {
  margin: 0 0 8px;
  color: var(--belux-secondary);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-icon-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-icon-heading svg {
  width: 17px;
  height: 17px;
  color: var(--belux-secondary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-group p {
  margin: 0;
  color: var(--belux-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

.map-button {
  width: fit-content;
  margin-top: 22px;
  background: transparent;
  color: var(--belux-secondary);
}

.contact-form-block > .kicker {
  margin-bottom: 38px;
  font-size: 22px;
  letter-spacing: 0.12em;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px clamp(32px, 4vw, 70px);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(115, 101, 89, 0.46);
  border-radius: 0;
  padding: 0 0 12px;
  background: transparent;
  color: var(--belux-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  outline: none;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--belux-secondary);
}

.enquiry-form textarea {
  resize: vertical;
}

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

.enquiry-form button {
  justify-self: end;
  grid-column: 1 / -1;
  border: 1px solid rgba(115, 101, 89, 0.48);
  background: transparent;
  color: var(--belux-ink);
  padding: 15px 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.enquiry-form button:hover {
  border-color: var(--belux-primary);
  background: var(--belux-primary);
}

.form-message {
  margin: -18px 0 28px;
  color: var(--belux-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}

.form-message.success {
  color: var(--belux-ink);
}

.site-footer {
  background: var(--belux-stone);
  color: var(--belux-ink);
  border-top: 1px solid var(--belux-line);
}

.footer-image {
  min-height: clamp(210px, 26vw, 380px);
  background:
    linear-gradient(180deg, rgba(16, 14, 12, 0.12), rgba(16, 14, 12, 0.36)),
    url("http://beluxinteriors.com/wp-content/uploads/2026/06/belux-footer-bishopsgate-bed-scaled.jpg") center 58% / cover no-repeat;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(160px, 0.85fr) minmax(230px, 1fr) minmax(250px, 1fr);
  gap: clamp(30px, 4.2vw, 70px);
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(44px, 5vw, 68px) clamp(34px, 5.4vw, 92px) clamp(40px, 4.4vw, 58px);
}

.footer-column h2 {
  margin: 0 0 22px;
  font-family: "Bacasime Antique", Cambria, Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.45vw, 28px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.footer-column nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column a,
.footer-column span,
.footer-newsletter input {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--belux-muted);
}

.footer-column a {
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--belux-ink);
}

.footer-social {
  display: grid;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--belux-muted);
  text-transform: uppercase;
}

.footer-social a:hover {
  color: var(--belux-ink);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}

.footer-contact span,
.footer-contact a {
  text-transform: none;
}

.footer-newsletter form {
  display: grid;
  max-width: 280px;
  gap: 16px;
}

.footer-newsletter input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(115, 101, 89, 0.48);
  border-radius: 0;
  padding: 0 0 12px;
  background: transparent;
  color: var(--belux-ink);
  outline: none;
}

.footer-newsletter input:focus {
  border-color: var(--belux-secondary);
}

.footer-newsletter button {
  justify-self: start;
  border: 1px solid var(--belux-primary);
  background: var(--belux-primary);
  color: var(--belux-ink);
  padding: 13px 26px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.footer-newsletter button:hover {
  border-color: var(--belux-secondary);
  background: transparent;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px clamp(34px, 5.4vw, 92px) 30px;
  border-top: 1px solid var(--belux-line);
  color: var(--belux-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.belux-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 900ms var(--belux-motion-ease) var(--reveal-delay, 0ms),
    transform 1100ms var(--belux-motion-ease) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.belux-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-copy.belux-reveal,
.project-detail-title.belux-reveal,
.portfolio-hero-content.belux-reveal,
.page-hero .inner.belux-reveal {
  transform: translate3d(0, 18px, 0);
}

.project-card.belux-reveal,
.portfolio-tile.belux-reveal,
.project-gallery figure.belux-reveal {
  transform: translate3d(0, 34px, 0);
}

@media (max-width: 980px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header {
    min-height: 78px;
  }

  .site-nav,
  .site-nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.menu-open .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 18px 22px;
    background: rgba(16, 14, 12, 0.96);
  }

  body.menu-open .site-nav ul {
    display: grid;
    gap: 0;
  }

  body.menu-open .site-nav a {
    padding: 16px 0;
  }

  .intro .inner,
  .project-grid,
  .services-grid,
  .service-detail-grid,
  .portfolio-grid,
  .portfolio-showcase-grid,
  .project-story-grid,
  .project-gallery-grid,
  .compact-gallery .project-gallery-grid,
  .split,
  .split.reverse,
  .contact-panel,
  .contact-enquiry-panel {
    grid-template-columns: 1fr;
  }

  .rule {
    display: none;
  }

  .services-heading h2,
  .services h2 {
    max-width: 560px;
  }

  .service,
  .contact-panel > div + div {
    border-left: 0;
  }

  .service {
    border-top: 1px solid var(--belux-line);
    padding: 24px 0 0;
  }

  .client-logo {
    min-width: 142px;
    height: 58px;
    margin-right: 28px;
    padding: 0 16px;
  }

  .client-logo img {
    max-width: 108px;
    max-height: 25px;
  }

  .client-logo-name {
    font-size: 8px;
  }

  .home-about-media {
    min-height: 420px;
  }
}

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

  .hero::before,
  .page-hero.image-hero::before,
  .portfolio-hero::before,
  .project-detail-hero::before,
  .home-about-media video,
  .project-card.featured img,
  .portfolio-tile img,
  .portfolio-tile:hover img,
  .project-gallery img {
    transform: none;
    transition: none;
  }

  .belux-reveal,
  .belux-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .client-marquee-track {
    animation: none;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 680px;
    align-items: flex-end;
    padding-bottom: 54px;
  }

  .hero-copy {
    max-width: 300px;
  }

  .hero h1 {
    max-width: 292px;
    font-size: 38px;
    line-height: 1.05;
  }

  .hero p {
    max-width: 300px;
    font-size: 15px;
  }

  .intro h2 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 27px;
    overflow-wrap: break-word;
  }

  .project-card,
  .portfolio-item,
  .project-content {
    min-width: 0;
  }

  .project-card p,
  .portfolio-item p,
  .portfolio-tile p,
  .project-story p,
  .service-detail p,
  .split p,
  .content-block p,
  .content-block li {
    overflow-wrap: break-word;
  }

  .button {
    width: 100%;
  }

  .project-card.featured {
    min-height: 430px;
  }

  .project-content,
  .contact-panel > div {
    padding: 28px;
  }

  .split img {
    min-height: 340px;
  }

  .portfolio-item {
    grid-template-rows: 250px 1fr;
  }

  .service-detail {
    padding: 28px;
  }

  .portfolio-hero {
    min-height: 420px;
    padding-top: 132px;
    padding-bottom: 46px;
  }

  .portfolio-hero h1 {
    font-size: 48px;
  }

  .portfolio-showcase {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .portfolio-tile {
    min-height: 520px;
  }

  .portfolio-tile h2 {
    font-size: 20px;
  }

  .project-detail-hero {
    min-height: 620px;
  }

  .project-detail-title h1 {
    font-size: 52px;
  }

  .project-gallery figure,
  .project-gallery figure.wide {
    grid-column: auto;
    min-height: 360px;
  }

  .compact-gallery figure {
    min-height: 310px;
  }

  .page-hero,
  .page-hero.image-hero {
    min-height: 420px;
    padding-top: 132px;
    padding-bottom: 46px;
  }

  .page-hero h1 {
    font-size: 48px;
  }

  .contact-page {
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .contact-info-block h2 {
    font-size: 34px;
  }

  .contact-form-block > .kicker {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .enquiry-form button {
    justify-self: stretch;
  }

  .project-next .inner {
    display: grid;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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