/* ============================================================
   FURNILAND LTD — DESIGN SYSTEM
   90% white/neutral · 8% brand blue · 2% orange accent
   Primary: Inter · Display: Poppins (hero headline only)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:ital,wght@0,300;0,600;0,700;0,800;1,600;1,700&display=swap');

/* ── Tokens ── */
:root {
  --white:        #FFFFFF;
  --off-white:    #F9F8F6;
  --grey-50:      #F4F2EF;
  --grey-100:     #E5E2DD;
  --grey-200:     #C8C4BD;
  --grey-400:     #9B9690;
  --grey-600:     #605C57;
  --charcoal:     #232120;
  --black:        #0E0D0C;

  --blue:         #2558E0;
  --blue-dark:    #1A46C8;
  --orange:       #D5820A;

  --font-ui:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', sans-serif;

  --section-py:   clamp(80px, 10vw, 130px);
  --container:    1240px;
  --gutter:       clamp(20px, 4.5vw, 56px);
  --nav-h:        72px;

  --radius:       6px;
  --radius-lg:    14px;

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --fast:         0.22s;
  --base:         0.45s;
  --slow:         0.75s;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ── Layout ── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Typography Scale ── */
.label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.label--light { color: rgba(255,255,255,0.45); }
.label--blue  { color: var(--blue); }

.h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.lead {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--grey-400);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all var(--fast) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 88, 224, 0.28);
}
.btn--white-outline {
  border: 1.5px solid rgba(255,255,255,0.45);
  color: var(--white);
}
.btn--white-outline:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
}
.btn--dark-outline {
  border: 1.5px solid var(--grey-100);
  color: var(--charcoal);
}
.btn--dark-outline:hover {
  border-color: var(--charcoal);
  background: var(--off-white);
}
.btn--ghost {
  padding: 0;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  border-bottom: 1.5px solid currentColor;
  border-radius: 0;
  gap: 6px;
  transition: gap var(--fast) var(--ease), opacity var(--fast);
}
.btn--ghost:hover { gap: 12px; opacity: 0.7; }
.btn--ghost-white { color: var(--white); }
.btn-arrow { font-size: 1em; }

/* ── Section Header ── */
.section-header { margin-bottom: clamp(48px, 6vw, 72px); }
.section-header .label { margin-bottom: 14px; }
.section-header .h2 { margin-bottom: 14px; }
.section-header .lead { max-width: 520px; }
.section-header--center { text-align: center; }
.section-header--center .lead { margin-inline: auto; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--fast) var(--ease),
              box-shadow var(--fast) var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--grey-100), 0 2px 12px rgba(0,0,0,0.05);
  backdrop-filter: saturate(1.4) blur(16px);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.nav__logo-icon {
  height: 48px;
  width: auto;
  display: block;
}
.nav__logo-wordmark {
  height: 31px;
  width: auto;
  display: block;
  transition: filter var(--fast) var(--ease);
}
.nav:not(.scrolled) .nav__logo-wordmark {
  filter: brightness(0) invert(1);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--fast);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--fast) var(--ease);
}
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }
.nav.scrolled .nav__link { color: var(--charcoal); }
.nav.scrolled .nav__link:hover { color: var(--blue); }
/* Alternate even nav items to orange */
.nav__links li:nth-child(even) .nav__link::after { background: var(--orange); }
.nav.scrolled .nav__links li:nth-child(even) .nav__link:hover { color: var(--orange); }
.nav.scrolled .nav__links li:nth-child(even) .nav__link.active { color: var(--orange); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__tel {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--fast);
}
.nav.scrolled .nav__tel { color: var(--grey-600); }
.nav.scrolled .nav__tel:hover { color: var(--blue); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 300;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--fast) var(--ease);
}
.nav.scrolled .nav__burger span { background: var(--charcoal); }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--white);
  padding: var(--gutter);
  padding-top: calc(var(--nav-h) + 48px);
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-50);
}
.nav__mobile .nav__link::after { display: none; }
.nav__mobile .nav__link:last-child { border-bottom: none; }
.nav__mobile-cta { margin-top: 32px; }
.nav__mobile-tel {
  font-size: 0.875rem;
  color: var(--grey-400);
  margin-top: 24px;
}
.nav__mobile-tel a { color: var(--charcoal); font-weight: 500; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.03);
  animation: heroZoom 8s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 7, 6, 0.08) 0%,
    rgba(8, 7, 6, 0.25) 40%,
    rgba(8, 7, 6, 0.68) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(56px, 8vw, 96px);
}
.hero__label { margin-bottom: 22px; }
.hero__headline {
  color: var(--white);
  max-width: 860px;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  line-height: 1.72;
  margin-bottom: 44px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll-indicator {
  position: absolute;
  right: var(--gutter);
  bottom: 40px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.25);
  transform-origin: top;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0); opacity: 0; }
  30%       { opacity: 1; }
  60%       { transform: scaleY(1); opacity: 1; }
  80%       { opacity: 0; }
}

