:root {
  --ivory: #f2eee6;
  --bone: #e4d9c9;
  --ink: #191916;
  --muted: #6a655d;
  --obsidian: #171714;
  --roasted: #2a211b;
  --agave: #6c7355;
  --agave-deep: #343d2d;
  --clay: #a7593a;
  --amber: #c49355;
  --brass: #a88654;
  --white: #fff;
  --line: rgba(25, 25, 22, .14);
  --line-dark: rgba(255, 255, 255, .14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--amber);
  color: var(--obsidian);
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1030;
  padding: 5px 0;
  transition: .35s ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(242, 238, 230, .96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(25, 25, 22, .08);
  backdrop-filter: blur(16px);
  padding: 0;
}

.site-header.is-scrolled .navbar-brand {
  max-width: 80px;
}

.site-header:not(.is-scrolled) .navbar,
.site-header:not(.is-scrolled) .navbar a {
  color: #fff;
}

.site-header .navbar-brand {
  font-weight: 700;
  max-width: 110px;
  padding: 0;
  margin: 0;
}

.site-header .navbar-brand span {
  display: block;
  font-size: .72rem;
  letter-spacing: .28em;
  margin-top: .35rem;
  font-family: var(--sans);
  font-weight: 500;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler {
  border: 1px solid currentColor;
  border-radius: 0;
}

.site-header:not(.is-scrolled) .navbar-toggler-icon {
  filter: invert(1);
}

.navbar-nav {
  margin-top: -60px;
}

.navbar-nav li a {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: 0 0;
  border: 0;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding-left: .85rem !important;
  padding-right: .85rem !important;
}

.navbar-nav li a:hover {
  opacity: .65;
}

.btn-brand,
.btn-outline-brand,
.btn-light-brand {
  border-radius: 0;
  padding: .85rem 1.25rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .73rem;
  font-weight: 700;
  transition: .25s ease;
}

.btn-brand {
  background: var(--obsidian);
  color: #fff;
  border: 1px solid var(--obsidian);
}

.btn-brand:hover {
  background: var(--agave-deep);
  color: #fff;
  border-color: var(--agave-deep);
  transform: translateY(-2px);
}

.btn-light-brand {
  background: var(--ivory);
  color: var(--obsidian);
  border: 1px solid var(--ivory);
}

.btn-light-brand:hover {
  background: #fff;
  color: var(--obsidian);
  transform: translateY(-2px);
}

.site-header .navbar-nav .btn-light-brand {
  background: var(--ivory);
  color: var(--obsidian);
  border: 1px solid var(--ivory);
  color: var(--obsidian) !important;
  padding: .5rem 1.5rem;
  font-size: 15px;
}

.site-header.is-scrolled .navbar-nav .btn-light-brand {
  background: var(--obsidian);
  color: var(--ivory) !important;
}

.site-header.is-scrolled .navbar-nav {
  margin-top: 0;
}

.btn-outline-brand {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.btn-outline-brand:hover {
  background: var(--obsidian);
  color: #fff;
  border-color: var(--obsidian);
  transform: translateY(-2px);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background-color: var(--obsidian);
}

.hero.hero-short {
  min-height: 68vh;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 8, .74) 0%, rgba(9, 9, 8, .28) 56%, rgba(9, 9, 8, .12) 100%),
    linear-gradient(0deg, rgba(9, 9, 8, .72) 0%, transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem 1rem 5rem;
  max-width: 1110px;
}


.hero-content h2 {
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.display-serif,
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
}

.display-serif {
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: .92;
  letter-spacing: -.045em;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.035em;
}

.section-title-sm {
  font-size: clamp(1.8rem, 3.7vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -.025em;
}

.lead-copy {
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  color: inherit;
  opacity: .82;
  max-width: 680px;
}

.section-pad {
  padding: 6rem 0;
}

.section-pad-sm {
  padding: 4.5rem 0;
}

.bg-ivory {
  background: var(--ivory);
}

.bg-bone {
  background: var(--bone);
}

.bg-dark-brand {
  background: var(--obsidian);
  color: #f3efe7;
}

.bg-roasted {
  background: var(--roasted);
  color: #f3efe7;
}

.bg-agave {
  background: var(--agave-deep);
  color: #f3efe7;
}

.editorial-img {
  height: 620px;
  width: 100%;
  object-fit: cover;
}

.editorial-img-sm {
  height: 440px;
  width: 100%;
  object-fit: cover;
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: #d8d1c7;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
  pointer-events: none;
}

.panorama {
  min-height: 72vh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: end;
  background: url('../images/banner-land-comes.jpg') center/cover no-repeat;
}

.panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 12, 10, .92), rgba(12, 12, 10, 0.15) 67%);
}

