/* ============================================================
   ATTRACTIVE HOME — Modern Redesign (reference-inspired)
   Dark, warm, angular hero · PHP multi-page
   ============================================================ */

:root {
  /* warm-light palette (cream #EEDBB4 + coral #ED7E64) */
  --bg: #f3e6cf;
  /* warm sand */
  --bg-soft: #f7eedb;
  --surface: rgba(255, 251, 244, .62);
  /* glass card */
  --panel: rgba(255, 250, 242, .55);
  --line: rgba(122, 66, 36, .16);
  --ink: #392318;
  /* espresso */
  --muted: #8a6f59;
  /* warm taupe */
  --accent: #e07a52;
  /* coral */
  --accent-2: #c0792f;
  /* deep amber */
  --radius: 20px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background:
    radial-gradient(1100px 620px at 82% -4%, rgba(237, 126, 100, .20), transparent 58%),
    radial-gradient(900px 600px at 0% 30%, rgba(238, 219, 180, .5), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

em {
  font-style: italic;
  color: var(--accent-2)
}

.shell {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 26px
}

/* ---------- shared bits ---------- */
.eyebrow {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px
}

.section {
  padding: 110px 0;
  position: relative
}

.section--tight {
  padding: 72px 0 110px
}

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.03;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: -.01em
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 36px;
  margin-bottom: 56px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .3s var(--ease);
  font-family: var(--sans)
}

.btn--solid {
  background: var(--accent);
  color: #241c0c
}

.btn--solid:hover {
  background: var(--accent-2);
  transform: translateY(-2px)
}

.btn--ghost {
  border-color: var(--line);
  color: var(--ink)
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-2)
}

.btn--block {
  width: 100%
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--accent), #b5683f)
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #241712;
  transition: opacity .6s var(--ease), visibility .6s var(--ease)
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.preloader__inner {
  width: min(440px, 78vw);
  text-align: center;
  color: #f5ece0
}

.preloader__logo {
  width: 210px;
  max-width: 70%;
  height: auto;
  margin: 0 auto 32px;
  display: block;
  animation: plFloat 2.6s var(--ease) infinite alternate
}

@keyframes plFloat {
  from { transform: translateY(0) }
  to   { transform: translateY(-7px) }
}

.preloader__bar {
  height: 3px;
  width: 100%;
  background: rgba(255, 255, 255, .12);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .18s linear
}

.preloader__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px
}

.preloader__label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #bda893
}

.preloader__pct {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--accent-2)
}

.preloader__explore {
  display: block;
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: #f5ece0;
  opacity: 0;
  transform: translateY(8px);
  transition: .5s var(--ease)
}

.preloader__explore.show {
  opacity: 1;
  transform: none
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: .4s var(--ease);
  /* dark bar so the cream/coral logo + light icons stay visible over the hero (same on every page) */
  background: rgba(33, 20, 15, .97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 26px
}

.nav.scrolled {
  background: rgba(29, 28, 25, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line)
}

.nav.scrolled .nav__inner {
  padding-top: 13px;
  padding-bottom: 13px
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700
}

.brand__logo {
  height: 48px;
  width: auto;
  display: block
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #2f2d29;
  color: #EAD8AE;
  border: 1px solid rgba(234, 216, 174, .25)
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: 1.02rem;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .01em
}

.brand__text small {
  font-weight: 600;
  font-size: .58rem;
  color: var(--muted);
  letter-spacing: .2em;
  font-family: var(--sans)
}

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

.nav__links a {
  font-size: .95rem;
  color: #c9b6a1;
  transition: .25s;
  position: relative
}

.nav__links a:hover,
.nav__links a.is-active {
  color: #f5ece0
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: .3s var(--ease)
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%
}

.nav__tools {
  display: flex;
  align-items: center;
  gap: 10px
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 236, 224, .4);
  background: rgba(255, 255, 255, .07);
  color: #f7efe3;
  transition: .25s var(--ease)
}

.icon-btn:hover {
  border-color: var(--accent);
  color: var(--accent-2);
  transform: translateY(-2px)
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: 4px
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: #f5ece0;
  transition: .3s var(--ease)
}

