@font-face {
  font-family: 'Salvetica';
  src: url('salvetica.woff2') format('woff2');
  font-display: swap
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --teal: #0d2b34;
  --teal-2: #0f303a;
  --rose: #8d5e6f;
  --rose-2: #b88a9c;
  --gold: #c6a46e;
  --gold-deep: #a8843f;
  --gold-pale: #e4cfa6;
  --ivory: #faf6ef;
  --ivory-2: #f2ebdf;
  --ink: #2c2722;
  --muted: #7a7268;
  --mark: url('mark.webp');
  --script: 'Salvetica', cursive;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--body);
  font-weight: 300;
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  font-size: 15px
}

body.lock {
  overflow: hidden
}

img {
  max-width: 100%
}

.ic {
  display: block
}

.eyebrow {
  font-family: var(--script);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--gold);
  display: block
}

.serif {
  font-family: var(--display)
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: .005em
}

a {
  color: inherit
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s ease
}

.btn svg {
  transition: transform .25s ease
}

.btn:hover svg {
  transform: translateX(3px)
}

.btn-gold {
  background: var(--gold);
  color: var(--teal)
}

.btn-gold:hover {
  background: var(--gold-pale)
}

.btn-line {
  background: transparent;
  color: var(--gold);
  border-color: rgba(198, 164, 110, .45)
}

.btn-line:hover {
  border-color: var(--gold);
  background: rgba(198, 164, 110, .07)
}

.btn-dark {
  background: transparent;
  color: var(--teal);
  border-color: rgba(13, 43, 52, .28)
}

.btn-dark:hover {
  background: var(--teal);
  color: var(--gold);
  border-color: var(--teal)
}

/* NAV */
nav.site {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 46px;
  transition: padding .3s, background .3s, border-color .3s;
  background: transparent;
  border-bottom: 1px solid transparent
}

nav.site.solid,
nav.site.opaque {
  background: rgba(13, 43, 52, .97);
  border-bottom-color: rgba(198, 164, 110, .16);
  padding: 13px 46px;
  backdrop-filter: blur(8px)
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none
}

.brand .mk {
  width: 40px;
  height: 46px;
  background: var(--mark) center/contain no-repeat;
  transition: all .3s;
  flex-shrink: 0
}

nav.solid .brand .mk,
nav.opaque .brand .mk {
  width: 35px;
  height: 40px
}

.brand-tx {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.brand-tx b {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .18em;
  color: var(--gold)
}

.brand-tx i {
  font-family: var(--script);
  font-style: normal;
  font-size: .95rem;
  color: var(--gold-pale);
  opacity: .75;
  margin-top: 1px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none
}

.nav-links a {
  font-size: .64rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: color .2s
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold)
}

.nav-order {
  color: var(--gold) !important;
  border: 1px solid rgba(198, 164, 110, .4);
  padding: 9px 18px;
  transition: all .2s
}

.nav-order:hover {
  background: var(--gold);
  color: var(--teal) !important
}

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  padding: 4px
}

/* NAV DROPDOWN */
.nav-links li.has-dd {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: -20px
}

.nav-links .dd {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 190px;
  background: rgba(13, 43, 52, .98);
  border: 1px solid rgba(198, 164, 110, .16);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  backdrop-filter: blur(8px);
  z-index: 10
}

.nav-links li.has-dd:hover .dd {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0)
}

.nav-links .dd li {
  width: 100%
}

.nav-links .dd a {
  display: block;
  padding: 10px 22px;
  font-size: .6rem;
  letter-spacing: .14em;
  white-space: nowrap;
  color: rgba(255, 255, 255, .7)
}

.nav-links .dd a:hover {
  color: var(--gold);
  background: rgba(198, 164, 110, .06)
}

.mmenu a.mm-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .5);
  padding: 3px 0;
  margin-top: -4px
}

.mmenu a.mm-sub:hover,
.mmenu a.mm-sub.active {
  color: var(--gold)
}

