/*
  Boyacınız İstanbul
  Direction: a practical paint catalogue — crisp labels, bold roller marks,
  and a live wall-colour preview instead of a generic contractor template.
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --paper: #f4f3ec;
  --paper-bright: #fffef9;
  --mint: #dce9e2;
  --ink: #10231f;
  --ink-soft: #324842;
  --muted: #667872;
  --line: #cbd4ce;
  --blue: #245fdb;
  --blue-dark: #1949a9;
  --coral: #ef5b48;
  --yellow: #ffc947;
  --whatsapp: #22c76d;
  --white: #ffffff;
  --radius: 22px;
  --radius-small: 12px;
  --shadow: 0 24px 70px rgba(16, 35, 31, 0.14);
  --container: 1180px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 78px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 118px 0;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker span {
  width: 30px;
  height: 8px;
  background: currentColor;
  border-radius: 100px 4px 4px 100px;
}

.kicker-light {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Archivo Black", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.55rem, 5.4vw, 4.7rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 60px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: padding .25s, background-color .25s, border-color .25s, box-shadow .25s;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-color: rgba(16, 35, 31, .1);
  background: rgba(255, 254, 249, .94);
  box-shadow: 0 10px 35px rgba(16, 35, 31, .06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-icon {
  width: 40px;
  height: 40px;
  color: var(--coral);
}

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

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: -.035em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .25em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: .88rem;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: .84rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone svg,
.button svg,
.mobile-contact-bar svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button svg path[d*="17.5 14.4"],
.mobile-contact-bar svg path[d*="17.5 14.4"] {
  fill: currentColor;
  stroke: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 14px 23px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform .22s var(--ease), box-shadow .22s, background-color .22s, color .22s, border-color .22s;
}

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

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: .83rem;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 0 rgba(16, 35, 31, .12);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 13px 0 rgba(16, 35, 31, .1);
}

.button-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

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

.button-whatsapp {
  background: var(--whatsapp);
  color: #082d1a;
}

.button-whatsapp:hover {
  background: #36dc80;
}

.button-light {
  background: var(--paper-bright);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: white;
  transition: transform .25s, opacity .2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 99;
  top: 70px;
  right: 16px;
  left: 16px;
  display: none;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav a:last-child {
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  padding: 154px 0 92px;
  background: var(--mint);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% + 225px);
  width: 1px;
  background: rgba(16, 35, 31, .13);
  content: "";
}

.hero-paint {
  position: absolute;
  top: 240px;
  left: -60px;
  width: clamp(330px, 48vw, 730px);
  height: 84px;
  background: rgba(239, 91, 72, .16);
  border-radius: 7px 60px 50px 6px;
  transform: rotate(-2deg);
}

.hero-paint::after {
  position: absolute;
  right: -33px;
  bottom: 6px;
  width: 70px;
  height: 72px;
  background: inherit;
  border-radius: 55% 15% 50% 35%;
  content: "";
  clip-path: polygon(0 0, 100% 10%, 65% 25%, 100% 42%, 68% 59%, 100% 78%, 0 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .86fr;
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(3.35rem, 6.8vw, 6.4rem);
}

.hero h1 mark {
  display: inline;
  padding: 0 .08em;
  background: var(--yellow);
  color: var(--ink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.17rem);
}

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

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: .83rem;
  font-weight: 800;
}

.hero-checks li::before {
  position: absolute;
  top: .43em;
  left: 0;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid var(--coral);
  border-left: 2px solid var(--coral);
  content: "";
  transform: rotate(-45deg);
}

.hero-visual {
  position: relative;
}

.hero-photo-wrap {
  position: relative;
  aspect-ratio: .82;
  border: 10px solid var(--paper-bright);
  border-radius: 4px 4px 82px 4px;
  box-shadow: var(--shadow);
  transform: rotate(1.8deg);
}

.hero-photo-wrap > img {
  width: 100%;
  height: 100%;
  border-radius: 0 0 72px 0;
  object-fit: cover;
}

.photo-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  box-shadow: 6px 8px 0 rgba(16, 35, 31, .14);
  transform: rotate(-1.8deg);
}

.photo-tag small {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: .57rem;
  font-weight: 600;
  letter-spacing: .09em;
}

.photo-tag strong,
.photo-tag a {
  display: block;
  font-size: .92rem;
  font-weight: 800;
}

.photo-tag-top {
  top: 24px;
  left: -46px;
  background: var(--yellow);
  color: var(--ink);
}

.tag-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(239, 91, 72, .2);
}

.photo-tag-bottom {
  right: -26px;
  bottom: 32px;
  display: block;
  background: var(--blue);
  color: white;
}

.roller-line {
  position: absolute;
  z-index: -1;
  right: -53px;
  bottom: -55px;
  width: 165px;
  height: 150px;
  color: var(--coral);
  transform: rotate(-7deg);
}

.roller-line .roller {
  position: absolute;
  top: 0;
  right: 0;
  width: 112px;
  height: 35px;
  border: 5px solid var(--ink);
  border-radius: 8px;
  background: currentColor;
}

.roller-line .handle {
  position: absolute;
  top: 24px;
  right: 51px;
  width: 82px;
  height: 100px;
  border-right: 6px solid var(--ink);
  border-bottom: 6px solid var(--ink);
  border-radius: 0 0 26px 0;
}

.roller-line .handle::after {
  position: absolute;
  right: -12px;
  bottom: -24px;
  width: 18px;
  height: 52px;
  border-radius: 7px;
  background: var(--blue);
  content: "";
}

/* Promise strip */
.promise-strip {
  background: var(--ink);
  color: white;
}

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