/* ============================================================
   HERO (warm glassmorphism — cream #EEDBB4 → coral #ED7E64)
   ============================================================ */
:root {
  --cream: #EEDBB4;
  --coral: #ED7E64
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 60px;
  background: linear-gradient(125deg, var(--cream) 0%, #ecb98c 42%, var(--coral) 100%);
}

/* big interior photo on the right half */
.hero__photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 22%);
  mask-image: linear-gradient(to right, transparent, #000 22%);
  animation: slowZoom 22s var(--ease) infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.06)
  }
}

/* warm wash to keep text legible + unify the blend */
.hero__wash {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, rgba(237, 126, 100, .18) 0%, rgba(238, 219, 180, .05) 45%, transparent 70%)
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  gap: 40px;
  align-items: end
}

/* frosted glass card */
.glass {
  background: rgba(255, 247, 236, .16);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: 0 30px 70px rgba(120, 52, 30, .22);
}

.hero__card {
  grid-column: 1;
  border-radius: 26px;
  padding: 48px 44px;
  align-self: start;
  margin-top: 10px
}

.hero__eyebrow {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #7a3c25;
  margin-bottom: 22px
}

.hero__title {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: .92;
  font-size: clamp(3rem, 6.4vw, 5.6rem);
  color: #fff;
  text-shadow: 0 4px 24px rgba(120, 52, 30, .28);
  margin-bottom: 24px
}

.hero__sub {
  color: #fbeede;
  max-width: 380px;
  margin-bottom: 34px;
  font-size: 1.04rem;
  line-height: 1.55
}

/* pill button (outline → fill on hover) */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 15px 40px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, .85);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: .3s var(--ease)
}

.btn-pill:hover {
  background: #fff;
  color: var(--coral);
  transform: translateY(-2px)
}

/* three category cards bottom-right */
.hero__cards {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 520px;
  margin-left: auto
}

.hcard {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  padding: 6px;
  display: flex;
  align-items: flex-end;
  transition: .35s var(--ease)
}

.hcard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: .6s var(--ease)
}

.hcard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(120, 52, 30, .6), transparent 60%)
}

.hcard span {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 10px;
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase
}

.hcard:hover {
  transform: translateY(-6px)
}

.hcard:hover img {
  transform: scale(1.08)
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 170px 0 70px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center
}

.page-hero__inner {
  max-width: 620px
}

.page-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.01em;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 22px
}

.page-hero__sub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 520px
}

.page-hero__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 16%)
}

.page-hero__media img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover
}

.page-hero--center {
  display: block;
  text-align: center;
  padding-bottom: 30px
}

.page-hero--center .page-hero__inner {
  margin: 0 auto
}

.page-hero--center .page-hero__sub {
  margin: 0 auto
}

/* ============================================================
   STATS + MARQUEE
   ============================================================ */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft)
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 26px
}

.stat {
  text-align: center
}

.stat strong {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--accent-2);
  display: block
}

.stat span {
  color: var(--muted);
  font-size: .93rem
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 16px 0
}

.marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  width: max-content;
  animation: scrollX 32s linear infinite
}

.marquee__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--muted)
}

.marquee__track span:nth-child(even) {
  color: var(--accent)
}

@keyframes scrollX {
  to {
    transform: translateX(-50%)
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.svc {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px 30px;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease)
}

/* bottom accent bar grows on hover */
.svc::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .45s var(--ease)
}

.svc:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 122, 82, .5);
  box-shadow: 0 26px 54px rgba(120, 60, 30, .14)
}

.svc:hover::before {
  width: 100%
}

/* large editorial ghost number, top-right */
.svc__num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
  opacity: .24;
  transition: .45s var(--ease)
}

.svc:hover .svc__num {
  opacity: .55;
  transform: translateY(-2px)
}

/* icon in a rounded badge that fills on hover */
.svc__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(224, 122, 82, .12);
  color: var(--accent);
  transition: .45s var(--ease)
}

.svc:hover .svc__icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(-6deg) scale(1.05)
}

.svc__icon svg {
  display: block;
  width: 26px;
  height: 26px
}

.svc h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.12
}