/* MOBILE MENU */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(13, 43, 52, .99);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s;
  background-image: repeating-linear-gradient(45deg, transparent 0 18px, rgba(198, 164, 110, .04) 18px 19px), repeating-linear-gradient(-45deg, transparent 0 18px, rgba(198, 164, 110, .04) 18px 19px)
}

.mmenu.open {
  opacity: 1;
  visibility: visible;
  transform: none
}

.mmenu .mk {
  width: 54px;
  height: 62px;
  background: var(--mark) center/contain no-repeat;
  margin-bottom: 18px
}

.mmenu a {
  font-family: var(--display);
  font-size: 1.7rem;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  padding: 9px 0;
  transition: color .2s
}

.mmenu a:hover,
.mmenu a.active {
  color: var(--gold)
}

.mmenu .mm-order {
  margin-top: 18px;
  font-family: var(--body);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--gold);
  padding: 14px 34px
}

.mm-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  padding: 6px
}

.mm-social {
  display: flex;
  gap: 14px;
  margin-top: 30px
}

.mm-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(198, 164, 110, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  padding: 0
}

.mm-social a:hover {
  background: var(--gold);
  color: var(--teal)
}

/* HERO (home) */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  overflow: hidden
}

.herring {
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
  background-image: repeating-linear-gradient(45deg, transparent 0 16px, rgba(198, 164, 110, .04) 16px 17px), repeating-linear-gradient(-45deg, transparent 0 16px, rgba(198, 164, 110, .04) 16px 17px)
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(transparent, var(--ivory));
  z-index: 3
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px
}

.hero-mark {
  width: 108px;
  height: 122px;
  margin: 0 auto 30px;
  background: var(--mark) center/contain no-repeat
}

.hero-script {
  font-family: var(--script);
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  color: var(--gold);
  line-height: 1.05;
  margin-bottom: 14px
}

.hero-h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  color: #fff;
  line-height: 1.04;
  margin-bottom: 26px
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-pale)
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, .55);
  font-size: .64rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 44px
}

.hero-meta span {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg)
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.scrolldown {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--gold);
  opacity: .6;
  animation: bob 2.4s ease-in-out infinite
}

@keyframes bob {

  0%,
  100% {
    transform: translate(-50%, 0)
  }

  50% {
    transform: translate(-50%, 7px)
  }
}

/* PAGE HERO (inner) */
.phero {
  position: relative;
  background: var(--teal);
  padding: 170px 24px 92px;
  text-align: center;
  overflow: hidden
}

.phero .herring {
  opacity: .5
}

.phero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto
}

.crumb {
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 20px
}

.crumb a {
  color: var(--gold-pale);
  text-decoration: none
}

.crumb a:hover {
  color: var(--gold)
}

.phero .eyebrow {
  font-family: var(--body);
  font-weight: 400;
  font-size: .7rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold)
}

.phero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  margin: 10px 0 18px;
  font-weight: 400
}

.phero p {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto
}

/* generic section */
.sec {
  padding: 96px 46px
}

.sec-tint {
  background: var(--ivory-2)
}

.sec-narrow {
  max-width: 760px;
  margin: 0 auto;
  text-align: center
}

.sec-narrow .eyebrow {
  color: var(--rose)
}

.sec-narrow h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--teal);
  margin: 12px 0 22px
}

.sec-narrow p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.95
}

.head-c {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px
}

.head-c .eyebrow {
  color: var(--rose)
}

.head-c h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: var(--teal);
  margin: 12px 0 16px
}

.head-c p {
  color: var(--muted)
}

/* ETHOS creds */
.creds {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px
}

.cred {
  padding: 0 38px
}

.cred+.cred {
  border-left: 1px solid rgba(13, 43, 52, .13)
}

.cred b {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--teal);
  line-height: 1
}

.cred span {
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 7px;
  display: block
}

/* OFFERINGS */
.off-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1140px;
  margin: 0 auto
}

.offer {
  background: #fff;
  padding: 46px 40px;
  transition: box-shadow .3s, transform .3s;
  text-decoration: none;
  display: block;
  color: inherit;
  border: 1px solid rgba(13, 43, 52, .07)
}

.sec-tint .offer {
  background: #fff
}