/* On small screens the bottom-right scroll cue sits in the same corner the
   credentials line can wrap into — it's a desktop-only decorative flourish,
   so just hide it below tablet width rather than fight for the space. */
@media (max-width: 768px) {
  .hero__scroll-indicator { display: none; }
}


/* ============================================================
   HERO SLIDESHOW (slow zoom & crossfade, one project photo at a time)
   ============================================================ */
.hero--slideshow {
  align-items: center;
  justify-content: center;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.8s ease, transform 7s linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.07);
}

/* ── Rotating headline: every variant lives in the same grid cell, so the
   box is permanently sized for the tallest one and nothing below it
   (divider / CTAs / stats) ever shifts as the text changes. Each line sits
   in its own clipped mask and is revealed by sliding up into view — the
   bold line leads, the thin line follows a beat behind — rather than a
   flat crossfade, for a more deliberate, editorial entrance. ── */
.hero-headline-stack {
  display: grid;
  align-items: center;
  justify-items: center;
}

.hero-headline-item {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  pointer-events: none;
}

.hl-mask {
  display: block;
  overflow: hidden;
  /* extra room so the text-shadow blur and descenders (g, y, p) on the
     revealed line never get clipped by the mask that hides the others.
     padding-bottom uses max() so it keeps real shadow-clearance in px at
     any font-size, but the translateY below is tuned against the WORST
     ratio that produces (smallest mobile size), not just the desktop one —
     a fixed-px pairing with a %-based transform silently breaks the moment
     the two are tuned in different sessions against different font sizes. */
  padding: 0.15em 0 max(0.5em, 30px);
  margin-bottom: calc(-1 * max(0.5em, 30px));
}

.hl-line {
  display: block;
  transform: translateY(230%);
  will-change: transform;
}

.hero-headline-item.is-active .hl-line {
  transform: translateY(0);
  transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-headline-item.is-active .hl-mask:nth-child(2) .hl-line {
  transition-delay: 0.13s;
}

.hero-headline-item.is-leaving .hl-line {
  transform: translateY(-230%);
  transition: transform 0.5s cubic-bezier(0.6, 0, 1, 0.2);
}
.hero-headline-item.is-leaving .hl-mask:nth-child(1) .hl-line {
  transition-delay: 0.06s;
}

/* Every headline variant shares the H1's one clamp() size at every
   viewport width, mobile included — short and long phrases both read at
   the same scale as the rotation cycles, rather than jumping size. */

/* ============================================================
   MOSAIC (shared with the splash-screen background — do not
   remove even though the hero above no longer uses it)
   ============================================================ */
.mosaic {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
}

.mosaic__inner {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 3px;
}

.mosaic__col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  will-change: transform;
}

.mosaic__col img {
  width: 100%;
  height: clamp(240px, 28vh, 380px);
  display: block;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}