.svc p {
  color: var(--muted);
  font-size: .95rem;
  margin-top: auto
}

/* ============================================================
   PORTFOLIO GALLERY
   ============================================================ */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px
}

.filter {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 500;
  font-family: var(--sans);
  transition: .25s var(--ease)
}

.filter:hover {
  color: var(--ink);
  border-color: var(--accent)
}

.filter.is-active {
  background: var(--accent);
  color: #241c0c;
  border-color: var(--accent)
}

.gallery {
  column-count: 3;
  column-gap: 18px
}

.shot {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #e8d9c0;
  aspect-ratio: 4/3;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease)
}

.shot.tall {
  aspect-ratio: 3/4
}

.shot.wide {
  aspect-ratio: 3/2
}

.shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease)
}

.shot:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 64px rgba(120, 60, 30, .20);
  border-color: rgba(224, 122, 82, .55)
}

.shot:hover img {
  transform: scale(1.06)
}

/* persistent legibility gradient */
.shot__grad {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: .4s var(--ease);
  background: linear-gradient(to top, rgba(33, 18, 11, .86) 0%, rgba(33, 18, 11, .20) 34%, transparent 62%)
}

/* frosted category chip + editorial index */
.shot__chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  color: #fff;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 100px;
  background: rgba(255, 247, 236, .18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .3)
}

.shot__no {
  position: absolute;
  top: 13px;
  right: 17px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .78);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35)
}

/* bottom meta: title + circular arrow */
.shot__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 20px
}

.shot__txt small {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px
}

.shot__txt strong {
  font-family: var(--serif);
  font-weight: 500;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.08;
  display: block;
  opacity: .94;
  transform: translateY(5px);
  transition: .45s var(--ease)
}

.shot.wide .shot__txt strong {
  font-size: 1.7rem
}

.shot:hover .shot__txt strong {
  opacity: 1;
  transform: none
}

.shot__go {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .34);
  opacity: 0;
  transform: translateY(12px) rotate(-10deg);
  transition: .45s var(--ease)
}

.shot:hover .shot__go {
  opacity: 1;
  transform: none;
  background: var(--accent);
  border-color: var(--accent)
}

.shot.hide {
  display: none
}

/* ============================================================
   SKIRTING
   ============================================================ */
.skirting {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.skirting__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.skirting__media {
  position: relative;
  min-height: 430px
}

.skirting__media img {
  width: 78%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  object-fit: cover;
  aspect-ratio: 3/4
}

.skirting__media--2 {
  position: absolute;
  bottom: -22px;
  right: 0;
  width: 52% !important;
  aspect-ratio: 1 !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5)
}

.skirting__text p {
  color: var(--muted);
  margin-bottom: 22px
}

.ticks {
  list-style: none;
  margin: 0 0 30px
}

.ticks li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 11px
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent)
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line)
}

.about__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover
}

.about__text p {
  color: var(--muted);
  margin-bottom: 18px
}

.about__pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px
}

.about__pills span {
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: .86rem
}

/* ============================================================
   CTA
   ============================================================ */
.cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 64px 40px
}

.cta__inner p {
  color: var(--muted);
  margin: 18px auto 28px;
  max-width: 460px
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start
}

.contact__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px
}

.cdetail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition: .3s var(--ease)
}

a.cdetail:hover {
  border-color: var(--accent);
  transform: translateY(-3px)
}

.cdetail__k {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent)
}

.cdetail__v {
  font-size: 1rem;
  font-weight: 500
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 260px
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.3) contrast(1.05)
}

.contact__form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px
}

.contact__form h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  margin-bottom: 22px
}

.field {
  margin-bottom: 18px
}

.field label {
  display: block;
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 8px
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  transition: .25s;
  resize: vertical
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent)
}

.field input.invalid,
.field textarea.invalid {
  border-color: #b5683f
}

.form__note {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 14px;
  text-align: center
}

.form__success {
  margin: 0 0 18px;
  color: var(--accent-2);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5em
}

.form__success svg {
  flex: none
}

.ico-ar {
  flex: none
}

/* ============================================================
   FOOTER + FAB + LIGHTBOX
   ============================================================ */