.offer:hover {
  box-shadow: 0 12px 36px rgba(13, 43, 52, .09);
  transform: translateY(-3px)
}

.offer-ic {
  color: var(--gold-deep);
  margin-bottom: 22px
}

.offer-name {
  font-size: 1.42rem;
  color: var(--teal);
  margin-bottom: 12px
}

.offer-desc {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px
}

.offer-more {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px
}

/* SPLIT (image + body) */
.split {
  position: relative;
  background: var(--teal);
  overflow: hidden
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  min-height: 540px
}

.split-grid.rev {
  grid-template-columns: 1fr 1.05fr
}

.split-photo {
  position: relative;
  overflow: hidden;
  min-height: 320px
}

.split-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.split-body {
  padding: 84px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: repeating-linear-gradient(45deg, transparent 0 18px, rgba(198, 164, 110, .03) 18px 19px), repeating-linear-gradient(-45deg, transparent 0 18px, rgba(198, 164, 110, .03) 18px 19px)
}

.split-body .eyebrow {
  color: var(--gold)
}

.split-body h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: #fff;
  margin: 12px 0 20px
}

.split-body p {
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
  margin-bottom: 14px
}

/* feature list (two-col items with hairline) */
.flist {
  list-style: none;
  columns: 2;
  column-gap: 34px;
  margin: 8px 0 30px
}

.flist li {
  font-family: var(--display);
  font-size: 1.12rem;
  color: var(--gold-pale);
  padding: 9px 0;
  border-bottom: 1px solid rgba(198, 164, 110, .16);
  break-inside: avoid
}

.flist.dark li {
  color: var(--teal);
  border-bottom-color: rgba(13, 43, 52, .12)
}

/* TAG GRID (light) */
.tags {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  max-width: 1080px;
  margin: 0 auto
}

.tag {
  background: #fff;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(13, 43, 52, .07);
  transition: box-shadow .25s, transform .25s
}

.sec-tint .tag {
  background: #fff
}

.tag:hover {
  box-shadow: 0 8px 24px rgba(13, 43, 52, .07);
  transform: translateY(-2px)
}

.tag .d {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0
}

.tag span {
  font-family: var(--display);
  font-size: 1.12rem;
  color: var(--teal)
}

/* MINI GALLERY row */
.mgal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto
}

.mgal figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--teal-2)
}

.mgal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block
}

.mgal figure:hover img {
  transform: scale(1.05)
}

.mgal figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 16px 14px;
  background: linear-gradient(transparent, rgba(13, 43, 52, .72));
  color: #fff;
  font-family: var(--display);
  font-size: 1.05rem
}

/* full gallery */
.fgal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto
}

.fgal figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--teal-2)
}

.fgal figure.tall {
  grid-row: span 2;
  aspect-ratio: auto
}

.fgal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block
}

.fgal figure:hover img {
  transform: scale(1.05)
}

.fgal figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(13, 43, 52, .6))
}

.fgal figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-family: var(--display);
  font-size: 1.1rem
}

.fgal figcaption span {
  display: block;
  font-family: var(--body);
  font-size: .55rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-pale)
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto
}

.steps-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px
}

.step {
  background: #fff;
  padding: 38px 30px;
  border: 1px solid rgba(13, 43, 52, .07)
}

.sec-tint .step {
  background: #fff
}

.step b {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 10px
}

.step h3 {
  font-size: 1.12rem;
  color: var(--teal);
  margin-bottom: 8px
}

.step p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.75
}

/* TIMELINE */
.tl {
  max-width: 720px;
  margin: 0 auto;
  border-left: 1px solid rgba(13, 43, 52, .15);
  padding-left: 34px
}

.tl-item {
  position: relative;
  padding-bottom: 38px
}

.tl-item:last-child {
  padding-bottom: 0
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg)
}

.tl-item b {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--teal);
  display: block;
  margin-bottom: 6px
}

.tl-item p {
  color: var(--muted);
  font-size: .92rem
}

/* VALUES */
.vals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto
}

.vals-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1140px
}

.val {
  background: #fff;
  padding: 34px 28px;
  text-align: center;
  border: 1px solid rgba(13, 43, 52, .07)
}

