/* Golden Captures — Figma source of truth */

:root {
  --cream: #f5efe3;
  --cream-card: #faf6ec;
  --cream-heading: #f2ead8;
  --cream-muted: #ede5d4;
  --dark: #191512;
  --dark-elevated: #2a231f;
  --gold: #caa86e;
  --gold-dark: #b89559;
  --text: #1a1614;
  --text-muted: #4a413a;
  --text-soft: #6b5f54;
  --text-tertiary: #9b8e81;
  --compare-featured-outer: #231d19;
  --compare-featured-inner: #302822;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Libre Franklin", system-ui, sans-serif;
  --font-ui: "Roboto", system-ui, sans-serif;
  --container: 80rem;
  --pad-x: 4rem;
  --pad-y: 7rem;
  --gap-section: 5rem;
  --radius: 4px;
  --radius-pill: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; margin: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.hide { display: none !important; }

.page-wrapper { overflow-x: hidden; }
.padding-global {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.container-large {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

/* Typography — Figma: uppercase headings & eyebrows, no italic */
.text-style-eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.text-style-eyebrow.is-on-dark { color: var(--cream-muted); }

.heading-style-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin: 0 0 1rem;
}
h1.heading-style-h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}
.heading-style-h1.is-cta { color: var(--cream); }

.heading-style-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0;
}
.heading-style-h2.is-on-dark { color: var(--cream); }

/* Playfair Display: lining + proportional numerals */
:is(
  .heading-style-h1,
  .heading-style-h2,
  .deliverable_tile-title,
  .pricing_card-title,
  .pricing_price-new,
  .pricing_price-old,
  .why-us_title,
  .quote_block p,
  .testimonial_quote,
  .testimonials_thumb-quote,
  .trust-strip_track .trust-strip_item,
  .guarantee_heading
) {
  font-feature-settings: "lnum", "pnum";
}

.deliverable_tile-title,
.pricing_card-title,
.why-us_title {
  text-transform: uppercase;
}

.pricing_tag {
  text-transform: uppercase;
}

