/* ───────────────────────────────────────────────
   Luna Marina — Brochure Theme
   Palette matches investor brochure exactly.
─────────────────────────────────────────────── */

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/InstrumentSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/InstrumentSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #F4EFE6;
  --cream-soft: #ECE4D4;
  --ink: #1F1B14;
  --ink-soft: #4A4338;
  --ink-mute: #7A715F;
  --terra: #A8593A;
  --terra-dark: #8C4830;
  --gold: #B8895A;
  --wood: #7C5A3A;
  --line: #C9BFA8;
  --line-soft: #DDD3BD;

  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans:  "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1240px;
  --pad: clamp(20px, 4vw, 56px);

  --radius: 4px;
  --shadow: 0 8px 30px rgba(31, 27, 20, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 27, 20, 0.14);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--terra); text-decoration: none; transition: opacity .2s var(--ease); }
a:hover { opacity: .75; }
em { font-style: italic; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ───── Announcement bar ───── */
.announce {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: .02em;
  padding: 10px 0;
  font-family: var(--sans);
}
.announce .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.announce a { color: var(--gold); font-weight: 500; }
.announce .dot {
  width: 7px; height: 7px;
  background: var(--terra);
  border-radius: 50%;
  animation: pulse 2s infinite var(--ease);
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .5; transform: scale(1.3); }
}

/* ───── Header ───── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 230, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line-soft);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
}
.brand:hover { opacity: 1; }
.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--terra);
}
.brand-word {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .01em;
}
.brand-word em { color: var(--terra); }
.brand-light, .brand-light .brand-word { color: var(--cream); }
.brand-light .brand-mark { color: var(--gold); }
.brand-light .brand-word em { color: var(--gold); }

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.nav a {
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--ink); opacity: 1; }
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 20px var(--pad) 28px;
  gap: 18px;
  border-top: 1px solid var(--line-soft);
  background: var(--cream);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 18px; color: var(--ink); font-family: var(--serif); }
.mobile-nav .btn { align-self: flex-start; margin-top: 6px; }

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn-primary {
  background: var(--terra);
  color: var(--cream);
}
.btn-primary:hover { background: var(--terra-dark); opacity: 1; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244,239,230,.5);
}
.btn-ghost:hover { background: rgba(244,239,230,.1); opacity: 1; }
.btn-cream {
  background: var(--cream);
  color: var(--ink);
}
.btn-cream:hover { background: #fff; opacity: 1; transform: translateY(-1px); }
.btn-block { width: 100%; }

/* ───── Hero ───── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 8vw, 100px) 0 clamp(48px, 8vw, 96px);
  overflow: hidden;
  color: var(--cream);
}
.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 30% center;
}
.hero-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31,27,20,.35) 0%, rgba(31,27,20,.25) 30%, rgba(31,27,20,.20) 50%, rgba(31,27,20,.65) 92%, rgba(31,27,20,.78) 100%),
    linear-gradient(90deg, rgba(31,27,20,.78) 0%, rgba(31,27,20,.55) 30%, rgba(31,27,20,.2) 60%, rgba(31,27,20,0) 90%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .9;
  margin-bottom: 28px;
}
.hero-eyebrow .line { width: 36px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 1.02;
  margin: 0 0 24px;
  letter-spacing: -.01em;
  color: var(--cream);
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0,0,0,.45), 0 1px 2px rgba(0,0,0,.35);
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 540px;
  margin: 0 0 36px;
  color: rgba(244,239,230,.95);
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(244,239,230,.2);
  max-width: 760px;
}
.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-num {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--gold);
  line-height: 1;
}
.meta-lbl {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,239,230,.7);
}

.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 36px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .8;
}
.cue-line {
  width: 1px;
  height: 50px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.cue-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, var(--cream), transparent);
  animation: cue 2.6s infinite var(--ease);
}
@keyframes cue {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ───── Strip (thesis quote) ───── */
.strip {
  background: var(--cream-soft);
  padding: clamp(56px, 9vw, 110px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.strip-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.strip-quote {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.strip-quote em { color: var(--terra); }
.strip-side p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.7;
}
.strip-side strong { color: var(--ink); font-weight: 500; }

/* ───── Section base ───── */
.section {
  padding: clamp(72px, 10vw, 140px) 0;
}
.section-tinted {
  background: var(--cream-soft);
}
.section-head {
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 18px;
  font-weight: 500;
}
.kicker-light { color: var(--gold); }
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.section-title em { color: var(--terra); font-style: italic; }
.section-lede {
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ───── Two-column story ───── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.col-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.col-text p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 4.5em;
  float: left;
  line-height: .9;
  padding: 6px 14px 0 0;
  color: var(--terra);
}
.story-tags {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.story-tags li {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
}
.col-img img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ───── Full bleed image strip ───── */
.bleed {
  width: 100%;
  height: clamp(320px, 60vh, 600px);
  overflow: hidden;
}
.bleed img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ───── Rooms ───── */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.room-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.room-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.room-card:hover .room-img img { transform: scale(1.05); }
.room-body { padding: 28px 26px 30px; }
.room-meta {
  display: flex; gap: 12px; align-items: center;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.room-meta .dot {
  width: 3px; height: 3px;
  background: var(--terra);
  border-radius: 50%;
}
.room-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 10px;
  color: var(--ink);
}
.room-body p {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.room-price {
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--ink-mute);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.room-price strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  color: var(--terra);
}
.rooms-foot {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
}

/* ───── Festival ───── */
.festival {
  position: relative;
  padding: clamp(80px, 12vw, 180px) 0;
  color: var(--cream);
  overflow: hidden;
}
.festival-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.festival-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.festival-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31,27,20,.55) 0%, rgba(31,27,20,.65) 50%, rgba(31,27,20,.85) 100%);
}
.festival-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1080px;
}
.festival-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  margin: 12px 0 18px;
  color: var(--cream);
  letter-spacing: -.01em;
}
.festival-title em { color: var(--gold); font-style: italic; }
.festival-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 680px;
  margin: 0 auto 56px;
  color: rgba(244,239,230,.85);
}
.festival-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
  text-align: left;
}
.fest-block {
  padding: 30px 28px;
  border: 1px solid rgba(244,239,230,.2);
  background: rgba(31,27,20,.25);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
}
.fest-num {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.fest-lbl {
  display: block;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,239,230,.7);
  margin-bottom: 16px;
}
.fest-block p {
  margin: 0;
  font-size: 14px;
  color: rgba(244,239,230,.85);
  line-height: 1.55;
}
.fest-note {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,239,230,.6);
}