.sec-tint .val {
  background: #fff
}

.val .vc {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(198, 164, 110, .4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  margin: 0 auto 14px
}

.val h3 {
  font-size: 1.05rem;
  color: var(--teal);
  margin-bottom: 6px
}

.val p {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.6
}

/* STORY */
.story-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 76px;
  align-items: center
}

.story-visual {
  position: relative
}

.story-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block
}

.story-visual::before {
  content: '';
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1px solid var(--gold);
  z-index: -1
}

.seal {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  z-index: 3
}

.seal i {
  font-style: normal;
  font-size: .5rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .7
}

.seal b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1
}

.story-text .eyebrow {
  color: var(--rose)
}

.story-text h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  color: var(--teal);
  margin: 12px 0 24px
}

.story-text p {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 18px;
  line-height: 1.9
}

.story-text .pull {
  font-family: var(--script);
  font-size: 2.6rem;
  color: var(--rose);
  line-height: 1.35;
  padding: 10px 0 10px 28px;
  border-left: 2px solid var(--gold);
  margin: 32px 0
}

.signoff {
  margin-top: 26px
}

.signoff-mt {
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.8
}

/* OCCASIONS */
.occ {
  background: var(--rose);
  padding: 90px 46px;
  text-align: center
}

.occ .eyebrow {
  color: var(--ivory);
  opacity: .9
}

.occ h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: #fff;
  margin: 12px 0 28px
}

.occ-flow {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 6px;
  font-family: var(--display);
  font-size: 1.38rem;
  color: rgba(255, 255, 255, .92)
}

.occ-dot {
  color: var(--gold-pale);
  margin: 0 14px
}

.occ-w {
  white-space: nowrap
}

/* VISIT */
.visit-body .eyebrow {
  color: var(--gold)
}

.visit-addr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .8);
  font-size: .84rem;
  margin: 18px 0 26px;
  line-height: 1.6
}

.visit-addr svg {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0
}

.channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.chan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-pale);
  text-decoration: none;
  border: 1px solid rgba(198, 164, 110, .3);
  padding: 10px 16px;
  transition: all .2s
}

.chan:hover {
  border-color: var(--gold);
  background: rgba(198, 164, 110, .08);
  color: #fff
}

.chan svg {
  color: var(--gold)
}

/* CTA band */
.cta {
  background: var(--ivory);
  position: relative;
  padding: 104px 46px;
  text-align: center
}

.cta-dark {
  background: var(--teal)
}

.cta-inner {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.cta-dark .cta-inner .eyebrow {
  color: var(--gold)
}

.cta .eyebrow {
  color: var(--rose)
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal);
  margin: 12px 0 20px
}

.cta-dark h2 {
  color: #fff
}

.cta p {
  color: var(--muted);
  margin-bottom: 36px
}

.cta-dark p {
  color: rgba(255, 255, 255, .6)
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0
}

.cta-contact {
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
  padding-top: 38px;
  margin-top: 46px;
  border-top: 1px solid rgba(13, 43, 52, .1)
}

.cta-dark .cta-contact {
  border-top-color: rgba(198, 164, 110, .18)
}

.cci {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .74rem;
  letter-spacing: .06em
}

.cta-dark .cci {
  color: rgba(255, 255, 255, .7)
}

.cci svg {
  color: var(--gold-deep)
}

.cta-dark .cci svg {
  color: var(--gold)
}

/* CONTACT list */
.clist {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.crow {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(13, 43, 52, .07);
  transition: box-shadow .2s, transform .2s
}

.crow:hover {
  box-shadow: 0 8px 24px rgba(13, 43, 52, .07);
  transform: translateY(-1px)
}

.crow .ci {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(198, 164, 110, .4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0
}

.crow b {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--teal);
  display: block
}

.crow span {
  font-size: .78rem;
  color: var(--muted)
}

.crow .go {
  margin-left: auto;
  color: var(--gold-deep)
}

/* FOOTER */
footer {
  background: var(--teal-2);
  padding: 70px 46px 30px;
  color: rgba(255, 255, 255, .5)
}

.f-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr .8fr .9fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.f-brand img {
  height: 84px;
  margin-bottom: 8px
}

.f-about {
  font-size: .78rem;
  line-height: 1.9;
  max-width: 280px
}

.f-social {
  display: flex;
  gap: 12px;
  margin-top: 16px
}

.f-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(198, 164, 110, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all .2s
}

.f-social a:hover {
  background: var(--gold);
  color: var(--teal)
}

.f-col h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px
}