.text-style-body {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
.text-style-body.is-on-dark { color: var(--cream-muted); }

.text-style-lede {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 1.5rem 0 0;
}
.text-style-lede.is-on-dark { color: var(--cream-muted); }

.text-color-gold { color: var(--gold); font-style: normal; }
.text-color-gold-dark { color: var(--gold-dark); font-style: normal; }

.background-color-dark { background: var(--dark); }

.section_header {
  margin-bottom: var(--gap-section);
  max-width: 56.25rem;
}
.section_header.is-center {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section_header.is-center .text-style-eyebrow,
.section_header.is-center .heading-style-h2,
.section_header.is-center .text-style-lede,
.section_header.is-center h2,
.section_header.is-center p {
  text-align: center;
}
.section_header.is-center .text-style-lede {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  font-style: normal;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.button.is-nav {
  background: var(--gold);
  color: var(--text);
  border: 1px solid var(--gold);
  font-size: 0.8125rem;
  padding: 0 1.25rem;
  min-height: 0;
  max-height: 2.5rem;
  height: 2.5rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.button.is-nav:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.button.is-form {
  background: var(--gold);
  color: var(--text);
  min-height: 3.5rem;
}
.button.is-form:hover { background: var(--gold-dark); }
.button.is-pricing {
  background: var(--dark);
  color: var(--cream);
  width: 100%;
  min-height: 3.5rem;
  margin-bottom: 2rem;
}
.button.is-pricing:hover { background: var(--dark-elevated); }
.button.is-phone {
  background: var(--cream);
  color: var(--text);
  flex-direction: column;
  min-height: 3.5rem;
  padding: 0.5rem 1.5rem;
}
.button_phone-label { font-size: 0.75rem; font-weight: 500; }
.button_phone-number { font-size: 1rem; font-weight: 500; }

/* Navbar — fixed, outside hero */
.navbar_wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: var(--dark);
  border-bottom: 1px solid rgba(202, 168, 110, 0.2);
  overflow: visible;
}

/* HEADER + HERO (Frame 47) */
.section_header-hero {
  background: var(--dark);
  padding-top: 12rem;
  padding-bottom: 7rem;
}

.navbar_component {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  position: relative;
  gap: 1rem;
}
.navbar_links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar_cta-desktop { display: none; }
.navbar_cta-mobile { width: 100%; margin-top: 0.5rem; }
.navbar_logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.navbar_logo img {
  display: block;
  width: auto;
  height: 2rem;
  max-width: min(20rem, 50vw);
}
.navbar_menu { display: none; }
.navbar_menu.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--dark);
  padding: 1.25rem clamp(1.25rem, 4vw, var(--pad-x));
  gap: 0.5rem;
  z-index: 100;
  border-bottom: 1px solid rgba(202, 168, 110, 0.2);
}
.navbar_cta-mobile { display: inline-flex; }
.navbar_link {
  font-size: 0.875rem;
  color: var(--cream);
  min-height: 2.75rem;
  display: flex;
  align-items: center;
}
.navbar_link:hover { color: var(--gold); }
.navbar_menu-button {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(202, 168, 110, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}
.navbar_menu-icon {
  position: relative;
  display: block;
  width: 1.125rem;
  height: 1px;
  background: var(--cream);
  border-radius: 1px;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}
.navbar_menu-icon::before,
.navbar_menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.125rem;
  height: 1px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 0.25s ease, top 0.25s ease;
}
.navbar_menu-icon::before { top: -5px; }
.navbar_menu-icon::after { top: 5px; }
.navbar_menu-button[aria-expanded="true"] .navbar_menu-icon {
  background: transparent;
}
.navbar_menu-button[aria-expanded="true"] .navbar_menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.navbar_menu-button[aria-expanded="true"] .navbar_menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}
@media (prefers-reduced-motion: reduce) {
  .navbar_menu-icon,
  .navbar_menu-icon::before,
  .navbar_menu-icon::after {
    transition: none;
  }
}

