/* =========================================================
   FILE: home.css
   PURPOSE: Clean homepage stylesheet for FALTH
   LOAD AFTER: main.css + theme-overrides-light.css
   ========================================================= */

html,
body {
  overflow-x: hidden;
}

/* =========================================================
   01. HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.42) 0%, rgba(11, 11, 13, 0.24) 28%, rgba(11, 11, 13, 0.34) 100%),
    radial-gradient(circle at 20% 30%, rgba(184, 148, 88, 0.08), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.04), transparent 24%);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(32px, 8vw, 120px);
  padding-right: 32px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 640px;
  padding: 120px 0 96px;
  text-align: left;
  margin: 0;
}

.hero-title {
  color: rgba(255, 255, 255, 0.96) !important;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.05;
  margin: 0 0 22px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.80) !important;
  font-size: 20px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 28px;
}

.hero-actions,
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-btn-primary {
  background: linear-gradient(180deg, #d8b97d, #b89458) !important;
  color: #15120f !important;
  border: 0 !important;
  box-shadow: 0 12px 28px rgba(11, 11, 13, 0.18);
}

.hero-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(11, 11, 13, 0.22);
}

.hero-btn-secondary {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.26) !important;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06) !important;
}
.hero h1{
  text-wrap: balance;
}

/* =========================================================
   02. PROCESS V2
   ========================================================= */
.process-section-v2 {
  padding: 110px 0;
  background: var(--bg-section-1);
}

.process-v2-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.process-v2-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 40px;
  align-items: start;
  margin-bottom: 44px;
}

.process-v2-eyebrow {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b89458;
  font-weight: 500;
}

.process-v2-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: rgba(23, 21, 19, 0.18);
}

.process-v2-heading {
  margin: 0;
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(52px, 4.8vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #171513;
}

.process-v2-desc {
  margin: 42px 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: rgba(23, 21, 19, 0.62);
}

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

.process-v2-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(252, 250, 246, 0.98));
  border: 1px solid rgba(23, 21, 19, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.80) inset,
    0 12px 32px rgba(11, 11, 13, 0.05),
    0 4px 10px rgba(11, 11, 13, 0.03);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process-v2-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 21, 19, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.80) inset,
    0 18px 44px rgba(11, 11, 13, 0.08),
    0 6px 14px rgba(11, 11, 13, 0.04);
}

.process-v2-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3efe8;
}

.process-v2-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease;
}

.process-v2-card:hover .process-v2-img-wrap img {
  transform: scale(1.03);
}

.process-v2-body {
  padding: 22px 20px 24px;
}

.process-v2-step {
  margin: 0 0 10px;
  font-family: var(--font-tech);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b89458;
}

.process-v2-title {
  margin: 0 0 10px;
  font-family: 'Bodoni Moda', serif;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #171513;
}

.process-v2-text {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(23, 21, 19, 0.60);
}

.process-v2-num {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-tech);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #b89458;
}

/* =========================================================
   03. INRIKTNINGAR
   ========================================================= */
.falth-fit-directions {
  padding: 84px 0 40px;
}

.falth-fit-directions__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.falth-fit-directions__header {
  margin: 0 0 42px;
  padding: 0 6px;
  background: transparent;
}

.falth-fit-directions__kicker {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b89458;
}

.falth-fit-directions__title {
  margin: 0 0 14px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.95;
  color: #171411;
}

.falth-fit-directions__subhead {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(23, 20, 17, 0.55);
}

.falth-fit-directions__lead {
  max-width: 980px;
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(23, 20, 17, 0.72);
}

.falth-fit-directions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.falth-fit-directions__visual-card {
  min-width: 0;
}

.falth-fit-directions__visual-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.falth-fit-directions__image-wrap {
  position: relative;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 22px 46px rgba(11, 11, 13, 0.12);
}

.falth-fit-directions__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.falth-fit-directions__visual-link:hover .falth-fit-directions__image {
  transform: scale(1.04);
}

.falth-fit-directions__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.06) 0%, rgba(10, 10, 12, 0.20) 40%, rgba(10, 10, 12, 0.78) 100%);
}

.falth-fit-directions__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 32px 28px 30px;
  color: #f7f4ef;
}

.falth-fit-directions__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(15, 16, 20, 0.52);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.92);
}

.falth-fit-directions__tagline {
  margin: 0 0 10px;
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fffdfa;
}

.falth-fit-directions__name {
  margin: 0 0 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(247, 244, 239, 0.75);
}

.falth-fit-directions__text {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(247, 244, 239, 0.84);
  max-width: 34ch;
}