.panorama .container {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}

.big-number {
  font-family: var(--serif);
  font-size: clamp(8rem, 22vw, 24rem);
  line-height: .72;
  letter-spacing: -.08em;
  color: rgba(25, 25, 22, .06);
  position: absolute;
  inset: auto auto 0 -1rem;
  pointer-events: none;
}

.product-stage {
  position: relative;
  overflow: hidden;
}

.product-bottle {
  max-height: 760px;
  object-fit: contain;
  margin: auto;
  filter: drop-shadow(0 34px 28px rgba(0, 0, 0, .22));
}

.spec-grid {
  border-top: 1px solid var(--line);
}

.spec-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.spec-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  color: var(--muted);
}

.story-step {
  border-top: 1px solid var(--line-dark);
  padding: 1.6rem 0;
}

.story-step .num {
  color: var(--amber);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.card-editorial {
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  height: 100%;
}

.card-editorial .card-body {
  padding: 1.6rem;
}

.retailer-search {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1rem;
}

.form-control,
.form-select {
  border-radius: 0;
  border: 1px solid rgba(25, 25, 22, .22);
  background: rgba(255, 255, 255, .68);
  min-height: 52px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--agave-deep);
  box-shadow: 0 0 0 .22rem rgba(52, 61, 45, .12);
}

.form-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  font-weight: 700;
}

.form-check-input {
  border-radius: 0 !important;
}

.form-check-input:checked {
  background-color: var(--agave-deep);
  border-color: var(--agave-deep);
}

.trade-steps .step {
  border-top: 1px solid var(--line-dark);
  padding-top: 1.25rem;
}

.trade-steps .step span {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--amber);
}

.site-footer {
  background: #11110f;
  color: #d9d4cb;
  padding: 5.5rem 0 2rem;
}

.site-footer a {
  color: #d9d4cb;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-brand {
  font-family: var(--serif);
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: .9;
  letter-spacing: -.04em;
  max-width: 160px;
  border-right: 1px solid #3e3e39;
  padding-right: 20px;
  margin-right: 30px;
}

.footer-label {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: #aaa398;
}

.footer-rule {
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  color: #fff;
  background: #0e0e0c;
}

.age-gate .container {
  max-width: 1220px;
  ;
}

.age-gate.show {
  display: flex;
}

.age-gate-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}

.age-gate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .74), rgba(0, 0, 0, .36));
}

.age-gate .inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.page-banner {
  padding: 11rem 0 6rem;
  background: var(--obsidian);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-banner .texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 26%, rgba(196, 147, 85, .12), transparent 28%),
    linear-gradient(135deg, transparent 0 56%, rgba(255, 255, 255, .035) 56% 57%, transparent 57%);
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.chapter-num {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10vw, 9rem);
  color: rgba(25, 25, 22, .11);
  line-height: 1;
}

.quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -.03em;
}

.map-placeholder {
  min-height: 560px;
  background:
    linear-gradient(rgba(242, 238, 230, .76), rgba(242, 238, 230, .76)),
    url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=1200&q=75') center/cover;
  border: 1px solid var(--line);
  position: relative;
}

.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--clay);
  border: 5px solid #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
  transform: rotate(45deg);
}

.map-pin:nth-child(1) {
  left: 25%;
  top: 30%
}

.map-pin:nth-child(2) {
  left: 58%;
  top: 48%
}

.map-pin:nth-child(3) {
  left: 71%;
  top: 24%
}

.retailer-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .8rem;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid currentColor;
}

.status-approved {
  color: #4d6543;
  background: #edf2e9;
}

.status-pending {
  color: #8b652d;
  background: #faf2e5;
}

.status-processing {
  color: #4e5e7b;
  background: #eef2f8;
}

.portal-shell {
  min-height: 100vh;
  background: #ece7de;
}

.portal-sidebar {
  background: #161613;
  color: #ece7de;
  min-height: 100vh;
  padding: 2rem 1.25rem;
  position: sticky;
  top: 0;
}