/* Hero: copy | slider */
.hero_component {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero_copy {
  max-width: 49rem;
}

.hero_actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hero_cta {
  width: auto;
  min-width: 13.75rem;
  text-transform: uppercase;
}

.hero_google-badge {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity 0.2s ease;
}
.hero_google-badge:hover {
  opacity: 0.85;
}
.hero_google-badge img {
  display: block;
  width: auto;
  height: 1.75rem;
}

.hero_visual {
  width: min(100%, 37.6875rem);
  max-width: 37.6875rem;
  margin-inline: auto;
  overflow: visible;
}
.hero_visual-oval {
  position: relative;
  width: 100%;
  aspect-ratio: 603 / 450;
  transform: rotate(15deg);
}
.hero_visual-oval-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(-20px, 20px);
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.hero_visual-mask {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
}
.hero_visual-slider {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108%;
  height: 108%;
  transform: translate3d(-50%, -50%, 0) rotate(-15deg);
  transform-origin: center center;
}
.hero_visual-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
  transition:
    transform 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.85s ease;
  z-index: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.hero_visual-slider img.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  z-index: 2;
}
.hero_visual-slider img.is-leaving {
  opacity: 1;
  transform: translate3d(0, -100%, 0);
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero_visual-slider img {
    transition: none;
    transform: none;
  }
  .hero_visual-slider img:not(.is-active) {
    opacity: 0;
  }
  .hero_visual-slider img.is-active {
    opacity: 1;
  }
  .hero_visual-slider img.is-leaving {
    opacity: 0;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Trust strip (Frame 13) */
.trust-strip_component {
  background: var(--gold);
  overflow: hidden;
  padding: 1.5rem 0;
}
.trust-strip_track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 40s linear infinite;
  padding-left: 3rem;
}
.trust-strip_track .trust-strip_item {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.trust-strip_sep {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  margin: 0 3rem;
}
.trust-strip_sep svg,
.trust-strip_sep img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Section spacing — Figma 112px vertical, 64px horizontal */
.section_deliverables,
.section_quote,
.section_pricing,
.section_why-us,
.section_gallery,
.section_faq,
.section_cta,
.section_cta-form {
  padding-block: var(--pad-y);
}
.section_gallery {
  overflow: hidden;
}
.section_compare,
.section_testimonials,
.section_guarantee {
  padding-block: var(--pad-y);
  overflow: hidden;
}

/* Deliverables */
.deliverables_grid {
  display: grid;
  gap: 2rem;
}
.section_cta-row {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.section_deliverables .section_cta-row .button.is-form {
  width: 100%;
  max-width: 220px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.deliverable_tile img {
  width: 100%;
  aspect-ratio: 405 / 500;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.deliverable_tile-content {
  text-align: center;
}
.deliverable_tile-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 0.75rem;
}
.deliverable_tile-content p {
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

/* Quote — Figma 40px Playfair centered */
.section_quote { background: var(--cream); }
.quote_component {
  max-width: 65rem;
  margin: 0 auto;
  text-align: center;
}
.quote_ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.quote_ornament-line {
  flex: 1;
  max-width: 27.75rem;
  height: 1px;
  background: var(--gold);
}
.quote_ornament-icon {
  display: block;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
}
.quote_ornament-icon path {
  fill: var(--gold);
}
.quote_block {
  margin: 0;
  text-align: center;
  border: none;
  padding: 0;
}
.quote_block p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--text);
  margin: 0 0 2rem;
}
.quote_block .text-style-eyebrow { margin: 0; }

/* Compare table */
.compare_table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare_table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
}
.compare_table thead th {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  font-style: normal;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.35;
  color: var(--cream);
  text-align: center;
  vertical-align: bottom;
  padding: 1.5rem 1rem;
  width: 22%;
}
.compare_table thead th.compare_table-feature { width: 34%; }
.compare_table thead th.is-featured {
  padding-left: calc(1rem + 0.5rem);
  padding-right: calc(1rem + 0.5rem);
  background: var(--compare-featured-outer);
  color: var(--gold);
  border-left: 0.5rem solid var(--compare-featured-outer);
  border-right: 0.5rem solid var(--compare-featured-outer);
}
.compare_popular-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.compare_table tbody th {
  text-align: left;
  font-weight: 400;
  padding: 1rem 1rem 1rem 0;
  border-bottom: none;
  vertical-align: middle;
}
.compare_table tbody th.text-style-eyebrow { margin: 0; }
.compare_table tbody td {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-tertiary);
  padding: 1rem;
  border-bottom: none;
  vertical-align: middle;
}
.compare_table tbody tr + tr > th,
.compare_table tbody tr + tr > td {
  border-top: 1px solid rgba(237, 229, 212, 0.08);
}
.compare_table tbody td.is-featured {
  background: var(--compare-featured-inner);
  color: var(--gold);
  border-left: 0.5rem solid var(--compare-featured-outer);
  border-right: 0.5rem solid var(--compare-featured-outer);
}
.compare_table tbody tr:first-child td.is-featured {
  border-top: 0.5rem solid var(--compare-featured-outer);
  border-radius: 4px 4px 0 0;
}
.compare_table tbody tr:last-child td.is-featured {
  border-bottom: 0.5rem solid var(--compare-featured-outer);
  border-radius: 0 0 4px 4px;
}
.compare_yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.compare_yes img { display: block; }
.compare_no,
.compare_value {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: inherit;
}

/* Pricing — Figma cream cards #faf6ec */
.pricing_grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.pricing_card {
  background: var(--cream-card);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.pricing_card.is-featured {
  outline: 2px solid var(--gold);
}
.pricing_card-image img {
  width: 100%;
  height: 14.25rem;
  object-fit: cover;
}
.pricing_card-body { padding: 2rem; }
.pricing_tag {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-on-light);
  margin: 0 0 0.5rem;
}
.pricing_card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 0.25rem;
}
.pricing_card-sub {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.pricing_price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.pricing_price-amounts {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}
.pricing_price-new {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.pricing_price-old {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  text-decoration: line-through;
  color: var(--text-soft);
  line-height: 1.2;
}
.pricing_save-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--text);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  flex-shrink: 0;
  white-space: nowrap;
}
.pricing_includes {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing_includes li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
.pricing_includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/icons/pricing-sparkle.svg") no-repeat center / contain;
}

