:root {
  --brown: #a78464;
  --brown-dark: #7a4f2a;
  --brown-deep: #5c3a1f;
  --tan: #c4a07a;
  --tan-soft: #e8c4a0;
  --cream: #fef9f5;
  --cream-2: #fee6d4;
  --peach: #fee6d4;
  --navy: #344555;
  --navy-2: #243546;
  --navy-input: #40505f;
  --text: #3a322c;
  --muted: #7a736c;
  --line: #e8e4e0;
  --gray-ph: #ececec;
  --heading: #ae8863;
  --heading-top: #b57b43;
  --heading-bot: #6b3704;
  --heading-grad: linear-gradient(to right, #b57b43d1 0%, #6b3704d6 100%);
  --btn-grad: linear-gradient(145deg, #d2ad86 0%, #b79068 45%, #9e7652 100%);
  --hero-grad: linear-gradient(72deg, #fde7d2 0%, #f6d4b4 34%, #e2b17c 68%, #c79260 100%);
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --container: 1264px;
  --hero-popout: 140px;
  --hero-card-gap: 140px;
  --font-display: "Cal Sans", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --fw-display: 400;
}

main {
  overflow: visible;
  /* top: -80px; */
  position: relative;
  z-index: 999;
}

.text-gradient {
  background-image: var(--heading-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
}

body.nav-open {
  overflow: hidden;
}

.container,
.container.narrow,
.hero-card,
.quote-card,
.footer-card,
.footer-grid,
.ba-card,
.ba-wrap,
.feature-media,
.reviews-slider,
.review-viewport {
  max-width: 100%;
}

.how-quote-grid > *,
.feature-grid > *,
.reviews-layout > *,
.footer-grid > *,
.header-inner > * {
  min-width: 0;
}

.reviews-slider,
.review-viewport {
  width: 100%;
  min-width: 0;
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.review-card {
  min-width: 0;
  box-sizing: border-box;
}


h1,
h2,
h3,
h4,
h5,
h6,
.center-title,
.brands-title,
.quote-step-title {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-synthesis: none;
  background-image: var(--heading-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong,
h1 b,
h2 b,
h3 b,
h4 b,
h5 b,
h6 b {
  font-weight: inherit;
  font-synthesis: none;
}

p {
  font-family: var(--font-body);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

section[id],
.how-quote,
.lifestyle,
.types,
.products,
.gallery,
.reviews,
.faq {
  scroll-margin-top: 88px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 48px, 920px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  max-width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-image: var(--btn-grad);
  background-color: #b79068;
  color: var(--white);
  box-shadow: 0 8px 18px rgba(140, 95, 55, 0.22);
}

.btn-dark {
  background: var(--brown-dark);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
  display: flex;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--tan);
  color: var(--brown);
}

/* Header */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999999999;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 100px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.logo-img {
  height: 80px;
  width: auto;
  max-width: min(320px, 56vw);
  display: block;
  object-fit: contain;
}

.footer-logo .logo-img {
  height: 64px;
  max-width: 260px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: #4a4a4a;
}

.nav a:hover,
.nav a[aria-current="page"],
.nav-item.is-current > .nav-parent {
  color: var(--brown);
}

.nav-item {
  position: relative;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  padding: 8px 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(7, 30, 54, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 80;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 12px;
}

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
  font-size: 13.5px;
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
  background: #fff6ee;
  color: var(--brown);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  display: block;
}

.nav-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.phone-btn {
  padding: 14px 26px;
  font-size: 13px;
  border-color: var(--brown);
  color: var(--brown-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 60;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--navy);
  margin-inline: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Announcement */
.announce {
  position: relative;
  z-index: 6;
  background: #31465b;
  color: var(--white);
  overflow: hidden;
  height: 46px;
  display: flex;
  align-items: center;
}

.announce-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.announce-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.announce .dot {
  opacity: 1;
  font-size: 11px;
  line-height: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.announce:hover .announce-track {
  animation-play-state: paused;
}

/* Hero */
.hero {
  /* padding: 0 0 48px; */
  background: transparent;
  position: relative;
  top: -50px;
  z-index: 1;
  overflow: visible;
}

.hero .container {
  overflow: visible;
}

.hero-card {
  position: relative;
  height: 535px;
  min-height: 535px;
  margin-top: var(--hero-card-gap);
  border-radius: 52px;
  overflow: visible;
  background: transparent;
  max-width: 100%;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: var(--hero-grad);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 430px;
  max-width: 48%;
  padding: 32px 0 0 78px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 70px;
  letter-spacing: 0;
  font-weight: var(--fw-display);
  margin-bottom: 18px;
  white-space: nowrap;
  background-image: var(--heading-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-bottom: 20px;
}

.hero-content p {
  color: #6b3f24;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
  /* max-width: 330px; */
  font-weight: 400;
}

.hero-cta {
  align-self: flex-start;
  padding: 14px 28px;
  font-size: 14px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  overflow: visible;
  max-width: 100%;
}

.hero-model {
  position: absolute;
  left: 28.7%;
  bottom: 0;
  width: 47.4%;
  height: calc(100% + var(--hero-popout));
  max-width: none;
  z-index: 10;
  transform: none;
  object-fit: contain;
  object-position: center bottom;
  /* filter: drop-shadow(16px 20px 32px rgba(70, 40, 15, 0.24)); */
  user-select: none;
}

.hero-perks {
  position: absolute;
  top: 75px;
  right: 60px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-perks li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  padding: 0 22px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  position: relative;
  min-width: 96px;
}

.hero-perks li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.85);
}

.perk-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #ffffff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.18));
}

.perk-icon svg {
  width: 26px;
  height: 26px;
}

.hero-product-card {
  position: absolute;
  right: 75px;
  bottom: 28px;
  z-index: 5;
  width: 270px;
  height: 250px;
  background: transparent;
  border: 0;
  border-radius: 20px;
  padding: 10px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #ffffff8a;
}

.hero-product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(80, 50, 20, 0.14);
}

.hero-product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-product-media img[active] {
  opacity: 1;
}

.hero-product-card strong {
  font-family: var(--font-body);
  font-size: 13px;
  color: #8a5a32;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dots button.is-active {
  background: #ffffff;
  transform: scale(1.35);
  box-shadow: none;
}

/* How + Quote */
.how-quote {
  padding: 56px 0 28px;
  position: relative;
  z-index: 1;
}

.how-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
  padding: 0 100px;
}

.how h2,
.center-title,
.faq h2,
.brands-title,
.types-head h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-synthesis: none;
  line-height: 1.15;
  background-image: var(--heading-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.how h2 {
  font-size: clamp(34px, 4vw, 44px);
  margin-bottom: 12px;
}

.how-intro {
  color: var(--muted);
  font-size: 14px;
  max-width: 420px;
  margin-bottom: 28px;
}

.steps {
  display: flex;
  flex-direction: column;
}

.steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.steps li:first-child {
  border-top: 1px solid var(--line);
}

.step-icon {
width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--brown);
    color: var(--white);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background-image: linear-gradient(to right, #b57b4300 0%, #6b370487 100%);
}

.step-icon svg {
  width: 30px;
  height: 30px;
}

.steps h3 {
  font-size: 17px;
  color: var(--brown-dark);
  margin-bottom: 4px;
  font-weight: var(--fw-display);
}

.steps p {
  font-size: 13.5px;
  color: var(--muted);
  padding-right: 100px;
}

.quote-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 28px;
  padding: 36px 34px 32px;
  box-shadow: 0 18px 40px rgba(45, 62, 80, 0.18);
}

.quote-card h2 {
  font-size: 36px;
  font-weight: var(--fw-display);
  text-align: center;
  margin-bottom: 8px;
  background-image: none;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.quote-sub {
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 26px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background: var(--navy-input);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #e8eef5;
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  font-size: 13.5px;
  outline: none;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #9aa7b5;
}

.quote-form select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--navy-input);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath stroke='%239aa7b5' stroke-width='1.5' fill='none' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 40px;
  color: #9aa7b5;
}

.quote-form select:valid {
  color: #e8eef5;
}

.quote-form textarea {
  resize: vertical;
  min-height: 96px;
}

.file-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-btn {
  background: #eef3f8;
  color: #222;
  font-size: 12px;
  font-weight: 600;
  padding: 12px 14px;
  min-height: 44px;
  border-radius: 4px;
  cursor: pointer;
}

.file-name {
  font-size: 12px;
  color: #b7c2ce;
}

.quote-form .btn-white {
  margin-top: 8px;
}

/* Lifestyle montage */
.lifestyle {
  padding: 28px 0 12px;
}

.lifestyle .container {
  width: 100%;
}

.lifestyle-stage {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  border-radius: 0;
  background: var(--hero-grad);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  box-shadow: none;
}

.life-shot {
  position: absolute;
  z-index: 1;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 36px rgba(70, 40, 20, 0.16);
  background: #ddd;
  pointer-events: none;
  will-change: transform;
  height: auto;
}

.life-1 {
  width: 13.2%;
  aspect-ratio: 3 / 4;
  left: 6.6%;
  top: 7.2%;
  transform: rotate(-3deg);
}

.life-2 {
  width: 11.1%;
  aspect-ratio: 3 / 4;
  left: 19.2%;
  top: auto;
  bottom: 8.5%;
  transform: rotate(2deg);
}

.life-3 {
  width: 11.8%;
  aspect-ratio: 3 / 4;
  left: auto;
  right: 4.2%;
  top: 3%;
  transform: rotate(3deg);
}

.life-4 {
  width: 14%;
  aspect-ratio: 4 / 5;
  left: auto;
  right: 7.2%;
  top: auto;
  bottom: 6.5%;
  object-position: center 42%;
  transform: rotate(-2deg);
}

.life-inline {
  display: inline-block;
  width: 1.55em;
  height: 0.78em;
  object-fit: cover;
  object-position: center;
  border-radius: 0.22em;
  vertical-align: middle;
  margin: 0 0.12em 0.1em;
  box-shadow: 0 8px 18px rgba(70, 40, 20, 0.22);
}

.life-line {
  white-space: nowrap;
}

.lifestyle-copy {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  max-width: none;
  padding: 24px 6%;
  pointer-events: none;
  will-change: transform;
}

.lifestyle-copy h2 {
  font-size: clamp(36px, 6.2vw, 84px);
  width: 100%;
  margin-bottom: 24px;
  background-image: none;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  text-shadow: 0 4px 22px rgba(90, 55, 20, 0.38);
  line-height: 1.12;
}

.lifestyle-copy h2 .life-ch {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  opacity: 0.2;
  transition: opacity 0.28s ease;
}

.lifestyle-copy h2 .life-ch.is-ink {
  opacity: 1;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.lifestyle-copy .btn {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

/* Brands */
.brands {
  padding: 48px 0 32px;
}

.brands-title {
  text-align: center;
  font-size: clamp(28px, 3.4vw, 40px);
  width: 30%;
  margin: 0 auto 30px auto;
}

.brand-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.brand-track {
  display: flex;
  width: max-content;
  animation: brand-scroll 50s linear infinite;
  will-change: transform;
}

.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding-right: 16px;
}

.brand-box {
  background: #ececec;
  border-radius: 10px;
  width: 168px;
  height: 108px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.brand-box img {
  max-width: 78%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(0.9);
  opacity: 0.88;
}

@keyframes brand-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Types */
.types {
  padding: 56px 0 48px;
  background: var(--cream);
}

.types-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 36px;
}

.types-head h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  max-width: 420px;
}

.types-head p {
  color: #5c5854;
  font-size: 14.5px;
  max-width: 460px;
  justify-self: end;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.types-slider {
  position: relative;
}

.types-nav {
  margin-bottom: 18px;
}

.types-viewport {
  overflow: hidden;
}

.types-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.types-track .type-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
}

.type-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 12px 12px 20px;
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(49, 70, 91, 0.16);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.35s ease;
  overflow: hidden;
}

.type-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 116, 0.28), transparent 68%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.type-card:hover,
.type-card:focus-visible {
  transform: translateY(-10px);
  box-shadow: 0 22px 44px rgba(49, 70, 91, 0.28);
  background: #3a546c;
}

.type-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.type-media {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 16px;
  background: #fff;
  border: 0;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.type-card:hover .type-media {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.type-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.type-card:hover .type-media img {
  transform: scale(1.06);
}

.type-body {
  position: relative;
  padding: 2px 48px 2px 8px;
  min-height: 108px;
}

.type-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  text-align: left;
  line-height: 1.25;
  background-image: none;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  transition: color 0.3s ease;
}

.type-card:hover h3 {
  background-image: none;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.type-card p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  line-height: 1.55;
}

.type-arrow {
  position: absolute;
  top: 0;
  right: 4px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
  z-index: 1;
}

.type-arrow svg {
  width: 16px;
  height: 16px;
}

.type-card:hover .type-arrow {
  background: #3a2c22;
  border-color: #3a2c22;
  color: #ffffff;
  transform: translate(2px, -2px);
  box-shadow: none;
}

/* Products */
.products {
  padding: 56px 0 72px;
}

.center-title {
    text-align: center;
    font-size: clamp(30px, 3.6vw, 42px);
    margin-bottom: 12px;
    width: 40%;
    margin: 0 auto 0 auto;
    padding-bottom: 20px;
}

.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 14px;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-btn {
  border: 1.5px solid var(--tan);
  background: #fff;
  color: var(--brown);
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 14px;
  min-height: 42px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--tan);
  color: var(--brown);
}

.filter-btn.is-active {
  background-image: var(--btn-grad);
  background-color: #b79068;
  border-color: transparent;
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.product-item {
  aspect-ratio: 1;
  background: var(--gray-ph);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, opacity 0.25s ease;
}

.product-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-item h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 8px 10px 10px;
  font-size: 12px;
  font-weight: var(--fw-display);
  letter-spacing: 0.02em;
  text-align: center;
  background-image: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.94) 38%);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: var(--brown);
  -webkit-text-fill-color: var(--brown);
}

