/* =========================================================
   HopFam — Tiffany Teal Dark Theme
   Accent: #0ABAB5 | Support: #0D9488 / #99F6E4 / #062E2B
   Base: #0F1413 | Text: #E9F2F1
   ========================================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #0F1413;
  color: #E9F2F1;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: #0ABAB5;
  text-decoration: none;
}

a:hover {
  color: #99F6E4;
}

/* ---------- Utility ---------- */
.home-page {
  background-color: #0F1413;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: #0ABAB5;
  color: #062E2B;
}

.btn-primary:hover {
  background-color: #0D9488;
  color: #062E2B;
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: #99F6E4;
  border-color: #0ABAB5;
}

.btn-ghost:hover {
  background-color: #062E2B;
  color: #E9F2F1;
  transform: translateY(-2px);
}

/* ---------- Scroll reveal ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   LAMP NAVIGATION
   ========================================================= */
.lamp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #0F1413;
  border-bottom: 1px solid #16211F;
  transition: box-shadow 0.25s ease;
}

.lamp-nav.scrolled {
  box-shadow: 0 8px 24px rgba(6, 46, 43, 0.55);
}

.lamp-nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lamp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lamp-wordmark {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #E9F2F1;
}

.lamp-brand:hover .lamp-wordmark {
  color: #99F6E4;
}

/* CSS table lamp */
.lamp-icon {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 44px;
}

.lamp-glow {
  position: absolute;
  top: -6px;
  left: -10px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(10, 186, 181, 0.16);
  filter: blur(6px);
}

.lamp-shade {
  position: absolute;
  top: 2px;
  left: 6px;
  width: 22px;
  height: 15px;
  background-color: #0ABAB5;
  border-radius: 50% 50% 22% 22% / 80% 80% 20% 20%;
  clip-path: polygon(8% 0, 92% 0, 74% 100%, 26% 100%);
}

.lamp-finial {
  position: absolute;
  top: -2px;
  left: 15px;
  width: 4px;
  height: 5px;
  background-color: #99F6E4;
  border-radius: 2px;
}

.lamp-stem {
  position: absolute;
  top: 17px;
  left: 16px;
  width: 2px;
  height: 16px;
  background-color: #99F6E4;
}

.lamp-base {
  position: absolute;
  bottom: 2px;
  left: 9px;
  width: 16px;
  height: 6px;
  background-color: #0D9488;
  border-radius: 50%;
}

.lamp-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.lamp-links a {
  color: #C7D6D4;
  font-weight: 600;
  font-size: 15px;
}

.lamp-links a:hover {
  color: #0ABAB5;
}

.lamp-cta {
  background-color: #0ABAB5;
  color: #062E2B;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 15px;
  flex-shrink: 0;
}

.lamp-cta:hover {
  background-color: #0D9488;
  color: #062E2B;
}

.lamp-toggle {
  display: none;
  background-color: #16211F;
  border: none;
  width: 44px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.lamp-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #E9F2F1;
}

/* =========================================================
   SOFA HERO
   ========================================================= */
.sofa-hero {
  padding: 140px 0 90px;
  background:
    radial-gradient(circle at 80% 20%, #062E2B 0%, rgba(6, 46, 43, 0) 55%),
    #0F1413;
}

.sofa-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.sofa-kicker {
  display: inline-block;
  color: #0ABAB5;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}

.sofa-copy h1 {
  font-size: 54px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #E9F2F1;
  margin-bottom: 24px;
}

.sofa-copy h1 .accent {
  color: #0ABAB5;
}

.sofa-subcopy {
  font-size: 18px;
  color: #C7D6D4;
  max-width: 520px;
  margin-bottom: 32px;
}

.sofa-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* CSS sofa visual */
.sofa-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.sofa {
  position: relative;
  width: 420px;
  height: 260px;
}

.sofa-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: 150px;
  background-color: #0D9488;
  border-radius: 40px 40px 16px 16px;
}

.sofa-back::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 130px;
  background:
    radial-gradient(circle at 30% 30%, #99F6E4 0%, transparent 30%),
    radial-gradient(circle at 70% 30%, #99F6E4 0%, transparent 30%);
  border-radius: 40px 40px 16px 16px;
}

.sofa-cushion {
  position: absolute;
  bottom: 52px;
  width: 118px;
  height: 84px;
  background-color: #0ABAB5;
  border-radius: 14px;
}

.sofa-cushion.cushion-left {
  left: 44px;
}

.sofa-cushion.cushion-right {
  right: 44px;
}

.sofa-seat {
  position: absolute;
  bottom: 26px;
  left: 20px;
  width: 380px;
  height: 52px;
  background-color: #0D9488;
  border-radius: 18px;
}

.sofa-seat::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 16px;
  width: 348px;
  height: 3px;
  background-color: #062E2B;
  border-radius: 2px;
}

.sofa-arm {
  position: absolute;
  bottom: 40px;
  width: 44px;
  height: 100px;
  background-color: #0D9488;
  border-radius: 20px;
}

.sofa-arm.arm-left {
  left: 0;
}

.sofa-arm.arm-right {
  right: 0;
}

.sofa-leg {
  position: absolute;
  bottom: 0;
  width: 12px;
  height: 26px;
  background-color: #E9B384;
  border-radius: 3px;
}

.sofa-leg.leg1 { left: 30px; }
.sofa-leg.leg2 { left: 150px; }
.sofa-leg.leg3 { right: 150px; }
.sofa-leg.leg4 { right: 30px; }

.sofa-glow {
  position: absolute;
  top: -30px;
  left: 120px;
  width: 200px;
  height: 140px;
  background: rgba(10, 186, 181, 0.1);
  filter: blur(40px);
  border-radius: 50%;
}

/* side table + lamp */
.side-table {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 90px;
  height: 150px;
}

.side-table-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 14px;
  background-color: #E9B384;
  border-radius: 50%;
}

