:root {
  --cream: #fbf5f1;
  --cream-2: #f5ebe4;
  --paper: #fffdfb;
  --ink: #3a302c;
  --ink-soft: #70625b;
  --ink-faint: #9b8d86;
  --gold: #b89054;
  --gold-deep: #8e6630;
  --gold-soft: #d8b982;
  --line: #eadfd8;
  --line-gold: rgba(184, 144, 84, .45);
  --rose-100: #ead4ce;
  --rose-700: #8f5f58;
  --rose-950: #3b2421;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", Arial, sans-serif;
  --script: "Pinyon Script", cursive;
  --gut: clamp(20px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

body.A {
  background: var(--cream);
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

.wrap {
  width: min(1120px, calc(100% - (var(--gut) * 2)));
  margin-inline: auto;
}

.wrap-wide {
  width: min(1320px, calc(100% - (var(--gut) * 2)));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold-deep);
  color: #fff;
}

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

.btn-ghost {
  border-color: var(--line-gold);
  color: var(--gold-deep);
  background: rgba(255, 255, 255, .28);
}

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

.eyebrow {
  display: inline-flex;
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow.center {
  justify-content: center;
}

.ph {
  position: relative;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 25% 18%, rgba(216, 185, 130, .45), transparent 30%),
    linear-gradient(135deg, #d9bbb2, #f1e4dc 48%, #b99076);
}

.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .48);
  color: rgba(58, 48, 44, .52);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  text-align: center;
}

img.ph::after {
  content: none;
}

.em {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.em-fallback {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  background: rgba(255, 255, 255, .3);
}

.wm-text {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .08s;
}

.d2 {
  transition-delay: .16s;
}

.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 22px 0;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}

.hdr.solid {
  background: rgba(251, 245, 241, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 14px 0;
}

.hdr .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand .custom-logo,
.drawer .custom-logo,
.footA .custom-logo {
  width: auto;
  height: 46px;
  max-width: 220px;
}

.hdr.solid .brand .em {
  width: 40px;
  height: 40px;
}

.brand .wm {
  width: auto;
  height: 24px;
  opacity: .95;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav li {
  display: contents;
}

.nav a {
  position: relative;
  padding: 6px 0;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: .04em;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s;
}

.nav a:hover {
  color: var(--gold-deep);
}

.nav a:hover::after {
  width: 100%;
}

.hdr-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hdr-phone {
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: .03em;
  white-space: nowrap;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding: 28px var(--gut);
  background: var(--cream);
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.6, 0, .2, 1);
}

.drawer.open {
  transform: none;
}

.drawer .dtop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer .dclose {
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 40px;
  padding: 0;
  list-style: none;
}

.drawer nav li {
  display: contents;
}

.drawer nav a {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
}

.drawer-booking {
  margin-top: 36px;
}

.heroA {
  position: relative;
  padding: 160px 0 90px;
}

.heroA .grid,
.introA .grid,
.appA .grid,
.infoA .grid {
  display: grid;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.heroA .grid {
  grid-template-columns: 1.05fr .95fr;
}

.heroA .loc {
  margin-bottom: 26px;
  color: var(--gold-deep);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.heroA h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .95;
}

.heroA h1 em {
  color: var(--rose-700);
  font-style: italic;
}

.heroA .lede {
  max-width: 30em;
  margin: 30px 0 38px;
  color: var(--ink-soft);
  font-size: 19px;
}

.heroA .cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.heroA .figure {
  position: relative;
}

.heroA .figure .ph {
  aspect-ratio: 4 / 5;
  border-radius: 300px 300px 14px 14px;
}

.heroA .figure .badge {
  position: absolute;
  bottom: -26px;
  left: -26px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 24px 60px -30px rgba(58, 48, 44, .4);
}

.heroA .figure .badge .em {
  width: 50px;
  height: 50px;
}

.heroA .figure .badge .t {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
}

.heroA .figure .badge .s {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .06em;
}

.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
}

.bandA {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.mi {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-right: 34px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  opacity: .86;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.introA,
.appA,
.giftA,
.infoA {
  padding: clamp(70px, 9vw, 120px) 0;
}

.introA {
  padding: clamp(80px, 11vw, 150px) 0;
}

.introA .grid {
  grid-template-columns: .9fr 1.1fr;
}

.introA .ph {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
}

.introA h2,
.servA .head h2,
.appA h2,
.revA h2,
.giftA h2,
.infoA h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.introA h2 {
  margin: 22px 0 26px;
  font-size: clamp(34px, 4.6vw, 60px);
}

.introA p,
.appA p,
.giftA p {
  max-width: 34em;
  margin-bottom: 20px;
  color: var(--ink-soft);
}

.introA .sign {
  margin-top: 14px;
  color: var(--gold-deep);
  font-family: var(--script);
  font-size: 52px;
  line-height: .8;
}

.servA {
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.servA .head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

.servA .head h2 {
  max-width: 14ch;
  margin-top: 16px;
  font-size: clamp(34px, 4.8vw, 62px);
}

.sgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.scard {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  gap: 14px;
  padding: 40px 34px;
  background: var(--paper);
  transition: background .4s, transform .4s;
}

.scard:hover {
  background: var(--cream);
}

.scard .num {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .18em;
}

.scard h3 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.1;
}

.scard p {
  flex: 1;
  color: var(--ink-soft);
  font-size: 15.5px;
}

.scard .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-deep);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: gap .3s;
}

.scard:hover .more {
  gap: 14px;
}

.appA .grid,
.infoA .grid {
  grid-template-columns: 1fr 1fr;
}

.appA h2 {
  margin: 20px 0 24px;
  font-size: clamp(32px, 4.4vw, 56px);
}

.vlist {
  display: flex;
  flex-direction: column;
  margin-top: 42px;
}

.vrow {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.vrow:last-child {
  border-bottom: 1px solid var(--line);
}

.vrow .vi {
  min-width: 46px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
}

.vrow h4 {
  margin-bottom: 6px;
  font-size: 21px;
  font-weight: 500;
}

.vrow p {
  font-size: 15px;
}

.appA .figwrap {
  position: relative;
}

.appA .ph {
  aspect-ratio: 5 / 6;
  border-radius: 16px;
}

.appA .ph.small {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 48%;
  aspect-ratio: 1;
  border: 8px solid var(--cream);
  border-radius: 14px;
}

.revA {
  padding: clamp(80px, 10vw, 130px) 0;
  border-top: 1px solid var(--line);
  background: var(--cream-2);
}

.revA .top {
  margin-bottom: 56px;
  text-align: center;
}

.revA h2 {
  margin-top: 14px;
  font-size: clamp(34px, 4.8vw, 62px);
}

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

.rcard {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.rcard p {
  flex: 1;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.45;
}

.rcard .who {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.rcard .who .av {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rose-100);
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 18px;
}

.rcard .who b {
  font-weight: 500;
}

.rcard .who span span {
  display: block;
  color: var(--ink-faint);
  font-size: 12.5px;
}

.giftA .box {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px);
  border-radius: 24px;
  background: var(--rose-100);
}

.giftA .box .em {
  position: absolute;
  right: -60px;
  top: 50%;
  width: 380px;
  height: 380px;
  transform: translateY(-50%);
  opacity: .16;
}

.giftA h2 {
  position: relative;
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 50px);
}

.giftA p {
  position: relative;
  margin: 18px 0 30px;
  color: var(--rose-700);
}

.infoA {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.infoA h2 {
  margin-top: 16px;
  margin-bottom: 22px;
  font-size: clamp(30px, 3.8vw, 46px);
}

.infoA .note {
  max-width: 40em;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 15.5px;
}

.infoA .note small {
  color: var(--ink-faint);
  font-style: italic;
}

.cinfo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cinfo .row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.cinfo .row .k {
  padding-top: 2px;
  color: var(--gold-deep);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hours-title {
  margin: 34px 0 14px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.hours {
  color: var(--ink-soft);
  font-size: 14.5px;
}

.hours .h {
  display: flex;
  max-width: 340px;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
  border-bottom: 1px dotted var(--line);
}

.hours .h.off {
  color: var(--ink-faint);
}

.footA {
  padding: clamp(60px, 8vw, 100px) 0 36px;
  background: var(--rose-950);
  color: #eadfda;
}

.footA .em {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.footA .em-fallback {
  border-color: rgba(255, 255, 255, .22);
  color: var(--gold-soft);
}

.footA .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footA h4 {
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.footA a,
.footA p {
  color: #d8c7c1;
  font-size: 15px;
  line-height: 2.1;
}

.footA ul,
.footA li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footA a:hover {
  color: var(--gold-soft);
}

.footA .big {
  margin-bottom: 30px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.footA .big em {
  color: var(--gold-soft);
  font-style: italic;
}

.footbot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #b7a39c;
  font-size: 12.5px;
}

.default-page {
  padding: 150px 0 90px;
}

.default-page h1 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.elementor-front-page .llc-elementor-section {
  padding-inline: var(--gut);
}

.elementor-front-page .elementor-section .elementor-container {
  max-width: 1120px;
}

.elementor-front-page .heroA .elementor-container,
.elementor-front-page .servA .elementor-container,
.elementor-front-page .footA .elementor-container {
  max-width: 1320px;
}

.elementor-front-page .elementor-widget-heading h1,
.elementor-front-page .elementor-widget-heading h2,
.elementor-front-page .elementor-widget-heading h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
}

.elementor-front-page .llc-hero-title h1 {
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: .95;
}

.elementor-front-page .llc-hero-title em,
.elementor-front-page .llc-footer-title em {
  color: var(--gold-soft);
  font-style: italic;
}

.elementor-front-page .heroA .llc-hero-title em {
  color: var(--rose-700);
}

.elementor-front-page .llc-section-title h2 {
  font-size: clamp(34px, 4.8vw, 62px);
}

.elementor-front-page .llc-card-title h3 {
  margin-top: 22px;
  color: var(--gold-deep);
  font-size: 24px;
  font-weight: 500;
}

.elementor-front-page .elementor-widget-text-editor,
.elementor-front-page .elementor-widget-text-editor p {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

.elementor-front-page .loc .elementor-widget-container,
.elementor-front-page .eyebrow .elementor-widget-container {
  color: var(--gold-deep);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.elementor-front-page .lede .elementor-widget-container {
  max-width: 30em;
  color: var(--ink-soft);
  font-size: 19px;
}

.elementor-front-page .sign .elementor-heading-title {
  color: var(--gold-deep);
  font-family: var(--script);
  font-size: 52px;
}

.elementor-front-page .elementor-widget-button .elementor-button {
  border-radius: 999px;
  padding: 14px 24px;
  background: var(--gold-deep);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.elementor-front-page .btn-ghost .elementor-button {
  border: 1px solid var(--line-gold);
  background: transparent;
  color: var(--gold-deep);
}

.elementor-front-page .llc-placeholder-image .elementor-widget-container {
  min-height: 420px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 25% 18%, rgba(216, 185, 130, .45), transparent 30%),
    linear-gradient(135deg, #d9bbb2, #f1e4dc 48%, #b99076);
}

.elementor-front-page .heroA .llc-placeholder-image .elementor-widget-container {
  min-height: 560px;
  border-radius: 300px 300px 14px 14px;
}

.elementor-front-page .servA .elementor-column,
.elementor-front-page .revA .elementor-column,
.elementor-front-page .infoA .elementor-column {
  border: 1px solid var(--line);
  background: var(--paper);
}

.elementor-front-page .servA .elementor-widget,
.elementor-front-page .revA .elementor-widget,
.elementor-front-page .infoA .elementor-widget {
  padding-inline: clamp(8px, 2vw, 22px);
}

.elementor-front-page .footA .llc-footer-title .elementor-heading-title {
  color: #fff;
  font-size: clamp(40px, 6vw, 76px);
}

.elementor-front-page .footA .elementor-widget-text-editor,
.elementor-front-page .footA .elementor-widget-text-editor p {
  color: #d8c7c1;
}

@media (max-width: 980px) {
  .nav,
  .hdr-phone {
    display: none;
  }

  .burger {
    display: flex;
  }

  .heroA {
    padding-top: 130px;
  }

  .heroA .grid,
  .introA .grid,
  .appA .grid,
  .infoA .grid,
  .giftA .box {
    grid-template-columns: 1fr;
  }

  .heroA .figure {
    order: -1;
  }

  .heroA .figure .badge {
    left: 16px;
  }

  .sgrid,
  .rgrid {
    grid-template-columns: 1fr 1fr;
  }

  .giftA .box .em {
    display: none;
  }
}

@media (max-width: 620px) {
  .wrap,
  .wrap-wide {
    width: min(100% - 36px, 1120px);
  }

  .btn {
    width: 100%;
  }

  .hdr .btn {
    display: none;
  }

  .wm-text {
    font-size: 21px;
  }

  .heroA .figure .badge {
    position: static;
    margin-top: 18px;
  }

  .sgrid,
  .rgrid,
  .footA .grid {
    grid-template-columns: 1fr;
  }

  .servA .head {
    flex-direction: column;
    align-items: flex-start;
  }

  .appA .ph.small {
    display: none;
  }

  .cinfo .row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hours .h {
    max-width: none;
  }
}