.product-item.is-hidden {
  display: none;
}

.product-item:hover {
  transform: translateY(-3px);
}

.center {
  text-align: center;
}

.gallery {
  padding: 56px 0 72px;
}

.gallery h2 {
  text-align: center;
  font-size: clamp(30px, 3.6vw, 42px);
  margin-bottom: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.gallery-shot {
  aspect-ratio: 4 / 5;
  background: var(--gray-ph);
  border-radius: 12px;
  overflow: hidden;
  display: block;
  position: relative;
  margin: 0;
  cursor: default;
  outline: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.gallery-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.gallery-shot-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 48px 12px 12px;
  background: linear-gradient(180deg, rgba(7, 30, 54, 0) 0%, rgba(7, 30, 54, 0.88) 72%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-shot-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0d2b0;
}

.gallery-shot-title {
  font-family: "Cal Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.gallery-shot-copy {
  font-size: 11px;
  line-height: 1.35;
  opacity: 0.82;
}

.gallery-shot:hover,
.gallery-shot:focus-visible,
.gallery-shot:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(90, 55, 20, 0.18);
}

.gallery-shot:hover img,
.gallery-shot:focus-visible img,
.gallery-shot:focus-within img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.gallery-shot:hover .gallery-shot-overlay,
.gallery-shot:focus-visible .gallery-shot-overlay,
.gallery-shot:focus-within .gallery-shot-overlay {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .gallery-shot-overlay {
    opacity: 1;
    transform: none;
    padding-top: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-shot,
  .gallery-shot img,
  .gallery-shot-overlay {
    transition: none;
  }

  .gallery-shot:hover,
  .gallery-shot:focus-visible,
  .gallery-shot:focus-within {
    transform: none;
  }

  .gallery-shot:hover img,
  .gallery-shot:focus-visible img,
  .gallery-shot:focus-within img {
    transform: none;
    filter: none;
  }

  .gallery-shot-overlay {
    opacity: 1;
    transform: none;
  }

  .life-1,
  .life-3 {
    animation: none;
  }

  .types-track {
    transition: none;
  }
}

/* Reviews */
.reviews {
  padding: 80px 0 72px;
}

.reviews.cream {
  background: var(--cream);
}

.google-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 42px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
}

.google-badge {
  height: 52px;
  width: auto;
}

.google-proof .sep {
  width: 1px;
  height: 28px;
  background: #ccc;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.8fr;
  gap: 36px;
  align-items: start;
}

.reviews-aside .quote-mark {
  display: block;
  width: 78px;
  height: auto;
  margin-bottom: 22px;
}

.reviews-aside h3 {
  font-size: clamp(34px, 3.4vw, 42px);
  line-height: 1.12;
  color: #32465b;
  background-image: none;
  -webkit-text-fill-color: #32465b;
  margin-bottom: 28px;
  max-width: 300px;
}

.reviews-aside .btn-navy {
  background: #32465b;
  border-radius: var(--radius-pill);
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 600;
}

.slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}

