
:root {
  --ink: #13201d;
  --ink-2: #1c2d29;
  --forest: #203c34;
  --gold: #e2ae45;
  --gold-light: #f2ce78;
  --ivory: #f8f5ed;
  --paper: #fffdf8;
  --sand: #e9e1d2;
  --sage: #9ca994;
  --muted: #66716d;
  --line: rgba(19, 32, 29, 0.13);
  --white: #ffffff;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 24px 80px rgba(19, 32, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-geist), "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-shell {
  overflow: clip;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.announcement {
  background: var(--ink);
  color: #eff4f0;
  font-size: 12px;
  letter-spacing: .04em;
}

.announcement-inner {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement-inner span,
.announcement-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement-phones {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.announcement-phones a + a {
  padding-inline-start: 18px;
  border-inline-start: 1px solid rgba(255, 255, 255, .24);
}

.announcement .icon {
  width: 15px;
  height: 15px;
  color: var(--gold-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, .94);
  border-bottom: 1px solid rgba(19, 32, 29, .08);
  backdrop-filter: blur(18px);
  transition: box-shadow .3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(19, 32, 29, .08);
}

.nav-wrap {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  min-width: 230px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 17px;
  background: var(--gold);
  color: var(--ink);
}

.brand-mark > span {
  position: absolute;
  width: 37px;
  height: 12px;
  top: 11px;
  left: -7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .4);
  transform: rotate(-20deg);
}

.brand-mark b {
  position: relative;
  font-size: 18px;
  letter-spacing: -.05em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  font-size: 18px;
  line-height: 1;
  letter-spacing: -.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #42504c;
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transition: right .25s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.language-toggle {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.button {
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

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

.button .icon {
  width: 18px;
  height: 18px;
}

.button-small {
  min-height: 48px;
  padding: 0 19px;
  border-radius: 12px;
  font-size: 13px;
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(226, 174, 69, .19);
}

.button-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 18px 40px rgba(226, 174, 69, .27);
}

.button-glass {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .11);
  color: white;
  backdrop-filter: blur(12px);
}

.button-glass:hover {
  background: rgba(255, 255, 255, .18);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: var(--forest);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: none;
  place-items: center;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle .icon {
  width: 25px;
  height: 25px;
}

.menu-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close {
  display: block;
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: calc(100vh - 122px);
  height: 760px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 22, 19, .94) 0%, rgba(10, 22, 19, .79) 36%, rgba(10, 22, 19, .25) 70%, rgba(10, 22, 19, .12) 100%),
    linear-gradient(0deg, rgba(10, 22, 19, .52) 0%, transparent 40%);
}

.hero-grid {
  min-height: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 700px) 1fr;
  align-items: center;
  gap: 60px;
}

.hero-copy {
  padding-bottom: 18px;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a67620;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.eyebrow .icon {
  width: 17px;
  height: 17px;
}

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

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(54px, 6vw, 88px);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 680;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 560;
}

html[dir="rtl"] .hero h1 {
  letter-spacing: -.03em;
  line-height: 1.06;
}

.hero-lead {
  max-width: 630px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
  line-height: 1.75;
}

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

.hero-trust {
  margin-top: 38px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
}

.hero-trust .icon {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
}

.hero-note {
  width: 250px;
  align-self: end;
  justify-self: end;
  margin-bottom: 84px;
  padding: 18px;
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 18px;
  background: rgba(13, 30, 26, .72);
  backdrop-filter: blur(16px);
}

.note-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--gold);
  color: var(--ink);
}

.hero-note small {
  display: block;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

.hero-note strong {
  margin-top: 4px;
  display: block;
  font-size: 12px;
  line-height: 1.35;
}

.hero-note > a .icon {
  width: 18px;
  height: 18px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 24px;
  background: linear-gradient(white, transparent);
}

.section-heading {
  margin-bottom: 50px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.studio-panel h2,
.process-copy h2,
.estimate-copy h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 660;
}

html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .studio-panel h2,
html[dir="rtl"] .process-copy h2,
html[dir="rtl"] .estimate-copy h2 {
  letter-spacing: -.025em;
  line-height: 1.15;
}

.split-heading > p,
.studio-panel > p,
.process-copy > p,
.estimate-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

html[dir="rtl"] .services-grid {
  border-left: 0;
  border-right: 1px solid var(--line);
}

.service-card {
  min-height: 320px;
  position: relative;
  padding: 35px 31px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .36);
  transition: background .3s ease, transform .3s ease;
}

html[dir="rtl"] .service-card {
  border-right: 0;
  border-left: 1px solid var(--line);
}

.service-card:hover {
  z-index: 2;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: #a6aea9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

html[dir="rtl"] .service-number {
  right: auto;
  left: 25px;
}

.service-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 45px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #efe5ce;
  color: #9b6c16;
}

.service-card h3 {
  margin: 0 0 13px;
  font-size: 19px;
  letter-spacing: -.025em;
}