@keyframes scrollUpVert {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

@keyframes scrollDownVert {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

/* ── Hero entrance animations ── */
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__anim-1 { opacity: 0; animation: heroEntrance 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.20s forwards; }
.hero__anim-2 { opacity: 0; animation: heroEntrance 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.40s forwards; }
.hero__anim-3 { opacity: 0; animation: heroEntrance 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards; }
.hero__anim-4 { opacity: 0; animation: heroEntrance 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.70s forwards; }
.hero__anim-5 { opacity: 0; animation: heroEntrance 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards; }
.hero__anim-6 { opacity: 0; animation: heroEntrance 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.00s forwards; }
.hero__anim-7 { opacity: 0; animation: heroEntrance 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.18s forwards; }
.hero__anim-8 { opacity: 0; animation: heroEntrance 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.36s forwards; }
.hero__anim-9 { opacity: 0; animation: heroEntrance 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.55s forwards; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--charcoal);
  padding: 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-item__value {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-item__value em {
  font-style: normal;
  color: var(--orange);
}
.stat-item__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   FEATURED PROJECTS (Home)
   ============================================================ */
.featured {
  padding-block: var(--section-py);
  background: var(--white);
}
.featured__grid {
  display: grid;
  grid-template-columns: 5fr 3fr;
  /* Fluid, not breakpoint-swapped: same big-left/stacked-right layout at
     every width, just scaled down, rather than reflowing into a different
     arrangement on smaller screens. */
  grid-template-rows: clamp(170px, 42vw, 400px) clamp(150px, 38vw, 360px);
  gap: 12px;
  margin-bottom: 12px;
}
.featured__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--grey-50);
}
.featured__item--large { grid-row: 1 / 3; }
.featured__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--slow) var(--ease);
}
.featured__item:hover .featured__img { transform: scale(1.04); }
.featured__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.featured__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   THE FURNILAND DIFFERENCE
   ============================================================ */
.difference {
  padding-block: var(--section-py);
  background: var(--off-white);
}
.difference__layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}
.difference__sticky {
  position: sticky;
  top: calc(var(--nav-h) + 48px);
}
.difference__sticky .label { margin-bottom: 16px; }
.difference__sticky .h2 { margin-bottom: 24px; }
.difference__tagline {
  margin-top: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--orange);
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey-600);
  line-height: 1.7;
}
.diff-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--grey-100);
}
.diff-item:first-child { border-top: 1px solid var(--grey-100); }
.diff-item__num {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  padding-top: 3px;
}
.diff-item__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.diff-item__body {
  font-size: 0.8125rem;
  color: var(--grey-400);
  line-height: 1.7;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.areas-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.areas-card__title {
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  margin-bottom: 10px;
}
.areas-card__title:hover {
  color: var(--orange);
}
.areas-card__body {
  font-size: 0.8125rem;
  color: var(--grey-400);
  line-height: 1.7;
  margin-bottom: 20px;
}
.areas-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-100);
}
.areas-card__pills .area-supporting__pill {
  padding: 6px 14px;
  font-size: 0.75rem;
}
@media (max-width: 960px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
/* ============================================================
   OUR WORK (Home) — real project showcase grid + case-study modal
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 24px;
  align-items: start;
}
.work-tile {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.work-tile__frame {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--grey-50);
}
.work-tile__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--slow) var(--ease);
}
.work-tile:hover .work-tile__frame img { transform: scale(1.05); }
.work-tile__frame::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(14, 13, 12, 0.28));
  pointer-events: none;
}
.work-tile__count {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.work-tile__meta {
  display: block;
  margin-top: 16px;
}
.work-tile__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.work-tile__title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  transition: color var(--fast);
}
.work-tile:hover .work-tile__title { color: var(--blue); }

/* ── Case-study modal ── */
.work-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0s linear 0.3s;
}
.work-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s var(--ease), visibility 0s linear 0s;
}
.work-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 13, 12, 0.82);
  backdrop-filter: blur(4px);
}
.work-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(1100px, 100%);
  height: min(680px, 88vh);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.work-modal.is-open .work-modal__panel { transform: translateY(0) scale(1); }