.falth-fit-directions__list li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(247, 244, 239, 0.74);
}

.falth-fit-directions__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #b89458;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.falth-fit-directions__visual-card--featured .falth-fit-directions__image-wrap {
  box-shadow: 0 26px 52px rgba(11, 11, 13, 0.16);
}

/* =========================================================
   04. MATERIAL & KVALITET
   ========================================================= */
.materials {
  padding: 96px 0;
  background: #f3f0ea;
}

.materials-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 56px;
  align-items: start;
}

.materials-left,
.materials-right {
  background: #ffffff;
  border-radius: 28px;
  padding: 34px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.75) inset,
    0 12px 32px rgba(11,11,13,0.06);
}

.materials-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b89458;
}

.materials-title {
  margin: 0 0 24px;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #171513;
  max-width: 8ch;
}

.materials-copy {
  background: #f4f1eb;
  border: 1px solid rgba(23,21,19,0.05);
  border-radius: 22px;
  padding: 22px 22px;
}

.materials-copy p {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.58;
  color: rgba(23,21,19,0.66);
}

.materials-copy p:last-child {
  margin-bottom: 0;
}

.materials-image {
  margin-top: 20px;
}

.materials-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.materials-features__intro {
  margin-bottom: 28px;
}

.materials-features__kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b89458;
}

.materials-features__title {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  color: #171513;
}

.materials-features__lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(23,21,19,0.68);
  max-width: 48ch;
}

.materials-feature {
  padding: 0 0 22px;
  margin: 0 0 22px;
  border-bottom: 1px solid rgba(23,21,19,0.08);
}

.materials-feature:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.materials-feature h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-family: 'Bodoni Moda', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
  color: #171513;
}

.materials-feature__body {
  background: #f4f1eb;
  border: 1px solid rgba(23,21,19,0.05);
  border-radius: 18px;
  padding: 16px 18px;
}

.materials-feature__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(23,21,19,0.68);
}

.flag {
  font-size: 18px;
  display: inline-block;
}

/* =========================================================
   05. RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
  .process-v2-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .falth-fit-directions__grid {
    grid-template-columns: 1fr;
  }

  .falth-fit-directions__image-wrap {
    min-height: 520px;
  }

  .materials-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 980px) {
  .process-v2-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-v2-desc {
    margin-top: 0;
    max-width: 42ch;
  }

  .process-v2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 66vh;
  }

  .hero__bg {
    object-position: 58% 16%;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(11, 11, 13, 0.42) 0%, rgba(11, 11, 13, 0.24) 28%, rgba(11, 11, 13, 0.34) 100%),
      radial-gradient(circle at 20% 30%, rgba(184, 148, 88, 0.08), transparent 28%),
      radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.04), transparent 24%);
  }

  .hero .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content {
    max-width: 100%;
    padding: 104px 0 72px;
  }

  .hero-title {
    font-size: clamp(40px, 10vw, 56px);
  }

  .hero-sub {
    font-size: 18px;
    max-width: 100%;
  }

  .process-v2-inner,
  .falth-fit-directions__inner,
  .materials-container {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .falth-fit-directions {
    padding: 64px 0 24px;
  }

  .falth-fit-directions__header {
    padding: 0;
    margin-bottom: 28px;
  }

  .falth-fit-directions__title {
    font-size: clamp(40px, 13vw, 58px);
    line-height: 0.98;
  }

  .falth-fit-directions__lead {
    font-size: 17px;
    line-height: 1.65;
  }

  .falth-fit-directions__image-wrap {
    min-height: 460px;
    border-radius: 24px;
  }

  .falth-fit-directions__content {
    padding: 22px 20px 22px;
  }

  .falth-fit-directions__tagline {
    font-size: clamp(30px, 9vw, 40px);
  }

  .falth-fit-directions__name {
    font-size: 13px;
  }

  .falth-fit-directions__text {
    font-size: 16px;
  }

  .materials {
    padding: 64px 0;
  }

  .materials-left,
  .materials-right {
    padding: 24px 22px 26px;
    border-radius: 24px;
  }

  .materials-title {
    font-size: clamp(38px, 12vw, 56px);
  }

  .materials-copy p,
  .materials-features__lead,
  .materials-feature__body p {
    font-size: 16px;
  }

  .materials-feature h3 {
    font-size: 24px;
  }
}

/* ======================================================
   MATERIALS – SINGLE SOURCE OF TRUTH
   ====================================================== */

.materials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.materials-left,
.materials-right,
.materials-features {
  background: #ffffff;
  border: 1px solid rgba(23,21,19,0.05);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  height: 100%;
}

