html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.contact-family-card {
  background: #ffffff;
  display: grid;
}

.contact-hq-map {
  isolation: isolate;
}

@media (min-width: 64rem) {
  .contact-content-grid {
    align-items: stretch;
  }

  .contact-left-column {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .contact-map-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .contact-map-card__grid {
    flex: 1;
  }

  .contact-map-card__grid > * {
    min-height: 100%;
  }
}

.contact-hq-map::after {
  background: linear-gradient(180deg, rgba(30, 30, 30, 0) 52%, rgba(30, 30, 30, 0.22));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.contact-hq-map > div {
  z-index: 2;
}

.contact-hq-map__toggle {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.contact-hq-map__image {
  height: 100%;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  position: absolute;
  transition: opacity 180ms ease;
  width: 100%;
}

.contact-hq-map__image--map {
  opacity: 1;
}

#contact_hq_map_view_satellite:checked ~ .contact-hq-map__image--map {
  opacity: 0;
}

#contact_hq_map_view_satellite:checked ~ .contact-hq-map__image--satellite {
  opacity: 1;
}

.contact-hq-map__controls {
  border: 1px solid #d6d3ce;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(30, 30, 30, 0.12);
  display: flex;
  left: 1rem;
  overflow: hidden;
  position: absolute;
  top: 1rem;
}

.contact-hq-map__control {
  background: #f5f3ef;
  color: #57534e;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.72rem 1rem;
}

.contact-hq-map__control + .contact-hq-map__control {
  border-left: 1px solid #d6d3ce;
}

#contact_hq_map_view_map:checked ~ .contact-hq-map__controls .contact-hq-map__control--map,
#contact_hq_map_view_satellite:checked ~ .contact-hq-map__controls .contact-hq-map__control--satellite {
  background: #ffffff;
  color: #1c1917;
}

.contact-hq-map__beacon {
  filter: drop-shadow(0 8px 14px rgba(30, 30, 30, 0.28));
  height: 2.3rem;
  left: 42.8%;
  position: absolute;
  top: 46.5%;
  transform: translate(-50%, -50%);
  width: 2.3rem;
  z-index: 2;
}

.contact-hq-map__beacon-ring,
.contact-hq-map__beacon-core {
  border-radius: 9999px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.contact-hq-map__beacon-ring--outer {
  animation: contact-hq-beacon-ring 1.45s ease-out infinite;
  background: transparent;
  border: 2px solid rgba(251, 202, 59, 0.58);
  height: 1rem;
  width: 1rem;
}

.contact-hq-map__beacon-ring--middle {
  animation: contact-hq-beacon-ring 1.45s ease-out 260ms infinite;
  background: transparent;
  border: 2px solid rgba(251, 202, 59, 0.76);
  height: 0.9rem;
  width: 0.9rem;
}

.contact-hq-map__beacon-core {
  background: #fbca3b;
  box-shadow: 0 0 0 2px rgba(107, 79, 53, 0.22), 0 0 14px rgba(251, 202, 59, 0.72);
  height: 0.47rem;
  width: 0.47rem;
}

@keyframes contact-hq-beacon-ring {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.45);
  }

  62% {
    opacity: 0.28;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.05);
  }
}

.contact-next-grid {
  display: grid;
  gap: 1rem;
}

.contact-next-card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-next-photo {
  aspect-ratio: 4 / 3;
  background-color: #d8d1c4;
  overflow: hidden;
}

.contact-next-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.contact-next-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
}