/* Testimonials */
.testimonials_row {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}
.testimonials_featured-side {
  display: flex;
  min-height: 100%;
}
.testimonials_video-block {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 20rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
}
.testimonials_video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  background: #000;
}
.testimonials_video-block.is-playing .testimonials_video {
  display: block;
}
.testimonials_video-block.is-playing .testimonials_video-preview {
  display: none;
}
.testimonials_video-preview {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.testimonials_video-preview > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials_video-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 21, 18, 0.1) 40%, rgba(25, 21, 18, 0.85) 100%);
  pointer-events: none;
}
.testimonials_video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem;
}
.testimonials_play-btn {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: var(--gold);
  border: none;
  cursor: pointer;
}
.testimonials_play-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 0 0 0 1rem;
  border: 0.5rem solid transparent;
  border-left: 0.75rem solid var(--text);
  transform: translateX(2px);
}
.testimonials_video-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.testimonials_thumb-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
  line-height: 1.25;
}
.testimonials_thumb-meta.text-style-eyebrow {
  margin: 0;
}
.testimonials_cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.testimonial_card {
  background: transparent;
  border: 1px solid rgba(202, 168, 110, 0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.testimonial_quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--cream);
  margin: 0 0 2rem;
}
.testimonial_author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.testimonial_author img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial_author-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testimonial_stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.testimonial_stars img {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}
.testimonial_meta.text-style-eyebrow {
  margin: 0;
}

/* Why us */
.why-us_grid {
  display: grid;
  gap: 3rem;
}
.why-us_item {
  text-align: center;
}
.why-us_icon {
  display: block;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  flex-shrink: 0;
}
.why-us_title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}
.why-us_item p {
  font-size: 1rem;
  margin: 0 auto;
  line-height: 1.5;
  max-width: 20rem;
}

/* Guarantee */
.guarantee_component {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28rem;
}
.guarantee_stars {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(62.5rem, 100%);
  max-width: 62.5rem;
  aspect-ratio: 1024 / 896;
  background: url("../images/guarantee-stars-bg.webp") center / contain no-repeat;
  pointer-events: none;
}

.guarantee_content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 32rem;
  padding: 2.5rem;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #191512;
  border-radius: 100%;
}
.guarantee_content .text-style-eyebrow {
  margin-bottom: 1.25rem;
}
.guarantee_heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 1.5rem;
}
.guarantee_text {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cream-muted);
  margin: 0;
  max-width: 20rem;
}

/* Gallery carousel — full width, centered slides */
.gallery_carousel {
  --gallery-slide-gap: 1.5rem;
  --gallery-pair-width: min(var(--container), calc(100vw - 2.5rem));
  --gallery-cell-width: min(20rem, calc(100vw - 3rem));
  width: 100vw;
  max-width: 100vw;
  margin-top: 3rem;
  margin-left: calc(50% - 50vw);
}
.gallery_carousel-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  user-select: none;
}
.gallery_carousel-viewport.is-dragging {
  cursor: grabbing;
}
.gallery_carousel-viewport.is-dragging .gallery_carousel-track {
  transition: none;
}
.gallery_carousel-track {
  display: flex;
  gap: var(--gallery-slide-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}
.gallery_slide {
  flex: 0 0 var(--gallery-cell-width);
  width: var(--gallery-cell-width);
  min-width: 0;
}

@media (min-width: 62rem) {
  .gallery_carousel {
    --gallery-cell-width: calc((var(--gallery-pair-width) - var(--gallery-slide-gap)) / 2);
  }
}
.gallery_item {
  margin: 0;
}
.gallery_item img {
  width: 100%;
  aspect-ratio: 628 / 470;
  object-fit: cover;
  border-radius: var(--radius);
  pointer-events: none;
}
.gallery_dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.625rem;
  margin-top: 2rem;
  max-width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.gallery_dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #191512;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.gallery_dot:hover {
  transform: scale(1.1);
}
.gallery_dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