.portal-sidebar a {
  display: block;
  color: #bdb6aa;
  text-decoration: none;
  padding: .8rem .9rem;
  margin: .2rem 0;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.portal-sidebar a.active,
.portal-sidebar a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.portal-main {
  padding: 2.5rem;
}

.stat-card {
  background: #fff;
  border: 1px solid rgba(25, 25, 22, .1);
  padding: 1.5rem;
  height: 100%;
}

.stat-card strong {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 500;
}

.table-brand {
  --bs-table-bg: transparent;
}

.table-brand th {
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  font-weight: 700;
}

.progress-steps {
  display: flex;
  gap: 0;
  margin-bottom: 2.2rem;
}

.progress-steps .step {
  flex: 1;
  border-top: 2px solid #cfc8bd;
  padding-top: .8rem;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.progress-steps .step.active {
  border-color: var(--agave-deep);
  font-weight: 700;
}

.upload-zone {
  border: 1px dashed rgba(25, 25, 22, .36);
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, .42);
}

.order-product {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}

.order-product img {
  width: 72px;
  height: 96px;
  object-fit: cover;
}

.mobile-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1025;
  padding: .8rem;
  background: rgba(242, 238, 230, .95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}


.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slide {
  height: 750px;
}

.hero-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 45%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* Dots */
.hero-slider .owl-dots {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5;
}

.hero-slider.owl-theme .owl-dots .owl-dot span {
  width: 9px;
  height: 9px;
  margin: 5px;
  background: rgba(255, 255, 255, .5);
  transition: all .3s ease;
}

.hero-slider.owl-theme .owl-dots .owl-dot.active span {
  width: 28px;
  border-radius: 20px;
  background: #fff;
}


/* Arrow buttons */
.hero-slider .owl-nav {
  margin: 0;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 50px;
  height: 50px;
  border-radius: 50% !important;

  background: rgba(0, 0, 0, 0.35) !important;
  color: #fff !important;
  font-size: 32px !important;

  display: flex !important;
  align-items: center;
  justify-content: center;
}

.hero-slider .owl-nav button.owl-prev {
  left: 25px;
}

.hero-slider .owl-nav button.owl-next {
  right: 25px;
}

.hero-slider .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.7) !important;
}

.hero.hero-no-banner {
  max-height: auto;
  min-height: 230px;
}



.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold)
}

.eyebrow::before {
  content: '';
  width: 42px;
  height: 1px;
  background: currentColor
}

.lead-copy {
  font-size: 1.2rem;
  line-height: 1.82;
  max-width: 760px
}

.btn-angular {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 56px;
  padding: 0 29px;
  border: 1px solid var(--ink);
  border-radius: 0 !important;
  background: var(--ink);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .8rem;
  font-weight: 700;
  transition: .28s ease;
  text-decoration: none;
}

.btn-angular:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px)
}

.btn-angular.outline {
  background: transparent;
  color: var(--ink)
}

.btn-angular.outline:hover {
  background: var(--ink);
  color: var(--white)
}

.detail-grid span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .7rem;
  color: var(--muted);
  margin-bottom: 5px
}

.product-editorial-image {
  position: relative;
  /* height: 760px; */
  overflow: hidden
}


.vertical-caption {
  position: absolute;
  right: 20px;
  top: 25px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: white;
  font-size: .7rem
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 34px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}

.detail-grid>div {
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.detail-grid strong {
  display: block
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line)
}

.feature-item {
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.feature-item:nth-child(2n) {
  border-right: 0
}

.feature-item:nth-last-child(-n+2) {
  border-bottom: 0
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  font-size: 1.65rem;
  margin-bottom: 25px
}

.feature-item h4 {
  font-size: 1.9rem
}

.feature-item p {
  font-size: .95rem;
  color: var(--muted);
  margin: 0
}



/*========================== NEW CSS ====================*/



.origin-quote {
  position: relative;
  max-width: 610px;
  padding: 1.8rem 2rem 1.8rem 3.4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.origin-quote-mark {
  position: absolute;
  top: .8rem;
  left: .4rem;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--brass);
}

.origin-quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.3rem);
  line-height: 1.5;
  color: #525252;
}