.service-card p {
  margin: 0 0 21px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-card > a {
  color: #8a621c;
  font-size: 11px;
  font-weight: 750;
}

.colour-studio {
  background: var(--ink);
  color: white;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(380px, .78fr);
  align-items: center;
  gap: 72px;
}

.visualizer-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
}

.visualizer-stage img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.wall-tint {
  position: absolute;
  top: 10.5%;
  left: 4.5%;
  right: 4.5%;
  bottom: 32.5%;
  background: var(--wall-color);
  opacity: .82;
  mix-blend-mode: multiply;
  border-radius: 1px;
  transition: background-color .35s ease;
  pointer-events: none;
}

.colour-readout {
  position: absolute;
  left: 20px;
  bottom: 20px;
  min-width: 170px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 14px;
  background: rgba(255, 253, 248, .9);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(19, 32, 29, .16);
  backdrop-filter: blur(12px);
}

html[dir="rtl"] .colour-readout {
  left: auto;
  right: 20px;
}

.colour-readout small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.colour-readout strong {
  font-size: 12px;
}

.colour-readout code {
  color: var(--muted);
  font-size: 10px;
}

.studio-disclaimer {
  margin: 16px 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  line-height: 1.5;
}

.studio-disclaimer .icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.studio-panel .eyebrow {
  color: var(--gold-light);
}

.studio-panel h2 {
  margin-bottom: 25px;
}

.studio-panel > p {
  color: rgba(255, 255, 255, .66);
}

.swatch-grid {
  margin: 31px 0 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.color-swatch {
  min-width: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: transparent;
  color: rgba(255, 255, 255, .67);
  text-align: left;
  cursor: pointer;
}

html[dir="rtl"] .color-swatch {
  text-align: right;
}

.color-swatch > span {
  width: 100%;
  height: 48px;
  display: block;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
  transition: transform .2s ease, border .2s ease;
}

.color-swatch:hover > span,
.color-swatch.is-active > span {
  border-color: white;
  transform: translateY(-2px);
}

.color-swatch small {
  overflow: hidden;
  font-size: 8px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-colour {
  margin-bottom: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: rgba(255, 255, 255, .75);
  font-size: 11px;
}

.custom-control {
  display: flex;
  align-items: center;
  gap: 9px;
}

.custom-control input {
  width: 38px;
  height: 31px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.custom-control b {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.studio-panel .button {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
}

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

.project-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.project-card {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.project-large {
  grid-row: 1 / 3;
  min-height: 580px;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 19, 17, .84), transparent 55%);
}

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

.project-card:hover img {
  transform: scale(1.035);
}

.project-card > div {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
}

.project-card span {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
}

.project-card h3 {
  margin: 7px 0 0;
  font-size: 20px;
  letter-spacing: -.025em;
}

.project-large h3 {
  font-size: 28px;
}

.process {
  background: var(--forest);
  color: white;
}

.process-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 145px;
}

.process-copy .eyebrow {
  color: var(--gold-light);
}

.process-copy h2 {
  margin-bottom: 27px;
}

.process-copy > p {
  color: rgba(255, 255, 255, .65);
}

.text-link {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 750;
}

.text-link .icon {
  width: 17px;
  height: 17px;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  min-height: 138px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 24px;
}

.process-steps li > b {
  padding-top: 7px;
  color: var(--gold-light);
  font-size: 10px;
}

.process-steps li > span {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 15px;
}

.process-steps li .icon {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  color: var(--gold-light);
}

.process-steps strong {
  font-size: 17px;
}

.process-steps small {
  margin-top: 9px;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  line-height: 1.6;
}

.estimate-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(226, 174, 69, .16), transparent 30%),
    var(--sand);
}

.estimate-wrap {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 76px;
}

.estimate-copy h2 {
  margin-bottom: 23px;
}

.estimate-contact {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.estimate-contact > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--ink);
  color: var(--gold-light);
}

.estimate-contact > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.estimate-contact small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

.estimate-contact a {
  font-size: 23px;
  font-weight: 750;
}

.estimate-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}

.estimate-numbers a + a {
  padding-inline-start: 18px;
  border-inline-start: 1px solid rgba(19, 32, 29, .2);
}

.estimate-card {
  padding: 35px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-heading > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #f4e7c9;
  color: #9b6c16;
}

.form-heading h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.035em;
}