.materials-left {
  padding: 48px;
}

.materials-right,
.materials-features {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}

.materials-left .materials-highlight {
  background: #f5f2ec;
  border: 1px solid rgba(23,21,19,0.05);
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 24px;
}

.materials-left p,
.materials-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: #5c5c5c;
}

.materials-image {
  margin-top: 28px;
}

.materials-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.materials-features__intro {
  margin-bottom: 18px;
}

.materials-features__kicker {
  display: block;
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b89458;
}

.materials-features__title {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.08;
  color: #171513;
}

.materials-features__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #6f6f6f;
  max-width: 40ch;
}

.materials-feature {
  margin: 0 0 18px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(23,21,19,0.06);
}

.materials-feature:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.materials-feature h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-family: 'Bodoni Moda', serif;
  font-size: 28px;
  line-height: 1.12;
  color: #171513;
}

.materials-feature__body {
  background: #f5f2ec;
  border: 1px solid rgba(23,21,19,0.05);
  border-radius: 16px;
  padding: 16px 18px;
}

.materials-feature__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(23,21,19,0.68);
}

.materials-logos {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(23,21,19,0.08);
  text-align: center;
}

.materials-logos__title {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b89458;
}

.materials-logos__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.materials-logos__row img {
  height: 32px;
  width: auto;
  opacity: 0.82;
  filter: grayscale(100%);
  transition: all 0.2s ease;
}

.materials-logos__row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.materials-spec-strip {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(23,21,19,0.08);
  font-family: var(--font-tech), 'Montserrat', sans-serif;
  font-size: 11px;
  line-height: 1.75;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b89458;
}

.materials-spec-strip span {
  display: inline-block;
  margin-right: 14px;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .materials-container {
    grid-template-columns: 1fr;
  }

  .materials-left,
  .materials-right,
  .materials-features {
    padding: 32px;
  }

  .materials-logos {
    margin-top: 40px;
  }
}

/* =========================================
   PROCESS HEADER FIX (vertical layout)
   ========================================= */

.process-v2-header{
  display: block;          /* bort med grid */
  max-width: 900px;        /* kontrollera bredd */
  margin-bottom: 48px;
}

.process-v2-heading{
  max-width: 16ch;         /* snygg radbrytning */
}

.process-v2-desc{
  max-width: 48ch;
  margin-top: 18px;
}

/* FIX: ta bort mörk overlay i process header */

.process-v2-header{
  background: transparent !important;
  opacity: 1 !important;
}

.process-v2-heading,
.process-v2-desc,
.process-v2-eyebrow{
  color: #111 !important;
  opacity: 1 !important;
}

.falth-fit-directions__visual-card--featured .falth-fit-directions__tagline {
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.02;
  letter-spacing: 0.04em;
}
.materials-lead{
  max-width: 520px;
}
/* Sänk total höjd i materials-sektionen */
.materials-container {
  padding: 40px 0;
}

/* Minska luft i vänster box */
.materials-left {
  padding: 40px 36px;
}

/* Tightare rubrik */
.materials-title {
  margin-bottom: 16px;
}

/* Tightare brödtext */
.materials-lead {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Mindre luft runt bilden */
.materials-image {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Mindre luft i spec-strip */
.materials-spec-strip {
  margin-top: 12px;
}

/* Höger sida – mindre padding i feature-boxar */
.materials-feature__body {
  padding: 14px 16px;
}

/* Mindre spacing mellan feature-block */
.materials-feature {
  margin-bottom: 16px;
}

/* Header höger sida */
.materials-features__intro {
  margin-bottom: 20px;
}

/* FIX: ta bort onödig stretch i materialboxarna */
.materials-left,
.materials-right,
.materials-features {
  height: auto;
}

.materials-right,
.materials-features {
  justify-content: flex-start;
}

/* Tightare avstånd före loggor/spec */
.materials-logos {
  margin-top: 28px;
}

.materials-spec-strip {
  margin-top: 12px;
}
.materials-feature:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.materials-features__intro {
  margin-bottom: 16px;
}
/* =========================================
   MATERIALS HEIGHT / SPACE FIX
   ========================================= */

.materials-left,
.materials-right,
.materials-features {
  height: auto;
}

.materials-right,
.materials-features {
  justify-content: flex-start;
}

.materials-logos {
  margin-top: 28px;
}

.materials-spec-strip {
  margin-top: 12px;
}

.materials-feature:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.materials-features__intro {
  margin-bottom: 16px;
}