.postal-panel {
  position: relative;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 4.5rem);
  color: #fff;
  background: radial-gradient(circle at 80% 10%, rgba(194, 154, 98, .18), transparent 30%), var(--obsidian);
  background-image: url(../images/sky-img.jpg);
  overflow: hidden;
  justify-content: end;
  background-size: cover;
  background-position: center;
}

.postal-panel:before {
  content: '';
  position: absolute;
  background: radial-gradient(circle at 80% 10%, rgba(194, 154, 98, .18), transparent 30%), var(--obsidian);
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.5;
}

.postal-kicker {
  z-index: 1;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: .2em;
  font-family: var(--serif);
}

.postal-number {
  position: absolute;
  top: 1.5rem;
  right: -1rem;
  color: rgba(255, 255, 255, .07);
  font-family: var(--serif);
  font-size: clamp(7rem, 12vw, 12rem);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.06em;
}

.postal-rule {
  width: 110px;
  height: 2px;
  margin-bottom: 1.5rem;
  background: var(--amber);
}

.postal-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  pointer-events: none;
}

.postal-panel p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  color: rgba(255, 255, 255, .72);
}


.land-section {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--obsidian);
  padding: 5rem 0;
}

.land-section:before {
  content: '';
  position: absolute;
  background: radial-gradient(circle at 80% 10%, rgba(194, 154, 98, .18), transparent 30%), var(--obsidian);
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.2;
  z-index: 2;
}

.land-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 10, .08), rgba(12, 12, 10, .38) 62%, rgba(12, 12, 10, .66)),
    url("../images/banner-land-comes.jpg") center / cover no-repeat;
}

.land-content-wrap {
  position: relative;
  z-index: 2;
}

.land-panel {
  padding: clamp(2.2rem, 4.5vw, 2.5rem);
  color: #fff;
  background: rgba(0, 0, 0, .6);
  border: 1px solid rgba(255, 255, 255, .12);
}

.land-panel p {
  color: rgba(255, 255, 255, .68);
}

.land-statement {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}

.land-statement span {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: .9rem;
}

.land-statement strong {
  display: block;
  margin-top: .4rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
}

.tagline {
  color: var(--amber);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.collection-section {
  position: relative;
  background: var(--ivory-soft);
}

.expression-card {
  height: 100%;
}

.expression-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d7cdc0;
}

.expression-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(23, 23, 20, .06);
  pointer-events: none;
}

.expression-image-link img {
  width: 100%;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1), filter .6s ease;
}

.expression-card:hover .expression-image-link img {
  transform: scale(1.025);
}

.expression-index {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
  background: rgba(17, 17, 15, .25);
  font-family: var(--serif);
  font-size: 1rem;
  backdrop-filter: blur(6px);
}

.expression-body {
  padding: 1.7rem 0 .8rem;
  border-top: 3px solid var(--ink);
}

.expression-espadin .expression-body {
  border-color: var(--wine);
}

.expression-cuishe .expression-body {
  border-color: var(--navy);
}

.expression-coyote .expression-body {
  border-color: var(--obsidian);
}

.expression-meta {
  margin-bottom: .35rem;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.expression-body h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.4rem);
  line-height: .9;
}

.expression-notes {
  margin: 1rem 0 0.8rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.expression-notes span {
  padding: 0 .35rem;
  color: var(--brass);
}


.craft-img {
  width: 45%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.craft-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.land-statement-2 strong {
  display: block;
  margin-top: .4rem;
  font-family: var(--serif);
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 500;
  line-height: 1;
  color: var(--amber);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-card {
  position: relative;
  border: 1px solid rgba(201, 162, 74, 0.25);
  background: #cfbea6;
  overflow: hidden;
  z-index: 1;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}

.video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #000;
}

.video-label {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(201, 162, 74, 0.1);
}

.video-label span {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bs-heading-color);
  font-weight: 500;
}

.video-label .vnum {
  color: var(--bs-heading-color);
  font-size: 12px;
  border: 1px solid rgba(201, 162, 74, 0.35);
  background: rgba(201, 162, 74, 0.08);
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: 1px;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: #c9a24a;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold-glow);
}

.story-feature-section {
  background: var(--ivory);
}

.story-feature-title {
  margin-bottom: 0
}

.story-feature-text {
  max-width: 620px;
  margin-bottom: 1rem;
  color: var(--muted);
}

.story-feature-quote {
  position: relative;
  max-width: 620px;
  margin: 2rem 0 1.7rem;
  padding: .2rem 0 .2rem 1.5rem;
  border-left: 2px solid var(--amber);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.2
}

.story-feature-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .35rem 0 .4rem;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .25s ease
}