.promise-grid article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.promise-grid article:first-child {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.promise-grid article > strong {
  color: var(--yellow);
  font-family: "IBM Plex Mono", monospace;
  font-size: .76rem;
}

.promise-grid article span {
  display: grid;
  color: #a8bbb5;
  font-size: .77rem;
  line-height: 1.4;
}

.promise-grid article b {
  margin-bottom: 3px;
  color: white;
  font-size: .94rem;
}

/* Services */
.services {
  background: var(--paper-bright);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 420px;
  padding: 34px 28px 30px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
  overflow: hidden;
  transition: background-color .3s, transform .3s var(--ease);
}

.service-card:hover {
  z-index: 2;
  background: var(--mint);
  transform: translateY(-8px);
}

.service-card-featured {
  background: var(--yellow);
}

.service-card-featured:hover {
  background: #ffd76f;
}

.service-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-number {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.38rem;
  line-height: 1.15;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .9rem;
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid currentColor;
  font-size: .86rem;
  font-weight: 800;
}

.service-card a span {
  color: var(--coral);
  font-size: 1.3rem;
  transition: transform .2s;
}

.service-card a:hover span {
  transform: translateX(5px);
}

/* Colour lab */
.color-lab {
  position: relative;
  background: var(--ink);
  color: white;
  overflow: hidden;
}

.color-lab::after {
  position: absolute;
  right: -40px;
  bottom: -76px;
  width: 300px;
  height: 300px;
  border: 48px solid rgba(255, 255, 255, .035);
  border-radius: 50%;
  content: "";
}

.color-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.color-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 4.8vw, 4.1rem);
}

.color-copy > p:not(.kicker):not(.color-note) {
  color: #a8bbb5;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 34px 0 22px;
}

.swatch {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: transform .2s, border-color .2s;
}

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

