/* ═══════════════════════════════════════════════════
   Dar Elegance Minimal — main.css v1.0
   Palette: Terracotta #C8553D · Sable #E8D5B0 · Charcoal #1C1C1A
   ═══════════════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px }
body {
  font-family: 'Outfit', sans-serif;
  background: #FAFAF8;
  color: #1C1C1A;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media(max-width:768px){ body { cursor: auto } }
img { max-width: 100%; height: auto; display: block }
a { color: inherit; text-decoration: none }
button { font-family: inherit; cursor: none }
@media(max-width:768px){ button { cursor: pointer } }
ul { list-style: none }

/* ── CSS VARS ──────────────────────────────────────── */
:root {
  --tc:    #C8553D;
  --tc-hi: #D96B52;
  --tc-lo: #F5E8E4;
  --sd:    #E8D5B0;
  --sd-lo: #FDF6EE;
  --ch:    #1C1C1A;
  --ch2:   #3A3A38;
  --ch3:   #6A6A68;
  --ch4:   #9A9A98;
  --bg:    #FAFAF8;
  --bg2:   #F5EDE0;
  --surf:  #FFFFFF;
  --bdr:   #E8D5B0;
  --r:     4px;
  --T:     .25s ease;
  --shadow: 0 2px 20px rgba(28,28,26,.06);
  --shadow-md: 0 4px 32px rgba(28,28,26,.1);
}

/* ── CURSOR ────────────────────────────────────────── */
.dem-cursor {
  width: 8px; height: 8px;
  background: var(--tc);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s;
}
.dem-cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid var(--tc);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  opacity: .4;
  transition: width .2s, height .2s, opacity .2s;
}

/* ── TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.15; color: var(--ch) }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem) }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem) }
h3 { font-size: 1.2rem }
em { font-style: italic; color: var(--tc) }
.tag {
  font-size: .6rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--tc);
  display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem;
}
.tag::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--tc) }
.lead { font-size: 1rem; color: var(--ch3); line-height: 1.8; max-width: 520px }

/* ── BUTTONS ───────────────────────────────────────── */
.btn-tc {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--tc); color: #fff;
  padding: .8rem 1.8rem; border-radius: var(--r);
  font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  border: none; transition: background var(--T), transform .15s;
  text-decoration: none;
}
.btn-tc:hover { background: var(--tc-hi); transform: translateY(-1px) }
.btn-out {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--ch);
  padding: .8rem 1.8rem; border-radius: var(--r);
  font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  border: 1.5px solid var(--ch); transition: all var(--T);
  text-decoration: none;
}
.btn-out:hover { background: var(--ch); color: #fff }
.btn-out-tc {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--tc);
  padding: .8rem 1.8rem; border-radius: var(--r);
  font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  border: 1.5px solid var(--tc); transition: all var(--T);
  text-decoration: none;
}
.btn-out-tc:hover { background: var(--tc); color: #fff }

/* ── REVEAL ANIMATION ──────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease }
[data-reveal].in { opacity: 1; transform: translateY(0) }

/* ── NAV ───────────────────────────────────────────── */
#demNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,250,248,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bdr);
  height: 64px;
  display: flex; align-items: center;
  padding: 0 6vw;
  justify-content: space-between;
  transition: box-shadow var(--T);
}
#demNav.scrolled { box-shadow: 0 2px 20px rgba(200,85,61,.08) }
.dem-logo {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; flex-shrink: 0;
}
.dem-logo-icon {
  width: 36px; height: 36px;
}
.dem-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--ch);
  letter-spacing: .02em;
}
.dem-logo-text em { color: var(--tc); font-style: italic }
.dem-nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.dem-nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ch3);
  transition: color var(--T); text-decoration: none;
}
.dem-nav-links a:hover { color: var(--tc) }
.dem-nav-ctas { display: flex; align-items: center; gap: .75rem }
.dem-ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.dem-ham span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ch); transition: all .3s;
}