.footer {
  padding: 62px 0 36px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft)
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 34px
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 360px
}

.footer__logo {
  width: 230px;
  max-width: 100%;
  height: auto
}

.footer__brand p {
  color: var(--muted);
  font-size: .94rem
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.footer__nav a {
  color: var(--muted);
  transition: .25s
}

.footer__nav a:hover {
  color: var(--accent)
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--muted)
}

.footer__contact a:hover {
  color: var(--accent)
}

.footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .86rem
}

.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .4);
  transition: .3s var(--ease)
}

.fab:hover {
  transform: scale(1.08) translateY(-2px)
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 9, 8, .92);
  display: grid;
  place-items: center;
  padding: 30px;
  opacity: 0;
  transition: .3s var(--ease)
}

.lightbox.in {
  opacity: 1
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 14px;
  transform: scale(.96);
  transition: .3s var(--ease)
}

.lightbox.in img {
  transform: scale(1)
}

.lightbox__x {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .8s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ============================================================
   WARM-LIGHT THEME — glass bands & cards, light nav, dark footer
   ============================================================ */
/* frosted glass on cards + bands */
.svc,
.cta__inner,
.contact__form,
.cdetail {
  -webkit-backdrop-filter: blur(12px) saturate(118%);
  backdrop-filter: blur(12px) saturate(118%);
  box-shadow: 0 16px 44px rgba(120, 60, 30, .07);
}

.cta__inner,
.contact__form {
  box-shadow: 0 26px 60px rgba(120, 60, 30, .12)
}

.stats,
.skirting,
.contact {
  background: rgba(255, 250, 242, .5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.stat strong {
  color: var(--accent)
}

/* scrolled nav → darker espresso bar (logo stays visible) */
.nav.scrolled {
  background: rgba(28, 18, 14, .95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

/* gallery gradient stays dark over photos */
.shot__grad {
  background: linear-gradient(to top, rgba(38, 21, 12, .88) 0%, rgba(38, 21, 12, .2) 34%, transparent 62%)
}

/* footer: deep warm anchor so the cream/coral logo pops */
.footer {
  background: #241712;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.footer__brand p,
.footer__contact,
.footer__nav a {
  color: #bda893
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--coral)
}

.footer__meta {
  color: #9a8773;
  border-top-color: rgba(255, 255, 255, .08)
}

/* ============================================================
   PROCESS · TRUST · TESTIMONIALS  (+ glass-panel art)
   ============================================================ */
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex: none
}

/* --- process --- */
.process__grid {
  display: grid;
  grid-template-columns: .82fr 1.7fr;
  gap: 54px;
  align-items: start;
  margin-bottom: 18px
}

.process__intro>p {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 300px
}

.process__tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--ink);
  font-weight: 500;
  margin-top: 38px
}

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

.pstep {
  position: relative;
  padding-left: 18px
}

.pstep::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  height: 296px;
  width: 1px;
  background: linear-gradient(var(--line), rgba(122, 66, 36, .04))
}

.pstep__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 14px
}

.pstep__line {
  display: block;
  width: 1px;
  height: 38px;
  background: var(--line);
  margin: 0 0 18px 2px;
  position: relative
}

.pstep__line::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent)
}

.pstep h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink)
}

.pstep p {
  color: var(--muted);
  font-size: .92rem
}

/* --- glass-panel art (shared) --- */
.glass-art {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 4px
}

/* soft grounding reflection under the panels */
.glass-art::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 66%;
  height: 26px;
  background: radial-gradient(ellipse at center, rgba(120, 60, 30, .22), transparent 72%);
  filter: blur(7px);
  z-index: 0
}

.glass-art__base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 72%;
  border-radius: 120px 120px 16px 16px;
  overflow: hidden;
  opacity: .62
}

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

.slab {
  position: relative;
  flex: none;
  width: clamp(54px, 7.5vw, 110px);
  margin-left: -24px;
  overflow: hidden;
  border-radius: 80px 80px 10px 10px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-top-color: rgba(255, 255, 255, .75);
  -webkit-backdrop-filter: blur(3px) saturate(115%);
  backdrop-filter: blur(3px) saturate(115%);
  box-shadow: 0 26px 50px rgba(180, 92, 42, .16), inset 0 1px 0 rgba(255, 255, 255, .55);
  animation: slabFloat 6s var(--ease) infinite
}