.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-btn svg {
  display: block;
  width: 16px;
  height: 16px;
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.nav-btn.outline {
  background: transparent;
  border: 1.5px solid var(--brown);
  color: var(--brown);
}

.nav-btn.solid {
  background: var(--brown);
  border: 1.5px solid var(--brown);
  color: var(--white);
}

.nav-btn.outline:hover:not(:disabled),
.nav-btn.solid:hover:not(:disabled),
.nav-btn.outline:focus-visible:not(:disabled),
.nav-btn.solid:focus-visible:not(:disabled) {
  background: #3a2c22;
  border-color: #3a2c22;
  color: #ffffff;
  transform: translateY(-2px);
}

.review-viewport {
  overflow: hidden;
  width: 100%;
}

.review-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-card {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 20px 18px;
  box-shadow: 0 8px 24px rgba(90, 70, 40, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 240px;
  flex: 0 0 calc((100% - 36px) / 3);
  width: calc((100% - 36px) / 3);
  max-width: calc((100% - 36px) / 3);
  min-width: 0;
  box-sizing: border-box;
}

.review-card p {
  font-size: 13.5px;
  color: #444;
  flex: 1;
  margin-bottom: 14px;
}

.review-card .stars {
  color: #f4b400;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}

.review-card strong {
  display: block;
  font-size: 13px;
  color: #32465b;
  background-image: none;
  -webkit-text-fill-color: #32465b;
}

.review-card small {
  font-size: 11px;
  color: #888;
}

/* FAQ */
.faq {
  padding: 72px 0 80px;
}

.faq h2 {
  margin-bottom: 36px;
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-synthesis: none;
  color: var(--navy);
  font-size: 16px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion .icon {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}

.accordion .icon::before,
.accordion .icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion .icon::before {
  width: 14px;
  height: 2px;
}

.accordion .icon::after {
  width: 2px;
  height: 14px;
}

.accordion details[open] .icon::after {
  display: none;
}

.accordion details p {
  padding: 0 8px 22px 4px;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 820px;
}

/* Footer */
.site-footer {
  --footer-text: #32465B;
  background: #ffffff;
  color: var(--footer-text);
  padding: 8px 0 0;
}

.footer-main {
  padding: 8px 0 0;
}

.footer-card {
  background: var(--hero-grad);
  border-radius: 48px;
  padding: 48px 52px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1.15fr;
  gap: 36px 28px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo .logo-img {
  height: 64px;
  max-width: 260px;
}

.footer-col.brand p {
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: 20px;
  color: var(--footer-text);
}

.footer-col ul.footer-points,
.footer-points {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin: 0;
  padding: 0;
  width: max-content;
  max-width: 100%;
}

.footer-points li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--footer-text);
  text-align: center;
  padding: 0 12px;
  position: relative;
  min-width: 0;
  flex: 0 0 auto;
}

.footer-points li:first-child {
  padding-left: 0;
}

.footer-points li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: rgba(90, 55, 20, 0.22);
}

.footer-points svg,
.footer-contact-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: inherit;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--fw-display);
  font-synthesis: none;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 16px;
  background-image: none;
  color: var(--footer-text);
  -webkit-text-fill-color: var(--footer-text);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  border-bottom: 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  font-size: 14px;
  color: var(--footer-text);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
  color: var(--brown-dark);
}