/* ── MOBILE MENU ───────────────────────────────────── */
.dem-mob {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(300px, 88vw);
  background: var(--surf); z-index: 500;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.16,1,.3,1);
  border-left: 1px solid var(--bdr);
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}
.dem-mob.open { transform: translateX(0) }
.dem-mob-overlay {
  position: fixed; inset: 0;
  background: rgba(28,28,26,.3);
  z-index: 499; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.dem-mob-overlay.show { opacity: 1; pointer-events: all }
.dem-mob-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.2rem;
  color: var(--ch3); cursor: pointer; padding: .5rem;
}
.dem-mob ul { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 2rem }
.dem-mob a {
  display: block; padding: .8rem 1rem; border-radius: 6px;
  font-size: .9rem; font-weight: 500; color: var(--ch);
  transition: background var(--T), color var(--T);
}
.dem-mob a:hover { background: var(--tc-lo); color: var(--tc) }
.dem-mob-cta {
  background: var(--tc) !important; color: #fff !important;
  text-align: center; font-weight: 700 !important; border-radius: 4px !important;
  margin-top: .5rem;
}
.dem-mob-foot {
  border-top: 1px solid var(--bdr); padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.dem-mob-foot a { font-size: .85rem; color: var(--ch3); padding: .25rem 0 }
.dem-mob-foot a:hover { color: var(--tc) }
body.dem-mob-open { overflow: hidden }

/* ── HERO ──────────────────────────────────────────── */
#dem-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 6vw 6rem;
  background: var(--surf);
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.dem-hero-content { position: relative; z-index: 2 }
.dem-hero-eyebrow {
  font-size: .6rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ch4);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .6rem;
}
.dem-hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1.5px; background: var(--tc);
}
.dem-hero-h1 { margin-bottom: 1.5rem }
.dem-hero-sub {
  font-size: 1rem; color: var(--ch3);
  line-height: 1.8; margin-bottom: 2rem; max-width: 440px;
}
.dem-hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem }
.dem-trust {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid var(--bdr);
}
.dem-trust-item {
  display: flex; flex-direction: column; gap: .15rem;
}
.dem-trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: .04em; color: var(--tc);
}
.dem-trust-lbl { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ch4) }

/* Hero illustration */
.dem-hero-art { position: relative; z-index: 2 }
.dem-hero-art svg { width: 100%; max-width: 520px; margin: 0 auto }

/* Hero bg pattern */
.dem-hero-bg {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background: var(--sd-lo); z-index: 0;
}

/* ── SEARCH BAR ────────────────────────────────────── */
#dem-search {
  background: var(--bg2);
  padding: 2rem 6vw;
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}
.dem-search-pill {
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: stretch;
  background: #fff;
  border: 2px solid var(--sd);
  border-radius: 60px;
  box-shadow: 0 4px 32px rgba(200,85,61,.1);
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}
.dem-search-pill:focus-within {
  border-color: var(--tc);
  box-shadow: 0 6px 40px rgba(200,85,61,.18);
}
.dem-sf {
  flex: 1; padding: 1.1rem 1.75rem;
  border-right: 1px solid var(--bdr);
  min-width: 0;
}
.dem-sf-label {
  font-size: .56rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ch); margin-bottom: .3rem;
  display: block;
}
.dem-sf input[type="date"] {
  display: block; width: 100%;
  border: none !important; outline: none !important;
  box-shadow: none !important;
  background: transparent;
  font-family: 'Outfit', sans-serif; font-size: 1rem;
  color: var(--ch2); padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
}
.dem-sf input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: .5; cursor: pointer;
  filter: invert(40%) sepia(60%) saturate(800%) hue-rotate(330deg);
}
.dem-sf input::placeholder { color: var(--ch4) }
.dem-search-btn {
  background: var(--tc); color: #fff; border: none;
  padding: 1.1rem 2.25rem; margin: .4rem;
  border-radius: 50px;
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Outfit', sans-serif; font-size: .88rem; font-weight: 700;
  letter-spacing: .06em; cursor: pointer; flex-shrink: 0; white-space: nowrap;
  transition: background var(--T), transform .15s;
}
.dem-search-btn:hover { background: var(--tc-hi); transform: scale(1.03) }
.dem-search-guarantee {
  max-width: 720px; margin: .9rem auto 0;
  display: flex; align-items: center; justify-content: center;
  gap: .75rem; flex-wrap: wrap;
  font-size: .7rem; color: var(--ch4);
}
.dem-sg-sep { opacity: .4 }