.contact-next-body h3 {
  color: #1c1917;
  font-size: 1.35rem;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

.contact-next-body p {
  color: #57534e;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 40rem) {
  .contact-next-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .contact-next-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.contact-family-photo {
  background-color: #d8d1c4;
  min-height: 24rem;
  overflow: hidden;
  position: relative;
}

.contact-family-photo img {
  height: 100%;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.contact-family-caption {
  background: #f7f4ee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 24rem;
  padding: 2rem;
}

@media (min-width: 40rem) {
  .contact-family-caption {
    padding: 2.5rem;
  }
}

@media (min-width: 64rem) {
  .contact-family-card {
    grid-template-columns: minmax(0, 1fr) minmax(26rem, 0.85fr);
  }

  .contact-family-photo {
    min-height: 34rem;
  }

  .contact-family-caption {
    padding: 3.5rem;
  }
}

.cms-media-dropzone {
  cursor: pointer;
}

.cms-slot-remove-button {
  align-items: center;
  background: #1e1e1e;
  border-radius: 9999px;
  color: #ffffff;
  display: flex;
  font-size: 0.5rem;
  font-weight: 900;
  height: 0.9rem;
  justify-content: center;
  line-height: 1;
  min-width: 0.9rem;
  position: absolute;
  right: 0.35rem;
  top: 0.35rem;
  width: 0.9rem;
  z-index: 20;
}

.cms-slot-remove-button:hover {
  background: #b91c1c;
}

.cms-media-dropzone[data-has-media="true"] [data-upload-placeholder] {
  opacity: 0;
  transition: opacity 150ms ease, background-color 150ms ease;
}

.cms-media-dropzone[data-has-media="true"]:hover [data-upload-placeholder],
.cms-media-dropzone[data-has-media="true"]:focus-visible [data-upload-placeholder] {
  opacity: 1;
}

.cms-media-dropzone[data-has-media="true"] [data-upload-placeholder] > * {
  background: rgba(30, 30, 30, 0.9);
  color: #ffffff;
}

.cms-media-dropzone--lead img {
  aspect-ratio: 6 / 4;
}

.cms-featured-toggle-field {
  min-height: 3.125rem;
}

.product-seo-preview-card {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  overflow: hidden;
  width: 100%;
}

.product-seo-preview-image {
  flex: 0 0 30%;
  max-width: 220px;
  min-width: 140px;
  overflow: hidden;
  border-radius: 8px;
}

.product-seo-preview-image img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.product-seo-preview-body {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

@media (max-width: 40rem) {
  .product-seo-preview-card {
    flex-direction: column;
  }

  .product-seo-preview-image {
    flex-basis: auto;
    width: min(100%, 220px);
  }
}

.gt-badge-green {
  background-color: #dff3e6;
  color: #123d27;
  --tw-ring-color: #6fb88b;
}

.gt-badge-green-strong {
  background-color: #c8e6d2;
  color: #0f3522;
  --tw-ring-color: #4d996e;
}

.gt-badge-gold {
  background-color: #efe2bd;
  color: #3e2d0c;
  --tw-ring-color: #b89a54;
}

.gt-badge-gold-light {
  background-color: #f5ecd0;
  color: #463811;
  --tw-ring-color: #cbb879;
}

.gt-badge-amber {
  background-color: #ead1b0;
  color: #4a2f16;
  --tw-ring-color: #b98655;
}

.gt-badge-slate {
  background-color: #dde7e7;
  color: #243838;
  --tw-ring-color: #94aaaa;
}

.gt-badge-silver {
  background-color: #e5e5e5;
  color: #333333;
  --tw-ring-color: #b3b3b3;
}

.gt-badge-taupe {
  background-color: #dfd4c8;
  color: #44362b;
  --tw-ring-color: #b5a18f;
}

.gt-badge-neutral {
  background-color: #eeeae2;
  color: #3f3a33;
  --tw-ring-color: #c6bfb2;
}

@media (min-width: 64rem) {
  .cms-content-modal {
    left: calc(max((100vw - 95rem) / 2, 0px) + 19rem);
  }
}

.forms-database-card {
  min-height: 36rem;
  overflow: visible;
}

.subscriber-page-shell,
.portal-database-page-shell {
  background: #1a1a1a;
  margin: -2rem -1.5rem;
  min-height: calc(100vh - 5rem);
  padding: 2rem 1.5rem;
}

.subscriber-database-breakout,
.portal-database-breakout {
  background: transparent !important;
  margin-right: -2rem;
  overflow: visible !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.subscriber-database-scroll,
.portal-database-scroll {
  scrollbar-gutter: stable;
  background: #1a1a1a;
  overflow-y: visible;
  padding-right: 2rem;
}

.subscriber-database-table-surface,
.portal-database-table-surface {
  background: #ffffff;
  width: max(100%, 114rem);
  overflow: hidden;
  border: 1px solid #c9c9c9;
  border-radius: 8px;
  box-shadow: 0 14px 34px -24px rgba(0, 0, 0, 0.28);
}

@media (min-width: 40rem) {
  .subscriber-page-shell,
  .portal-database-page-shell {
    margin: -2rem -2rem;
    padding: 2rem;
  }

  .subscriber-database-breakout,
  .portal-database-breakout {
    margin-right: -3rem;
  }
}

@media (min-width: 64rem) {
  .forms-database-card {
    min-height: 94rem;
  }

  .subscriber-page-shell,
  .portal-database-page-shell {
    margin-right: calc(-1 * (max((100vw - 95rem) / 2, 0px) + 4.5rem));
    padding-right: calc(max((100vw - 95rem) / 2, 0px) + 2.5rem);
  }

  .subscriber-database-breakout,
  .portal-database-breakout {
    margin-right: calc(-1 * (max((100vw - 95rem) / 2, 0px) + 3.5rem));
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

img.hidden {
  display: none !important;
}

.home-instagram-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pre-footer-banner {
  background: #171512;
  min-height: 16rem;
  overflow: hidden;
  position: relative;
}

.pre-footer-banner__image {
  height: 100%;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.pre-footer-banner__overlay {
  background: rgba(0, 0, 0, 0.6);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.pre-footer-banner__content {
  align-items: center;
  display: grid;
  gap: 2rem;
  min-height: 16rem;
  padding-bottom: 4rem;
  padding-top: 4rem;
  position: relative;
  z-index: 1;
}

.pre-footer-banner__copy {
  max-width: 42rem;
}

.pre-footer-banner__copy h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.pre-footer-banner__copy p {
  color: #d6d3ce;
  font-size: 1rem;
  line-height: 1.75;
  margin: 1rem 0 0;
}

.pre-footer-banner__button {
  justify-self: start;
  white-space: nowrap;
}

@media (min-width: 64rem) {
  .pre-footer-banner {
    min-height: 21rem;
  }

  .pre-footer-banner__content {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 21rem;
  }

  .pre-footer-banner__button {
    justify-self: end;
  }
}

h1,
h2,
h3,
h4,
.font-display {
  letter-spacing: var(--gt-display-tracking);
}

h1,
h1.font-black,
.page-heading,
.font-display,
.font-display.font-black {
  font-family: var(--gt-display-font);
  font-weight: var(--gt-t1-weight);
  letter-spacing: var(--gt-display-tracking);
}

.home-hero h1 {
  font-weight: 900;
  letter-spacing: -0.05em;
}

.home-hero .home-lifestyle-card h2,
.home-hero .home-lifestyle-card h3 {
  font-family: var(--gt-display-font);
  font-weight: var(--gt-t1-weight);
  letter-spacing: var(--gt-display-tracking);
}

.our-story-thread {
  width: 100%;
  max-width: none;
  margin: 0;
  margin-top: 3rem;
}

.our-story-thread > * + * {
  margin-top: 2.75rem;
}

.our-story-story-module {
  width: min(56%, 39rem);
  margin-right: auto;
  margin-left: 0;
}

.our-story-story-module--text-only {
  background: #fbfbfa;
}

.our-story-story-module__image-wrap {
  aspect-ratio: 6 / 4;
  overflow: hidden;
}

.our-story-story-module__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-story-commentary-module {
  width: min(52%, 36rem);
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.35rem 1.4rem;
  transform: translateX(-1.5rem);
}

.our-story-commentary-module--nick {
  background: #9aabb5;
}

.our-story-commentary-module--sam {
  background: #dabd74;
}

.our-story-story-module__body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.our-story-story-module__title {
  margin-top: 0.7rem;
  font-family: paralucent, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #1e1e1e;
}

.our-story-commentary-module__avatar {
  width: 4.75rem;
  height: 4.75rem;
  flex: 0 0 4.75rem;
  border-radius: 0.75rem;
  object-fit: cover;
  object-position: center;
}

.our-story-commentary-module__body {
  flex: 1 1 auto;
  min-width: 0;
}

.our-story-commentary-module__name {
  font-family: paralucent, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #1e1e1e;
}

.our-story-gallery-section {
  border-bottom: 1px solid rgba(214, 211, 209, 0.8);
  background: #fbfbfa;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.our-story-gallery {
  --story-gallery-gap: 1rem;
  --story-gallery-visible: 3;
  --story-gallery-item-width: calc((100% - (var(--story-gallery-gap) * (var(--story-gallery-visible) - 1))) / var(--story-gallery-visible));
  --story-gallery-step: calc(var(--story-gallery-item-width) + var(--story-gallery-gap));
  position: relative;
  width: 100%;
}

.our-story-gallery__header {
  margin-bottom: 1.5rem;
  width: 100%;
}

.our-story-gallery__title {
  margin-top: 0.7rem;
  max-width: none;
  font-family: var(--gt-display-font);
  font-size: 2.25rem;
  font-weight: var(--gt-t1-weight);
  line-height: 2.5rem;
  letter-spacing: var(--gt-display-tracking);
  text-transform: uppercase;
  color: #1e1e1e;
}

.our-story-gallery__viewport {
  overflow: hidden;
  width: 100%;
}

.our-story-gallery__track {
  display: flex;
  gap: var(--story-gallery-gap);
  transition: transform 240ms ease;
  will-change: transform;
}

.our-story-gallery__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 0 0 var(--story-gallery-item-width);
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

.our-story-gallery__media {
  display: block;
  aspect-ratio: 6 / 4;
  overflow: hidden;
  width: 100%;
  border: 0;
  border-radius: 0.35rem;
  background: #d6d3d1;
  padding: 0;
  cursor: zoom-in;
}

.our-story-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.our-story-gallery__item:hover .our-story-gallery__image,
.our-story-gallery__media:focus-visible .our-story-gallery__image {
  transform: scale(1.035);
}

.our-story-gallery__card {
  display: flex;
  min-height: 8.5rem;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.55rem;
  border: 1px solid rgba(179, 174, 165, 0.58);
  border-radius: 0.35rem;
  background: #fffdfa;
  padding: 0.9rem 1rem;
  box-shadow: 0 0.65rem 1.65rem rgba(30, 30, 30, 0.06);
}

.our-story-gallery__day {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: #1e1e1e;
}

.our-story-gallery__day-accent {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  border-radius: 9999px;
  background: #ffc845;
}

.our-story-gallery__caption {
  display: block;
  min-height: 1.35rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #5f5a50;
}

.our-story-gallery__credit {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  color: #1e1e1e;
  text-decoration: none;
  transition: color 150ms ease;
}

.our-story-gallery__credit:hover,
.our-story-gallery__credit:focus-visible {
  color: #8a6a00;
}

.our-story-gallery__credit svg {
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.our-story-gallery__control {
  position: absolute;
  top: calc(var(--story-gallery-item-width) / 3);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid #b3aea5;
  border-radius: 9999px;
  background: #fbfbfa;
  color: #1e1e1e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  transition: opacity 150ms ease, border-color 150ms ease, background-color 150ms ease;
  transform: translateY(-50%);
}

.our-story-gallery__control--prev {
  left: -3.75rem;
}

.our-story-gallery__control--next {
  right: -3.75rem;
}

.our-story-gallery__control:hover:not(:disabled),
.our-story-gallery__control:focus-visible:not(:disabled) {
  border-color: #1e1e1e;
  background: #ffc845;
}

.our-story-gallery__control:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.our-story-gallery__control span {
  margin-top: -0.15rem;
}

.our-story-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(15, 14, 13, 0.88);
}

.our-story-gallery-modal.hidden {
  display: none;
}

.our-story-gallery-modal__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(13rem, 17rem) minmax(0, auto);
  align-items: start;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: min(92rem, 100%);
  max-height: 100%;
  transform: translateX(-1.875rem);
}

.our-story-gallery-modal__card {
  min-height: 8.5rem;
  margin-top: 0.25rem;
}

.our-story-gallery-modal__figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-height: 100%;
  margin: 0;
}

.our-story-gallery-modal__image {
  width: auto;
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
}

.our-story-gallery-modal__control {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
}

.our-story-gallery-modal__control--prev {
  left: -3.75rem;
  right: auto;
}

.our-story-gallery-modal__control--next {
  right: -3.75rem;
  left: auto;
}

.our-story-gallery-modal__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 9999px;
  background: rgba(30, 30, 30, 0.72);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 47.999rem) {
  .our-story-gallery {
    --story-gallery-visible: 1;
    padding-inline: 2.85rem;
    padding-right: 2.85rem;
  }

  .our-story-gallery__control {
    width: 2.5rem;
    height: 2.5rem;
  }

  .our-story-gallery__control--prev {
    left: 0;
  }

  .our-story-gallery__control--next {
    right: 0;
  }

  .our-story-gallery-modal {
    align-items: flex-start;
    overflow-y: auto;
  }

  .our-story-gallery-modal__stage {
    grid-template-columns: 1fr;
    width: 100%;
    padding-top: 3.25rem;
  }

  .our-story-gallery-modal__card {
    order: 2;
    min-height: 8.5rem;
    margin-top: 0;
  }

  .our-story-gallery-modal__figure {
    order: 1;
    width: 100%;
  }

  .our-story-gallery-modal__image {
    max-height: 62vh;
  }

  .our-story-gallery-modal__control {
    width: 2.5rem;
    height: 2.5rem;
  }

  .our-story-gallery-modal__control--prev {
    left: 0.5rem;
  }

  .our-story-gallery-modal__control--next {
    right: 0.5rem;
  }

  .our-story-story-module,
  .our-story-commentary-module {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }
}

@media (min-width: 48rem) and (max-width: 63.999rem) {
  .our-story-gallery {
    --story-gallery-visible: 2;
    padding-inline: 3.5rem;
    padding-right: 3.5rem;
  }

  .our-story-gallery__control--prev {
    left: 0;
  }

  .our-story-gallery__control--next {
    right: 0;
  }

  .our-story-gallery-modal {
    overflow-y: auto;
  }

  .our-story-gallery-modal__stage {
    grid-template-columns: 1fr;
    width: min(42rem, 100%);
    padding-top: 3.5rem;
  }

  .our-story-gallery-modal__card {
    min-height: 8.5rem;
    margin-top: 0;
  }

  .our-story-gallery-modal__image {
    max-height: 66vh;
  }

  .our-story-gallery-modal__control--prev {
    left: 0.75rem;
  }

  .our-story-gallery-modal__control--next {
    right: 0.75rem;
  }
}

@media (min-width: 64rem) {
  .our-story-gallery-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

}

@media (min-width: 40rem) {
  .our-story-gallery__title {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 64rem) {
  .our-story-gallery {
    width: 100%;
  }
}