.swatch.is-active::after {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.selected-color {
  display: grid;
  grid-template-columns: 12px 1fr;
  column-gap: 10px;
  width: fit-content;
  min-width: 190px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 9px;
}

.selected-color > span {
  grid-row: 1 / 3;
  align-self: stretch;
  border-radius: 10px;
  background: #b9cdbf;
}

.selected-color small {
  color: #839a93;
  font-family: "IBM Plex Mono", monospace;
  font-size: .56rem;
  letter-spacing: .12em;
}

.selected-color strong {
  font-size: .88rem;
}

.color-note {
  margin: 18px 0 0;
  color: #758b84;
  font-size: .7rem;
}

.room-preview {
  position: relative;
  min-height: 560px;
  border: 9px solid white;
  border-radius: 2px 60px 2px 2px;
  background: white;
  overflow: hidden;
  box-shadow: 20px 24px 0 rgba(0, 0, 0, .18);
}

.room-preview img {
  width: 100%;
  height: 100%;
  min-height: 542px;
  object-fit: cover;
}

.wall-tint {
  position: absolute;
  inset: 0;
  background: var(--preview-color);
  clip-path: polygon(0 0, 100% 0, 100% 61%, 0 61%);
  mix-blend-mode: multiply;
  opacity: .58;
  transition: background-color .4s var(--ease);
}

.preview-label {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  padding: 12px 15px;
  background: var(--paper-bright);
  color: var(--ink);
  box-shadow: 5px 6px 0 rgba(16, 35, 31, .18);
}

.preview-label span {
  font-family: "IBM Plex Mono", monospace;
  font-size: .57rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Process */
.process {
  background: var(--mint);
}

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

.process-step {
  position: relative;
  min-height: 335px;
  padding: 30px;
  border-top: 9px solid var(--coral);
  background: var(--paper-bright);
  box-shadow: 9px 11px 0 rgba(16, 35, 31, .08);
}

.process-step:nth-child(2) {
  border-color: var(--blue);
}

.process-step:nth-child(3) {
  border-color: var(--yellow);
}

.step-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 120px;
}

.step-top strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: .8;
}

.step-top span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: .63rem;
  text-transform: uppercase;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

/* Showcase */
.work-showcase {
  background: var(--blue);
  color: white;
}

.showcase-head {
  margin-bottom: 52px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 24px;
}

.showcase-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.showcase-main {
  min-height: 650px;
}

.showcase-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.showcase-grid figure:hover img {
  transform: scale(1.025);
}

.showcase-grid figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  padding: 17px 20px;
  background: var(--paper-bright);
  color: var(--ink);
}

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

.showcase-side {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
}

.showcase-side figure {
  min-height: 370px;
}

.showcase-quote {
  padding: 36px;
  background: var(--yellow);
  color: var(--ink);
}

.showcase-quote p {
  margin-bottom: 26px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.showcase-quote a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
  font-weight: 800;
}

/* FAQ */
.faq {
  background: var(--paper-bright);
}

.faq-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(60px, 9vw, 130px);
}

.faq-title {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-title h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
}

.faq-title > p:not(.kicker) {
  max-width: 420px;
  color: var(--muted);
}

.faq-title > a {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--ink);
  font-weight: 800;
}

.faq-title > a span {
  color: var(--coral);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--blue);
  font-size: 1.25rem;
  transition: transform .25s;
}

.faq-list details[open] summary span {
  background: var(--yellow);
  color: var(--ink);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -5px 48px 26px 0;
  color: var(--muted);
}

/* Contact */
.contact {
  position: relative;
  padding: 115px 0;
  background: var(--ink);
  color: white;
  overflow: hidden;
}