/* ── MOBILE STICKY SEARCH ──────────────────────────── */
@media (max-width: 768px) {
  #dem-search {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    padding: .85rem 1rem;
    background: var(--bg2);
    border-top: 2px solid var(--bdr);
    border-bottom: none;
    box-shadow: 0 -4px 24px rgba(200,85,61,.1);
  }
  .dem-search-pill {
    border-radius: 14px;
    max-width: 100%;
    flex-direction: row;
    border: 1.5px solid var(--sd);
  }
  .dem-sf { padding: .7rem 1rem; border-right: 1px solid var(--bdr) }
  .dem-sf-label { font-size: .5rem }
  .dem-sf input[type="date"] { font-size: .82rem }
  .dem-search-btn {
    border-radius: 0 12px 12px 0;
    margin: 0; padding: .7rem 1.1rem;
    font-size: .78rem;
  }
  .dem-search-guarantee { display: none }
  /* Push content above sticky bar */
  body { padding-bottom: 72px }
}

/* ── PROPERTIES ────────────────────────────────────── */
#dem-props { background: #fff; padding: 7rem 6vw }
.dem-section-hd {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 2.5rem;
  flex-wrap: wrap; gap: 1.5rem;
}
.dem-props-filters {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.dem-pf {
  background: #fff; border: 1px solid var(--bdr);
  color: var(--ch3); padding: .4rem 1rem; border-radius: 20px;
  font-size: .74rem; font-weight: 600; cursor: pointer;
  transition: all var(--T); font-family: 'Outfit', sans-serif;
}
.dem-pf.active, .dem-pf:hover { background: var(--tc); color: #fff; border-color: var(--tc) }
.dem-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.dem-prop-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.dem-prop-card:hover { transform: translateY(-5px) rotate(.3deg); box-shadow: var(--shadow-md) }
.dem-prop-card.hidden { display: none }
.dem-prop-thumb {
  height: 200px; overflow: hidden;
  position: relative; background: var(--sd-lo);
}
.dem-prop-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.dem-prop-card:hover .dem-prop-thumb img { transform: scale(1.05) }
.dem-prop-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(200,85,61,.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.dem-prop-card:hover .dem-prop-thumb-overlay { opacity: 1 }
.dem-prop-thumb-overlay span {
  color: #fff; font-weight: 700; font-size: .84rem; letter-spacing: .05em;
}
/* White frame — Polaroid */
.dem-prop-body { padding: 1rem 1.1rem 1.25rem; background: #fff }
.dem-prop-top { display: flex; align-items: center; gap: .4rem; margin-bottom: .35rem }
.dem-prop-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; color: var(--tc); letter-spacing: .03em;
}
.dem-prop-stars { color: var(--tc); font-size: .65rem; letter-spacing: 1.5px }
.dem-prop-name {
  font-family: 'Playfair Display', serif;
  font-size: .88rem; font-weight: 700; color: var(--ch);
  margin-bottom: .22rem; line-height: 1.35;
}
.dem-prop-loc { font-size: .7rem; color: var(--ch4); margin-bottom: .2rem }
.dem-prop-beds { font-size: .68rem; color: var(--ch4); margin-bottom: .8rem }
.dem-prop-btn {
  display: inline-block; background: var(--tc); color: #fff;
  padding: .4rem .9rem; border-radius: var(--r);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; transition: background var(--T);
}
.dem-prop-btn:hover { background: var(--tc-hi) }

/* ── HOST SECTION ──────────────────────────────────── */
#dem-hosts {
  background: var(--bg2);
  padding: 7rem 6vw;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.dem-hosts-art { position: relative }
.dem-host-avatars {
  display: flex; gap: 1.5rem; margin-bottom: 2rem;
}
.dem-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden; border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(200,85,61,.2);
  background: var(--sd);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--tc);
}
.dem-avatar img { width: 100%; height: 100%; object-fit: cover }
.dem-host-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-style: italic; color: var(--ch);
  line-height: 1.5; margin-bottom: 1.5rem;
}
.dem-host-quote em { color: var(--tc) }
.dem-host-bio { font-size: .88rem; color: var(--ch3); line-height: 1.8; margin-bottom: 1.5rem }
.dem-host-stats {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--bdr);
}
.dem-hs-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--tc); line-height: 1; letter-spacing: .04em;
}
.dem-hs-lbl { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ch4) }
/* Zellige decoration */
.dem-zellige-bg {
  position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%);
  opacity: .08;
}