.work-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fast);
}
.work-modal__close:hover { background: var(--white); }

.work-modal__gallery {
  position: relative;
  background: var(--grey-50);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.work-modal__stage {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.work-modal__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.work-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  color: var(--charcoal);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fast);
  z-index: 2;
}
.work-modal__nav:hover { background: var(--white); }
.work-modal__nav--prev { left: 16px; }
.work-modal__nav--next { right: 16px; }
.work-modal__count {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: rgba(35, 33, 32, 0.5);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.work-modal__thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
  background: var(--white);
  border-top: 1px solid var(--grey-100);
}
.work-modal__thumb {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity var(--fast), border-color var(--fast);
}
.work-modal__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-modal__thumb:hover { opacity: 0.85; }
.work-modal__thumb.is-active { opacity: 1; border-color: var(--blue); }

.work-modal__info {
  padding: 40px 36px;
  overflow-y: auto;
  height: 100%;
}
.work-modal__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.work-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 18px;
}
.work-modal__desc p {
  color: var(--grey-600);
  line-height: 1.75;
  font-size: 0.9375rem;
  margin-bottom: 14px;
}
.work-modal__desc p:last-child { margin-bottom: 0; }
.work-modal__cta { margin-top: 28px; }

@media (max-width: 768px) {
  .work-modal { padding: 0; align-items: flex-end; }
  .work-modal__panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    width: 100%;
    height: 92vh;
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow-y: auto;
  }
  .work-modal__gallery { height: 44vh; }
  .work-modal__info { height: auto; overflow-y: visible; padding: 28px 24px; }
}
@media (max-width: 480px) {
  .work-tile__title { font-size: 0.875rem; }
}

/* ============================================================
   PROCESS (Home — abbreviated)
   ============================================================ */
.process-home {
  padding-block: var(--section-py);
  background: var(--off-white);
}
.process-home__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
}
.process-home__steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(var(--gutter) + 18px);
  right: calc(var(--gutter) + 18px);
  height: 1px;
  background: var(--grey-100);
}
.process-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-100);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.process-step__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.process-step__body {
  font-size: 0.8125rem;
  color: var(--grey-400);
  line-height: 1.7;
}

/* ============================================================
   WHY FURNILAND
   ============================================================ */
.why {
  padding-block: var(--section-py);
  background: var(--charcoal);
}
.why__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why__content .label { margin-bottom: 16px; }
.why__content .h2 {
  color: var(--white);
  margin-bottom: 40px;
}
.why__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin-bottom: 48px;
}
.why__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.why__item::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 7px;
}
.why__statement {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding-block: var(--section-py);
  background: var(--white);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.testimonial {
  padding: 40px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-100);
  display: flex;
  flex-direction: column;
}
.testimonial__stars {
  font-size: 0.875rem;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.testimonial__quote {
  font-size: 0.875rem;
  line-height: 1.78;
  color: var(--grey-600);
  flex: 1;
  margin-bottom: 32px;
}
.testimonial__quote::before {
  content: '\201C';
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.5rem;
  color: var(--grey-200);
  margin-right: 4px;
}
.testimonial__author {
  border-top: 1px solid var(--grey-100);
  padding-top: 24px;
}
.testimonial__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.testimonial__detail {
  font-size: 0.75rem;
  color: var(--grey-400);
}

/* ============================================================
   INSTAGRAM / GALLERY STRIP
   ============================================================ */
.gallery-strip {
  padding-block: var(--section-py);
  background: var(--off-white);
  overflow: hidden;
}
.gallery-strip__track {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.gallery-strip__track::-webkit-scrollbar { display: none; }
.gallery-strip__item {
  flex-shrink: 0;
  width: clamp(200px, 20vw, 260px);
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey-100);
}
.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--slow) var(--ease);
}
.gallery-strip__item:hover img { transform: scale(1.06); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding-block: clamp(80px, 10vw, 120px);
  background: var(--black);
  text-align: center;
}
.cta-band .h2 {
  color: var(--white);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 16px;
}
.cta-band .lead {
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 44px;
}
.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  padding-bottom: 0;
}
.footer__accent-bar {
  height: 3px;
  background: linear-gradient(to right, var(--orange), var(--blue));
}
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-top: 72px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer__brand {}
.footer__logo {
  height: 96px;
  width: auto;
  margin-bottom: 28px;
  display: block;
}
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 28px;
}
.footer__contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  transition: color var(--fast);
}
.footer__contact-link:hover { color: var(--white); }
.footer__whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #25D366;
  text-decoration: none;
  transition: color var(--fast), opacity var(--fast);
}
.footer__whatsapp-link:hover { opacity: 0.82; }
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.footer__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
}
.footer__badge-tp { color: #00B67A; border-color: rgba(0,182,122,0.25); }
.footer__badge-tp:hover { border-color: rgba(0,182,122,0.5); }
.footer__badge-google { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.14); }
.footer__badge-google:hover { border-color: rgba(255,255,255,0.35); }