.footer-links .chev {
  display: none;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--footer-text);
  font-size: 14px;
  line-height: 1.45;
}

.footer-contact-item small {
  display: block;
  color: var(--footer-text);
  font-size: 12.5px;
  font-weight: 400;
  margin-top: 3px;
}

.footer-social-title {
  margin-top: 22px;
  margin-bottom: 12px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--footer-text);
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--footer-text);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: var(--footer-text);
  border-color: var(--footer-text);
  color: #ffffff;
  transform: translateY(-2px);
}

.socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  color: inherit;
  stroke: none;
}

.footer-trust {
  border-top: 1px solid rgba(90, 55, 20, 0.16);
  margin-top: 36px;
}

.footer-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  padding: 22px 20px 8px;
  border-right: 1px solid rgba(90, 55, 20, 0.16);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.trust-item svg {
  width: 26px;
  height: 26px;
  justify-self: center;
  margin-top: 2px;
  stroke: var(--footer-text);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--footer-text);
}

.trust-item > div {
  min-width: 0;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-synthesis: none;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
  background-image: none;
  color: var(--footer-text);
  -webkit-text-fill-color: var(--footer-text);
  white-space: nowrap;
}

.trust-item span {
  display: block;
  font-size: 12.5px;
  color: var(--footer-text);
  line-height: 1.45;
}