/* diagonal glass sheen */
.slab::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .4) 0%, rgba(255, 255, 255, .05) 38%, transparent 60%)
}

.slab:first-child {
  margin-left: 0
}

/* staggered float (base image is child 1, slabs start at child 2) */
.glass-art .slab:nth-child(2)  { animation-delay: -.2s;  animation-duration: 6.4s }
.glass-art .slab:nth-child(3)  { animation-delay: -1.4s; animation-duration: 5.6s }
.glass-art .slab:nth-child(4)  { animation-delay: -2.6s; animation-duration: 6.8s }
.glass-art .slab:nth-child(5)  { animation-delay: -3.4s; animation-duration: 5.9s }
.glass-art .slab:nth-child(6)  { animation-delay: -4.1s; animation-duration: 6.5s }
.glass-art .slab:nth-child(7)  { animation-delay: -5s;   animation-duration: 6.1s }

@keyframes slabFloat {
  0%, 100% { transform: translateY(0) }
  50%      { transform: translateY(-12px) }
}

.slab--stone {
  height: 62%;
  background: linear-gradient(160deg, #f0e4d0, #d9c5a4)
}

.slab--stone2 {
  height: 56%;
  background: linear-gradient(160deg, #e9dcc6, #cbb389)
}

.slab--amber {
  height: 82%;
  background: linear-gradient(180deg, rgba(255, 190, 140, .55), rgba(226, 84, 28, .9))
}

.slab--amber2 {
  height: 66%;
  background: linear-gradient(180deg, rgba(255, 202, 152, .5), rgba(237, 126, 100, .82))
}

.slab--ribbed {
  height: 72%;
  background: rgba(245, 238, 226, .5);
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .55) 0 3px, rgba(190, 150, 110, .28) 3px 7px)
}

.slab--clear {
  height: 88%;
  background: rgba(255, 255, 255, .24)
}

/* --- trust / results --- */
.trust__grid {
  display: grid;
  grid-template-columns: 1fr .92fr .8fr;
  gap: 42px;
  align-items: center
}

.trust__left>p {
  color: var(--muted);
  max-width: 320px;
  margin: 18px 0 28px
}

.trust__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.trust__label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px
}

.trust__sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 18px;
  margin-bottom: 28px
}

.trust__sectors span {
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  opacity: .62
}

.trust__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line)
}

.trust__stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--accent);
  line-height: 1.1
}

.trust__stats span {
  font-size: .78rem;
  color: var(--muted)
}

.trust__art {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.trust__art .glass-art__base {
  width: 78%;
  height: 90%;
  border-radius: 130px 130px 14px 14px;
  opacity: .7
}

.trust__art .slab {
  height: 90%
}

.trust__art .slab--amber {
  height: 96%
}

.float-card {
  position: absolute;
  bottom: 26px;
  right: -8px;
  z-index: 5;
  max-width: 182px;
  background: rgba(255, 251, 244, .82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 17px;
  box-shadow: 0 20px 42px rgba(120, 60, 30, .16)
}

.float-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
  color: var(--ink)
}

.float-card small {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.45
}

/* --- testimonials --- */
.tmls__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr .82fr;
  gap: 44px;
  align-items: center
}

.tmls__left>p {
  color: var(--muted);
  max-width: 320px;
  margin: 18px 0 28px
}

.tmls__stats {
  display: flex;
  gap: 34px;
  margin-bottom: 28px
}

.tmls__k {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px
}

.tmls__stats strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--accent);
  display: block;
  line-height: 1
}

.tmls__stats span {
  color: var(--muted);
  font-size: .84rem
}

.tmls__quotes {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.quote {
  position: relative;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line)
}

.quote:last-child {
  border-bottom: 0;
  padding-bottom: 0
}

.quote__mark {
  font-family: var(--serif);
  font-size: 3rem;
  color: rgba(140, 90, 60, .32);
  line-height: .6;
  display: block;
  margin-bottom: 8px
}