.form-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #48534f;
  font-size: 10px;
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(19, 32, 29, .15);
  border-radius: 11px;
  outline: none;
  background: white;
  color: var(--ink);
  font-size: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-grid textarea {
  min-height: 90px;
  padding-top: 13px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(226, 174, 69, .16);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.privacy {
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #7c8581;
  font-size: 8px;
}

.privacy .icon {
  width: 12px;
  height: 12px;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 90px;
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #efe7d7;
  color: #8d651b;
  font-style: normal;
  transition: transform .25s ease;
}

.accordion details[open] summary i {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 680px;
  margin: -3px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.site-footer {
  padding: 75px 0 25px;
  background: #101916;
  color: white;
}

.footer-main {
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1.45fr .55fr .6fr;
  gap: 65px;
}

.brand-light .brand-copy small {
  color: rgba(255, 255, 255, .5);
}

.footer-main > div:first-child p {
  max-width: 430px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  line-height: 1.7;
}

.footer-main > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.footer-main > div:not(:first-child) small {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
}

.footer-main a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .4);
  font-size: 10px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 22px;
  min-height: 52px;
  padding: 0 17px;
  border: 2px solid white;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #167d4b;
  color: white;
  box-shadow: 0 14px 40px rgba(11, 63, 39, .32);
  font-size: 12px;
  font-weight: 750;
  transition: transform .25s ease;
}

html[dir="rtl"] .floating-whatsapp {
  right: auto;
  left: 24px;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-whatsapp .icon {
  width: 20px;
  height: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease var(--delay, 0ms), transform .65s ease var(--delay, 0ms);
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .studio-grid,
  .estimate-wrap {
    gap: 42px;
  }

  .process-grid {
    gap: 65px;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 36px, 760px);
  }

  .section-pad {
    padding: 88px 0;
  }

  .desktop-nav,
  .nav-actions .button-small {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    inset: 122px 0 auto;
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    box-shadow: 0 25px 45px rgba(19, 32, 29, .12);
    transition: max-height .35s ease;
  }

  .mobile-menu.is-open {
    max-height: calc(100vh - 122px);
  }

  .mobile-menu a {
    min-height: 58px;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 650;
  }

  .hero {
    min-height: 740px;
    height: auto;
  }

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

  .hero-note {
    display: none;
  }

  .hero-copy {
    padding: 110px 0 120px;
  }

  .hero h1 {
    max-width: 680px;
  }

  .split-heading,
  .studio-grid,
  .process-grid,
  .estimate-wrap,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 25px;
  }

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

  .studio-grid {
    gap: 52px;
  }

  .studio-visual {
    order: 2;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .project-large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 500px;
  }

  .project-card {
    min-height: 300px;
  }

  .process-copy {
    position: static;
  }

  .estimate-wrap,
  .faq-grid {
    gap: 52px;
  }

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

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 30px);
  }

  .section-pad {
    padding: 72px 0;
  }

  .announcement-inner {
    justify-content: center;
  }

  .announcement-inner > span {
    display: none;
  }

  .announcement-inner > .announcement-phones {
    display: inline-flex;
  }

  .nav-wrap {
    height: 76px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .language-toggle {
    font-size: 12px;
  }

  .mobile-menu {
    inset-block-start: 112px;
  }

  .mobile-menu.is-open {
    max-height: calc(100vh - 112px);
  }

  .hero {
    min-height: calc(100vh - 112px);
    height: auto;
    align-items: end;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(8, 20, 17, .91), rgba(8, 20, 17, .68)), linear-gradient(0deg, rgba(8, 20, 17, .8), transparent 65%);
  }

  .hero-copy {
    padding: 78px 0 92px;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 62px);
    line-height: 1;
  }

  .hero-lead {
    margin: 24px 0 28px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 13px 17px;
  }

  .hero-trust span {
    font-size: 9px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .studio-panel h2,
  .process-copy h2,
  .estimate-copy h2 {
    font-size: 39px;
  }

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

  .service-card {
    min-height: 285px;
  }

  .studio-grid {
    gap: 36px;
  }

  .visualizer-stage {
    border-radius: 22px;
  }

  .colour-readout {
    left: 12px;
    bottom: 12px;
    min-width: 150px;
    padding: 10px 12px;
  }

  html[dir="rtl"] .colour-readout {
    left: auto;
    right: 12px;
  }

  .swatch-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .color-swatch > span {
    height: 42px;
    border-radius: 10px;
  }

  .color-swatch small {
    display: none;
  }

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

  .project-large,
  .project-card {
    min-height: 330px;
  }

  .project-large h3 {
    font-size: 22px;
  }

  .process-grid {
    gap: 38px;
  }

  .process-steps li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .estimate-card {
    margin-inline: -4px;
    padding: 25px 18px;
    border-radius: 24px;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .privacy {
    text-align: center;
  }

  .faq-grid {
    gap: 20px;
  }

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

  .footer-main > div:first-child {
    grid-column: auto;
  }

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

  .floating-whatsapp {
    right: 15px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }

  html[dir="rtl"] .floating-whatsapp {
    right: auto;
    left: 15px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .announcement-phones a + a {
    display: none;
  }

  .estimate-numbers {
    flex-direction: column;
    gap: 2px;
  }

  .estimate-numbers a + a {
    padding-inline-start: 0;
    border-inline-start: 0;
  }
}

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

  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

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