.side-table-stem {
  position: absolute;
  top: 8px;
  left: 43px;
  width: 6px;
  height: 40px;
  background-color: #E9B384;
}

.side-table-base {
  position: absolute;
  bottom: 78px;
  left: 15px;
  width: 60px;
  height: 10px;
  background-color: #E9B384;
  border-radius: 50%;
}

.side-lamp {
  position: absolute;
  top: -44px;
  left: 20px;
  width: 40px;
  height: 50px;
}

.side-lamp-shade {
  position: absolute;
  top: 0;
  left: 6px;
  width: 28px;
  height: 18px;
  background-color: #0ABAB5;
  clip-path: polygon(12% 0, 88% 0, 70% 100%, 30% 100%);
}

.side-lamp-stem {
  position: absolute;
  top: 18px;
  left: 19px;
  width: 2px;
  height: 16px;
  background-color: #99F6E4;
}

.side-lamp-base {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 16px;
  height: 6px;
  background-color: #0D9488;
  border-radius: 50%;
}

.side-lamp-glow {
  position: absolute;
  top: -8px;
  left: -6px;
  width: 52px;
  height: 40px;
  background: rgba(10, 186, 181, 0.18);
  filter: blur(10px);
  border-radius: 50%;
}

/* =========================================================
   STATEMENT ROW (full-width)
   ========================================================= */
.statement-row {
  background-color: #062E2B;
  padding: 90px 0;
}

.statement-row__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.statement-row .eyebrow {
  color: #0ABAB5;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 20px;
}

.statement-row h2 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #E9F2F1;
  margin-bottom: 22px;
}

.statement-row h2 .accent {
  color: #99F6E4;
}

.statement-row p {
  font-size: 19px;
  color: #C7D6D4;
  max-width: 760px;
  margin: 0 auto;
}

/* =========================================================
   STAT COLUMNS (big numerals)
   ========================================================= */
.stat-columns {
  background-color: #0F1413;
  padding: 90px 0;
}

.stat-columns__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.stat-columns__head .eyebrow {
  color: #0ABAB5;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 16px;
}

.stat-columns__head h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #E9F2F1;
  margin-bottom: 16px;
}

.stat-columns__head p {
  color: #9FB4B1;
  font-size: 17px;
}

.stat-columns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background-color: #16211F;
  border: 1px solid #1E2C2A;
  border-radius: 16px;
}

.stat-number {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: #0ABAB5;
  letter-spacing: -0.03em;
}

.stat-suffix {
  color: #99F6E4;
}

.stat-label {
  margin-top: 12px;
  font-size: 17px;
  font-weight: 700;
  color: #E9F2F1;
}

.stat-desc {
  margin-top: 8px;
  color: #9FB4B1;
  font-size: 15px;
}

/* =========================================================
   SOURCING PROCESS (numbered 01-05)
   ========================================================= */
.sourcing-process {
  background-color: #0F1413;
  padding: 90px 0;
  border-top: 1px solid #16211F;
}

.sourcing-process__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.sourcing-process__head .eyebrow {
  color: #0ABAB5;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}

.sourcing-process__head h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #E9F2F1;
  margin-bottom: 16px;
}

.sourcing-process__head p {
  color: #9FB4B1;
  font-size: 17px;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: #0D9488;
}

.process-step {
  position: relative;
  text-align: center;
  padding-top: 80px;
}

.process-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #062E2B;
  border: 2px solid #0ABAB5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #0ABAB5;
  z-index: 1;
}

.process-step h3 {
  font-size: 17px;
  color: #E9F2F1;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: #9FB4B1;
}