/* ── Review Callout: a self-contained card so "leave us a review" reads
   as a deliberate ask rather than a couple of stray links under a section ── */
.review-callout {
  margin-top: 56px;
  padding: 48px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 28px rgba(14,13,12,0.04);
}
.review-callout__stars {
  color: var(--orange);
  font-size: 1.125rem;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.review-callout__title {
  margin-bottom: 8px;
}
.review-callout__text {
  font-size: 0.9375rem;
  color: var(--grey-600);
  max-width: 420px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.review-callout__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.review-callout__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--fast) var(--ease);
}
.review-callout__btn--tp {
  background: #00B67A;
  color: var(--white);
}
.review-callout__btn--tp:hover {
  background: #00A06B;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,182,122,0.3);
}
.review-callout__btn--google {
  background: var(--white);
  border: 1.5px solid var(--grey-100);
  color: var(--charcoal);
}
.review-callout__btn--google:hover {
  border-color: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(14,13,12,0.08);
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.62);
  transition: color var(--fast), border-color var(--fast), background var(--fast);
}
.footer__social-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}
.footer__col {}
.footer__col-title {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.50);
  transition: color var(--fast);
  text-decoration: none;
}
.footer__link:hover { color: rgba(255,255,255,0.90); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 24px;
}
.footer__copy {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.22);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.22);
  transition: color var(--fast);
}
.footer__legal a:hover { color: rgba(255,255,255,0.55); }
.footer__reg {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.18);
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding-top: calc(var(--nav-h) + clamp(60px, 8vw, 96px));
  padding-bottom: clamp(60px, 7vw, 96px);
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-100);
}
.page-header .label { margin-bottom: 14px; }
.page-header__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 680px;
}
.page-header .lead { margin-top: 18px; max-width: 520px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding-block: var(--section-py);
  background: var(--white);
}
.about-story__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-story__layout--reverse .about-story__image {
  order: 2;
}
.about-story__image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-50);
}
.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-story__content .label { margin-bottom: 14px; }
.about-story__content .h2 { margin-bottom: 28px; }
.about-story__content p {
  font-size: 0.9375rem;
  color: var(--grey-600);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-story__quote {
  margin-top: 36px;
  padding-left: 20px;
  border-left: 3px solid var(--orange);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.65;
  font-style: italic;
}
.promise-section {
  padding-block: var(--section-py);
  background: var(--off-white);
}
.promise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grey-100);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.promise__item {
  background: var(--white);
  padding: 32px 36px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.promise__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
.promise__check svg {
  width: 9px;
  height: 9px;
  color: var(--white);
  stroke-width: 2.5;
}
.promise__text {
  font-size: 0.875rem;
  color: var(--charcoal);
  line-height: 1.65;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  padding-block: var(--section-py);
  background: var(--white);
}
.service-detail:nth-child(odd) { background: var(--off-white); }
.service-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail--reversed .service-detail__layout {
  direction: rtl;
}
.service-detail--reversed .service-detail__content { direction: ltr; }
.service-detail--reversed .proj-media { direction: ltr; }
.service-detail__image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-50);
}
.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail__content .label { margin-bottom: 14px; }
.service-detail__content .h2 { margin-bottom: 18px; }
.service-detail__content p {
  font-size: 0.9375rem;
  color: var(--grey-600);
  line-height: 1.8;
  margin-bottom: 28px;
}
.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.service-detail__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--grey-600);
}
.service-detail__list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