/* ───── Location ───── */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
.loc-text p { font-size: 17px; color: var(--ink-soft); margin: 0 0 24px; line-height: 1.7; }
.loc-list {
  margin: 0;
  display: grid;
  gap: 14px;
}
.loc-list > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}
.loc-list > div:last-child { border-bottom: 1px solid var(--line-soft); }
.loc-list dt {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.loc-list dd {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}
.link-arrow {
  display: inline-block;
  margin-top: 28px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 2px;
  font-weight: 500;
}
.loc-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.loc-map img { width: 100%; height: 100%; object-fit: cover; }
.loc-pin {
  position: absolute;
  top: 30%;
  left: 24%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  padding: 6px 12px 6px 8px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.pin-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--terra);
  box-shadow: 0 0 0 4px rgba(168, 89, 58, .25);
  animation: pulse 2s infinite var(--ease);
}

/* ───── Waitlist ───── */
.waitlist {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(72px, 10vw, 140px) 0;
}
.waitlist-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}
.waitlist-left .kicker { color: var(--gold); }
.waitlist-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.05;
  margin: 12px 0 24px;
  color: var(--cream);
  letter-spacing: -.01em;
}
.waitlist-title em { color: var(--gold); font-style: italic; }
.waitlist-lede {
  font-size: 17px;
  color: rgba(244,239,230,.85);
  margin: 0 0 32px;
  line-height: 1.6;
}
.waitlist-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.waitlist-benefits li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(244,239,230,.85);
}
.check {
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}
.waitlist-social {
  padding-top: 24px;
  border-top: 1px solid rgba(244,239,230,.15);
  font-size: 13px;
  color: rgba(244,239,230,.6);
  letter-spacing: .05em;
}
.waitlist-social strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin: 0 4px;
}