.story-feature-link:hover {
  color: var(--ink);
  opacity: .6
}

.story-feature-link span {
  font-size: 1rem;
  line-height: 1
}

.story-why {
  max-width: 620px;
  margin-top: 3.5rem
}

.story-why h3 {
  margin: 0 0 1.1rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1
}

.story-why p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75
}

.story-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #000
}

.story-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12)
}

.story-video-control {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: .25s ease
}

.story-video-control:hover {
  background: rgba(255, 255, 255, .22);
  border-color: #fff;
  color: #fff;
  transform: scale(1.05)
}

.story-video-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .18)
}

.story-video-control span {
  display: block;
  color: #fff;
  line-height: 1;
  transform: translateY(-1px)
}

.story-video-control.is-paused .bi-pause-fill::before {
  content: "\f4f4";
}






.responsibility-section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--obsidian);
}

.responsibility-section>.container {
  position: relative;
  z-index: 2;
}

.responsibility-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1rem 5rem 0;
}

.responsibility-content .section-title {
  max-width: 680px;
}

.responsibility-content .lead-copy {
  max-width: 620px;
}

.land-statement-2 strong {
  display: block;
  margin-top: .4rem;
  color: var(--amber);
  font-family: var(--serif);
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 500;
  line-height: 1.3;
}

.craft-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  overflow: hidden;
  background: #000;
  z-index: 1;
}

.craft-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #000;
}

.craft-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.craft-video-control {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: .25s ease;
}

.craft-video-control:hover {
  background: rgba(255, 255, 255, .22);
  border-color: #fff;
  transform: scale(1.05);
}

.craft-video-control:focus {
  outline: none;
}

.craft-video-control i {
  display: block;
  color: #fff;
  font-size: 21px;
  line-height: 1;
  pointer-events: none;
}

.craft-video-control.is-paused i {
  margin-left: 2px;
}




.home-media-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #000;
  overflow: hidden;
}

.media-full-width {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #000;
}

.hero-video-control {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 20;
  width: 46px;
  height: 46px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: .25s ease;
}

.hero-video-control:hover {
  background: rgba(255, 255, 255, .22);
  border-color: #fff;
}

.hero-video-control:focus {
  outline: none;
}

.hero-video-control i {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  pointer-events: none;
}

.hero-video-control.is-paused i {
  margin-left: 2px;
}

.story-feature-section {
  position: relative;
  width: 100%;
}

.story-feature-col {
  display: flex;
}

.story-feature-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  min-height: 650px;
}

.story-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #000;
}

.story-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.story-video-control {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  width: 42px;
  height: 42px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: .25s ease;
}

.story-video-control:hover {
  background: rgba(255, 255, 255, .22);
  border-color: #fff;
}

.story-video-control:focus {
  outline: none;
}

.story-video-control i {
  display: block;
  color: #fff;
  font-size: 21px;
  line-height: 1;
  pointer-events: none;
}

.story-video-control.is-paused i {
  margin-left: 2px;
}