/* ── Inline project gallery (Projects page): main photo with prev/next
   arrows and a "1 / N" counter overlay, swapped in place with no modal
   and no uneven thumbnail row underneath ── */
.proj-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proj-gallery {
  position: relative;
}
.proj-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #fff;
  /* Solid tint, not backdrop-filter: with up to 15 galleries on this page
     (45 blurred elements), real-time backdrop blur was heavy enough to
     hang rendering on load. A flat rgba tint reads almost identically at
     this small size for a fraction of the compositing cost. */
  background: rgba(20,18,16,0.55);
  opacity: 0.85;
  transition: opacity var(--fast), background var(--fast), transform var(--fast);
}
.proj-nav-arrow:hover {
  opacity: 1;
  background: rgba(20,18,16,0.78);
}
.proj-nav-arrow--prev { left: 14px; }
.proj-nav-arrow--next { right: 14px; }
.proj-nav-counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(20,18,16,0.62);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 560px) {
  .proj-nav-arrow { width: 34px; height: 34px; }
  .proj-nav-arrow--prev { left: 10px; }
  .proj-nav-arrow--next { right: 10px; }
  .proj-nav-counter { right: 10px; bottom: 10px; font-size: 0.625rem; }
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.projects-page {
  padding-block: var(--section-py);
  background: var(--white);
}
.projects-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1.5px solid var(--grey-100);
  border-radius: 100px;
  color: var(--grey-400);
  background: var(--white);
  transition: all var(--fast) var(--ease);
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}
.projects-masonry {
  columns: 3;
  column-gap: 14px;
}
.project-card {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.project-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--slow) var(--ease);
}
.project-card:hover img { transform: scale(1.04); }
.project-card__over {
  position: absolute;
  inset: 0;
  background: rgba(10,9,8,0.5);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--fast);
}
.project-card:hover .project-card__over { opacity: 1; }
.project-card__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white);
}

/* ============================================================
   PROCESS PAGE
   ============================================================ */
.process-page {
  padding-block: var(--section-py);
  background: var(--white);
}
.process-timeline {
  max-width: 760px;
  margin: 56px auto 0;
}
.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 36px;
  padding-bottom: 56px;
  position: relative;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.timeline-step__num {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--grey-100);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  z-index: 1;
}
.timeline-step__line {
  width: 1px;
  flex: 1;
  background: var(--grey-100);
  margin-top: 8px;
}
.timeline-step:last-child .timeline-step__line { display: none; }
.timeline-step__content { padding-top: 14px; }
.timeline-step__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.timeline-step__body {
  font-size: 0.875rem;
  color: var(--grey-400);
  line-height: 1.75;
}

/* ============================================================
   WHY FURNILAND PAGE
   ============================================================ */
.why-page {
  padding-block: var(--section-py);
  background: var(--white);
}
.why-page__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-page .difference__list { margin-top: 0; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page {
  padding-block: var(--section-py);
  background: var(--white);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--grey-100);
}
.faq-item:first-child { border-top: 1px solid var(--grey-100); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--fast);
  text-align: left;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-100);
  position: relative;
  transition: all var(--fast);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--grey-400);
  border-radius: 1px;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; transition: transform var(--fast) var(--ease); }
.faq-item[open] .faq-icon,
.faq-item.open .faq-icon {
  border-color: var(--blue);
  background: var(--blue);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after,
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--white); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.78;
  padding-bottom: 28px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  padding-block: var(--section-py);
  background: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.contact-info .h2 { margin-bottom: 18px; }