.process-footnote {
  text-align: center;
  margin-top: 48px;
  color: #C7D6D4;
  font-size: 17px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   COLLECTION SCROLL (horizontal)
   ========================================================= */
.collection-scroll {
  background-color: #062E2B;
  padding: 90px 0;
}

.collection-scroll__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.collection-scroll__head .eyebrow {
  color: #0ABAB5;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}

.collection-scroll__head h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #E9F2F1;
}

.collection-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.collection-tab {
  background-color: #0F1413;
  color: #C7D6D4;
  border: 1px solid #1E2C2A;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.collection-tab.active {
  background-color: #0ABAB5;
  color: #062E2B;
  border-color: #0ABAB5;
}

.scroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
}

.product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background-color: #16211F;
  border: 1px solid #1E2C2A;
  border-radius: 16px;
  overflow: hidden;
}

.product-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0F1413;
}

.thumb-shape {
  position: relative;
  display: block;
  width: 110px;
  height: 100px;
}

.thumb-sofa {
  width: 120px;
  height: 90px;
}

.thumb-sofa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 46px;
  background-color: #0D9488;
  border-radius: 14px 14px 6px 6px;
}

.thumb-sofa::after {
  content: "";
  position: absolute;
  top: 38px;
  left: 10px;
  width: 100px;
  height: 26px;
  background-color: #0ABAB5;
  border-radius: 8px;
  box-shadow: 14px 26px 0 -6px #0ABAB5, 44px 26px 0 -6px #0ABAB5, 74px 26px 0 -6px #0ABAB5;
}

.thumb-chair::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 14px;
  height: 60px;
  background-color: #0D9488;
  border-radius: 4px;
}

.thumb-chair::after {
  content: "";
  position: absolute;
  top: 52px;
  left: 12px;
  width: 80px;
  height: 18px;
  background-color: #0ABAB5;
  border-radius: 4px;
  box-shadow: 6px 30px 0 -2px #0ABAB5, 56px 30px 0 -2px #0ABAB5;
}

.thumb-lamp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  width: 58px;
  height: 34px;
  background-color: #0ABAB5;
  clip-path: polygon(8% 0, 92% 0, 74% 100%, 26% 100%);
}

.thumb-lamp::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 53px;
  width: 4px;
  height: 44px;
  background-color: #99F6E4;
  box-shadow: -9px 46px 0 9px #0D9488;
}

.thumb-planter::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 28px;
  width: 54px;
  height: 46px;
  background-color: #0D9488;
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}

.thumb-planter::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 52px;
  width: 6px;
  height: 34px;
  background-color: #0ABAB5;
  border-radius: 4px;
  box-shadow: -16px 12px 0 -1px #0ABAB5, 12px 12px 0 -1px #0ABAB5;
}

.thumb-blanket::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 16px;
  width: 78px;
  height: 66px;
  background-color: #0D9488;
  border-radius: 8px;
  background-image: repeating-linear-gradient(
    45deg,
    #0ABAB5 0 6px,
    #0D9488 6px 14px
  );
}

.thumb-blanket::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 26px;
  width: 78px;
  height: 66px;
  background: rgba(153, 246, 228, 0.85);
  border-radius: 8px;
}

.thumb-rug::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 6px;
  width: 98px;
  height: 46px;
  background-color: #0D9488;
  border-radius: 6px;
}

.thumb-rug::after {
  content: "";
  position: absolute;
  top: 38px;
  left: 16px;
  width: 78px;
  height: 26px;
  border: 2px solid #99F6E4;
  border-radius: 4px;
  background-image: repeating-linear-gradient(
    90deg,
    #0ABAB5 0 10px,
    transparent 10px 16px
  );
}

.thumb-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  width: 94px;
  height: 18px;
  background-color: #0ABAB5;
  border-radius: 50%;
}

.thumb-table::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 53px;
  width: 5px;
  height: 60px;
  background-color: #99F6E4;
  box-shadow: -20px 62px 0 0 #0D9488, -20px 62px 0 0 #0D9488;
}

.thumb-art::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 20px;
  width: 70px;
  height: 80px;
  border: 6px solid #0D9488;
  border-radius: 4px;
  background-color: #062E2B;
}

.thumb-art::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 44px;
  width: 22px;
  height: 40px;
  background-color: #0ABAB5;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.product-body {
  padding: 20px;
}

.product-cat {
  color: #0ABAB5;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-name {
  margin: 6px 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: #E9F2F1;
}

.product-price {
  color: #99F6E4;
  font-weight: 700;
  font-size: 17px;
}

/* =========================================================
   COMPARISON TABLE (two-column)
   ========================================================= */
.comparison-table {
  background-color: #0F1413;
  padding: 90px 0;
}

.comparison-table__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.comparison-table__head .eyebrow {
  color: #0ABAB5;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}

.comparison-table__head h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #E9F2F1;
  margin-bottom: 16px;
}