/* ── AWARDS ────────────────────────────────────────── */
#dem-awards { background: #fff; padding: 5rem 6vw }
.dem-awards-inner {
  display: flex; align-items: center;
  gap: 1rem; flex-wrap: wrap; justify-content: center;
}
.dem-award-pill {
  display: flex; flex-direction: column; align-items: center;
  background: var(--sd-lo); border: 1px solid var(--bdr);
  border-radius: 6px; padding: 1.2rem 1.5rem; min-width: 140px;
  transition: transform var(--T), box-shadow var(--T);
}
.dem-award-pill:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(200,85,61,.12) }
.dem-award-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; color: var(--tc); line-height: 1; letter-spacing: .02em;
}
.dem-award-sub { font-size: .58rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ch4); margin-bottom: .3rem }
.dem-award-name { font-size: .72rem; color: var(--ch3); text-align: center; line-height: 1.35 }
.dem-superhost-pill {
  display: flex; align-items: center; gap: .85rem;
  background: linear-gradient(135deg, #FF5A5F, #E54248);
  color: #fff; border-radius: 6px; padding: 1.2rem 1.75rem;
}
.dem-sh-icon { font-size: 2rem }
.dem-sh-label { font-size: .6rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; opacity: .8 }
.dem-sh-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: .05em; line-height: 1 }