.contact-info .lead { margin-bottom: 48px; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-detail__label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--grey-400);
  margin-bottom: 4px;
}
.contact-detail__value {
  font-size: 0.9375rem;
  color: var(--charcoal);
  font-weight: 500;
}
.contact-detail__value a {
  transition: color var(--fast);
}
.contact-detail__value a:hover { color: var(--blue); }
.contact-form-wrap {
  background: var(--off-white);
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-100);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--charcoal);
  transition: border-color var(--fast);
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--grey-200); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { outline: none; border-color: var(--blue); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; padding: 15px; margin-top: 4px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--slow) var(--ease),
              transform var(--slow) var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }


@media (max-width: 768px) {
  .mosaic__col:nth-child(n+5) { display: none; }
  .mosaic__col img { height: clamp(180px, 25vh, 300px); }
}
@media (max-width: 480px) {
  .mosaic__col:nth-child(n+4) { display: none; }
}


/* ── Hero credential bar ── */
.hero__cred {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 100%;
}

.hero__cred > div:not([style*="width:1px"]) {
  flex: 1;
  padding: 18px 20px;
  min-width: 0;
}

@media (max-width: 480px) {
  .hero__cred > div:not([style*="width:1px"]) {
    padding: 14px 10px;
  }
  .hero__cred > div:not([style*="width:1px"]) span:first-child {
    font-size: 0.9375rem !important;
  }
  .hero__cred > div[style*="width:1px"] {
    display: none;
  }
}


/* ── Hero stat cards: small standalone glass cards, not one connected bar ── */
.hero__stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Cards stretch to match the tallest one in the row (default flex cross-
     axis behaviour), and on mobile the label is allowed to wrap to 2 lines
     to avoid overflow — so card heights can differ. Without this, shorter
     cards sit content-at-top instead of centred in their stretched box. */
  justify-content: center;
  gap: 7px;
  min-width: 106px;
  padding: 16px 24px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-top: 2px solid rgba(213,130,10,0.55);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.hero__stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.11);
  border-color: rgba(213,130,10,0.5);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}
.hero__stat-card-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.hero__stat-card-label {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.58);
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 560px) {
  /* Four cards now, not three — keep them on one line by letting each
     share the row equally and shrink, rather than wrapping to 2x2. */
  .hero__anim-6 { gap: 6px; flex-wrap: nowrap; }
  .hero__stat-card { min-width: 0; flex: 1 1 0; padding: 10px 6px 9px; gap: 4px; }
  .hero__stat-card-value { font-size: 0.8125rem; }
  .hero__stat-card-label { font-size: 0.4375rem; letter-spacing: 0.05em; white-space: normal; text-align: center; line-height: 1.2; }
}

@media (max-width: 480px) {
  .hero-cta { padding: 12px 16px !important; font-size: 0.625rem !important; }
  .hero-cta--secondary { padding: 11px 14px !important; }
}