.f-col ul {
  list-style: none
}

.f-col li {
  margin-bottom: 10px
}

.f-col a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s
}

.f-col a:hover {
  color: rgba(255, 255, 255, .88)
}

.f-bottom {
  max-width: 1140px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: .66rem;
  letter-spacing: .06em
}

.f-bottom .f-copy {
  flex: 1;
  text-align: left
}

.f-bottom .f-credit {
  flex: 1;
  text-align: center
}

.f-bottom .f-sig {
  flex: 1;
  text-align: right
}

.f-addr {
  max-width: 1140px;
  margin: 14px auto 0;
  text-align: center;
  font-size: .62rem;
  letter-spacing: .04em;
  color: #b8d0d2
}

.f-credit a {
  color: var(--gold)
}

.f-sig {
  font-family: var(--script);
  font-size: 1.05rem;
  color: #b8d0d2
}

.f-map-frame {
  width: 200%;
  max-width: 360px;
  height: 300px;
  margin: 0 auto;
  border: 1px solid rgba(198, 164, 110, .3);
  background: rgba(255, 255, 255, .03);
  overflow: hidden
}

.f-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto
}

.faq-item {
  border-bottom: 1px solid rgba(13, 43, 52, .12)
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.12rem;
  color: var(--teal)
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary::after {
  content: '+';
  font-family: var(--body);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold-deep);
  flex-shrink: 0;
  transition: transform .25s ease
}

.faq-item[open] summary::after {
  content: '−'
}

.faq-item p {
  padding: 0 4px 24px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.85
}

.rv {
  opacity: 1
}

.js .rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease
}

.js .rv.in {
  opacity: 1;
  transform: none
}

@media(max-width:1024px) {

  nav.site,
  nav.site.solid,
  nav.site.opaque {
    padding: 15px 22px
  }

  .nav-links {
    display: none
  }

  .burger {
    display: block
  }

  .off-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .split-grid,
  .split-grid.rev,
  .story-inner {
    grid-template-columns: 1fr
  }

  .split-photo {
    min-height: 300px
  }

  .split-body {
    padding: 60px 40px
  }

  .story-visual {
    max-width: 380px;
    margin: 0 auto 24px;
    width: 100%
  }

  .mgal {
    grid-template-columns: repeat(2, 1fr)
  }

  .fgal {
    grid-template-columns: repeat(2, 1fr)
  }

  .fgal figure.tall {
    grid-row: span 1;
    aspect-ratio: 4/5
  }

  .steps,
  .vals,
  .vals-4,
  .steps-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .f-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px
  }
}

@media(max-width:560px) {

  .sec,
  .occ,
  .cta {
    padding-left: 20px;
    padding-right: 20px
  }

  .split-body {
    padding: 48px 24px
  }

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

  .cred {
    padding: 0 22px
  }

  .cred+.cred {
    border-left: 0
  }

  .creds {
    gap: 24px
  }

  .flist {
    columns: 1
  }

  .occ-flow {
    font-size: 1.2rem
  }

  .mgal,
  .fgal {
    grid-template-columns: 1fr
  }

  .steps,
  .vals,
  .vals-4,
  .steps-3,
  .tags {
    grid-template-columns: 1fr
  }

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

  .cta-contact {
    gap: 24px
  }

  .phero {
    padding: 140px 20px 70px
  }
}

@media(max-width:768px) {
  .f-bottom {
    flex-direction: column;
    text-align: center
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important
  }

  .js .rv {
    opacity: 1;
    transform: none
  }
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
  transition: transform .3s ease;
}

.wa-float:hover {
  transform: scale(1.1)
}

