/* =====================================================
   CARPETERIA — Flooring Centers
   Editorial. Clean. Teal. Premium.
   Inspo: theshadestore.com · Mannington · Anderson Tuftex
   ===================================================== */

:root {
  --paper: #faf5e8;
  --paper-deep: #f0e9d2;
  --cream: #fdf9ed;
  --ink: #14181c;
  --ink-soft: rgba(20, 24, 28, 0.66);
  --ink-mute: rgba(20, 24, 28, 0.45);
  --teal: #1f6b6b;
  --teal-deep: #154f4f;
  --teal-light: #4a8d8d;
  --teal-pale: #d3e2e0;
  --taupe: #b8a88c;
  --warm-line: rgba(20, 24, 28, 0.16);

  --display: "Fraunces", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
p { margin: 0; }

/* ============== UTIL ============== */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
}

.divider-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--teal);
  margin: 20px 0 24px;
}
.divider-rule--center { margin-left: auto; margin-right: auto; }

/* ============== TOP BAR ============== */

.topbar {
  background: var(--ink);
  color: var(--paper);
  padding: 10px var(--gutter);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.topbar a {
  color: var(--paper);
  border-bottom: 1px solid rgba(250, 245, 232, 0.4);
  margin-left: 20px;
}
.topbar a:hover { border-bottom-color: var(--paper); }

/* ============== NAV ============== */

.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--warm-line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background-color: rgba(250, 245, 232, 0.96);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.nav__brand .b-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--teal);
  text-transform: uppercase;
}
.nav__brand .b-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
  font-weight: 600;
}
.nav__menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.nav__menu a {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  transition: color 200ms;
}
.nav__menu a:hover, .nav__menu a.is-active { color: var(--teal); }
.nav__cta { display: flex; justify-content: flex-end; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all 180ms ease;
}
.btn:hover { background: var(--teal-deep); border-color: var(--teal-deep); }

.btn--teal { background: var(--teal); border-color: var(--teal); }
.btn--teal:hover { background: var(--teal-deep); border-color: var(--teal-deep); }

.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }

.btn--outline-teal { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--outline-teal:hover { background: var(--teal); color: var(--paper); }

.btn--lg { padding: 16px 32px; font-size: 13px; }

/* ============== HERO ============== */

.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) var(--gutter) clamp(48px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
}
.hero__copy {
  position: relative;
  z-index: 2;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--teal);
}
.hero__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 400;
  margin-top: 18px;
  color: var(--teal);
  font-variation-settings: "opsz" 14, "SOFT" 100;
}
.hero__lead {
  font-size: 17px;
  line-height: 1.65;
  margin-top: 22px;
  max-width: 46ch;
  color: var(--ink-soft);
}
.hero__cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero__media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lead form - sits on top of/over hero photo */
.hero-form {
  background: var(--cream);
  border: 1px solid var(--warm-line);
  padding: 32px;
  position: relative;
  margin-top: -80px;
  margin-left: -32px;
  margin-right: 24px;
  z-index: 3;
  box-shadow: 0 30px 50px -30px rgba(20, 24, 28, 0.18);
}
.hero-form__head {
  border-bottom: 1px solid var(--warm-line);
  padding-bottom: 16px;
  margin-bottom: 18px;
}
.hero-form__head .eyebrow { display: block; }
.hero-form__head h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 8px;
  line-height: 1.05;
}
.hero-form__head h3 em { font-style: italic; color: var(--teal); }

.hero-form .field { margin-bottom: 12px; }
.hero-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.hero-form input,
.hero-form select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--warm-line);
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  border-radius: 0;
}
.hero-form input:focus,
.hero-form select:focus { outline: none; border-color: var(--teal); }

.hero-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-form button {
  width: 100%;
  margin-top: 6px;
  justify-content: center;
}
.hero-form__foot {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  letter-spacing: 0.04em;
  font-style: italic;
  font-family: var(--display);
}

/* ============== FINANCING BANNER ============== */

.financing {
  background: var(--teal);
  color: var(--paper);
  padding: 18px var(--gutter);
}
.financing__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.financing__lead {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  font-variation-settings: "opsz" 14, "SOFT" 100;
}
.financing__sub {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(250, 245, 232, 0.78);
}
.financing a {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--paper);
  border-bottom: 2px solid var(--paper);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============== SECTIONS ============== */

section { position: relative; }