/* form */
.waitlist-form {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  width: 100%;
  transition: border-color .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--terra);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 24px;
  font-size: 13px;
  color: var(--ink-soft);
}
.field-check input { width: auto; margin-top: 3px; flex-shrink: 0; }
.field-check label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
.form-status {
  margin: 16px 0 0;
  font-size: 14px;
  text-align: center;
  min-height: 22px;
}
.form-status.success { color: #2e6b2a; }
.form-status.error { color: #a33223; }

#submitBtn { position: relative; }
#submitBtn .btn-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(244,239,230,.4);
  border-top-color: var(--cream);
  border-radius: 50%;
  display: none;
  animation: spin .8s linear infinite;
}
#submitBtn.loading .btn-spinner { display: inline-block; }
#submitBtn.loading { pointer-events: none; opacity: .7; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ───── Amenities ───── */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.amen {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.amen-num {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--terra);
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.amen h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 8px;
}
.amen p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ───── Bleed split ───── */
.bleed-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--cream-soft);
}
.bleed-split > div:first-child {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.bleed-split img { width: 100%; height: 100%; object-fit: cover; }
.bleed-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 90px);
}
.bleed-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  margin: 0 0 18px;
  text-wrap: balance;
}
.bleed-heading em { color: var(--terra); font-style: italic; }
.bleed-text p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 480px;
  line-height: 1.65;
}

/* ───── Contact / FAQ ───── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.faq details {
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
  cursor: pointer;
}
.faq summary {
  font-family: var(--serif);
  font-size: 20px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 22px;
  color: var(--terra);
  transition: transform .25s var(--ease);
  font-weight: 300;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 60ch;
}
.contact-side { display: grid; gap: 18px; }
.contact-card {
  padding: 28px 26px;
  background: var(--cream-soft);
  border-radius: var(--radius);
  border-left: 3px solid var(--terra);
}
.contact-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 12px;
}
.contact-card p { margin: 0 0 6px; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.contact-card a { color: var(--terra); }
.contact-card-dark {
  background: var(--ink);
  color: var(--cream);
  border-left-color: var(--gold);
}
.contact-card-dark h4 { color: var(--cream); }
.contact-card-dark p { color: rgba(244,239,230,.75); }
.contact-card-dark a { color: var(--gold); }

/* ───── Footer ───── */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,239,230,.15);
}
.footer-grid h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-grid a {
  display: block;
  color: rgba(244,239,230,.7);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .2s var(--ease);
}
.footer-grid a:hover { color: var(--cream); opacity: 1; }
.footer-tag {
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(244,239,230,.55);
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 12px;
  letter-spacing: .05em;
  color: rgba(244,239,230,.5);
}
.footer-bottom .footer-meta { font-style: italic; }