/* ── ESTIMATE ──────────────────────────────────────── */
#dem-estimate { background: var(--bg2); padding: 7rem 6vw }
.dem-est-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 2.5rem }
.dem-est-form { display: flex; flex-direction: column; gap: 1rem }
.dem-ef { display: flex; flex-direction: column; gap: .35rem }
.dem-ef label { font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ch3) }
.dem-ef input, .dem-ef select {
  padding: .75rem 1rem; border: 1.5px solid var(--bdr);
  border-radius: 6px; font-family: 'Outfit', sans-serif; font-size: .9rem;
  color: var(--ch); background: #fff; outline: none;
  transition: border-color var(--T);
}
.dem-ef input:focus, .dem-ef select:focus { border-color: var(--tc) }
.dem-ef-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem }
.dem-est-btn {
  width: 100%; padding: 1rem; background: var(--tc); color: #fff;
  border: none; border-radius: var(--r);
  font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 700;
  letter-spacing: .06em; cursor: pointer; margin-top: .5rem;
  transition: background var(--T), transform .15s;
}
.dem-est-btn:hover { background: var(--tc-hi); transform: translateY(-1px) }
/* Result card */
.dem-est-result {
  background: #fff; border: 1.5px solid var(--tc);
  border-radius: 10px; overflow: hidden;
  margin-bottom: 1.25rem; box-shadow: 0 4px 24px rgba(200,85,61,.1);
}
.dem-result-header { background: var(--tc); padding: 1.5rem 1.75rem; text-align: center }
.dem-result-label { font-size: .6rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: .3rem }
.dem-result-amount { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: #fff; line-height: 1; letter-spacing: .03em }
.dem-result-sub { font-size: .7rem; color: rgba(255,255,255,.7); margin-top: .3rem }
.dem-result-breakdown { padding: 1.25rem 1.75rem }
.dem-bd-row { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; border-bottom: 1px solid var(--bdr); font-size: .84rem; color: var(--ch3) }
.dem-bd-row:last-of-type { border-bottom: none }
.dem-bd-row strong { color: var(--ch); font-weight: 700 }
.dem-bd-net .dem-bd-row { font-weight: 700 }
.dem-bd-net span, .dem-bd-net strong { color: var(--tc) !important; font-size: .95rem }
.dem-bd-note { font-size: .68rem; color: var(--ch4); margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--bdr); font-style: italic }
/* Services card */
.dem-services-card {
  background: #fff; border: 1px solid var(--bdr);
  border-radius: 10px; padding: 1.5rem 1.75rem;
}
.dem-services-title {
  font-family: 'Playfair Display', serif; font-size: .9rem; font-weight: 700;
  color: var(--ch); margin-bottom: 1rem; padding-bottom: .75rem;
  border-bottom: 1.5px solid var(--bdr);
}
.dem-services-list { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1rem }
.dem-services-list li { display: flex; align-items: flex-start; gap: .65rem }
.dem-si-icon {
  font-size: 1rem; flex-shrink: 0; width: 26px; height: 26px;
  background: var(--tc-lo); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
}
.dem-services-list li div { display: flex; flex-direction: column; gap: .08rem }
.dem-services-list li strong { font-size: .78rem; font-weight: 700; color: var(--ch); display: block }
.dem-services-list li span { font-size: .7rem; color: var(--ch4) }
.dem-zero-fee { margin-top: 1rem; padding-top: .85rem; border-top: 1px solid var(--bdr); font-size: .76rem; color: var(--ch3); text-align: center; font-style: italic }
.dem-zero-fee strong { color: var(--tc); font-style: normal }
.dem-est-status { font-size: .8rem; font-weight: 500; padding: .6rem 1.75rem; text-align: center }
.dem-est-status.ok  { color: #2D6B45 }
.dem-est-status.err { color: #C45C3A }

/* ── TESTIMONIALS ──────────────────────────────────── */
#dem-testimonials { background: #fff; padding: 7rem 6vw; overflow: hidden }
.dem-ts-track {
  display: flex; gap: 1.25rem;
  animation: dem-scroll 45s linear infinite;
  width: max-content;
}
.dem-ts-track:hover { animation-play-state: paused }
@keyframes dem-scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.dem-ts-card {
  background: var(--sd-lo); border: 1px solid var(--bdr);
  border-radius: 10px; padding: 1.5rem; width: 300px; flex-shrink: 0;
}
.dem-ts-stars { color: var(--tc); font-size: .8rem; letter-spacing: 2px; margin-bottom: .65rem }
.dem-ts-text { font-size: .84rem; color: var(--ch2); line-height: 1.7; margin-bottom: 1rem }
.dem-ts-name { font-size: .78rem; font-weight: 700; color: var(--ch) }
.dem-ts-prop { display: block; font-size: .68rem; color: var(--tc); margin-top: .15rem }
.dem-ts-origin { font-size: .67rem; color: var(--ch4) }

/* ── BLOG ──────────────────────────────────────────── */
#dem-blog { background: var(--bg2); padding: 7rem 6vw }
.dem-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem }
.dem-blog-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--bdr);
  border-radius: 8px; padding: 1.5rem;
  text-decoration: none; color: inherit;
  transition: transform .25s, box-shadow .25s, border-color var(--T);
}
.dem-blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--tc) }
.dem-blog-icon {
  font-size: 1.6rem; width: 44px; height: 44px;
  background: var(--tc-lo); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.dem-blog-card h3 { font-size: .88rem; font-weight: 700; color: var(--ch); line-height: 1.35; margin-bottom: .4rem; flex: 1 }
.dem-blog-card p { font-size: .74rem; color: var(--ch4); line-height: 1.65; margin-bottom: .75rem }
.dem-blog-read { font-size: .7rem; font-weight: 700; color: var(--tc); letter-spacing: .04em }
.dem-blog-meta { font-size: .68rem; color: var(--ch4); padding-top: .75rem; border-top: 1px solid var(--bdr); margin-top: auto }

/* ── CTA FINAL ─────────────────────────────────────── */
#dem-cta { background: var(--tc); padding: 6rem 6vw; text-align: center; position: relative; overflow: hidden }
#dem-cta::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E") repeat }
#dem-cta h2 { color: #fff !important; position: relative; z-index: 1; margin-bottom: .75rem }
#dem-cta p  { color: rgba(255,255,255,.82) !important; position: relative; z-index: 1; max-width: 520px; margin: 0 auto 2rem }
.dem-cta-btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1 }
.dem-cta-btn-wh {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--tc);
  padding: .9rem 2rem; border-radius: var(--r);
  font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  text-decoration: none; transition: transform .15s;
}
.dem-cta-btn-wh:hover { transform: translateY(-2px) }
.dem-cta-btn-out {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: #fff;
  padding: .9rem 2rem; border-radius: var(--r);
  font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.6); text-decoration: none;
  transition: background var(--T), border-color var(--T);
}
.dem-cta-btn-out:hover { background: rgba(255,255,255,.1); border-color: #fff }

/* ── FOOTER ────────────────────────────────────────── */
#dem-footer { background: var(--ch); padding: 4rem 6vw 2rem }
.dem-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.dem-footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; margin-bottom: .75rem }
.dem-footer-logo em { color: var(--tc); font-style: italic }
.dem-footer-tagline { font-size: .78rem; color: #6A6A68; line-height: 1.7; margin-bottom: 1.25rem }
.dem-footer-contact { display: flex; flex-direction: column; gap: .4rem }
.dem-footer-contact a { font-size: .78rem; color: #6A6A68; transition: color var(--T) }
.dem-footer-contact a:hover { color: var(--tc) }
.dem-footer-col h4 { font-family: 'Outfit', sans-serif; font-size: .58rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #4A4A48; margin-bottom: 1rem }
.dem-footer-col a { display: block; font-size: .78rem; color: #6A6A68; padding: .25rem 0; transition: color var(--T) }
.dem-footer-col a:hover { color: var(--tc) }
.dem-footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 1.5rem; border-top: 1px solid #2C2C2A;
  font-size: .7rem; color: #4A4A48; flex-wrap: wrap; gap: .5rem;
}

/* ── FAQ ───────────────────────────────────────────── */
#dem-faq { background: #fff; padding: 7rem 6vw }
.dem-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 2.5rem }
.dem-faq-item { border: 1px solid var(--bdr); border-radius: 8px; overflow: hidden }
.dem-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.25rem; cursor: pointer;
  font-size: .88rem; font-weight: 600; color: var(--ch);
  transition: background var(--T);
  background: #fff;
}
.dem-faq-q:hover { background: var(--sd-lo) }
.dem-faq-icon {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--bdr); display: flex; align-items: center;
  justify-content: center; font-size: .9rem; color: var(--ch3);
  flex-shrink: 0; transition: all var(--T);
}
.dem-faq-item.open .dem-faq-icon { background: var(--tc); border-color: var(--tc); color: #fff }
.dem-faq-a { display: none; padding: 0 1.25rem 1.1rem; font-size: .84rem; color: var(--ch3); line-height: 1.75 }
.dem-faq-item.open .dem-faq-a { display: block }

/* ── PROCESS ───────────────────────────────────────── */
#dem-process { background: var(--sd-lo); padding: 7rem 6vw }
.dem-process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; margin-top: 3rem; position: relative }
.dem-process-steps::before {
  content: ''; position: absolute;
  top: 28px; left: 10%; right: 10%; height: 1.5px;
  background: var(--bdr); z-index: 0;
}
.dem-step { text-align: center; position: relative; z-index: 1 }
.dem-step-n {
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; border: 2px solid var(--tc);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem;
  color: var(--tc); letter-spacing: .04em;
}
.dem-step h4 { font-family: 'Outfit', sans-serif; font-size: .8rem; font-weight: 700; color: var(--ch); margin-bottom: .3rem }
.dem-step p { font-size: .72rem; color: var(--ch4); line-height: 1.5 }