.quote blockquote {
  font-size: 1.16rem;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 500
}

.quote__rule {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 14px;
  border-radius: 2px
}

.quote figcaption strong {
  display: block;
  font-size: .95rem
}

.quote figcaption span {
  color: var(--muted);
  font-size: .85rem
}

.tmls__art {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.tmls__art .glass-art__base {
  width: 86%;
  height: 94%;
  border-radius: 140px 140px 14px 14px;
  opacity: 1
}

.tmls__art .slab {
  height: 92%
}

.tmls__art .slab--amber {
  height: 80%;
  mix-blend-mode: multiply
}

/* ============================================================
   WALLPAPER VISUALIZER
   ============================================================ */
.viz {
  display: grid;
  grid-template-columns: 1.55fr .9fr;
  gap: 30px;
  align-items: start
}

.viz__stagewrap {
  position: sticky;
  top: 96px
}

.viz__stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e8d9c0;
  box-shadow: 0 26px 60px rgba(120, 60, 30, .12);
  min-height: 280px
}

.viz__stage canvas {
  display: block;
  width: 100%;
  height: auto;
  cursor: crosshair;
  touch-action: none
}

.viz__stage.is-painting canvas {
  cursor: grabbing
}

.viz__hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  white-space: nowrap;
  background: rgba(33, 18, 11, .62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .82rem;
  padding: 9px 18px;
  border-radius: 100px;
  pointer-events: none;
  transition: .3s var(--ease)
}

.viz__hint.hide {
  opacity: 0
}

.viz__loading {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(245, 238, 226, .7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  font-size: .9rem
}

.viz__tip {
  color: var(--muted);
  font-size: .85rem;
  margin-top: 14px
}

.viz__tip strong {
  color: var(--ink)
}

.viz__panel {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.viz__group {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px)
}

.viz__group h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 16px
}

.viz__step {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex: none
}

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

.viz__room {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: none;
  transition: .25s var(--ease)
}

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

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

.viz__room.is-active {
  border-color: var(--accent)
}

.viz__upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  aspect-ratio: 4/3;
  width: 100%;
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  cursor: pointer;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  text-align: center;
  transition: .25s var(--ease);
  background: none;
  font-family: var(--sans)
}

.viz__upload:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.viz__note {
  font-size: .74rem;
  color: var(--muted);
  margin-top: 10px;
  text-align: center
}

.viz__swatches {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 9px
}

.viz__sw {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(122, 66, 36, .12);
  transition: .2s var(--ease)
}

.viz__sw:hover {
  transform: scale(1.08)
}

.viz__sw.is-active {
  border-color: var(--ink);
  box-shadow: 0 6px 16px rgba(120, 60, 30, .22)
}

.viz__tools {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.viz__toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px
}

.viz__toggle--3 {
  grid-template-columns: 1.25fr 1fr 1fr
}

.viz__toggle button {
  border: 0;
  background: none;
  padding: 10px 6px;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 600;
  font-size: .86rem;
  color: var(--muted);
  transition: .2s var(--ease);
  white-space: nowrap
}

.viz__toggle button.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(224, 122, 82, .3)
}

.viz__range {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500
}

.viz__range[hidden] {
  display: none
}

.viz__range input {
  width: 100%;
  accent-color: var(--accent)
}

.viz__btns--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px
}

.viz__btns--grid .btn {
  padding: 12px 14px;
  font-size: .9rem
}

.viz__btns--grid .btn--solid {
  grid-column: 1 / -1
}

#vizCompare.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent)
}

/* ============================================================
   SERVICES ORBIT (mobile-only rotating carousel)
   ============================================================ */
.orbit {
  display: none;
  --orbit-ease: cubic-bezier(0, .37, 1, .63)
}

.orbit__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  z-index: 1
}

.orbit__list:hover * {
  animation-play-state: paused
}

.orbit li {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  animation: rotateCW calc(var(--rotate-speed, 42) * 1s) var(--orbit-ease) infinite
}

.ocard {
  width: 34%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 11px 13px;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(120, 60, 30, .1), 0 16px 30px rgba(120, 60, 30, .12);
  animation: rotateCCW calc(var(--rotate-speed, 42) * 1s) var(--orbit-ease) infinite
}