.section {
  padding: clamp(72px, 9vw, 140px) var(--gutter);
}
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section--cream { background: var(--cream); }
.section--paper-deep { background: var(--paper-deep); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink .eyebrow { color: var(--teal-light); }
.section--teal-pale { background: var(--teal-pale); }

.section__head {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: end;
  margin-bottom: 56px;
}
.section__head .index {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.section__head h2 {
  font-size: clamp(34px, 5vw, 76px);
  letter-spacing: -0.02em;
}

/* ============== SHOP FLOORS ============== */

.shop-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: 48px;
}
.shop-head h2 {
  font-size: clamp(40px, 5.5vw, 88px);
  letter-spacing: -0.025em;
}
.shop-head h2 em { font-style: italic; color: var(--teal); }
.shop-head p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 50ch;
}

.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  display: block;
}
.cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cat:hover img { transform: scale(1.04); }
.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20, 24, 28, 0.65) 100%);
  pointer-events: none;
}
.cat__body {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: var(--paper);
}
.cat__body h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.005em;
  color: var(--paper);
}
.cat__body .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.cat__body .arrow::after {
  content: "→";
  transition: transform 220ms;
}
.cat:hover .cat__body .arrow::after { transform: translateX(4px); }

/* ============== EDITORIAL QUOTE ============== */

.quote-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.quote-spread__copy { padding: 24px 0; }
.quote-spread h2 {
  font-size: clamp(40px, 5vw, 80px);
  letter-spacing: -0.025em;
  font-weight: 300;
}
.quote-spread h2 em { font-style: italic; color: var(--teal); font-variation-settings: "opsz" 144, "SOFT" 100; }
.quote-spread p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  margin-top: 18px;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 14, "SOFT" 100;
}
.quote-spread .stack {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-top: 28px;
  font-weight: 400;
}
.quote-spread .stack span { display: block; }
.quote-spread .stack span:nth-child(1) { color: var(--ink-soft); font-size: 0.7em; }
.quote-spread .stack span:nth-child(2) { color: var(--ink-soft); font-size: 0.7em; }
.quote-spread .stack span:nth-child(3) { color: var(--ink-soft); font-size: 0.7em; }
.quote-spread .stack span:nth-child(4) { color: var(--ink); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; padding-top: 14px; border-top: 1px solid var(--warm-line); margin-top: 12px; }
.quote-spread .stack span:nth-child(5) { color: var(--teal); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
.quote-spread__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink);
}
.quote-spread__media img { width: 100%; height: 100%; object-fit: cover; }

/* Reverse layout */
.quote-spread.reverse { grid-template-columns: 1fr 1.1fr; }
.quote-spread.reverse .quote-spread__media { order: -1; }

/* ============== EDITORIAL CARDS ============== */

.editorial-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--warm-line);
  border-top: 1px solid var(--warm-line);
  border-bottom: 1px solid var(--warm-line);
}
.pillar {
  background: var(--paper);
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pillar__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--teal);
  font-weight: 500;
}
.pillar h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em;
  font-weight: 500;
}
.pillar h3 em { font-style: italic; color: var(--teal); font-variation-settings: "opsz" 144, "SOFT" 100; }
.pillar p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============== HERITAGE / 50 YEARS ============== */

.heritage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.heritage__media {
  aspect-ratio: 5/6;
  overflow: hidden;
  background: var(--ink);
  position: relative;
}
.heritage__media img { width: 100%; height: 100%; object-fit: cover; }
.heritage__years {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--teal);
  color: var(--paper);
  padding: 14px 20px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.005em;
}
.heritage__years small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-top: 4px;
  color: rgba(250, 245, 232, 0.72);
  text-transform: uppercase;
}
.heritage__copy h2 {
  font-size: clamp(38px, 5vw, 76px);
  letter-spacing: -0.025em;
}
.heritage__copy h2 em { font-style: italic; color: var(--teal); font-variation-settings: "opsz" 144, "SOFT" 100; }
.heritage__copy p {
  font-size: 17px;
  line-height: 1.65;
  margin-top: 18px;
  color: var(--ink-soft);
  max-width: 50ch;
}
.heritage__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.heritage__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--warm-line);
  font-size: 15px;
  align-items: baseline;
}
.heritage__list li::before {
  content: "↳";
  color: var(--teal);
  font-family: var(--mono);
  font-size: 16px;
}
.heritage__list li strong { font-weight: 600; }
.heritage__list li em { font-style: italic; color: var(--teal); font-family: var(--display); font-variation-settings: "opsz" 14, "SOFT" 100; }

/* ============== VISUALIZER ============== */

.visualizer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.visualizer__media {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--ink);
}
.visualizer__media img { width: 100%; height: 100%; object-fit: cover; }
.visualizer__copy h2 {
  font-size: clamp(38px, 5vw, 76px);
  letter-spacing: -0.025em;
}
.visualizer__copy h2 em { font-style: italic; color: var(--teal); font-variation-settings: "opsz" 144, "SOFT" 100; }
.visualizer__copy p {
  font-size: 17px;
  line-height: 1.65;
  margin-top: 18px;
  color: var(--ink-soft);
  max-width: 48ch;
}