.contact-stroke {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 62vw;
  height: 150px;
  background: var(--coral);
  border-radius: 12px 110px 30px 14px;
  opacity: .16;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.contact-stroke::after {
  position: absolute;
  right: -70px;
  width: 120px;
  height: 100%;
  background: inherit;
  content: "";
  clip-path: polygon(0 0, 100% 8%, 55% 25%, 100% 42%, 62% 59%, 100% 80%, 0 100%);
}

.contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact .kicker {
  justify-content: center;
}

.contact h2 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.contact-inner > p:not(.kicker) {
  color: #a8bbb5;
}

.contact-number {
  display: block;
  width: fit-content;
  margin: 25px auto 32px;
  border-bottom: 5px solid var(--yellow);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(1.8rem, 5vw, 3.7rem);
  font-weight: 600;
  line-height: 1.25;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Footer */
.site-footer {
  padding: 70px 0 22px;
  background: #091713;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 55px;
  padding-bottom: 55px;
}

.brand-footer {
  margin-bottom: 20px;
}

.brand-footer .brand-copy small {
  color: var(--yellow);
}

.footer-grid > div:first-child > p {
  max-width: 300px;
  color: #869b94;
  font-size: .85rem;
}

.footer-grid h3 {
  margin-bottom: 20px;
  color: #80958e;
  font-family: "IBM Plex Mono", monospace;
  font-size: .66rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid > div:not(:first-child) a,
.footer-grid > div:not(:first-child) span {
  color: #b7c7c2;
  font-size: .82rem;
}

.footer-grid > div:not(:first-child) a:hover {
  color: var(--yellow);
}

.footer-contact a:first-of-type {
  color: white !important;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #6e847d;
  font-size: .7rem;
}

.mobile-contact-bar {
  display: none;
}

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 90px 0;
  }

  .header-phone span,
  .header-actions > .button {
    display: none;
  }

  .header-phone {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 8px;
  }

  .hero {
    padding-top: 130px;
  }

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

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

  .hero-visual {
    width: min(82%, 600px);
    margin: 0 auto;
  }

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

  .promise-grid article:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, .12);
  }

  .section-heading,
  .color-grid,
  .showcase-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .color-grid,
  .faq-grid {
    gap: 45px;
  }

  .color-copy {
    max-width: 680px;
  }

  .room-preview {
    min-height: 480px;
  }

  .room-preview img {
    min-height: 462px;
  }

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

  .process-step {
    min-height: 270px;
  }

  .step-top {
    min-height: 96px;
  }

  .showcase-grid {
    gap: 20px;
  }

  .showcase-main {
    min-height: 520px;
  }

  .faq-title {
    position: static;
  }

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

@media (max-width: 600px) {
  body {
    padding-bottom: 66px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .site-header {
    padding: 11px 0;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: .92rem;
  }

  .header-phone,
  .menu-toggle {
    width: 41px;
    height: 41px;
  }

  .hero {
    min-height: 0;
    padding: 112px 0 75px;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

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

  .hero-checks {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    width: calc(100% - 20px);
  }

  .photo-tag-top {
    top: -24px;
    left: -14px;
  }

  .photo-tag-bottom {
    right: -14px;
    bottom: 22px;
  }

  .roller-line {
    display: none;
  }

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

  .promise-grid article,
  .promise-grid article:first-child,
  .promise-grid article:nth-child(3) {
    min-height: 94px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    border-left: 1px solid rgba(255, 255, 255, .12);
  }

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

  .section-heading > p {
    font-size: .95rem;
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

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

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

  .service-icon {
    margin-bottom: 35px;
  }

  .room-preview {
    min-height: 350px;
    border-width: 6px;
    border-radius: 2px 38px 2px 2px;
  }

  .room-preview img {
    min-height: 338px;
  }

  .process-step {
    min-height: 255px;
    padding: 25px;
  }

  .showcase-main {
    min-height: 430px;
  }

  .showcase-side figure {
    min-height: 300px;
  }

  .showcase-grid figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .showcase-quote {
    padding: 26px;
  }

  .faq-list summary {
    font-size: .95rem;
  }

  .contact {
    padding: 84px 0;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-grid > div:first-child {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

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

  .mobile-contact-bar {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    min-height: 66px;
    padding: 7px;
    background: var(--paper-bright);
    box-shadow: 0 -10px 35px rgba(16, 35, 31, .14);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-weight: 800;
  }

  .mobile-contact-bar a:first-child {
    color: var(--ink);
  }

  .mobile-contact-bar a:last-child {
    background: var(--whatsapp);
    color: #082d1a;
  }
}