/* ── WhatsApp floating button ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40), 0 2px 8px rgba(0,0,0,0.20);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55), 0 2px 12px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { gap: 20px; }
  .difference__layout { grid-template-columns: 1fr; gap: 48px; }
  .difference__sticky { position: static; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .process-home__steps { grid-template-columns: repeat(2, 2fr); gap: 32px; }
  .process-home__steps::before { display: none; }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .why__layout { grid-template-columns: 1fr; gap: 48px; }
  .why__image { aspect-ratio: 16/9; }
  .projects-masonry { columns: 2; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__logo { height: 80px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .about-story__layout { grid-template-columns: 1fr; gap: 48px; }
  .about-story__image { aspect-ratio: 16/9; }
  .promise__grid { grid-template-columns: 1fr; }
  .service-detail__layout { grid-template-columns: 1fr; gap: 48px; }
  .service-detail--reversed .service-detail__layout { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-page__layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links, .nav__tel, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .process-home__steps { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why__list { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .projects-masonry { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .timeline-step { grid-template-columns: 56px 1fr; gap: 20px; }
  .timeline-step__num { width: 44px; height: 44px; font-size: 0.6875rem; }
}

@media (max-width: 560px) {
  .footer__main { grid-template-columns: 1fr !important; gap: 32px; }
  .footer__brand { grid-column: 1; text-align: center; }
  .footer__logo { height: 88px; margin-inline: auto; }
  .footer__tagline { margin-inline: auto; }
  .footer__contact-links { align-items: center; }
  .footer__badges { justify-content: center; gap: 6px; }
  .footer__legal { justify-content: center; }
  .footer__reg { text-align: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .stats-bar__grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:last-child { border-bottom: none; }
  .projects-masonry { columns: 2; column-gap: 8px; }
  .filter-btn { font-size: 0.75rem; padding: 7px 16px; }
}


/* ── Hero stats strip ── */
.hero__stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px var(--gutter);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 32px;
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat-val {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero__stat-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.hero__stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── Featured captions ── */
.featured__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transition: opacity var(--fast) var(--ease);
}
.featured__item:hover .featured__caption { opacity: 1; }
.featured__cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.featured__loc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .hero__stats { gap: 0; padding: 16px var(--gutter); }
  .hero__stat { padding: 0 16px; }
  .hero__stat-val { font-size: 0.9375rem; }
}
@media (max-width: 560px) {
  .hero__stats { flex-wrap: wrap; gap: 12px; }
  .hero__stat-sep { display: none; }
  .hero__stat { padding: 0; }
}

/* ── Footer mobile accordion ── */
@media (max-width: 640px) {
  .footer__col-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 0;
    user-select: none;
  }
  .footer__col-title::after {
    content: '+';
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }
  .footer__col-title.open::after {
    transform: rotate(45deg);
  }
  .footer__col .footer__links {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
  }
  .footer__col .footer__links.open {
    max-height: 400px;
    padding-top: 14px;
  }
}

/* ============================================================
   AREA PAGES (local SEO landing pages)
   ============================================================ */
.area-services__list {
  margin-top: 8px;
}

/* Review cards: quote length varies a lot between real testimonials, so
   without this the avatar/name row lands at a different height in every
   card. Stretching the card as a flex column and letting the quote grow
   keeps every name row flush with its row-mates regardless of quote length. */
.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.review-card > p {
  flex: 1 1 auto;
}
.area-supporting {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--grey-100);
}
.area-supporting__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.area-supporting__pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--charcoal);
  font-weight: 500;
}
.area-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.area-services__banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.area-services__banner img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.28);
}
@media (max-width: 720px) {
  .area-services__banner {
    grid-template-columns: 1fr;
  }
}
.area-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* Area page hero v2: left-aligned title + CTAs paired with a genuine
   "Quick Facts" card on the right, rather than a lone text column or a
   stock photo standing in for content. Same left-text/right-facts-card
   pairing local trade sites (Phoenix Landscapes, iFixLocks) use for their
   area pages — adapted to FurniLand's own light palette and real data. */
.area-hero2 {
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 56px;
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-100);
}
.area-hero2__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.area-hero2__actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.area-quickfacts {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.area-quickfacts__title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.area-quickfacts__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 0.875rem;
}
.area-quickfacts__row:last-child { border-bottom: none; }
.area-quickfacts__row span { color: var(--grey-400); }
.area-quickfacts__row strong { color: var(--charcoal); font-weight: 600; text-align: right; }

.area-trustbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-block: 24px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
}
.area-trustbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--grey-600);
}
.area-trustbar__item svg { color: var(--blue); flex-shrink: 0; }

.area-local {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.area-localinfo {
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.area-localinfo__title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.area-localinfo__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 0.8125rem;
  line-height: 1.5;
}
.area-localinfo__row:last-child { border-bottom: none; }
.area-localinfo__row span { color: var(--grey-400); flex-shrink: 0; }
.area-localinfo__row strong { color: var(--charcoal); font-weight: 600; text-align: right; }

@media (max-width: 860px) {
  .area-hero2__grid, .area-local { grid-template-columns: 1fr; }
}