.ocard__ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(224, 122, 82, .12);
  color: var(--accent)
}

.ocard__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: .86rem;
  line-height: 1.15;
  color: var(--ink)
}

.orbit li:nth-child(2),
.orbit li:nth-child(2) .ocard {
  animation-delay: calc((var(--rotate-speed, 42)/var(--count, 6)) * -1s)
}

.orbit li:nth-child(3),
.orbit li:nth-child(3) .ocard {
  animation-delay: calc((var(--rotate-speed, 42)/var(--count, 6)) * -2s)
}

.orbit li:nth-child(4),
.orbit li:nth-child(4) .ocard {
  animation-delay: calc((var(--rotate-speed, 42)/var(--count, 6)) * -3s)
}

.orbit li:nth-child(5),
.orbit li:nth-child(5) .ocard {
  animation-delay: calc((var(--rotate-speed, 42)/var(--count, 6)) * -4s)
}

.orbit li:nth-child(6),
.orbit li:nth-child(6) .ocard {
  animation-delay: calc((var(--rotate-speed, 42)/var(--count, 6)) * -5s)
}

@keyframes rotateCW {
  from {
    transform: translate3d(0, -50%, -1px) rotate(-45deg)
  }

  to {
    transform: translate3d(0, -50%, 0) rotate(-315deg)
  }
}

@keyframes rotateCCW {
  from {
    transform: rotate(45deg)
  }

  to {
    transform: rotate(315deg)
  }
}

@keyframes pulseGlow {
  from {
    background-size: 60%
  }

  to {
    background-size: 100%
  }
}

.orbit__core {
  position: absolute;
  width: 29%;
  aspect-ratio: 1/1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  display: grid;
  place-items: center;
  background: #fbf3e6;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 18px 36px -18px rgba(120, 60, 30, .4), 0 30px 60px -12px rgba(120, 60, 30, .25)
}

.orbit__core span {
  font-family: var(--serif);
  font-size: .82rem;
  line-height: 1.1;
  text-align: center;
  color: var(--accent)
}

.orbit__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #f7efe0
}

.orbit__ring--2 {
  width: 48%;
  opacity: .55
}

.orbit__ring--3 {
  width: 70%;
  opacity: .3
}

