/* [project]/node_modules/yet-another-react-lightbox/dist/styles.css [app-client] (css) */
.yarl__fullsize {
  width: 100%;
  height: 100%;
}

.yarl__relative {
  position: relative;
}

.yarl__portal {
  opacity: 0;
  transition: opacity var(--yarl__fade_animation_duration, .25s) var(--yarl__fade_animation_timing_function, ease);
  z-index: var(--yarl__portal_zindex, 9999);
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.yarl__portal_open {
  opacity: 1;
}

.yarl__container {
  background-color: var(--yarl__container_background_color, var(--yarl__color_backdrop, #000));
  overscroll-behavior: var(--yarl__controller_overscroll_behavior, contain);
  touch-action: var(--yarl__controller_touch_action, none);
  -webkit-user-select: none;
  user-select: none;
  outline: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.yarl__carousel {
  height: 100%;
  opacity: var(--yarl__pull_opacity, 1);
  transform: translate(var(--yarl__swipe_offset, 0), var(--yarl__pull_offset, 0));
  width: calc(100% + (var(--yarl__carousel_slides_count)  - 1) * (100% + var(--yarl__carousel_spacing_px, 0) * 1px + var(--yarl__carousel_spacing_percent, 0) * 1%));
  flex: none;
  place-content: center;
  align-items: stretch;
  display: flex;
}

.yarl__carousel_with_slides {
  -moz-column-gap: calc(var(--yarl__carousel_spacing_px, 0) * 1px + 100 / (var(--yarl__carousel_slides_count) * 100 + (var(--yarl__carousel_slides_count)  - 1) * var(--yarl__carousel_spacing_percent, 0)) * var(--yarl__carousel_spacing_percent, 0) * 1%);
  column-gap: calc(var(--yarl__carousel_spacing_px, 0) * 1px + 100 / (var(--yarl__carousel_slides_count) * 100 + (var(--yarl__carousel_slides_count)  - 1) * var(--yarl__carousel_spacing_percent, 0)) * var(--yarl__carousel_spacing_percent, 0) * 1%);
}

.yarl__flex_center {
  place-content: center;
  align-items: center;
  display: flex;
}

.yarl__slide {
  padding: calc(var(--yarl__carousel_padding_px, 0) * 1px + 100 / (var(--yarl__carousel_slides_count) * 100 + (var(--yarl__carousel_slides_count)  - 1) * var(--yarl__carousel_spacing_percent, 0)) * var(--yarl__carousel_padding_percent, 0) * 1%);
  flex: 1;
  position: relative;
  overflow: hidden;
}

[dir="rtl"] .yarl__slide {
  --yarl__direction: -1;
}

.yarl__slide_image {
  -o-object-fit: contain;
  object-fit: contain;
  touch-action: var(--yarl__controller_touch_action, none);
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  max-width: 100%;
  max-height: 100%;
}

.yarl__slide_image_cover {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.yarl__slide_image_loading {
  opacity: 0;
}

@media screen and (min-width: 800px) {
  .yarl__slide_wrapper:not(.yarl__slide_wrapper_interactive) .yarl__slide_image {
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -webkit-transform: translateZ(0);
  }
}

.yarl__slide_placeholder {
  line-height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%)translateY(-50%);
}

.yarl__slide_loading {
  color: var(--yarl__slide_icon_loading_color, var(--yarl__color_button, #fffc));
  animation: 1s linear yarl__delayed_fadein;
}

.yarl__slide_loading line {
  animation: 1s linear infinite yarl__stroke_opacity;
}

.yarl__slide_loading line:first-of-type {
  animation-delay: -1.875s;
}

.yarl__slide_loading line:nth-of-type(2) {
  animation-delay: -1.75s;
}

.yarl__slide_loading line:nth-of-type(3) {
  animation-delay: -1.625s;
}

.yarl__slide_loading line:nth-of-type(4) {
  animation-delay: -1.5s;
}

.yarl__slide_loading line:nth-of-type(5) {
  animation-delay: -1.375s;
}

.yarl__slide_loading line:nth-of-type(6) {
  animation-delay: -1.25s;
}

.yarl__slide_loading line:nth-of-type(7) {
  animation-delay: -1.125s;
}

.yarl__slide_loading line:nth-of-type(8) {
  animation-delay: -1s;
}

.yarl__slide_error {
  color: var(--yarl__slide_icon_error_color, red);
  height: var(--yarl__slide_icon_error_size, 48px);
  width: var(--yarl__slide_icon_error_size, 48px);
}

@media (prefers-reduced-motion) {
  .yarl__portal, .yarl__slide {
    transition: unset;
  }

  .yarl__slide_loading, .yarl__slide_loading line {
    animation: unset;
  }
}

.yarl__toolbar {
  padding: var(--yarl__toolbar_padding, 8px);
  justify-content: flex-end;
  display: flex;
  position: absolute;
  inset: 0 0 auto auto;
}

[dir="rtl"] .yarl__toolbar {
  inset: 0 auto auto 0;
}

.yarl__icon {
  height: var(--yarl__icon_size, 32px);
  width: var(--yarl__icon_size, 32px);
}

.yarl__button {
  appearance: none;
  background-color: var(--yarl__button_background_color, transparent);
  border: var(--yarl__button_border, 0);
  color: var(--yarl__color_button, #fffc);
  cursor: pointer;
  filter: var(--yarl__button_filter, drop-shadow(2px 2px 2px #000c));
  margin: var(--yarl__button_margin, 0);
  padding: var(--yarl__button_padding, 8px);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  line-height: 0;
}

.yarl__button:focus {
  color: var(--yarl__color_button_active, #fff);
}

.yarl__button:focus:not(:focus-visible) {
  color: var(--yarl__color_button, #fffc);
}

.yarl__button:focus-visible {
  color: var(--yarl__color_button_active, #fff);
}

@media (hover: hover) {
  .yarl__button:focus-visible:hover, .yarl__button:focus:hover, .yarl__button:hover {
    color: var(--yarl__color_button_active, #fff);
  }
}

.yarl__button:disabled {
  color: var(--yarl__color_button_disabled, #fff6);
  cursor: default;
}

.yarl__navigation_next, .yarl__navigation_prev {
  padding: var(--yarl__navigation_button_padding, 24px 16px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.yarl__navigation_prev {
  left: 0;
}

[dir="rtl"] .yarl__navigation_prev {
  left: unset;
  right: 0;
  transform: translateY(-50%)rotate(180deg);
}

.yarl__navigation_next {
  right: 0;
}

[dir="rtl"] .yarl__navigation_next {
  left: 0;
  right: unset;
  transform: translateY(-50%)rotate(180deg);
}

.yarl__no_scroll {
  overscroll-behavior: none;
  height: 100%;
  overflow: hidden;
}

@keyframes yarl__delayed_fadein {
  0% {
    opacity: 0;
  }

  80% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes yarl__stroke_opacity {
  0% {
    stroke-opacity: 1;
  }

  to {
    stroke-opacity: .125;
  }
}

/* [project]/node_modules/leaflet/dist/leaflet.css [app-client] (css) */
.leaflet-pane, .leaflet-tile, .leaflet-marker-icon, .leaflet-marker-shadow, .leaflet-tile-container, .leaflet-pane > svg, .leaflet-pane > canvas, .leaflet-zoom-box, .leaflet-image-layer, .leaflet-layer {
  position: absolute;
  top: 0;
  left: 0;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-tile, .leaflet-marker-icon, .leaflet-marker-shadow {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.leaflet-tile::selection {
  background: none;
}

.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

.leaflet-safari .leaflet-tile-container {
  -webkit-transform-origin: 0 0;
  width: 1600px;
  height: 1600px;
}

.leaflet-marker-icon, .leaflet-marker-shadow {
  display: block;
}

.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container .leaflet-marker-pane img, .leaflet-container .leaflet-shadow-pane img, .leaflet-container .leaflet-tile-pane img, .leaflet-container img.leaflet-image-layer, .leaflet-container .leaflet-tile {
  width: auto;
  padding: 0;
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container img.leaflet-tile {
  mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  touch-action: none;
  touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}

.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}

.leaflet-container a {
  -webkit-tap-highlight-color: #33b5e566;
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  box-sizing: border-box;
  z-index: 800;
  width: 0;
  height: 0;
}

.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-map-pane canvas {
  z-index: 100;
}

.leaflet-map-pane svg {
  z-index: 200;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url("#default#VML");
  display: inline-block;
  position: absolute;
}

.leaflet-control {
  z-index: 800;
  pointer-events: visiblePainted;
  pointer-events: auto;
  position: relative;
}

.leaflet-top, .leaflet-bottom {
  z-index: 1000;
  pointer-events: none;
  position: absolute;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  transition: opacity .2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-animated {
  transform-origin: 0 0;
}

svg.leaflet-zoom-animated {
  will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform .25s cubic-bezier(0, 0, .25, 1);
  -moz-transition: -moz-transform .25s cubic-bezier(0, 0, .25, 1);
  transition: transform .25s cubic-bezier(0, 0, .25, 1);
}

.leaflet-zoom-anim .leaflet-tile, .leaflet-pan-anim .leaflet-tile {
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

.leaflet-interactive {
  cursor: pointer;
}

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.leaflet-crosshair, .leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

.leaflet-popup-pane, .leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-grab, .leaflet-dragging .leaflet-grab .leaflet-interactive, .leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

.leaflet-marker-icon, .leaflet-marker-shadow, .leaflet-image-layer, .leaflet-pane > svg path, .leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive, .leaflet-image-layer.leaflet-interactive, .leaflet-pane > svg path.leaflet-interactive, svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted;
  pointer-events: auto;
}

.leaflet-container {
  outline-offset: 1px;
  background: #ddd;
}

.leaflet-container a {
  color: #0078a8;
}

.leaflet-zoom-box {
  background: #ffffff80;
  border: 2px dotted #38f;
}

.leaflet-container {
  font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: .75rem;
  line-height: 1.5;
}

.leaflet-bar {
  border-radius: 4px;
  box-shadow: 0 1px 5px #000000a6;
}

.leaflet-bar a {
  text-align: center;
  color: #000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-decoration: none;
  display: block;
}

.leaflet-bar a, .leaflet-control-layers-toggle {
  background-position: 50%;
  background-repeat: no-repeat;
  display: block;
}

.leaflet-bar a:hover, .leaflet-bar a:focus {
  background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
  border-bottom: none;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  color: #bbb;
  background-color: #f4f4f4;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.leaflet-control-zoom-in, .leaflet-control-zoom-out {
  text-indent: 1px;
  font: bold 18px Lucida Console, Monaco, monospace;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

.leaflet-control-layers {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 5px #0006;
}

.leaflet-control-layers-toggle {
  background-image: url("../media/layers.78ca0acf.png");
  width: 36px;
  height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url("../media/layers-2x.793209de.png");
  background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list, .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

.leaflet-control-layers-expanded {
  color: #333;
  background: #fff;
  padding: 6px 10px 6px 6px;
}

.leaflet-control-layers-scrollbar {
  padding-right: 5px;
  overflow: hidden scroll;
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  font-size: 1.08333em;
  display: block;
}

.leaflet-control-layers-separator {
  border-top: 1px solid #ddd;
  height: 0;
  margin: 5px -10px 5px -6px;
}

.leaflet-default-icon-path {
  background-image: url("../media/marker-icon.b9f7ac13.png");
}

.leaflet-container .leaflet-control-attribution {
  background: #fffc;
  margin: 0;
}

.leaflet-control-attribution, .leaflet-control-scale-line {
  color: #333;
  padding: 0 5px;
  line-height: 1.4;
}

.leaflet-control-attribution a {
  text-decoration: none;
}

.leaflet-control-attribution a:hover, .leaflet-control-attribution a:focus {
  text-decoration: underline;
}

.leaflet-attribution-flag {
  width: 1em;
  height: .6669em;
  vertical-align: baseline !important;
  display: inline !important;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-control-scale-line {
  white-space: nowrap;
  box-sizing: border-box;
  text-shadow: 1px 1px #fff;
  background: #fffc;
  border: 2px solid #777;
  border-top: none;
  padding: 2px 5px 1px;
  line-height: 1.1;
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution, .leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar {
  box-shadow: none;
}

.leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar {
  background-clip: padding-box;
  border: 2px solid #0003;
}

.leaflet-popup {
  text-align: center;
  margin-bottom: 20px;
  position: absolute;
}

.leaflet-popup-content-wrapper {
  text-align: left;
  border-radius: 12px;
  padding: 1px;
}

.leaflet-popup-content {
  min-height: 1px;
  margin: 13px 24px 13px 20px;
  font-size: 1.08333em;
  line-height: 1.3;
}

.leaflet-popup-content p {
  margin: 1.3em 0;
}

.leaflet-popup-tip-container {
  pointer-events: none;
  width: 40px;
  height: 20px;
  margin-top: -1px;
  margin-left: -20px;
  position: absolute;
  left: 50%;
  overflow: hidden;
}

.leaflet-popup-tip {
  pointer-events: auto;
  width: 17px;
  height: 17px;
  margin: -10px auto 0;
  padding: 1px;
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  color: #333;
  background: #fff;
  box-shadow: 0 3px 14px #0006;
}

.leaflet-container a.leaflet-popup-close-button {
  text-align: center;
  color: #757575;
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  font: 16px / 24px Tahoma, Verdana, sans-serif;
  text-decoration: none;
  position: absolute;
  top: 0;
  right: 0;
}

.leaflet-container a.leaflet-popup-close-button:hover, .leaflet-container a.leaflet-popup-close-button:focus {
  color: #585858;
}

.leaflet-popup-scrolled {
  overflow: auto;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  width: 24px;
  filter: progid:DXImageTransform. Microsoft. Matrix(M11= .707107, M12= .707107, M21= -.707107, M22= .707107);
  margin: 0 auto;
}

.leaflet-oldie .leaflet-control-zoom, .leaflet-oldie .leaflet-control-layers, .leaflet-oldie .leaflet-popup-content-wrapper, .leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

.leaflet-tooltip {
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 6px;
  position: absolute;
  box-shadow: 0 1px 3px #0006;
}

.leaflet-tooltip.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto;
}

.leaflet-tooltip-top:before, .leaflet-tooltip-bottom:before, .leaflet-tooltip-left:before, .leaflet-tooltip-right:before {
  pointer-events: none;
  content: "";
  background: none;
  border: 6px solid #0000;
  position: absolute;
}

.leaflet-tooltip-bottom {
  margin-top: 6px;
}

.leaflet-tooltip-top {
  margin-top: -6px;
}

.leaflet-tooltip-bottom:before, .leaflet-tooltip-top:before {
  margin-left: -6px;
  left: 50%;
}

.leaflet-tooltip-top:before {
  border-top-color: #fff;
  margin-bottom: -12px;
  bottom: 0;
}

.leaflet-tooltip-bottom:before {
  border-bottom-color: #fff;
  margin-top: -12px;
  margin-left: -6px;
  top: 0;
}

.leaflet-tooltip-left {
  margin-left: -6px;
}

.leaflet-tooltip-right {
  margin-left: 6px;
}

.leaflet-tooltip-left:before, .leaflet-tooltip-right:before {
  margin-top: -6px;
  top: 50%;
}

.leaflet-tooltip-left:before {
  border-left-color: #fff;
  margin-right: -12px;
  right: 0;
}

.leaflet-tooltip-right:before {
  border-right-color: #fff;
  margin-left: -12px;
  left: 0;
}

@media print {
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* [project]/src/components/blocks/emergency/EmergencyGarageDoorRepair.css [app-client] (css) */
.egdr-root {
  --ink: #1a1613;
  --ink-2: #2a2420;
  --ink-3: #5a4f46;
  --paper: #faf7f2;
  --paper-2: #f2ece1;
  --paper-3: #e8dfd0;
  --line: #d9cfbd;
  --amber: #c8822c;
  --amber-deep: #a0621a;
  --amber-soft: #f0d9a8;
  --accent: #b8463a;
  --good: #4f7a3a;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 1px 2px #1a16130a, 0 8px 24px #1a16130f;
  --shadow-card: 0 2px 4px #1a16130d, 0 20px 40px #1a161314;
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Instrument Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.egdr-root img {
  max-width: 100%;
  display: block;
}

.egdr-root a {
  color: inherit;
  text-decoration: none;
}

.egdr-root button {
  font: inherit;
  cursor: pointer;
  color: inherit;
  background: none;
  border: 0;
}

.egdr-root .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 640px) {
  .egdr-root .wrap {
    padding: 0 18px;
  }
}

.egdr-root .eyebrow {
  font-family: var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-size: 12px;
  font-weight: 600;
}

.egdr-root .h-serif {
  font-family: var(--serif);
  letter-spacing: -.02em;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.02;
}

.egdr-root .btn {
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .15s, box-shadow .2s, background .2s;
  display: inline-flex;
}

.egdr-root .btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.egdr-root .btn-primary:hover {
  background: var(--ink-2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.egdr-root .btn-amber {
  background: var(--amber);
  color: #fff;
}

.egdr-root .btn-amber:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
}

.egdr-root .btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: none;
}

.egdr-root .btn-ghost:hover {
  background: var(--paper-2);
}

.egdr-root .topbar {
  background: var(--ink);
  color: var(--paper-2);
  font-size: 13px;
}

.egdr-root .topbar .wrap {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 9px;
  padding-bottom: 9px;
  display: flex;
}

.egdr-root .topbar .tb-left {
  align-items: center;
  gap: 22px;
  display: flex;
}

.egdr-root .topbar .tb-left span {
  opacity: .85;
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.egdr-root .topbar .tb-left svg {
  width: 14px;
  height: 14px;
  stroke: var(--amber-soft);
}

.egdr-root .topbar a {
  color: var(--amber-soft);
  letter-spacing: .02em;
  font-weight: 600;
}

@media (max-width: 760px) {
  .egdr-root .topbar .tb-left {
    display: none;
  }

  .egdr-root .topbar .wrap {
    justify-content: center;
  }
}

.egdr-root .nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  z-index: 50;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #faf7f2eb;
  position: sticky;
  top: 0;
}

.egdr-root .nav .wrap {
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.egdr-root .logo {
  font-family: var(--serif);
  letter-spacing: -.02em;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  display: inline-flex;
}

.egdr-root .logo-mark {
  background: var(--ink);
  width: 34px;
  height: 34px;
  color: var(--amber-soft);
  font-family: var(--serif);
  border-radius: 8px;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  display: grid;
}

.egdr-root .nav-links {
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.egdr-root .nav-links a {
  color: var(--ink-2);
  transition: color .15s;
}

.egdr-root .nav-links a:hover {
  color: var(--amber-deep);
}

.egdr-root .nav-cta {
  align-items: center;
  gap: 12px;
  display: flex;
}

.egdr-root .nav-phone {
  color: var(--ink);
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
}

.egdr-root .nav-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--amber-deep);
}

@media (max-width: 900px) {
  .egdr-root .nav-links {
    display: none;
  }
}

@media (max-width: 520px) {
  .egdr-root .nav-phone span.lbl {
    display: none;
  }
}

.egdr-root .hero {
  background: radial-gradient(1000px 500px at 85% -10%, #c8822c1f, transparent 60%), linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  padding: 60px 0 90px;
  position: relative;
  overflow: hidden;
}

.egdr-root .hero:before {
  content: "";
  pointer-events: none;
  background-image: linear-gradient(to right, #5a4f460f 1px, #0000 1px);
  background-size: 80px 100%;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#0000, #000 20% 80%, #0000);
  mask-image: linear-gradient(#0000, #000 20% 80%, #0000);
}

.egdr-root .hero .wrap {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  display: grid;
  position: relative;
}

.egdr-root .hero .wrap > * {
  min-width: 0;
}

@media (max-width: 980px) {
  .egdr-root .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .egdr-root .hero {
    padding: 40px 0 60px;
  }
}

.egdr-root .hero-eyebrow {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-2);
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 6px 14px 6px 8px;
  font-size: 13px;
  display: inline-flex;
}

.egdr-root .hero-eyebrow .dot {
  background: var(--good);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 1.8s infinite pulse;
  box-shadow: 0 0 0 4px #4f7a3a2e;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px #4f7a3a2e;
  }

  50% {
    box-shadow: 0 0 0 7px #4f7a3a0f;
  }
}

.egdr-root .hero-eyebrow .mini-avatars {
  display: inline-flex;
}

.egdr-root .hero-eyebrow .mini-avatars b {
  background: var(--amber-soft);
  border: 2px solid var(--paper);
  width: 20px;
  height: 20px;
  color: var(--amber-deep);
  border-radius: 50%;
  place-items: center;
  margin-left: -6px;
  font-size: 10px;
  font-weight: 700;
  display: grid;
}

.egdr-root .hero-eyebrow .mini-avatars b:first-child {
  margin-left: 0;
}

.egdr-root .hero h1 {
  font-family: var(--serif);
  letter-spacing: -.025em;
  color: var(--ink);
  overflow-wrap: break-word;
  word-break: break-word;
  margin: 0 0 20px;
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 500;
  line-height: 1.05;
}

.egdr-root .hero h1 em {
  color: var(--amber-deep);
  font-style: italic;
  font-weight: 500;
}

.egdr-root .hero h1 .loc {
  color: var(--amber-deep);
  background-image: linear-gradient(var(--amber-soft), var(--amber-soft));
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-position: 0 88%;
  background-repeat: no-repeat;
  background-size: 100% 8px;
  padding-bottom: 2px;
  font-style: italic;
  font-weight: 500;
}

.egdr-root .hero p.lead {
  color: var(--ink-3);
  max-width: 520px;
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.5;
}

.egdr-root .hero-ctas {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  display: flex;
}

.egdr-root .hero-meta {
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, auto);
  gap: 24px 32px;
  max-width: 520px;
  padding-top: 24px;
  display: grid;
}

.egdr-root .hero-meta .it {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.egdr-root .hero-meta .n {
  font-family: var(--serif);
  letter-spacing: -.02em;
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
}

.egdr-root .hero-meta .l {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-3);
  font-size: 12px;
}

@media (max-width: 520px) {
  .egdr-root .hero-meta {
    grid-template-columns: 1fr 1fr;
  }
}

.egdr-root .quote-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  box-sizing: border-box;
  max-width: 100%;
  padding: 32px;
  position: relative;
}

@media (max-width: 520px) {
  .egdr-root .quote-card {
    padding: 22px;
  }
}

.egdr-root .quote-card:before {
  content: "";
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--amber), transparent 40%);
  z-index: -1;
  opacity: .35;
  filter: blur(18px);
  position: absolute;
  inset: -1px;
}

.egdr-root .quote-card .qc-tag {
  background: var(--amber-soft);
  color: var(--amber-deep);
  letter-spacing: .03em;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.egdr-root .quote-card h3 {
  font-family: var(--serif);
  letter-spacing: -.02em;
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.egdr-root .quote-card .qc-sub {
  color: var(--ink-3);
  margin: 0 0 22px;
  font-size: 14px;
}

.egdr-root .field {
  margin-bottom: 14px;
}

.egdr-root .field label {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  display: block;
}

.egdr-root .field input, .egdr-root .field select, .egdr-root .field textarea {
  box-sizing: border-box;
  background: var(--paper);
  border: 1px solid var(--line);
  width: 100%;
  font: inherit;
  color: var(--ink);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s;
}

.egdr-root .field input:focus, .egdr-root .field select:focus, .egdr-root .field textarea:focus {
  border-color: var(--amber);
  outline: none;
  box-shadow: 0 0 0 3px #c8822c26;
}

.egdr-root .two-col {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  display: grid;
}

.egdr-root .qc-submit {
  background: var(--ink);
  width: 100%;
  color: var(--paper);
  letter-spacing: .01em;
  border-radius: 12px;
  margin-top: 6px;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s;
}

.egdr-root .qc-submit:hover {
  background: var(--amber-deep);
}

.egdr-root .qc-note {
  color: var(--ink-3);
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
}

.egdr-root .qc-success {
  text-align: center;
  background: var(--paper-2);
  border-radius: 12px;
  padding: 24px;
  display: none;
}

.egdr-root .qc-success.show {
  display: block;
}

.egdr-root .qc-success .check {
  background: var(--good);
  color: #fff;
  border-radius: 50%;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  font-size: 28px;
  display: grid;
}

.egdr-root .trust {
  background: var(--ink);
  color: var(--paper-2);
  padding: 24px 0;
}

.egdr-root .trust .wrap {
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px;
  display: grid;
}

.egdr-root .trust .it {
  align-items: center;
  gap: 14px;
  display: flex;
}

.egdr-root .trust .ic {
  width: 42px;
  height: 42px;
  color: var(--amber-soft);
  background: #c8822c26;
  border-radius: 10px;
  flex-shrink: 0;
  place-items: center;
  display: grid;
}

.egdr-root .trust .ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--amber-soft);
}

.egdr-root .trust .t {
  font-family: var(--serif);
  color: var(--paper);
  letter-spacing: -.01em;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.egdr-root .trust .s {
  opacity: .7;
  margin-top: 2px;
  font-size: 12px;
}

@media (max-width: 820px) {
  .egdr-root .trust .wrap {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .egdr-root .trust .wrap {
    grid-template-columns: 1fr;
  }
}

.egdr-root section.sx {
  padding: 96px 0;
}

@media (max-width: 700px) {
  .egdr-root section.sx {
    padding: 64px 0;
  }
}

.egdr-root .section-head {
  max-width: 720px;
  margin: 0 0 56px;
}

.egdr-root .section-head h2 {
  font-family: var(--serif);
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 12px 0 14px;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.05;
}

.egdr-root .section-head h2 em {
  color: var(--amber-deep);
  font-style: italic;
}

.egdr-root .section-head p {
  color: var(--ink-3);
  max-width: 580px;
  margin: 0;
  font-size: 17px;
}

.egdr-root .services {
  background: var(--paper);
}

.egdr-root .svc-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

@media (max-width: 900px) {
  .egdr-root .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .egdr-root .svc-grid {
    grid-template-columns: 1fr;
  }
}

.egdr-root .svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}

.egdr-root .svc-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--amber);
  transform: translateY(-3px);
}

.egdr-root .svc-card .svc-num {
  font-family: var(--serif);
  color: var(--amber-deep);
  letter-spacing: .16em;
  margin-bottom: 8px;
  font-size: 12px;
}

.egdr-root .svc-card h3 {
  font-family: var(--serif);
  letter-spacing: -.015em;
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
}

.egdr-root .svc-card p {
  color: var(--ink-3);
  margin: 0 0 16px;
  font-size: 15px;
}

.egdr-root .svc-card ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.egdr-root .svc-card ul li {
  color: var(--ink-2);
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  display: flex;
}

.egdr-root .svc-card ul li:before {
  content: "";
  background: var(--amber-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0621a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 4px;
}

.egdr-root .svc-card .svc-link {
  color: var(--amber-deep);
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}

.egdr-root .compare-grid {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  display: grid;
}

@media (max-width: 760px) {
  .egdr-root .compare-grid {
    grid-template-columns: 1fr;
  }
}

.egdr-root .compare {
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}

.egdr-root .compare.torsion {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--paper);
}

.egdr-root .compare.extension {
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--line);
}

.egdr-root .compare .tag {
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 14px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
}

.egdr-root .compare.torsion .tag {
  background: var(--amber);
  color: var(--ink);
}

.egdr-root .compare.extension .tag {
  background: var(--ink);
  color: var(--paper);
}

.egdr-root .compare h3 {
  font-family: var(--serif);
  letter-spacing: -.02em;
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 500;
}

.egdr-root .compare p.desc {
  opacity: .85;
  margin: 0 0 22px;
  font-size: 15px;
}

.egdr-root .compare ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.egdr-root .compare ul li {
  border-top: 1px solid #ffffff14;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  display: flex;
}

.egdr-root .compare.extension ul li {
  border-top-color: var(--line);
}

.egdr-root .compare ul li:first-child {
  border-top: 0;
}

.egdr-root .compare ul li svg {
  flex-shrink: 0;
  width: 16px;
  margin-top: 2px;
}

.egdr-root .compare.torsion ul li svg {
  stroke: var(--amber-soft);
}

.egdr-root .compare.extension ul li svg {
  stroke: var(--amber-deep);
}

.egdr-root .process {
  background: var(--paper-2);
}

.egdr-root .process-grid {
  counter-reset: step;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: grid;
}

@media (max-width: 900px) {
  .egdr-root .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .egdr-root .process-grid {
    grid-template-columns: 1fr;
  }
}

.egdr-root .step {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 28px;
  position: relative;
}

.egdr-root .step .n {
  font-family: var(--serif);
  color: var(--amber);
  letter-spacing: -.04em;
  margin-bottom: 14px;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  display: block;
}

.egdr-root .step h4 {
  font-family: var(--serif);
  letter-spacing: -.01em;
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 500;
}

.egdr-root .step p {
  color: var(--ink-3);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.egdr-root .whyus {
  background: var(--paper);
}

.egdr-root .whyus .wrap {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  display: grid;
}

@media (max-width: 900px) {
  .egdr-root .whyus .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.egdr-root .whyus-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--amber-soft), var(--paper-3));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.egdr-root .whyus-img .ph-label {
  color: var(--paper-2);
  letter-spacing: .1em;
  text-transform: uppercase;
  background: linear-gradient(#0000, #1a1613d9);
  padding: 18px 24px;
  font-size: 12px;
  position: absolute;
  inset: auto 0 0;
}

.egdr-root .whyus-img .placeholder-svg {
  opacity: .4;
  place-items: center;
  display: grid;
  position: absolute;
  inset: 0;
}

.egdr-root .whyus-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.egdr-root .whyus-list li {
  border-top: 1px solid var(--line);
  grid-template-columns: 40px 1fr;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  display: grid;
}

.egdr-root .whyus-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.egdr-root .whyus-list .wi {
  background: var(--paper-2);
  width: 40px;
  height: 40px;
  color: var(--amber-deep);
  border-radius: 10px;
  place-items: center;
  display: grid;
}

.egdr-root .whyus-list .wi svg {
  width: 20px;
  height: 20px;
}

.egdr-root .whyus-list h4 {
  font-family: var(--serif);
  letter-spacing: -.01em;
  margin: 2px 0 4px;
  font-size: 19px;
  font-weight: 500;
}

.egdr-root .whyus-list p {
  color: var(--ink-3);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.egdr-root .reviews {
  background: var(--ink);
  color: var(--paper-2);
  position: relative;
  overflow: hidden;
}

.egdr-root .reviews:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #c8822c2e, #0000 70%);
  width: 500px;
  height: 500px;
  position: absolute;
  top: -150px;
  right: -150px;
}

.egdr-root .reviews .section-head h2 {
  color: var(--paper);
}

.egdr-root .reviews .section-head h2 em, .egdr-root .reviews .eyebrow {
  color: var(--amber-soft);
}

.egdr-root .reviews .section-head p {
  color: #faf7f2a6;
}

.egdr-root .rev-top {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
  display: flex;
}

.egdr-root .rev-rating {
  align-items: center;
  gap: 16px;
  display: flex;
}

.egdr-root .rev-rating .stars {
  gap: 2px;
  display: flex;
}

.egdr-root .rev-rating .stars svg {
  width: 20px;
  height: 20px;
  fill: var(--amber);
}

.egdr-root .rev-rating .meta {
  font-family: var(--serif);
  letter-spacing: -.02em;
  font-size: 32px;
  font-weight: 500;
}

.egdr-root .rev-rating .meta small {
  font-family: var(--sans);
  opacity: .7;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  display: block;
}

.egdr-root .rev-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

@media (max-width: 900px) {
  .egdr-root .rev-grid {
    grid-template-columns: 1fr;
  }
}

.egdr-root .rev-card {
  border-radius: var(--radius-lg);
  background: #ffffff0a;
  border: 1px solid #ffffff1a;
  padding: 30px;
  position: relative;
}

.egdr-root .rev-card .qmark {
  font-family: var(--serif);
  color: var(--amber);
  margin-bottom: 18px;
  font-size: 48px;
  line-height: .5;
  display: block;
}

.egdr-root .rev-card p {
  font-family: var(--serif);
  color: var(--paper-2);
  letter-spacing: -.005em;
  margin: 0 0 20px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
}

.egdr-root .rev-card .author {
  align-items: center;
  gap: 12px;
  display: flex;
}

.egdr-root .rev-card .author .av {
  background: var(--amber);
  width: 40px;
  height: 40px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--sans);
  border-radius: 50%;
  place-items: center;
  display: grid;
}

.egdr-root .rev-card .author .nm {
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
}

.egdr-root .rev-card .author .ct {
  opacity: .6;
  font-size: 12px;
}

.egdr-root .area {
  background: var(--paper-2);
}

.egdr-root .area .wrap {
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 60px;
  display: grid;
}

@media (max-width: 900px) {
  .egdr-root .area .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.egdr-root .area-map {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.egdr-root .area-map .ml {
  font-family: var(--serif);
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 500;
  position: absolute;
}

.egdr-root .area-map .pin {
  background: var(--amber);
  border: 3px solid var(--paper);
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 1px var(--amber-deep), 0 4px 12px #c8822c66;
  border-radius: 50%;
  position: absolute;
}

.egdr-root .area-map .pin.active {
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 4px 20px #b8463a80;
  z-index: 3;
  transform: scale(1.3);
}

.egdr-root .area-map .pin.active:after {
  content: "";
  border: 2px solid var(--accent);
  border-radius: 50%;
  animation: 2s infinite ring;
  position: absolute;
  inset: -8px;
}

@keyframes ring {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

.egdr-root .area-map .pin-label {
  background: var(--ink);
  color: var(--paper);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  position: absolute;
  transform: translate(-50%, calc(-100% - 14px));
}

.egdr-root .area-map .pin-label:after {
  content: "";
  border: 5px solid #0000;
  border-top-color: var(--ink);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.egdr-root .area-map svg.grid-bg {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.egdr-root .neighborhoods h3 {
  font-family: var(--serif);
  letter-spacing: -.01em;
  margin: 24px 0 14px;
  font-size: 20px;
  font-weight: 500;
}

.egdr-root .nb-list {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.egdr-root .nb-chip {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-2);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
  display: inline-block;
}

.egdr-root a.nb-chip {
  color: var(--ink-2);
}

.egdr-root .nb-chip:hover {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
  cursor: pointer;
}

.egdr-root .nb-chip.current {
  background: var(--ink);
  color: var(--amber-soft);
  border-color: var(--ink);
}

.egdr-root .faq {
  background: var(--paper);
}

.egdr-root .faq .wrap {
  grid-template-columns: 1fr 1.4fr;
  align-items: flex-start;
  gap: 80px;
  display: grid;
}

@media (max-width: 900px) {
  .egdr-root .faq .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.egdr-root .faq-list {
  border-top: 1px solid var(--line);
  flex-direction: column;
  gap: 0;
  display: flex;
}

.egdr-root .faq-item {
  border-bottom: 1px solid var(--line);
}

.egdr-root .faq-q {
  width: 100%;
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -.01em;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  display: flex;
}

.egdr-root .faq-q .ic {
  border: 1px solid var(--line);
  width: 32px;
  height: 32px;
  color: var(--amber-deep);
  border-radius: 50%;
  flex-shrink: 0;
  place-items: center;
  transition: transform .25s, background .2s;
  display: grid;
}

.egdr-root .faq-item.open .faq-q .ic {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  transform: rotate(45deg);
}

.egdr-root .faq-a {
  max-height: 0;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.6;
  transition: max-height .3s;
  overflow: hidden;
}

.egdr-root .faq-a > div {
  max-width: 620px;
  padding: 0 0 22px;
}

.egdr-root .faq-item.open .faq-a {
  max-height: 500px;
}

.egdr-root .cta-banner {
  background: var(--ink);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.egdr-root .cta-banner .wrap {
  z-index: 2;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 70px 28px;
  display: grid;
  position: relative;
}

@media (max-width: 720px) {
  .egdr-root .cta-banner .wrap {
    grid-template-columns: 1fr;
  }
}

.egdr-root .cta-banner:before {
  content: "";
  background: radial-gradient(800px 300px at 0%, #c8822c33, #0000 60%), radial-gradient(600px 300px at 100% 100%, #b8463a26, #0000 60%);
  position: absolute;
  inset: 0;
}

.egdr-root .cta-banner h2 {
  font-family: var(--serif);
  color: var(--paper);
  letter-spacing: -.02em;
  margin: 0 0 8px;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.1;
}

.egdr-root .cta-banner h2 em {
  color: var(--amber-soft);
  font-style: italic;
}

.egdr-root .cta-banner p {
  color: #faf7f2b3;
  margin: 0;
  font-size: 16px;
}

.egdr-root .cta-banner .cta-btns {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.egdr-root .cta-banner .btn-amber {
  padding: 16px 26px;
  font-size: 15px;
}

.egdr-root .footer {
  color: var(--paper-2);
  background: #0f0c0a;
  padding: 70px 0 30px;
}

.egdr-root .footer .wrap {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  display: grid;
}

@media (max-width: 760px) {
  .egdr-root .footer .wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .egdr-root .footer .wrap {
    grid-template-columns: 1fr;
  }
}

.egdr-root .footer h5 {
  font-family: var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
}

.egdr-root .footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.egdr-root .footer ul li {
  opacity: .7;
  padding: 5px 0;
  font-size: 14px;
}

.egdr-root .footer ul li:hover {
  opacity: 1;
}

.egdr-root .footer .logo {
  color: var(--paper);
  margin-bottom: 18px;
}

.egdr-root .footer .logo-mark {
  background: var(--amber);
  color: var(--ink);
}

.egdr-root .footer p.desc {
  opacity: .6;
  max-width: 320px;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
}

.egdr-root .footer .contact-item {
  padding: 4px 0;
  font-size: 14px;
}

.egdr-root .footer .contact-item b {
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .5;
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 500;
  display: block;
}

.egdr-root .foot-bottom {
  opacity: .5;
  border-top: 1px solid #ffffff0f;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 12px;
  display: flex;
}

.egdr-root .tweaks-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  z-index: 100;
  width: 320px;
  font-family: var(--sans);
  border-radius: 16px;
  padding: 22px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 20px 60px #1a161333;
}

.egdr-root .tweaks-panel.show {
  display: block;
}

.egdr-root .tweaks-panel h4 {
  font-family: var(--serif);
  letter-spacing: -.01em;
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 500;
}

.egdr-root .tweaks-panel .sub {
  color: var(--ink-3);
  margin: 0 0 16px;
  font-size: 12px;
}

.egdr-root .tweaks-panel label {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  display: block;
}

.egdr-root .tweaks-panel input {
  border: 1px solid var(--line);
  width: 100%;
  font: inherit;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
}

.egdr-root .tweaks-panel input:focus {
  border-color: var(--amber);
  outline: none;
}

.egdr-root .tweaks-panel .presets {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  display: flex;
}

.egdr-root .tweaks-panel .preset {
  background: var(--paper-2);
  border: 1px solid var(--line);
  cursor: pointer;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
}

.egdr-root .tweaks-panel .preset:hover {
  background: var(--amber-soft);
  border-color: var(--amber);
}

.egdr-root .tweaks-panel .close {
  background: var(--paper-2);
  width: 24px;
  height: 24px;
  color: var(--ink-3);
  border-radius: 50%;
  place-items: center;
  font-size: 14px;
  display: grid;
  position: absolute;
  top: 14px;
  right: 14px;
}

.egdr-root .fade-in {
  opacity: 0;
  transition: opacity .6s, transform .6s;
  transform: translateY(20px);
}

.egdr-root .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* [project]/src/components/blocks/garage_doors_landing/GarageDoorsLanding.css [app-client] (css) */
.wlp-root {
  --ink: #1a1613;
  --ink-2: #2a2420;
  --ink-3: #5a4f46;
  --paper: #faf7f2;
  --paper-2: #f2ece1;
  --paper-3: #e8dfd0;
  --line: #d9cfbd;
  --amber: #c8822c;
  --amber-deep: #a0621a;
  --amber-soft: #f0d9a8;
  --accent: #b8463a;
  --good: #4f7a3a;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 1px 2px #1a16130a, 0 8px 24px #1a16130f;
  --shadow-card: 0 2px 4px #1a16130d, 0 20px 40px #1a161314;
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Instrument Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
}

.wlp-root * {
  box-sizing: border-box;
}

.wlp-root img {
  max-width: 100%;
  display: block;
}

.wlp-root a {
  color: inherit;
  text-decoration: none;
}

.wlp-root button {
  font: inherit;
  cursor: pointer;
  color: inherit;
  background: none;
  border: 0;
}

.wlp-root .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 640px) {
  .wlp-root .wrap {
    padding: 0 18px;
  }
}

.wlp-root .eyebrow {
  font-family: var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-size: 12px;
  font-weight: 600;
}

.wlp-root .btn {
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .15s, box-shadow .2s, background .2s;
  display: inline-flex;
}

.wlp-root .btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.wlp-root .btn-primary:hover {
  background: var(--ink-2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.wlp-root .btn-amber {
  background: var(--amber);
  color: #fff;
}

.wlp-root .btn-amber:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
}

.wlp-root .btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: none;
}

.wlp-root .btn-ghost:hover {
  background: var(--paper-2);
}

.wlp-root .btn-light {
  background: var(--paper);
  color: var(--ink);
}

.wlp-root .btn-light:hover {
  background: var(--paper-2);
}

.wlp-root .hero {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.wlp-root .hero-inner {
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  gap: 0;
  min-height: 640px;
  display: grid;
}

@media (max-width: 980px) {
  .wlp-root .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

.wlp-root .hero-copy {
  background: radial-gradient(800px 400px at 0% 100%, #c8822c14, transparent 60%), var(--paper);
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  margin-left: auto;
  padding: 72px 48px 72px 28px;
  display: flex;
  position: relative;
}

.wlp-root .hero-copy:before {
  content: "";
  pointer-events: none;
  background-image: linear-gradient(to right, #5a4f460d 1px, #0000 1px);
  background-size: 80px 100%;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#0000, #000 20% 80%, #0000);
  mask-image: linear-gradient(#0000, #000 20% 80%, #0000);
}

@media (max-width: 1280px) {
  .wlp-root .hero-copy {
    padding-left: 28px;
  }
}

@media (max-width: 980px) {
  .wlp-root .hero-copy {
    max-width: none;
    padding: 48px 28px 24px;
  }
}

.wlp-root .hero-copy > * {
  z-index: 1;
  position: relative;
}

.wlp-root .hero-eyebrow {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-2);
  border-radius: 999px;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 6px 14px 6px 8px;
  font-size: 13px;
  display: inline-flex;
}

.wlp-root .hero-eyebrow .dot {
  background: var(--good);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 1.8s infinite pulse;
  box-shadow: 0 0 0 4px #4f7a3a2e;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px #4f7a3a2e;
  }

  50% {
    box-shadow: 0 0 0 7px #4f7a3a0f;
  }
}

.wlp-root .hero h1 {
  font-family: var(--serif);
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 0 0 20px;
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.wlp-root .hero h1 em {
  color: var(--amber-deep);
  font-style: italic;
  font-weight: 500;
}

.wlp-root .hero h1 .underline {
  white-space: nowrap;
  color: var(--amber-deep);
  font-style: italic;
  font-weight: 500;
  position: relative;
}

.wlp-root .hero h1 .underline:after {
  content: "";
  background: var(--amber-soft);
  z-index: -1;
  border-radius: 4px;
  height: 10px;
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
}

.wlp-root .hero p.lead {
  color: var(--ink-3);
  max-width: 520px;
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.55;
}

.wlp-root .hero-ctas {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  display: flex;
}

.wlp-root .hero-meta {
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, auto);
  gap: 24px 36px;
  max-width: 540px;
  padding-top: 26px;
  display: grid;
}

.wlp-root .hero-meta .it {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.wlp-root .hero-meta .n {
  font-family: var(--serif);
  letter-spacing: -.02em;
  color: var(--ink);
  font-size: 30px;
  font-weight: 600;
}

.wlp-root .hero-meta .l {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-3);
  font-size: 12px;
}

@media (max-width: 520px) {
  .wlp-root .hero-meta {
    grid-template-columns: 1fr 1fr;
  }
}

.wlp-root .hero-media {
  background: var(--paper-2);
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.wlp-root .hero-media img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.wlp-root .hero-media:after {
  content: "";
  background: linear-gradient(90deg, var(--paper) 0%, transparent 15%, transparent 100%);
  pointer-events: none;
  position: absolute;
  inset: 0;
}

@media (max-width: 980px) {
  .wlp-root .hero-media {
    aspect-ratio: 4 / 3;
    min-height: 380px;
  }

  .wlp-root .hero-media:after {
    background: linear-gradient(180deg, transparent 50%, var(--paper) 100%);
  }
}

.wlp-root .hero-stamp {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  z-index: 2;
  color: var(--ink);
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.wlp-root .hero-stamp .st-ic {
  background: var(--amber);
  width: 32px;
  height: 32px;
  color: var(--ink);
  font-family: var(--serif);
  border-radius: 50%;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  display: grid;
}

.wlp-root .hero-stamp small {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-size: 10px;
  font-weight: 500;
  display: block;
}

.wlp-root .logos {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.wlp-root .logos-head {
  text-align: center;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
}

.wlp-root .logos-row {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px 50px;
  display: flex;
}

.wlp-root .logos-row img {
  object-fit: contain;
  opacity: .72;
  filter: grayscale();
  width: auto;
  max-width: 180px;
  height: 48px;
  transition: opacity .2s, filter .2s;
}

.wlp-root .logos-row img:hover {
  opacity: 1;
  filter: grayscale(0);
}

@media (max-width: 640px) {
  .wlp-root .logos-row {
    justify-content: center;
    gap: 24px 30px;
  }

  .wlp-root .logos-row img {
    height: 36px;
  }
}

.wlp-root section.sx {
  padding: 96px 0;
}

@media (max-width: 700px) {
  .wlp-root section.sx {
    padding: 64px 0;
  }
}

.wlp-root .section-head {
  max-width: 720px;
  margin: 0 0 56px;
}

.wlp-root .section-head h2 {
  font-family: var(--serif);
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 12px 0 14px;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.05;
}

.wlp-root .section-head h2 em {
  color: var(--amber-deep);
  font-style: italic;
}

.wlp-root .section-head p {
  color: var(--ink-3);
  max-width: 580px;
  margin: 0;
  font-size: 17px;
}

.wlp-root .section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.wlp-root .section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

.wlp-root .homes {
  background: var(--paper);
  position: relative;
}

.wlp-root .homes .wrap {
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 72px;
  display: grid;
}

@media (max-width: 980px) {
  .wlp-root .homes .wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.wlp-root .homes-media {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}

.wlp-root .homes-media img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.wlp-root .homes-media .overlay {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  align-items: center;
  gap: 14px;
  padding: 20px 26px;
  display: flex;
  position: absolute;
  bottom: -10px;
  left: -10px;
}

.wlp-root .homes-media .overlay .big {
  font-family: var(--serif);
  letter-spacing: -.03em;
  color: var(--amber-deep);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.wlp-root .homes-media .overlay .lbl {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.wlp-root .homes-media .overlay .lbl b {
  color: var(--ink);
  letter-spacing: .04em;
  font-size: 13px;
  font-weight: 700;
  display: block;
}

.wlp-root .homes-content .big-stat {
  font-family: var(--serif);
  letter-spacing: -.04em;
  color: var(--ink);
  margin: 0 0 8px;
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 500;
  line-height: .9;
}

.wlp-root .homes-content .big-stat em {
  color: var(--amber-deep);
  font-style: italic;
  font-weight: 500;
}

.wlp-root .homes-content .stat-label {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 600;
}

.wlp-root .homes-content p.body {
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.6;
}

.wlp-root .homes-content p.body b {
  color: var(--ink);
  font-weight: 600;
}

.wlp-root .mini-stats {
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 540px;
  margin-top: 32px;
  padding-top: 28px;
  display: grid;
}

.wlp-root .mini-stats .ms-n {
  font-family: var(--serif);
  letter-spacing: -.02em;
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  display: block;
}

.wlp-root .mini-stats .ms-l {
  color: var(--ink-3);
  letter-spacing: .02em;
  font-size: 12px;
}

@media (max-width: 520px) {
  .wlp-root .mini-stats {
    grid-template-columns: 1fr 1fr;
  }
}

.wlp-root .wintypes {
  background: var(--paper-2);
}

.wlp-root .wintypes-grid {
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  display: grid;
}

.wlp-root .wt-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  flex-direction: column;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s, border-color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.wlp-root .wt-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--amber-soft);
  transform: translateY(-4px);
}

.wlp-root .wt-media {
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}

.wlp-root .wt-media img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .6s;
}

.wlp-root .wt-card:hover .wt-media img {
  transform: scale(1.04);
}

.wlp-root .wt-media .wt-num {
  background: var(--paper);
  color: var(--amber-deep);
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--serif);
  border-radius: 999px;
  padding: 5px 11px;
  position: absolute;
  top: 16px;
  left: 16px;
}

.wlp-root .wt-body {
  padding: 22px 24px 26px;
}

.wlp-root .wt-body h3 {
  font-family: var(--serif);
  letter-spacing: -.015em;
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.wlp-root .wt-body p {
  color: var(--ink-3);
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
}

.wlp-root .wt-body .wt-link {
  color: var(--amber-deep);
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.wlp-root .wt-body .wt-link svg {
  width: 12px;
  height: 12px;
  transition: transform .2s;
}

.wlp-root .wt-card:hover .wt-body .wt-link svg {
  transform: translateX(3px);
}

.wlp-root .wt-card.span-4 {
  grid-column: span 4;
}

.wlp-root .wt-card.span-3 {
  grid-column: span 3;
}

.wlp-root .wt-card.span-6 {
  grid-column: span 6;
}

.wlp-root .wt-feature {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  grid-column: span 6;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.wlp-root .wt-feature .wt-media {
  aspect-ratio: auto;
}

.wlp-root .wt-feature .wt-body {
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  display: flex;
}

.wlp-root .wt-feature .wt-body .eyebrow {
  color: var(--amber-soft);
}

.wlp-root .wt-feature .wt-body h3 {
  color: var(--paper);
  margin-top: 8px;
  font-size: 32px;
}

.wlp-root .wt-feature .wt-body p {
  color: #faf7f2b3;
  font-size: 15px;
}

.wlp-root .wt-feature .wt-body .wt-link {
  color: var(--amber-soft);
  font-size: 14px;
}

@media (max-width: 900px) {
  .wlp-root .wintypes-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .wlp-root .wt-card.span-4, .wlp-root .wt-card.span-3 {
    grid-column: span 3;
  }

  .wlp-root .wt-feature {
    grid-column: span 6;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .wlp-root .wintypes-grid {
    grid-template-columns: 1fr;
  }

  .wlp-root .wt-card.span-4, .wlp-root .wt-card.span-3, .wlp-root .wt-card.span-6, .wlp-root .wt-feature {
    grid-column: span 1;
  }
}

.wlp-root .whyus {
  background: var(--paper);
}

.wlp-root .whyus .wrap {
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 72px;
  display: grid;
}

@media (max-width: 900px) {
  .wlp-root .whyus .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.wlp-root .whyus-visual {
  aspect-ratio: 4 / 5;
  position: relative;
}

.wlp-root .whyus-visual .v-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wlp-root .whyus-visual .v-main img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.wlp-root .whyus-visual .v-overlay {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 190px;
  box-shadow: var(--shadow-card);
  z-index: 2;
  padding: 18px 20px;
  position: absolute;
  bottom: 40px;
  left: -24px;
}

.wlp-root .whyus-visual .v-overlay .stars {
  gap: 2px;
  margin-bottom: 6px;
  display: flex;
}

.wlp-root .whyus-visual .v-overlay .stars svg {
  width: 14px;
  height: 14px;
  fill: var(--amber);
}

.wlp-root .whyus-visual .v-overlay .v-num {
  font-family: var(--serif);
  letter-spacing: -.02em;
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.wlp-root .whyus-visual .v-overlay .v-lbl {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
  font-size: 11px;
}

.wlp-root .whyus-content .pillars {
  flex-direction: column;
  margin-top: 30px;
  display: flex;
}

.wlp-root .whyus-content .pillar {
  border-top: 1px solid var(--line);
  grid-template-columns: 48px 1fr;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  display: grid;
}

.wlp-root .whyus-content .pillar:last-child {
  border-bottom: 1px solid var(--line);
}

.wlp-root .whyus-content .pillar-ic {
  background: var(--paper-2);
  width: 48px;
  height: 48px;
  color: var(--amber-deep);
  border-radius: 12px;
  place-items: center;
  display: grid;
}

.wlp-root .whyus-content .pillar-ic svg {
  width: 22px;
  height: 22px;
}

.wlp-root .whyus-content .pillar h4 {
  font-family: var(--serif);
  letter-spacing: -.01em;
  margin: 4px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.wlp-root .whyus-content .pillar p {
  color: var(--ink-3);
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.wlp-root .promo {
  background: var(--ink);
  color: var(--paper);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.wlp-root .promo-inner {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 560px;
  display: grid;
}

@media (max-width: 900px) {
  .wlp-root .promo-inner {
    grid-template-columns: 1fr;
  }
}

.wlp-root .promo-media {
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.wlp-root .promo-media img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.wlp-root .promo-media:after {
  content: "";
  background: linear-gradient(90deg, transparent 50%, var(--ink) 100%);
  position: absolute;
  inset: 0;
}

@media (max-width: 900px) {
  .wlp-root .promo-media {
    min-height: 320px;
  }

  .wlp-root .promo-media:after {
    background: linear-gradient(180deg, transparent 50%, var(--ink) 100%);
  }
}

.wlp-root .promo-body {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  display: flex;
  position: relative;
}

@media (max-width: 600px) {
  .wlp-root .promo-body {
    padding: 48px 28px;
  }
}

.wlp-root .promo-body:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(600px 300px at 100% 0, #c8822c38, #0000 60%), radial-gradient(400px 200px at 0 100%, #b8463a1f, #0000 60%);
  position: absolute;
  inset: 0;
}

.wlp-root .promo-body > * {
  z-index: 1;
  position: relative;
}

.wlp-root .promo-tag {
  background: var(--amber);
  color: var(--ink);
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.wlp-root .promo h2 {
  font-family: var(--serif);
  letter-spacing: -.03em;
  color: var(--paper);
  margin: 0 0 16px;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  line-height: .96;
}

.wlp-root .promo h2 em {
  color: var(--amber-soft);
  font-style: italic;
}

.wlp-root .promo h2 .big-num {
  color: var(--amber);
  font-style: normal;
  font-weight: 600;
}

.wlp-root .promo p.pitch {
  color: #faf7f2bf;
  max-width: 460px;
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.55;
}

.wlp-root .promo .terms {
  color: #faf7f280;
  letter-spacing: .02em;
  border-top: 1px solid #ffffff1a;
  max-width: 420px;
  margin-top: 24px;
  padding-top: 22px;
  font-size: 12px;
}

.wlp-root .promo-ctas {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.wlp-root .process {
  background: var(--paper);
}

.wlp-root .process-grid {
  counter-reset: step;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  display: grid;
  position: relative;
}

@media (max-width: 820px) {
  .wlp-root .process-grid {
    grid-template-columns: 1fr;
  }
}

.wlp-root .pr-step {
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  flex-direction: column;
  padding: 32px 30px;
  display: flex;
  position: relative;
}

.wlp-root .pr-step .pr-num {
  font-family: var(--serif);
  color: var(--amber);
  letter-spacing: -.04em;
  margin: -8px 0 18px;
  font-size: 96px;
  font-style: italic;
  font-weight: 500;
  line-height: .85;
  display: block;
}

.wlp-root .pr-step h4 {
  font-family: var(--serif);
  letter-spacing: -.015em;
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}

.wlp-root .pr-step p {
  color: var(--ink-3);
  flex: 1;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.55;
}

.wlp-root .pr-step .pr-tag {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-deep);
  border-top: 1px solid var(--line);
  align-items: center;
  gap: 6px;
  padding-top: 14px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
}

.wlp-root .pr-step .pr-tag svg {
  width: 14px;
  height: 14px;
}

.wlp-root .faq {
  background: var(--paper-2);
}

.wlp-root .faq .wrap {
  grid-template-columns: 1fr 1.6fr;
  align-items: flex-start;
  gap: 80px;
  display: grid;
}

@media (max-width: 900px) {
  .wlp-root .faq .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.wlp-root .faq-intro .phone-box {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-top: 24px;
  padding: 22px 24px;
}

.wlp-root .faq-intro .phone-box .l {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 600;
}

.wlp-root .faq-intro .phone-box a {
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -.01em;
  margin-top: 4px;
  font-size: 24px;
  font-weight: 500;
  display: block;
}

.wlp-root .faq-list {
  border-top: 1px solid var(--line);
  flex-direction: column;
  gap: 0;
  display: flex;
}

.wlp-root .faq-item {
  border-bottom: 1px solid var(--line);
}

.wlp-root .faq-q {
  width: 100%;
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -.01em;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
}

.wlp-root .faq-q .ic {
  border: 1px solid var(--line);
  width: 32px;
  height: 32px;
  color: var(--amber-deep);
  background: var(--paper);
  border-radius: 50%;
  flex-shrink: 0;
  place-items: center;
  transition: transform .25s, background .2s;
  display: grid;
}

.wlp-root .faq-item.open .faq-q .ic {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  transform: rotate(45deg);
}

.wlp-root .faq-a {
  max-height: 0;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.6;
  transition: max-height .3s;
  overflow: hidden;
}

.wlp-root .faq-a > div {
  max-width: 680px;
  padding: 0 0 24px;
}

.wlp-root .faq-item.open .faq-a {
  max-height: 600px;
}

.wlp-root .cta-banner {
  background: var(--ink);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.wlp-root .cta-banner .wrap {
  z-index: 2;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 70px 28px;
  display: grid;
  position: relative;
}

@media (max-width: 720px) {
  .wlp-root .cta-banner .wrap {
    grid-template-columns: 1fr;
  }
}

.wlp-root .cta-banner:before {
  content: "";
  background: radial-gradient(800px 300px at 0%, #c8822c33, #0000 60%), radial-gradient(600px 300px at 100% 100%, #b8463a26, #0000 60%);
  position: absolute;
  inset: 0;
}

.wlp-root .cta-banner h2 {
  font-family: var(--serif);
  color: var(--paper);
  letter-spacing: -.02em;
  margin: 0 0 8px;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.1;
}

.wlp-root .cta-banner h2 em {
  color: var(--amber-soft);
  font-style: italic;
}

.wlp-root .cta-banner p {
  color: #faf7f2b3;
  margin: 0;
  font-size: 16px;
}

.wlp-root .cta-banner .cta-btns {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.wlp-root .foot-bottom {
  opacity: .5;
  border-top: 1px solid #ffffff0f;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 12px;
  display: flex;
}

/*# sourceMappingURL=_a76ef012._.css.map*/