/* ============== EXPERT ADVICE / CARDS ============== */

.advice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.advice-card {
  background: var(--cream);
  border: 1px solid var(--warm-line);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  transition: all 200ms;
  position: relative;
  overflow: hidden;
}
.advice-card:hover { border-color: var(--teal); }
.advice-card__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}
.advice-card h3 {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -0.015em;
  font-weight: 500;
  line-height: 1.05;
}
.advice-card h3 em { font-style: italic; color: var(--teal); font-variation-settings: "opsz" 144, "SOFT" 100; }
.advice-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 38ch;
}
.advice-card__cta {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  border-top: 1px solid var(--warm-line);
  align-self: flex-start;
  width: 100%;
}
.advice-card__cta::after {
  content: "→";
  margin-left: auto;
  transition: transform 220ms;
}
.advice-card:hover .advice-card__cta::after { transform: translateX(4px); }

/* ============== CONTACT ============== */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.contact__copy h2 {
  font-size: clamp(40px, 5vw, 80px);
  letter-spacing: -0.025em;
}
.contact__copy h2 em { font-style: italic; color: var(--teal); font-variation-settings: "opsz" 144, "SOFT" 100; }
.contact__copy p {
  font-size: 17px;
  line-height: 1.65;
  margin-top: 18px;
  color: var(--ink-soft);
  max-width: 44ch;
}
.contact__info { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.contact__info .row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  border-top: 1px solid var(--warm-line);
  padding-top: 16px;
  align-items: start;
}
.contact__info .row svg { width: 22px; height: 22px; color: var(--teal); margin-top: 4px; }
.contact__info .row .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 2px;
  display: block;
}
.contact__info .row .val {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.contact__info .row a { color: var(--teal); border-bottom: 1px solid currentColor; font-family: var(--sans); font-size: 14px; }

.contact__form {
  background: var(--cream);
  border: 1px solid var(--warm-line);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__form h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.contact__form .field { display: flex; flex-direction: column; gap: 6px; }
.contact__form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.contact__form label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  background: var(--paper);
  border: 1px solid var(--warm-line);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  border-radius: 0;
  width: 100%;
}
.contact__form input:focus,
.contact__form textarea:focus,
.contact__form select:focus { outline: none; border-color: var(--teal); }
.contact__form textarea { min-height: 110px; resize: vertical; }
.contact__form button { align-self: stretch; justify-content: center; margin-top: 8px; }

/* ============== FOOTER ============== */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 6vw, 96px) var(--gutter) 32px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250, 245, 232, 0.18);
}
.footer__brand .b-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: var(--teal-light);
  text-transform: uppercase;
  display: block;
}
.footer__brand .b-tag {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250, 245, 232, 0.6);
  font-weight: 600;
  margin-top: 6px;
  display: block;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.65;
  margin-top: 18px;
  color: rgba(250, 245, 232, 0.7);
  max-width: 36ch;
}
.footer h4 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: 14px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a, .footer ul li { font-size: 14px; color: rgba(250, 245, 232, 0.86); }
.footer ul a:hover { color: var(--teal-light); }
.footer__bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(250, 245, 232, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============== ANIMATIONS ============== */

.reveal { opacity: 0; transform: translateY(24px); transition: all 800ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============== RESPONSIVE ============== */

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero-form { margin: 24px 0 0 0; }
  .shop-head { grid-template-columns: 1fr; }
  .cats { grid-template-columns: 1fr 1fr; }
  .quote-spread, .quote-spread.reverse { grid-template-columns: 1fr; }
  .quote-spread.reverse .quote-spread__media { order: 0; }
  .editorial-pillars { grid-template-columns: 1fr; }
  .heritage, .visualizer, .contact { grid-template-columns: 1fr; }
  .advice-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .nav__menu { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .section__head { grid-template-columns: 1fr; }
  .topbar { font-size: 11px; letter-spacing: 0.14em; }
  .topbar a { display: block; margin-left: 0; margin-top: 4px; }
}

@media (max-width: 540px) {
  .cats { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .nav__brand .b-name { font-size: 22px; }
  .nav__brand .b-tag { font-size: 9px; letter-spacing: 0.22em; }
  .nav__cta .btn { padding: 10px 16px; font-size: 11px; letter-spacing: 0.14em; }
  .hero-form { padding: 24px; }
  .hero-form__row { grid-template-columns: 1fr; }
  .contact__form .row { grid-template-columns: 1fr; }
  .financing__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  body, h1, h2, h3, h4, p { overflow-wrap: break-word; word-wrap: break-word; }
}