/* FAQ — Figma 768px centered list */
.faq_list {
  max-width: 48rem;
  margin-inline: auto;
}
.faq_item { border-bottom: 1px solid rgba(26, 22, 20, 0.12); }
.faq_item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq_item summary::-webkit-details-marker { display: none; }
.faq_question {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  flex: 1;
  min-width: 0;
}
.faq_icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  align-self: center;
}
.faq_icon svg,
.faq_icon img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.35s ease;
  transform-origin: 50% 50%;
}
.faq_item[open].faq_item--expanded .faq_icon svg,
.faq_item[open].faq_item--expanded .faq_icon img {
  transform: rotate(180deg);
}
.faq_answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq_item[open].faq_item--expanded .faq_answer {
  grid-template-rows: 1fr;
}
.faq_answer-inner {
  overflow: hidden;
  min-height: 0;
  padding-bottom: 0;
  opacity: 0;
  transition:
    padding-bottom 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
}
.faq_item[open].faq_item--expanded .faq_answer-inner {
  padding-bottom: 1.5rem;
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .faq_answer,
  .faq_answer-inner,
  .faq_icon svg,
  .faq_icon img {
    transition: none;
  }
}
.faq_answer p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
.faq_answer p:last-child {
  margin-bottom: 0;
}

/* CTA quote form (between pricing & testimonials) */
.section_cta-form {
  background: var(--cream);
}
.cta_card.is-quote-form {
  margin-bottom: 0;
  padding: 5rem 1.5rem;
  background-color: var(--dark);
  background-image: url("../images/cta-bg.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}
.cta_card.is-quote-form .section_header.is-center {
  margin-bottom: 4rem;
}
.cta_form-card {
  background: white;
  border-radius: var(--radius);
  padding: 0 1.25rem;
  width: 100%;
  max-width: 30rem;
  margin-inline: auto;
}
.cta_honeybook {
  width: 100%;
  min-height: 12rem;
}
.cta_honeybook .hb-p-69bdb71e3f88dd00293079dd-2 {
  width: 100%;
}
.cta_form-note {
  margin: 1rem 0 0;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* CTA */
.section_cta {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background: var(--cream);
}
.cta_card {
  position: relative;
  background: var(--dark) url("../images/cta-bg.webp") center / cover no-repeat;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem;
}
.cta_card-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 48rem;
}
.cta_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}
.cta_actions .button.is-form,
.cta_actions .button.is-phone {
  width: auto;
  min-width: 13.75rem;
}
.cta_actions .button.is-form {
  font-size: 0.875rem;
  text-transform: uppercase;
}
.cta_actions .button_phone-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #6b5f54;
}

.footer_component {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 1.5rem;
  padding-block: 2.5rem;
  border-top: 1px solid rgba(26, 22, 20, 0.12);
  text-align: center;
}
.footer_logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  margin: 0;
}
.footer_logo img {
  display: block;
  width: auto;
  height: 2rem;
  max-width: min(20rem, 70vw);
}
.footer_social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.footer_social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--text);
  transition: color 0.2s ease, opacity 0.2s ease;
}
.footer_social-link:hover {
  color: var(--gold-dark);
  opacity: 0.85;
}
.footer_social-link svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.footer_meta {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--text-soft);
  margin: 0;
}

/* Mobile CTA */
.mobile-cta_component {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.5rem;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
  background: var(--dark);
  border-top: 1px solid rgba(202, 168, 110, 0.3);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
}
.mobile-cta_component .button {
  width: 100%;
  border-radius: var(--radius);
  font-size: 0.8125rem;
}