.design-by {
  text-align: right;
  float: right;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.design-by a {
  color: rgba(255, 255, 255, 0.6);
}



@media (min-width: 1400px) {
  .hero-content {
    max-width: 1320px;
  }
}

@media (max-width: 1199.98px) {

  .postal-panel {
    min-height: 520px;
    padding: 2.5rem;
  }

  .postal-kicker {
    font-size: 2rem;
  }

  .postal-number {
    font-size: clamp(6rem, 11vw, 9rem);
  }

  .navbar-nav li a {
    padding-left: .7rem !important;
    padding-right: .7rem !important;
  }

  .land-section {
    padding: 4rem 0;
  }

  .land-panel {
    padding: 2.2rem;
  }


  .expression-body h3 {
    font-size: 2.2rem;
  }

  .expression-notes {
    font-size: .72rem;
    letter-spacing: .06em;
  }


  /* Craft */
  .craft-img {
    width: 48%;
  }


  /* Videos */
  .video-grid {
    gap: 22px;
  }

  .video-label {
    padding: 14px 16px;
  }

  .video-label span {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .story-feature-copy {
    min-height: 620px
  }

  .story-video-wrap {
    min-height: 620px
  }

  .story-why {
    margin-top: 3rem
  }

  .craft-img {
    width: 48%;
  }

  .responsibility-content {
    padding-right: 3rem;
  }

}

@media (max-width: 991.98px) {
  .navbar-nav {
    margin-top: 0;
  }

  .site-header .navbar-collapse {
    background: rgba(17, 17, 15, .96);
    padding: 1rem;
    margin-top: 1rem;
  }

  .site-header.is-scrolled .navbar-collapse {
    background: var(--ivory);
  }

  .section-pad {
    padding: 5rem 0;
  }

  .editorial-img {
    height: auto;
  }

  .portal-sidebar {
    position: relative;
    min-height: auto;
  }

  .portal-main {
    padding: 1.5rem;
  }

  /* Origin quote */
  .origin-quote {
    max-width: 100%;
  }


  /* Why 70470 */
  .postal-panel {
    min-height: 480px;
    margin-top: 20px;
    padding: 2.5rem;
  }

  .postal-kicker {
    font-size: 2rem;
  }

  .postal-number {
    font-size: 8rem;
  }


  /* Land section */
  .land-section {
    padding: 4rem 0;
  }

  .land-image {
    background-position: center;
  }

  .land-panel {
    max-width: 100%;
    margin-left: auto;
    padding: 2rem;
    margin-top: 40px;
  }

  .expression-body {
    padding: 1.4rem 0 .8rem;
  }

  .expression-meta {
    font-size: .76rem;
  }

  .expression-body h3 {
    font-size: 2.2rem;
  }

  .expression-notes {
    font-size: .68rem;
  }

  .craft-img {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 25px;
  }

  .mobile-pt-0 {
    padding-top: 0;
  }

  .craft-img img {
    height: 100%;
    object-fit: cover;
  }


  /* Video grid: 2 columns */
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .video-card video {
    aspect-ratio: 16 / 10;
  }


  .story-feature-col {
    display: block
  }

  .story-feature-copy {
    min-height: auto;
    max-width: 100%;
    justify-content: flex-start;
    padding-right: 0;
    margin-top: 40px;
  }

  .story-feature-text,
  .story-feature-quote,
  .story-why {
    max-width: 100%
  }

  .story-why {
    margin-top: 3rem
  }

  .story-video-wrap {
    min-height: 560px
  }

  .home-media-hero {
    height: 100svh;
  }

  .media-full-width {
    height: 100svh;
  }

  .story-feature-row {
    min-height: auto;
  }

  .story-feature-col {
    min-height: auto;
    display: block;
  }

  .story-feature-copy {
    min-height: auto;
  }

  .story-video-wrap {
    width: 100%;
    height: 480px;
  }

  .responsibility-section {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .craft-img {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    order: 1;
    width: 100%;
    height: 65svh;
    min-height: 520px;
  }

  .responsibility-section>.container {
    order: 2;
  }

  .responsibility-content {
    min-height: auto;
    padding: 5rem 0;
  }

  .responsibility-content .section-title,
  .responsibility-content .lead-copy {
    max-width: 760px;
  }
}

@media (max-width: 767.98px) {

  .hero-slider,
  .hero-slider .owl-stage-outer,
  .hero-slider .owl-stage,
  .hero-slider .owl-item,
  .hero-slide {
    height: 620px;
  }

  .hero-content {
    padding-left: 25px;
    padding-right: 25px;
  }

  .hero-slide::after {
    background: rgba(0, 0, 0, 0.48);
  }

  .hero-slider .owl-nav {
    display: none;
  }

  .hero-bg {
    object-position: center;
  }

  /* Origin quote */
  .origin-quote {
    max-width: 100%;
    padding: 1.5rem 1.2rem 1.5rem 2.8rem;
  }

  .origin-quote-mark {
    top: .7rem;
    left: .2rem;
    font-size: 4rem;
  }

  .origin-quote p {
    font-size: 1.45rem;
    line-height: 1.2;
  }


  /* Why 70470 */
  .postal-panel {
    min-height: 430px;
    padding: 2rem;
    background-position: center;
  }

  .postal-panel::after {
    inset: 12px;
  }

  .postal-kicker {
    font-size: 1.8rem;
    letter-spacing: .12em;
  }

  .postal-number {
    top: 1rem;
    right: -.5rem;
    font-size: 7rem;
  }

  .postal-rule {
    width: 80px;
    margin-bottom: 1.2rem;
  }

  .postal-panel p {
    font-size: .9rem;
    line-height: 1.7;
  }


  /* Land section */
  .land-section {
    padding: 3.5rem 0;
    align-items: flex-end;
  }

  .land-section::before {
    opacity: .35;
  }

  .land-image {
    background:
      linear-gradient(0deg,
        rgba(12, 12, 10, .80) 0%,
        rgba(12, 12, 10, .42) 60%,
        rgba(12, 12, 10, .22) 100%),
      url("../images/banner-land-comes.jpg") center / cover no-repeat;
  }

  .land-content-wrap {
    width: 100%;
  }

  .land-panel {
    width: 100%;
    max-width: 100%;
    padding: 1.7rem;
    background: rgba(0, 0, 0, .65);
  }

  .land-panel p {
    font-size: .9rem;
  }

  .land-statement {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
  }

  .land-statement strong {
    font-size: 2rem;
  }

  .tagline {
    font-size: .6rem;
    letter-spacing: .14em;
  }


  /* Product collection */
  .expression-card {
    margin-bottom: 35px;
  }

  .expression-index {
    top: .8rem;
    right: .8rem;
    min-width: 40px;
    height: 40px;
  }

  .expression-body {
    padding-top: 1.3rem;
  }

  .expression-meta {
    font-size: .75rem;
  }

  .expression-body h3 {
    font-size: 2.2rem;
  }

  .expression-notes {
    margin: .8rem 0 1.2rem;
    font-size: .7rem;
    line-height: 1.8;
  }


  /* Craft / responsibility image */
  .craft-img {
    position: relative;
    width: 100%;
    height: 380px;
    margin-top: 30px;
  }


  /* Small statement */
  .land-statement-2 strong {
    font-size: 1.1rem;
    line-height: 1.4;
  }


  /* Videos - single column */
  .video-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .video-card {
    width: 100%;
  }

  .video-card video {
    aspect-ratio: 16 / 10;
  }

  .video-label {
    padding: 14px 16px;
  }

  .video-label span {
    font-size: 11px;
    letter-spacing: 1.3px;
    line-height: 1.5;
  }

  .video-label .vnum {
    flex-shrink: 0;
    font-size: 10px;
  }

  .video-card:hover {
    transform: none;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content {
    padding-top: 8.5rem;
    padding-bottom: 3.5rem;
  }

  .section-pad {
    padding: 3rem 0;
  }

  .section-pad-sm {
    padding: 2rem 0;
  }

  .site-footer {
    padding: 3rem 0 2rem;
  }

  /* .editorial-img,
  .editorial-img-sm {
    height: 420px;
  } */

  .spec-row {
    grid-template-columns: 110px 1fr;
  }

  .map-placeholder {
    min-height: 360px;
  }

  .mobile-sticky {
    display: block;
  }

  body.has-mobile-sticky {
    padding-bottom: 74px;
  }

  .progress-steps {
    overflow: auto;
  }

  .progress-steps .step {
    min-width: 120px;
  }

  .hero-slider .owl-dots {
    bottom: -8px;
  }

  .site-header .navbar-nav .btn-light-brand {
    padding: .5rem 1.5rem;
    margin: 12px 0 10px 12px;
    width: calc(100% - 24px);
  }

  .detail-grid {
    grid-template-columns: 1fr
  }

  .feature-strip {
    grid-template-columns: 1fr
  }

  .feature-item,
  .feature-item:nth-child(2n),
  .feature-item:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .feature-item:last-child {
    border-bottom: 0
  }

  .story-feature-copy {
    padding-top: 1.5rem;
    margin-top: 20px;
  }

  .story-feature-quote {
    margin: 1.8rem 0 1.5rem;
    padding-left: 1.1rem;
    font-size: 1.5rem;
    line-height: 1.25
  }

  .story-why {
    margin-top: 2.6rem
  }

  .story-why h3 {
    font-size: 2.1rem
  }

  .story-why p {
    font-size: .95rem;
    line-height: 1.7
  }

  .story-video-wrap {
    min-height: 400px;
  }

  .story-video-control {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
    border-color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 12px
  }

  .panorama h2 br {
    display: none;
  }

  .home-media-hero {
    height: 100svh;
  }

  .media-full-width {
    height: 100svh;
  }

  .hero-video-control {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .hero-video-control i {
    font-size: 20px;
  }

  .story-video-wrap {
    height: 480px;
  }



  .story-video-control {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }

  .story-video-control i {
    font-size: 20px;
  }

  .design-by {
    font-size: 12px;
  }

  .craft-img {
    height: 58svh;
    min-height: 450px;
  }

  .responsibility-content {
    padding: 4rem 0;
  }

  .craft-video-control {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }

  .craft-video-control i {
    font-size: 20px;
  }

}

@media (max-width: 575.98px) {
  .site-header .navbar-brand {
    max-width: 80px;
  }


  .site-header.is-scrolled .navbar-brand {
    max-width: 70px;
  }

  .eyebrow {
    font-size: .7rem;
  }

  .origin-quote {
    padding: 1.4rem 1rem 1.4rem 2.5rem;
  }

  .origin-quote-mark {
    font-size: 3.5rem;
  }

  .origin-quote p {
    font-size: 1.3rem;
  }


  /* Why 70470 */
  .postal-panel {
    min-height: 400px;
    padding: 1.6rem;
  }

  .postal-kicker {
    font-size: 1.55rem;
  }

  .postal-number {
    font-size: 5.8rem;
  }

  .postal-panel p {
    font-size: .84rem;
  }


  /* Land */
  .land-section {
    padding: 3rem 0;
  }

  .land-panel {
    padding: 1.4rem;
  }

  .land-panel p {
    font-size: .85rem;
    line-height: 1.7;
  }

  .land-statement span {
    font-size: .78rem;
  }

  .land-statement strong {
    font-size: 1.75rem;
  }

  .expression-body h3 {
    font-size: 2rem;
  }

  .expression-meta {
    font-size: .68rem;
  }

  .expression-notes {
    font-size: .8rem;
    letter-spacing: .04em;
  }


  /* Craft image */
  .craft-img {
    height: 320px;
  }


  /* Videos */
  .video-grid {
    gap: 20px;
  }

  .video-card video {
    aspect-ratio: 16 / 11;
  }

  .video-label {
    padding: 12px 14px;
  }

  .video-label span {
    font-size: 10px;
    letter-spacing: 1px;
  }


  .story-video-wrap {
    min-height: 380px
  }

  .story-feature-quote {
    font-size: 1.4rem
  }

  .story-feature-link {
    font-size: .65rem
  }

  .story-why {
    margin-top: 2.3rem
  }

  .story-video-control {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px
  }

  .home-media-hero {
    height: 105svh;
  }

  .media-full-width {
    height: 105svh;
  }

  .story-video-wrap {
    height: 240px;
    min-height: auto;
  }

  .story-video-control {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
  }

  .design-by {
    font-size: 12px;
    text-align: center;
    width: 100%;
  }

  .craft-img {
    height: 420px;
    min-height: 420px;
  }

  .responsibility-content {
    padding: 1.5rem 0 3rem;
  }

  .craft-video-control {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
  }

  .story-step:last-child {
    padding-bottom: 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content {
    padding-top: 7.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content .btn {
    width: 100%;
  }

  .hero-slider .owl-dots {
    bottom: 2px;
  }

  .footer-brand {
    max-width: 130px;
  }

  .footer-rule {
    text-align: center;
  }
}

@media (max-width: 399.98px) {

  .postal-panel {
    min-height: 370px;
    padding: 1.4rem;
  }

  .postal-kicker {
    font-size: 1.35rem;
  }

  .postal-number {
    font-size: 5rem;
  }

  .expression-body h3 {
    font-size: 2rem;
  }

  .craft-img {
    height: 280px;
  }

  .video-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .lead-copy {
    font-size: 1rem;
  }

  .expression-card {
    margin-bottom: 15px;
  }

  .collection-section {
    padding-bottom: 2rem;
  }

  .story-video-wrap {
    min-height: 370px
  }


  .story-feature-quote {
    font-size: 1.3rem;
    line-height: 1.25
  }

  .story-why h3 {
    font-size: 1.9rem
  }

  .story-why p {
    font-size: .9rem
  }

  .story-video-control {
    width: 36px;
    height: 36px;
    right: 10px;
    bottom: 10px;
    font-size: 11px
  }
}