.wa-float svg {
  width: 28px;
  height: 28px
}

@media(max-width:560px) {
  .wa-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px
  }
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #ccc;
  font-size: 13px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 10000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-bar a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-bar button {
  background: var(--gold);
  color: #1a1a2e;
  border: none;
  padding: 6px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.cookie-bar button:hover {
  opacity: 0.9;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(13, 43, 52, .07);
  display: flex;
  flex-direction: column;
  overflow: hidden
}

.blog-card .bimg {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--teal-2)
}

.blog-card .bimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease
}

.blog-card:hover .bimg img {
  transform: scale(1.05)
}

.blog-card .bbody {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.blog-card .bdate {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep)
}

.blog-card h3 {
  font-size: 1.25rem;
  color: var(--teal)
}

.blog-card p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  flex: 1
}

/* FEATURED BLOG POST (blog index) */
.blog-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(13, 43, 52, .07);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .3s, transform .3s
}

.blog-feature:hover {
  box-shadow: 0 16px 40px rgba(13, 43, 52, .1);
  transform: translateY(-3px)
}

.blog-feature .bf-img {
  position: relative;
  overflow: hidden;
  min-height: 360px
}

.blog-feature .bf-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.blog-feature:hover .bf-img img {
  transform: scale(1.05)
}

.blog-feature .bf-body {
  padding: 50px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.blog-feature .bf-tag {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px
}

.blog-feature h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  color: var(--teal);
  margin-bottom: 16px
}

.blog-feature p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.85;
  margin-bottom: 24px
}

.blog-feature .bf-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px
}

.blog-feature .bf-more {
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.blog-more-note {
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
  margin: 40px auto 0;
  max-width: 460px
}

@media(max-width:900px) {
  .blog-feature {
    grid-template-columns: 1fr
  }

  .blog-feature .bf-img {
    min-height: 260px
  }

  .blog-feature .bf-body {
    padding: 40px 30px
  }
}

/* ARTICLE (blog post) */
.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55)
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px
}

.article-meta svg {
  color: var(--gold)
}

.article-cover {
  max-width: 460px;
  margin: -70px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 3
}

.article-cover figure {
  position: relative
}

.article-cover figure::before {
  content: '';
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1px solid var(--gold);
  z-index: -1
}

.article-cover img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  box-shadow: 0 24px 50px rgba(13, 43, 52, .22)
}

.article-cover figcaption {
  margin-top: 26px;
  text-align: center;
  font-size: .8rem;
  font-style: italic;
  color: var(--muted)
}

.article-body {
  max-width: 860px;
  margin: 0 auto
}

.article-body p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.95;
  margin-bottom: 22px
}

.article-body h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--teal);
  margin-bottom: 22px
}

.article-body strong {
  color: var(--teal)
}

.article-body .pull {
  font-family: var(--script);
  font-size: 2rem;
  color: var(--rose);
  line-height: 1.4;
  padding: 6px 0 6px 26px;
  border-left: 2px solid var(--gold);
  margin: 34px 0
}

.article-body .note {
  background: #fff;
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin: 34px 0
}

.article-body .note b {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--teal);
  margin-bottom: 8px
}

.article-body .note p {
  margin-bottom: 0;
  font-size: .92rem;
  color: var(--muted)
}

.sec-tint .article-body .note {
  background: var(--ivory)
}

.article-body .flist {
  margin-top: 10px
}

.article-author {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 860px;
  margin: 8px auto 0;
  padding-top: 36px;
  border-top: 1px solid rgba(13, 43, 52, .1)
}

.article-author img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  flex-shrink: 0
}

.article-author b {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--teal)
}

.article-author span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6
}

.article-author a {
  color: var(--gold-deep);
  text-decoration: none
}

.blog-post .head-c,
.blog-post .faq {
  max-width: 860px
}

.blog-post .vals strong {
  color: var(--gold-deep)
}

@media(max-width:640px) {
  .article-cover {
    max-width: 300px;
    margin-top: -50px
  }

  .article-author {
    flex-direction: column;
    text-align: center
  }
}