: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,
.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;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

section[id],
.how-quote,
.gallery,
.reviews,
.faq,
.feature {
  scroll-margin-top: 88px;
}

.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: 30px 0 48px;
  background: transparent;
  position: relative;
  top: -50px;
  z-index: 2;
  overflow: visible;
}

.hero .container {
  /* overflow: visible; */
  overflow: hidden;
}

.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;
  font-weight: 400;
}

.hero-content .btn {
  align-self: flex-start;
  width: auto;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  overflow: visible;
  max-width: 100%;
}

.hero-model {
  position: absolute;
  left: 38.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;
}

body.page-embroidered .hero-model {
  width: 57.4%;
}

body.page-3d-embroidered .hero-model {
  left: 48.7%;
  width: 43%;
  bottom: -12px;
  object-position: center bottom;
}

body.page-woven .hero-model {
  left: 49%;
  width: 45%;
  bottom: -8px;
  object-position: center bottom;
}

body.page-pvc .hero-model {
  width: 58.4%;
}

body.page-chinelle .hero .container {
  overflow: visible;
}

body.page-chinelle .hero-model {
  left: 47%;
  width: 57%;
  bottom: -160px;
  object-position: 72% bottom;
  height: calc(120% + var(--hero-popout));
}

@media (min-width: 901px) {
  .page-leather .hero-model {
    position: absolute;
    left: 37%;
    bottom: -35px;
    width: 70%;
  }
}

/* How + Quote */
.how-quote {
  padding: 72px 0 40px;
}

.how-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
  padding: 0 100px;
}

.how h2,
.gallery h2,
.feature-copy h2,
.center-title,
.faq 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: 120px;
}

.quote-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 24px;
  padding: 36px 34px 32px;
  /* box-shadow: 0 18px 40px rgba(49, 70, 91, 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;
}

/* Gallery */
.gallery {
  padding: 56px 0 72px;
}

.gallery h2,
.center-title {
  text-align: center;
  font-size: clamp(30px, 3.6vw, 42px);
  margin-bottom: 12px;
  width: 50%;
  margin: 0 auto;
  padding-bottom: 20px;
}

.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.gallery-grid .ph,
.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;
  }
}

.center {
  text-align: center;
}

/* Feature sections */
.feature {
  padding: 72px 0;
}

.feature.cream {
  background: var(--cream);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.feature-copy h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  margin-bottom: 18px;
  max-width: 560px;
}

.feature-copy p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
  max-width: 540px;
}

.accent-line {
  color: var(--brown) !important;
  font-weight: 700;
  margin-bottom: 24px !important;
}

.feature-media > img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 1 / 1.05;
}

/* Before / After */
.ba-wrap {
  display: flex;
  justify-content: center;
}

.ba-card {
  --ba-pos: 50%;
  --ba-clip: 50%;
  position: relative;
  background: #e6e8eb;
  border: 1px solid #d5d8dc;
  border-radius: 14px;
  width: 100%;
  max-width: 360px;
  padding: 52px 22px 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

.ba-split {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  background: rgba(49, 70, 91, 0.4);
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  cursor: ew-resize;
  font-size: 15px;
  line-height: 1;
  padding: 0;
}

.ba-handle span {
  display: block;
  opacity: 0.9;
}

.ba-badge {
  position: absolute;
  top: 14px;
  z-index: 3;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  text-transform: lowercase;
  pointer-events: none;
}

.ba-badge.left {
  left: 12%;
}

.ba-badge.right {
  right: 12%;
}

.ba-circle {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 4px solid #111;
  overflow: hidden;
  z-index: 1;
  background: #d9c4ad;
  pointer-events: none;
}

.ba-half {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-half.before {
  clip-path: inset(0 calc(100% - var(--ba-clip)) 0 0);
}

.ba-half.after {
  clip-path: inset(0 0 0 var(--ba-clip));
}

.ba-half img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  aspect-ratio: auto;
  pointer-events: none;
  background: #111;
}

.page-woven .ba-half img,
.page-chinelle .ba-half img {
  object-fit: contain;
  object-position: center;
  transform: none;
}

.ba-half.after img {
  filter: brightness(0.92) contrast(1.06) saturate(1.02);
}

.ba-half.after::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.045) 0 1px,
    transparent 1px 3px
  );
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.5;
}

/* Reviews */
.reviews {
  padding: 80px 0 72px;
}

.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,
  .feature-grid {
    gap: 36px;
  }

  .footer-grid {
    gap: 28px;
  }
}

@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,
  .feature-grid,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid.reverse-mobile .feature-media {
    order: -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .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;
  }

  .how-quote,
  .feature,
  .reviews,
  .faq,
  .gallery {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .quote-card {
    padding: 28px 22px;
  }

  .ba-card {
    max-width: 340px;
    padding: 48px 18px 24px;
  }
}

@media (max-width: 900px) {
  main {
    top: 0;
  }

  .hero {
    padding: 16px 0 24px;
    top: 0;
  }

  .hero .container {
    overflow: visible;
  }

  .hero-card {
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 12px;
    border-radius: 24px;
    overflow: hidden;
    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-content p {
    max-width: none;
  }

  .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;
  }
}

@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-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-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;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .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,
  .gallery h2,
  .feature-copy h2,
  .center-title,
  .faq h2,
  .quote-card h2 {
    font-size: clamp(28px, 8vw, 36px);
    width: 100%;
  }

  .reviews-aside h3 {
    font-size: 24px;
  }

  .quote-card h2 {
    font-size: 28px;
  }

  .btn {
    padding: 13px 22px;
  }

  .how-quote,
  .feature,
  .reviews,
  .faq,
  .gallery {
    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;
  }

  .ba-circle {
    max-width: 260px;
  }

  .ba-handle {
    width: 38px;
    height: 38px;
  }

  .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;
  }

  .gallery-grid {
    gap: 10px;
  }

  .quote-form .btn-white {
    max-width: none;
  }

  .ba-badge {
    font-size: 11px;
    padding: 4px 10px;
  }

  .ba-badge.left {
    left: 8px;
  }

  .ba-badge.right {
    right: 8px;
  }

  .announce {
    height: 32px;
  }

  .announce-group {
    font-size: 11px;
    gap: 18px;
    padding-right: 18px;
  }
}

/* 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 {
    animation: none;
  }
}