.footer-bottom {
  background: #ffffff;
  padding: 28px 0 36px;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.copyright {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--footer-text);
  margin: 0;
  flex: none;
  opacity: 1;
  transform: none;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.footer-legal a {
  color: var(--footer-text);
}

.footer-legal span {
  color: var(--footer-text);
  font-weight: 500;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  background: var(--brown);
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  display: grid;
  place-items: center;
  z-index: 80;
  cursor: pointer;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #3a2c22;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive */
@media (max-width: 1200px) {
  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 13px;
  }

  .header-actions .btn-primary {
    padding: 12px 18px;
    font-size: 13px;
  }

  .how-quote-grid {
    gap: 36px;
  }

  .footer-grid {
    gap: 28px;
  }

  .product-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .header-inner {
    position: static;
    justify-content: flex-start;
    gap: 10px;
  }

  .logo {
    margin-right: auto;
    max-width: min(180px, 46vw);
    overflow: hidden;
  }

  .logo-img {
    height: 44px;
    max-width: 100%;
  }

  .header-actions {
    display: flex;
    flex-shrink: 0;
    gap: 8px;
  }

  .header-actions .phone-btn {
    display: none;
  }

  .header-actions .btn-primary {
    display: inline-flex;
    padding: 10px 14px;
    font-size: 12px;
    line-height: 1.1;
    background-color: #b79068;
    background-image: var(--btn-grad);
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    box-shadow: none;
    flex: 0 0 auto;
  }

  .menu-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    z-index: 55;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 18px;
    font-size: 15px;
    border-bottom: 1px solid #f1f1f1;
  }

  .nav > a:last-child {
    border-bottom: 0;
  }

  .nav-item {
    border-bottom: 1px solid #f1f1f1;
  }

  .nav-parent {
    width: 100%;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 0;
  }

  .nav-dropdown {
    position: static;
    display: none;
    transform: none;
    left: auto;
    min-width: 0;
    padding: 0 0 8px;
    background: #faf7f4;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    display: none;
  }

  .nav-item.is-open .nav-dropdown {
    display: block;
  }

  .nav-item.is-open .nav-caret {
    transform: translateY(1px) rotate(225deg);
  }

  .nav-dropdown a {
    padding: 12px 18px 12px 28px;
    border-bottom: 0;
    white-space: normal;
  }

  .nav-cta {
    display: block;
    margin: 8px 14px 6px;
    text-align: center;
    background: var(--btn-grad);
    color: #fff !important;
    border-radius: 999px;
    border-bottom: 0 !important;
    font-weight: 600;
  }

  .how-quote-grid,
  .reviews-layout,
  .types-head {
    grid-template-columns: 1fr;
  }

  .types-head p {
    justify-self: start;
  }

  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .types-track .type-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .review-card {
    flex: 0 0 calc((100% - 18px) / 2);
    width: calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }

  .reviews-aside .btn {
    max-width: 100%;
  }

  .slider-nav {
    width: 100%;
  }

  .reviews-aside {
    text-align: center;
  }

  .reviews-aside h3 {
    max-width: none;
    margin-inline: auto;
  }

  .reviews-aside .quote-mark {
    width: 64px;
    margin-inline: auto;
  }

  .slider-nav {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col.brand {
    grid-column: 1 / -1;
  }

  .footer-card {
    padding: 36px 28px 20px;
    border-radius: 36px;
  }

  .footer-trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    padding: 22px 16px;
  }

  .trust-item:nth-child(odd) {
    padding-left: 0;
  }

  .trust-item:nth-child(even) {
    border-right: 0;
    padding-right: 0;
  }

  .product-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lifestyle-stage {
    min-height: 560px;
  }

  .life-1 {
    width: 16%;
  }

  .life-2 {
    width: 14%;
    left: 14%;
  }

  .life-3 {
    width: 16.5%;
  }

  .life-4 {
    width: 19%;
  }

  .how-quote,
  .reviews,
  .faq,
  .types,
  .products,
  .gallery,
  .brands {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .quote-card {
    padding: 28px 22px;
  }
}

@media (max-width: 900px) {
  /* Text-only hero on mobile; overlapping model is hidden */
  .hero {
    padding: 16px 0 24px;
    top: 0;
  }

  .hero-card {
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 12px;
    border-radius: 32px;
    overflow: visible;
    display: block;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    min-height: 0;
    height: auto;
    padding: 24px 32px 24px;
  }

  .hero-content h1 {
    white-space: normal;
    font-size: clamp(32px, 8vw, 44px);
  }

  .hero-visual {
    display: none;
  }

  .hero-model {
    position: relative;
    left: auto;
    right: auto;
    width: auto;
    max-width: min(90%, 420px);
    height: auto;
    max-height: none;
    bottom: auto;
    top: auto;
    transform: none;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-perks {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    order: 0;
    justify-content: center;
    padding: 18px 12px 0;
    color: #5c3a1f;
    text-shadow: none;
  }

  .hero-perks li {
    color: #5c3a1f;
    text-shadow: none;
  }

  .hero-perks li + li::before {
    background: rgba(92, 58, 31, 0.28);
  }

  .perk-icon {
    color: #5c3a1f;
    filter: none;
  }

  .hero-perks li {
    padding: 0 12px;
    font-size: 11px;
    min-width: 72px;
  }

  .hero-product-card {
    display: none;
  }
}

@media (max-width: 720px) {
  .container,
  .container.narrow {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .logo-img {
    height: 38px;
    max-width: min(150px, 42vw);
  }

  .header-actions .btn-primary {
    padding: 9px 12px;
    font-size: 11px;
  }

  .hero {
    padding: 16px 0 56px;
    top: 0;
  }

  .hero-card {
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 12px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .hero-content {
    width: 100%;
    min-height: 0;
    padding: 16px 22px 20px;
    order: 1;
  }

  .hero-content h1 {
    font-size: clamp(32px, 9vw, 42px);
    margin-bottom: 14px;
    white-space: normal;
    line-height: 40px;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
    max-width: none;
  }

  .hero-visual {
    display: none;
  }

  .hero-model {
    position: relative;
    left: auto;
    right: auto;
    width: auto;
    max-width: min(92%, 360px);
    height: auto;
    max-height: none;
    bottom: auto;
    top: auto;
    transform: none;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-perks {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    order: 0;
    justify-content: center;
    padding: 16px 8px 0;
    color: #5c3a1f;
    text-shadow: none;
  }

  .hero-perks li {
    color: #5c3a1f;
    text-shadow: none;
  }

  .hero-perks li {
    font-size: 10px;
    padding: 0 10px;
  }

  .perk-icon,
  .perk-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero-product-card {
    right: 14px;
    bottom: 14px;
    top: auto;
    width: 124px;
    padding: 10px;
    gap: 7px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .brand-box {
    width: 140px;
    height: 90px;
  }

  .types-grid,
  .product-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .types-track .type-card {
    flex: 0 0 100%;
  }

  .lifestyle-stage {
    min-height: 480px;
    padding: 28px 16px 36px;
  }

  .review-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-height: 220px;
  }

  .reviews-aside h3 {
    max-width: 100%;
  }

  .reviews-aside .btn {
    width: 100%;
    max-width: 280px;
  }

  .footer-grid,
  .footer-trust-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    padding: 8px 0 0;
  }

  .footer-logo .logo-img {
    height: 52px;
  }

  .footer-card {
    padding: 28px 20px 16px;
    border-radius: 28px;
  }

  .footer-points {
    flex-wrap: nowrap;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(90, 55, 20, 0.16);
    padding: 16px 0;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .footer-legal {
    gap: 8px;
    justify-content: center;
  }

  .how h2,
  .center-title,
  .faq h2,
  .quote-card h2,
  .brands-title,
  .types-head h2 {
    font-size: clamp(28px, 8vw, 36px);
    width: 100%;
  }

  .lifestyle-copy {
    padding: 8px 4px 12px;
  }

  .lifestyle-copy h2 {
    font-size: clamp(32px, 9.5vw, 52px);
    width: 100%;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background-image: none;
  }

  .life-1,
  .life-3 {
    width: 22%;
  }

  .life-2 {
    width: 18%;
    left: 10%;
    bottom: 7%;
  }

  .life-4 {
    width: 26%;
    right: 5%;
  }

  .type-body {
    min-height: 0;
    padding-right: 42px;
  }

  .reviews-aside h3 {
    font-size: 24px;
  }

  .quote-card h2 {
    font-size: 28px;
  }

  .btn {
    padding: 13px 22px;
  }

  .how-quote,
  .reviews,
  .faq,
  .types,
  .products,
  .gallery,
  .brands,
  .lifestyle {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .steps li {
    padding: 18px 0;
  }

  .steps p {
    padding-right: 0;
  }

  .accordion summary {
    font-size: 15px;
    padding: 18px 2px;
    gap: 12px;
  }

  .google-badge {
    height: 44px;
  }

  .google-proof {
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 28px;
  }

  .file-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .container,
  .container.narrow {
    width: min(100% - 20px, var(--container));
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    order: 1;
    padding: 16px 18px 16px;
  }

  .hero-model {
    position: relative;
    left: auto;
    bottom: auto;
    top: auto;
    transform: none;
    max-width: min(94%, 320px);
    max-height: none;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-product-card {
    top: auto;
    bottom: 12px;
    width: 112px;
    right: 12px;
  }

  .hero-perks li {
    padding: 0 8px;
    font-size: 11px;
    gap: 5px;
  }

  .product-grid,
  .gallery-grid {
    gap: 10px;
  }

  .types-grid {
    grid-template-columns: 1fr;
  }

  .types-track .type-card {
    flex: 0 0 100%;
  }

  .quote-form .btn-white {
    max-width: none;
  }

  .announce {
    height: 32px;
  }

  .announce-group {
    font-size: 11px;
    gap: 18px;
    padding-right: 18px;
  }

  .type-card {
    padding: 12px 12px 18px;
  }

  .type-media {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}

/* Scroll fade-in animations */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-bottom .copyright {
  opacity: 1;
  transform: none;
}

.reveal-left {
  transform: translateX(-24px);
}

.reveal-right {
  transform: translateX(24px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  transform: translateX(0);
}

.reveal-fade {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .announce-track,
  .brand-track {
    animation: none;
  }

  .brand-track {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    max-width: 100%;
  }

  .type-card:hover,
  .type-card:hover .type-media,
  .type-card:hover .type-media img,
  .type-card:hover .type-arrow {
    transform: none;
  }
}