.comparison-table__head p {
  color: #9FB4B1;
  font-size: 17px;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table-el {
  width: 100%;
  border-collapse: collapse;
  background-color: #16211F;
  border: 1px solid #1E2C2A;
  border-radius: 16px;
  overflow: hidden;
  min-width: 560px;
}

.compare-table-el thead th {
  background-color: #0ABAB5;
  color: #062E2B;
  font-weight: 800;
  font-size: 16px;
  text-align: left;
  padding: 18px 20px;
  border-bottom: 2px solid #0D9488;
}

.compare-table-el tbody th {
  color: #99F6E4;
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  padding: 16px 20px;
  background-color: #062E2B;
  border-bottom: 1px solid #1E2C2A;
  white-space: nowrap;
}

.compare-table-el tbody td {
  color: #C7D6D4;
  font-size: 15px;
  padding: 16px 20px;
  border-bottom: 1px solid #1E2C2A;
}

.compare-table-el tbody tr:last-child th,
.compare-table-el tbody tr:last-child td {
  border-bottom: none;
}

.compare-table-el tbody tr:nth-child(even) td {
  background-color: #101816;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-section {
  background-color: #062E2B;
  padding: 90px 0;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-section .eyebrow {
  color: #0ABAB5;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 16px;
}

.contact-section h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #E9F2F1;
  margin-bottom: 18px;
}

.contact-section__intro p {
  color: #C7D6D4;
  font-size: 17px;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-detail .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #0ABAB5;
  flex-shrink: 0;
}

.contact-detail span {
  color: #E9F2F1;
  font-size: 16px;
}

.contact-detail a {
  color: #99F6E4;
  font-weight: 600;
}

.contact-form {
  background-color: #16211F;
  border: 1px solid #1E2C2A;
  border-radius: 16px;
  padding: 32px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #E9F2F1;
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  background-color: #0F1413;
  border: 1px solid #1E2C2A;
  border-radius: 8px;
  padding: 12px 14px;
  color: #E9F2F1;
  font-size: 15px;
  font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #0ABAB5;
}

.form-note {
  font-size: 13px;
  color: #99F6E4;
  margin-top: 12px;
  min-height: 20px;
}

/* =========================================================
   SPLIT CTA BAND
   ========================================================= */
.split-cta {
  background-color: #0F1413;
  padding: 90px 0;
}

.split-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #1E2C2A;
  border-radius: 20px;
  overflow: hidden;
}

.split-cta__left {
  background-color: #0ABAB5;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-cta__left h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #062E2B;
  margin-bottom: 16px;
}

.split-cta__left p {
  color: #062E2B;
  font-size: 17px;
  margin-bottom: 28px;
}

.split-cta__left .btn-dark {
  background-color: #062E2B;
  color: #E9F2F1;
  align-self: flex-start;
}

.split-cta__left .btn-dark:hover {
  background-color: #0F1413;
  color: #99F6E4;
}

.split-cta__right {
  background-color: #16211F;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-cta__right h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #E9F2F1;
  margin-bottom: 16px;
}

.split-cta__right p {
  color: #C7D6D4;
  font-size: 17px;
  margin-bottom: 28px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background-color: #0F1413;
  border-top: 3px solid #0ABAB5;
  padding: 60px 0 40px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.site-footer .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.site-footer .brand .lamp-wordmark {
  font-size: 20px;
}

.site-footer h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0ABAB5;
  margin-bottom: 16px;
}

.site-footer ul {
  list-style: none;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul a {
  color: #C7D6D4;
  font-size: 15px;
}

.site-footer ul a:hover {
  color: #0ABAB5;
}

.site-footer p {
  color: #9FB4B1;
  font-size: 15px;
}

.site-footer__bottom {
  border-top: 1px solid #16211F;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #9FB4B1;
  font-size: 14px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .sofa-hero__inner {
    grid-template-columns: 1fr;
  }

  .sofa-visual {
    min-height: 300px;
  }

  .stat-columns__grid {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-list::before {
    display: none;
  }

  .process-step {
    padding-top: 0;
    padding-left: 96px;
    text-align: left;
  }

  .process-num {
    left: 0;
    transform: none;
  }

  .contact-section__grid {
    grid-template-columns: 1fr;
  }

  .split-cta__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .lamp-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: #0F1413;
    border-bottom: 1px solid #16211F;
    display: none;
    padding: 12px 24px;
  }

  .lamp-links.open {
    display: flex;
  }

  .lamp-links li {
    padding: 12px 0;
    border-bottom: 1px solid #16211F;
  }

  .lamp-links li:last-child {
    border-bottom: none;
  }

  .lamp-cta {
    display: none;
  }

  .lamp-toggle {
    display: flex;
  }

  .sofa-copy h1 {
    font-size: 38px;
  }

  .sofa {
    transform: scale(0.72);
    transform-origin: bottom center;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