/* reveal the LEFT half (cards orbit on the left) */
.orbit__crop {
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(90deg, #000, #000 50%, transparent 50%, transparent);
  mask-image: linear-gradient(90deg, #000, #000 50%, transparent 50%, transparent)
}

/* glow sits on the (hidden) right half, accent line down the centre */
.orbit__glow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 0;
  animation: pulseGlow 5s linear infinite alternate;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  background-image: radial-gradient(100% 50% at 0% 50%, rgba(224, 122, 82, .26) 0%, rgba(224, 122, 82, 0) 100%)
}

.orbit__glow:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  left: 0;
  background-image: linear-gradient(180deg, rgba(224, 122, 82, 0) 0%, var(--accent) 50%, rgba(224, 122, 82, 0) 100%)
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1000px) {
  .hero {
    min-height: auto;
    padding: 120px 0 50px
  }

  .hero__photo {
    width: 100%;
    opacity: .5;
    -webkit-mask-image: none;
    mask-image: none
  }

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

  .hero__card {
    grid-column: 1;
    max-width: 560px
  }

  .hero__cards {
    grid-column: 1;
    margin-left: 0;
    max-width: 560px
  }

  .page-hero {
    grid-template-columns: 1fr;
    padding-top: 150px
  }

  .page-hero__media {
    margin-top: 14px
  }

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

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px
  }

  .skirting__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .skirting__media {
    max-width: 440px;
    min-height: 380px
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr
  }

  /* new sections */
  .process__grid {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .pstep::before {
    height: auto;
    top: 0;
    bottom: 0
  }

  .trust__grid {
    grid-template-columns: 1fr;
    gap: 38px
  }

  .trust__art {
    order: 3;
    min-height: 340px
  }

  .tmls__grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .tmls__art {
    order: 3;
    min-height: 340px
  }

  .glass-art {
    height: 250px
  }

  .viz {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .viz__stagewrap {
    position: static
  }
}

@media (max-width:720px) {
  .section {
    padding: 80px 0
  }

  .section--tight {
    padding: 50px 0 80px
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 340px;
    background: #241712;
    border-left: 1px solid rgba(255, 255, 255, .08);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transform: translateX(100%);
    transition: .4s var(--ease)
  }

  .nav__links.open {
    transform: none
  }

  .nav__links a {
    font-size: 1.2rem
  }

  .nav__toggle {
    display: flex;
    z-index: 101
  }

  .nav__toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
  }

  .nav__toggle.open span:nth-child(2) {
    opacity: 0
  }

  .nav__toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
  }

  /* declutter mobile header: keep tap-to-call, drop the decorative bag icon */
  .nav__tools .icon-btn+.icon-btn {
    display: none
  }

  .nav__inner {
    padding-left: 18px;
    padding-right: 18px
  }

  .brand__logo {
    height: 40px
  }

  .hero__card {
    padding: 36px 28px
  }

  .hero__cards {
    gap: 12px
  }

  /* services become a swipeable carousel on mobile */
  .svc-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 20px
  }

  .svc-grid::-webkit-scrollbar {
    display: none
  }

  .svc {
    flex: 0 0 82%;
    scroll-snap-align: center
  }

  /* portfolio becomes a swipeable carousel on mobile */
  .gallery {
    display: flex;
    column-count: initial;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 20px
  }

  .gallery::-webkit-scrollbar {
    display: none
  }

  .shot,
  .shot.tall,
  .shot.wide {
    flex: 0 0 82%;
    width: auto;
    margin: 0;
    aspect-ratio: 4/3;
    scroll-snap-align: center
  }

  .shot__txt strong,
  .shot.wide .shot__txt strong {
    font-size: 1.18rem;
    transform: none;
    opacity: 1
  }

  .shot__go {
    width: 38px;
    height: 38px;
    opacity: 1;
    transform: none
  }

  .shot__meta {
    padding: 15px
  }

  .contact__details {
    grid-template-columns: 1fr
  }

  .cta__inner {
    padding: 48px 26px
  }

  .process__steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px
  }

  .trust__sectors {
    grid-template-columns: 1fr 1fr
  }

  .tmls__stats {
    gap: 26px
  }

  .viz__swatches {
    grid-template-columns: repeat(7, 1fr)
  }

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

@media (max-width:480px) {
  body {
    font-size: 16px
  }

  .shell {
    padding: 10px 18px
  }

  .svc {
    min-height: 0;
    padding: 26px 22px 24px
  }

  .svc__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px
  }

  .svc__num {
    font-size: 2rem;
    top: 18px;
    right: 20px
  }

  .svc h3 {
    font-size: 1.28rem
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 46px 22px
  }

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

  .hero {
    padding: 104px 0 44px
  }

  .hero__card {
    padding: 30px 22px
  }

  .hero__title {
    font-size: clamp(2.6rem, 13vw, 3.4rem)
  }

  .hero__sub {
    font-size: 1rem
  }

  .hero__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
  }

  .hcard span {
    font-size: .58rem;
    letter-spacing: .08em;
    padding: 8px 4px
  }

  .shot,
  .shot.tall,
  .shot.wide {
    flex-basis: 86%
  }

  .process__tag {
    margin-top: 26px
  }

  .trust__stats {
    gap: 12px
  }

  .trust__stats strong {
    font-size: 1.5rem
  }

  .tmls__stats {
    flex-wrap: wrap;
    gap: 20px
  }

  .cta__inner {
    padding: 40px 22px
  }

  .section__head {
    gap: 22px
  }

  /* glass-panel art scales down (no crowding) */
  .glass-art {
    height: 230px
  }

  .slab {
    width: clamp(38px, 13vw, 84px);
    margin-left: -16px;
    border-radius: 56px 56px 8px 8px
  }

  .glass-art__base {
    width: 64%
  }

  @keyframes slabFloat {
    0%, 100% { transform: translateY(0) }
    50%      { transform: translateY(-8px) }
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}