/* ───── Reveal on scroll ───── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ───── Responsive ───── */
@media (max-width: 960px) {
  .nav { display: none; }
  .header-row > .btn { display: none; }
  .nav-toggle { display: flex; }

  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .strip-grid, .two-col, .loc-grid, .waitlist-wrap, .contact-grid { grid-template-columns: 1fr; }
  .col-text p:first-child::first-letter { font-size: 3.5em; padding: 4px 10px 0 0; }
  .col-img img { aspect-ratio: 4/3; }
  .room-grid { grid-template-columns: 1fr; gap: 20px; }
  .festival-grid { grid-template-columns: 1fr; gap: 20px; }
  .loc-list > div { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; }
  .amen-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .bleed-split { grid-template-columns: 1fr; }
  .bleed-split > div:first-child { aspect-ratio: 16/10; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 560px) {
  .hero { min-height: 86vh; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .amen-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .strip-quote { font-size: 24px; }
  .scroll-cue { display: none; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   FESTIVAL MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: flex-start; justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.modal[aria-hidden="false"] { display: flex; }
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(31, 27, 20, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: modalFade .25s ease;
}
.modal-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: var(--cream);
  border-radius: 14px;
  box-shadow: 0 30px 80px -10px rgba(31,27,20,.55), 0 8px 24px -8px rgba(31,27,20,.4);
  overflow: hidden;
  margin: 32px auto;
  animation: modalRise .35s cubic-bezier(.2,.7,.2,1);
  border: 1px solid var(--line);
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalRise {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px;
  border: none; background: rgba(244,239,230,.7);
  color: var(--ink);
  border-radius: 50%;
  font-size: 28px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background .2s, transform .2s;
}
.modal-close:hover { background: var(--cream-soft); transform: scale(1.05); }
.modal-banner {
  padding: 32px 36px 24px;
  background: linear-gradient(135deg, var(--terra) 0%, #8a4528 100%);
  color: var(--cream);
}
.modal-banner .kicker-light { color: rgba(244,239,230,.78); }
.modal-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 10px 0 8px;
  font-weight: 400;
}
.modal-title em {
  font-style: italic;
  color: var(--cream);
}
.modal-sub {
  font-size: 14.5px;
  color: rgba(244,239,230,.86);
  margin: 0;
  max-width: 46ch;
  line-height: 1.5;
}
.modal-body {
  padding: 24px 36px 30px;
  display: grid;
  gap: 14px;
}
.modal-body .field label,
.modal-body .field-check label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wood);
  font-weight: 500;
}
.modal-body .field input,
.modal-body .field select,
.modal-body .field textarea {
  background: #fff;
}
.modal-foot {
  text-align: center;
  font-size: 13.5px;
  color: var(--wood);
  margin: 4px 0 0;
}
.modal-foot a {
  color: var(--terra);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}
body.modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .modal { padding: 0; }
  .modal-card { margin: 0; border-radius: 0; min-height: 100vh; max-width: 100%; }
  .modal-banner { padding: 28px 22px 20px; padding-top: 56px; }
  .modal-body { padding: 22px 22px 36px; }
}

/* ============================================================
   FLOATING WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 900;
  display: inline-flex; align-items: center; gap: 0;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: 999px;
  box-shadow: 0 10px 28px -8px rgba(37, 211, 102, .6), 0 4px 12px -4px rgba(31,27,20,.3);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .01em;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .2s, padding .25s;
  border: none;
}
.wa-fab:hover {
  background: #1ebd5b;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 34px -8px rgba(37, 211, 102, .7), 0 6px 16px -4px rgba(31,27,20,.35);
  padding-right: 18px;
  gap: 8px;
}
.wa-fab svg { display: block; flex: 0 0 28px; }
.wa-fab-label {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  transition: max-width .3s ease, opacity .25s;
  color: #fff;
}
.wa-fab:hover .wa-fab-label {
  max-width: 140px;
  opacity: 1;
}
@media (max-width: 640px) {
  .wa-fab { bottom: 16px; right: 16px; padding: 13px; }
  .wa-fab svg { width: 26px; height: 26px; flex-basis: 26px; }
}

/* ============================================================
   INLINE WHATSAPP BUTTON
   ============================================================ */
.wa-inline-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366;
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border-bottom: none !important;
  margin-top: 14px;
  transition: background .2s, transform .2s;
  width: fit-content;
}
.wa-inline-btn:hover { background: #1ebd5b; transform: translateY(-1px); }
.wa-inline-btn svg { flex: 0 0 18px; }
.wa-inline-btn-light {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3) !important;
}
.wa-inline-btn-light:hover { background: rgba(255,255,255,.22); }

/* ============================================================
   CONTACT LINES (real info)
   ============================================================ */
.contact-line {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
  align-items: baseline;
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.5;
}
.contact-line .contact-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wood);
  padding-top: 2px;
}
.contact-card-dark .contact-line .contact-lbl { color: rgba(244,239,230,.7); }