/* ── RESPONSIVE ────────────────────────────────────── */
@media(max-width:1100px) {
  .dem-props-grid { grid-template-columns: repeat(3,1fr) }
  .dem-footer-grid { grid-template-columns: 1fr 1fr }
}
@media(max-width:900px) {
  #dem-hero { grid-template-columns: 1fr; min-height: auto; padding: 100px 6vw 4rem }
  .dem-hero-bg { display: none }
  .dem-hero-art { display: none }
  #dem-hosts { grid-template-columns: 1fr }
  .dem-est-layout { grid-template-columns: 1fr }
  .dem-faq-grid { grid-template-columns: 1fr }
  .dem-process-steps { grid-template-columns: 1fr 1fr }
  .dem-process-steps::before { display: none }
  .dem-blog-grid { grid-template-columns: 1fr 1fr }
}
@media(max-width:768px) {
  .dem-nav-links, .dem-nav-ctas { display: none }
  .dem-ham { display: flex }
  .dem-props-grid { grid-template-columns: 1fr 1fr }
  .dem-search-pill { flex-direction: column; border-radius: 14px }
  .dem-sf { border-right: none; border-bottom: 1px solid var(--sd) }
  .dem-search-btn { border-radius: 0 0 12px 12px; justify-content: center; margin: 0; padding: 1rem }
  .dem-footer-grid { grid-template-columns: 1fr }
}
@media(max-width:500px) {
  .dem-props-grid { grid-template-columns: 1fr }
  .dem-blog-grid { grid-template-columns: 1fr }
  .dem-ef-row { grid-template-columns: 1fr }
  .dem-hero-trust { flex-direction: column }
}