@media (max-width: 61.99rem) {
  .mobile-cta_component:not(.hide) {
    display: block;
  }
  body.has-mobile-cta {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Desktop layout */
@media (min-width: 62rem) {
  .navbar_component {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 2rem;
  }
  .navbar_logo {
    justify-self: start;
    grid-column: 1;
  }
  .navbar_menu {
    display: flex;
    justify-content: center;
    justify-self: center;
    grid-column: 2;
    position: static;
    background: transparent;
    padding: 0;
    border: none;
  }
  .navbar_links {
    justify-content: center;
  }
  .navbar_cta-desktop {
    display: inline-flex;
    justify-self: end;
    grid-column: 3;
  }
  .navbar_cta-mobile { display: none; }
  .navbar_menu-button { display: none; }

  .hero_component {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 5rem;
    align-items: center;
  }

  .hero_copy {
    max-width: none;
  }

  .hero_visual {
    width: 100%;
    max-width: 37.6875rem;
    margin-inline: 0;
    justify-self: end;
  }

  .deliverables_grid { grid-template-columns: repeat(3, 1fr); }
  .pricing_grid { grid-template-columns: repeat(3, 1fr); }
  .pricing_card.is-featured { transform: translateY(-1.75rem); }

  .testimonials_row {
    grid-template-columns: minmax(280px, 38%) 1fr;
    align-items: stretch;
  }
  .testimonials_video-block {
    min-height: 100%;
  }

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

  .footer_component {
    grid-template-columns: 1fr auto 1fr;
    justify-items: stretch;
    text-align: left;
  }
  .footer_logo { justify-self: start; }
  .footer_social { justify-self: center; }
  .footer_meta {
    justify-self: end;
    text-align: right;
  }
}

@media (max-width: 62rem) {
  .navbar_menu.is-open {
    align-items: center;
    padding: 4rem 1.25rem;
  }
  .navbar_links {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }
  .navbar_link {
    justify-content: center;
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  .compare_table-wrapper {
    margin-inline: calc(-1 * clamp(1.25rem, 4vw, var(--pad-x)));
    padding-inline: clamp(1.25rem, 4vw, var(--pad-x));
  }
  .compare_table {
    width: max-content;
    min-width: 50rem;
    table-layout: fixed;
  }
  .compare_table thead th.compare_table-feature,
  .compare_table tbody th {
    width: 11.5rem;
    min-width: 11.5rem;
  }
  .compare_table thead th:not(.compare_table-feature),
  .compare_table tbody td {
    width: 10.75rem;
    min-width: 10.75rem;
    padding-inline: 0.75rem;
  }
  .compare_table thead th.is-featured,
  .compare_table tbody td.is-featured {
    width: 11.75rem;
    min-width: 11.75rem;
  }
  .compare_table thead th {
    font-size: 1rem;
    line-height: 1.3;
    padding-block: 1.25rem;
  }
  .cta_actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .cta_actions .button.is-form,
  .cta_actions .button.is-phone {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .hero_component {
    grid-template-columns: 1fr;
  }
  .testimonials_featured-side {
    min-height: 0;
  }
  .testimonials_video-block {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 4;
  }
  .testimonials_video-preview {
    position: absolute;
    inset: 0;
  }
  .testimonials_video-caption {
    padding: 1rem;
  }
  .guarantee_component {
    min-height: max(26rem, 90vmin);
  }
  .guarantee_stars {
    width: 150%;
    height: 150%;
    max-width: none;
    aspect-ratio: unset;
    background-size: contain;
  }
  .section_header-hero {
    padding-top: 8rem;

  }
}

@media (max-width: 47.99rem) {
  :root { --pad-y: 4rem; --gap-section: 2.5rem; }
  .section_compare { display: none; }
  .navbar_link[href="#compare"] { display: none; }
  .testimonial_card { padding: 1.5rem; }
  .testimonial_quote { font-size: 1.25rem; }
}