/* Footer address block */
.footer-addr {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  color: rgba(244,239,230,.65);
  line-height: 1.55;
}

/* Slight bottom padding so FAB doesn't cover footer text on mobile */
@media (max-width: 640px) {
  .site-footer { padding-bottom: 90px; }
}

/* ─── Accessibility & SEO helpers ─────────────────────────────────── */
.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.footer-address-block {
  font-style: normal;
  font-size: 13px;
  color: rgba(244, 239, 230, 0.65);
  margin-top: 12px;
  line-height: 1.5;
}

/* =========================================================================
   Language switcher (EN / RO)
   ========================================================================= */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--line-soft, rgba(28,24,22,.12));
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  margin-right: 4px;
  user-select: none;
}
.lang-btn {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px 8px;
  font-family: var(--sans, 'DM Sans', sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--ink-soft, rgba(28,24,22,.55));
  border-radius: 999px;
  transition: color .2s var(--ease, ease), background .2s var(--ease, ease);
}
.lang-btn:hover { color: var(--ink, #1C1816); }
.lang-btn.is-active {
  color: var(--cream, #F4EFE6);
  background: var(--terra, #A8593A);
}
.lang-sep {
  color: rgba(28,24,22,.25);
  font-size: 12px;
  pointer-events: none;
}

/* Mobile language switcher inside mobile-nav */
.lang-switch-mobile {
  align-self: flex-start;
  margin-top: 4px;
  margin-bottom: 4px;
}

/* Hide the desktop switcher on small screens — mobile-nav has its own */
@media (max-width: 880px) {
  .header-row > .lang-switch { display: none; }
}

/* === 20-Improvements CSS === */

/* Skip-link (A11Y 13) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--terracotta, #A8593A);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 6px;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; outline: 3px solid #F4EFE6; }

/* Scroll progress (UX 10) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #A8593A, #d4795a);
  z-index: 9998;
  transition: width .1s linear;
  pointer-events: none;
}

/* Back-to-top button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1C1816;
  color: #F4EFE6;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s, transform .2s;
  z-index: 998;
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: #A8593A; }
.back-to-top:focus-visible { outline: 3px solid #A8593A; outline-offset: 2px; }

/* Currency switcher (UX 12) */
.currency-switch {
  display: inline-flex;
  gap: 4px;
  margin: 1rem 0 .5rem;
  padding: 4px;
  background: rgba(28,24,22,.05);
  border-radius: 999px;
}
.cur-btn {
  background: transparent;
  border: none;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  color: #1C1816;
  letter-spacing: .04em;
  transition: background .2s, color .2s;
}
.cur-btn:hover { background: rgba(168,89,58,.12); }
.cur-btn.active { background: #1C1816; color: #F4EFE6; }
.cur-btn:focus-visible { outline: 2px solid #A8593A; outline-offset: 2px; }

/* Testimonials (CONV 17) */
.testimonials {
  padding: 6rem 1.5rem;
  background: #fafaf7;
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials h2 {
  text-align: center;
  margin: 0 0 .5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.testimonials .lede {
  text-align: center;
  color: #5a544f;
  margin: 0 0 3rem;
  font-size: 1.05rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  padding: 2rem 1.75rem;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(28,24,22,.06);
  border: 1px solid rgba(28,24,22,.04);
}
.testimonial-card .stars {
  color: #d4a64a;
  font-size: 1rem;
  letter-spacing: .15em;
  margin-bottom: .9rem;
}
.testimonial-card blockquote {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #2a2622;
  font-style: italic;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: #1C1816;
  font-size: .9rem;
}
.testimonial-card cite span {
  display: block;
  font-weight: 400;
  color: #8a847f;
  font-size: .82rem;
  margin-top: .2rem;
}

/* Sticky mobile CTA (CONV 15) */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #1C1816;
  color: #F4EFE6;
  padding: .85rem 1rem calc(.85rem + env(safe-area-inset-bottom, 0));
  z-index: 997;
  box-shadow: 0 -4px 20px rgba(0,0,0,.18);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-cta .sc-text { font-size: .9rem; font-weight: 500; flex: 1; }
.sticky-cta .sc-btn {
  background: #A8593A;
  color: #fff;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .88rem;
  white-space: nowrap;
}
.sticky-cta .sc-btn:hover { background: #c66e4e; }
@media (max-width: 768px) {
  .sticky-cta.visible { display: flex; }
  body.has-sticky-cta { padding-bottom: 70px; }
}

/* Exit-intent nudge (CONV 15 desktop) */
.exit-nudge {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.95);
  background: #F4EFE6;
  border: 1px solid rgba(28,24,22,.1);
  border-radius: 14px;
  padding: 2rem 2.25rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, transform .25s, visibility .25s;
}
.exit-nudge.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.exit-nudge h3 { margin: 0 0 .65rem; font-size: 1.4rem; color: #1C1816; }
.exit-nudge p  { margin: 0 0 1.4rem; color: #5a544f; line-height: 1.55; }
.exit-nudge .en-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.exit-nudge .en-btn {
  padding: .7rem 1.25rem;
  border-radius: 999px;
  background: #A8593A;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: .9rem;
}
.exit-nudge .en-btn:hover { background: #c66e4e; }
.exit-nudge .en-dismiss {
  background: transparent;
  color: #5a544f;
  border: 1px solid rgba(28,24,22,.15);
  padding: .7rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  font-size: .9rem;
}
.exit-nudge-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28,24,22,.55);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.exit-nudge-backdrop.visible { opacity: 1; visibility: visible; }

/* Signup ticker (CONV 16) */
.lm-ticker {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border: 1px solid rgba(28,24,22,.08);
  border-radius: 12px;
  padding: .85rem 1.1rem;
  box-shadow: 0 8px 28px rgba(28,24,22,.12);
  z-index: 996;
  max-width: 300px;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.lm-ticker.visible {
  opacity: 1;
  transform: translateY(0);
}
.lm-ticker .dot {
  width: 8px; height: 8px;
  background: #4ea36a;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(78,163,106,.18);
  animation: lm-pulse 2s infinite;
}
.lm-ticker .txt { color: #1C1816; line-height: 1.35; }
.lm-ticker .txt strong { color: #A8593A; }
@keyframes lm-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(78,163,106,.18); }
  50%      { box-shadow: 0 0 0 8px rgba(78,163,106,.05); }
}
@media (max-width: 768px) {
  .lm-ticker { display: none; }
}

/* Room-card hover swap (UX 11) */
.room-card { position: relative; overflow: hidden; }
.room-card .room-img,
.room-card .room-img-hover {
  transition: opacity .5s ease;
}
.room-card .room-img-hover {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  pointer-events: none;
}
.room-card:hover .room-img { opacity: 0; }
.room-card:hover .room-img-hover { opacity: 1; }

/* Focus-visible polish (A11Y 13) */
*:focus-visible {
  outline: 2px solid #A8593A;
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible, button:focus-visible {
  outline-offset: 4px;
}

/* aria-current active nav (A11Y 14) */
.nav-link[aria-current="page"],
.nav-link[aria-current="true"] {
  color: #A8593A;
  font-weight: 600;
}

/* Press logos strip (CONV 16) */
.press-strip {
  padding: 3rem 1.5rem;
  background: #F4EFE6;
  border-top: 1px solid rgba(28,24,22,.06);
  border-bottom: 1px solid rgba(28,24,22,.06);
}
.press-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.press-strip .as-seen {
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #8a847f;
  margin: 0 0 1.5rem;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  opacity: .55;
}
.press-logos span {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #1C1816;
  letter-spacing: .02em;
}

/* Trust badges (CONV 16) */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 2rem;
}
.trust-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: #fff;
  border: 1px solid rgba(28,24,22,.08);
  border-radius: 999px;
  font-size: .82rem;
  color: #1C1816;
  font-weight: 500;
}
.trust-badges .badge::before {
  content: "✓";
  color: #4ea36a;
  font-weight: 700;
}
