:root {
  --hl-obsidian: #050505;
  --hl-graphite: #1B1C1E;
  --hl-sand-gold: #D6B77C;
  --hl-ivory: #EFEDE7;
  --hl-ash: #8F8F8F;
}

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

body {
  min-height: 100vh;
  background-color: var(--hl-obsidian);
  color: var(--hl-ivory);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

a[x-apple-data-detectors],
a[href^="tel"],
a[href^="sms"] {
  color: var(--hl-sand-gold);
  text-decoration-color: var(--hl-sand-gold);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("images/grain-overlay.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  z-index: -1;
}

.site-header {
  width: 100%;
  padding: 16px 20px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background-color: rgba(5,5,5,0.96);
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: hidden;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/grain-overlay.webp");
  background-size: 220%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.site-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.site-logo {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hl-ivory);
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hl-ash);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-link:hover {
  color: var(--hl-sand-gold);
  border-bottom-color: var(--hl-sand-gold);
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px 8px;
  }

  .site-header-inner {
    gap: 16px;
  }

  .site-nav {
    gap: 12px;
  }

  .nav-link {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
}

.hero {
  position: relative;
  flex: 1;
  padding: 24px 20px 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-desert.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
  z-index: -1;
}

.hero-inner {
  flex: 1;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.hero-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 40px;
}

.logo-lockup {
  text-align: center;
  letter-spacing: 0.18em;
}

.logo-title {
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--hl-ivory);
}

.logo-subtitle {
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--hl-sand-gold);
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8px;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
}

.hero-kicker {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hl-sand-gold);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 400;
  color: var(--hl-ash);
  margin-bottom: 28px;
}

.hero-question {
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 500;
  color: var(--hl-ivory);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 36px;
  border-radius: 999px;
  border: 1px solid rgba(214,183,124,0.9);
  background: linear-gradient(135deg, rgba(214,183,124,0.95), rgba(214,183,124,0.7));
  color: var(--hl-obsidian);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0,0,0,0.45), 0 0 18px rgba(214,183,124,0.25), inset 0 0 0 1px rgba(255,255,255,0.18);
}

.btn-primary:hover {
  background: transparent;
  color: var(--hl-sand-gold);
  border-color: rgba(232,208,156,0.95);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5), 0 0 26px rgba(214,183,124,0.3);
}

.btn-secondary {
  padding: 13px 30px;
  border-radius: 999px;
  border: 1px solid rgba(214,183,124,0.28);
  background: linear-gradient(135deg, rgba(18,18,18,0.92), rgba(24,24,24,0.72));
  color: var(--hl-ivory);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.16s ease;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0,0,0,0.35), 0 0 14px rgba(214,183,124,0.14), inset 0 0 0 1px rgba(214,183,124,0.08);
}

.btn-secondary:hover {
  background: var(--hl-sand-gold);
  color: var(--hl-obsidian);
  border-color: var(--hl-sand-gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.4), 0 0 22px rgba(214,183,124,0.28);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 2px solid rgba(214,183,124,0.7);
  outline-offset: 4px;
}

.hero-footer {
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hl-sand-gold);
}

@media (max-width: 768px) {
  .hero {
    padding: 20px 16px 32px;
  }

  .hero-header {
    padding-bottom: 28px;
  }

  .logo-title {
    font-size: 17px;
  }

  .hero-footer {
    padding-top: 28px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-question {
    font-size: 17px;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}

.offerings {
  background-color: var(--hl-obsidian);
  padding: 72px 20px 88px;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}


.offerings-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offerings-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hl-sand-gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--hl-ivory);
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #C5C7CF;
  max-width: 640px;
  margin: 0 auto;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.offer-card {
  background: radial-gradient(circle at 0% 0%, rgba(214,183,124,0.10), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(0,0,0,0.88), rgba(0,0,0,0.98));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 20px 20px 22px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.offer-card:hover {
  border-color: var(--hl-sand-gold);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
  background: radial-gradient(circle at 0% 0%, rgba(214,183,124,0.22), transparent 60%),
              radial-gradient(circle at 100% 100%, rgba(0,0,0,0.92), rgba(0,0,0,0.99));
}

.offer-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--hl-ivory);
}

.offer-text {
  font-size: 15px;
  line-height: 1.75;
  color: #D0D2D8;
}

@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .offerings {
    padding: 44px 16px 56px;
  }

  .offerings-header {
    margin-bottom: 28px;
  }

  .offer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .offer-card {
    padding: 18px 16px 20px;
  }
}

.featured {
  background-color: var(--hl-obsidian);
  padding: 72px 20px 88px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.featured-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.featured-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.featured-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  min-height: 560px;
  background-color: #0b0b0d;
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214,183,124,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 36px rgba(214,183,124,0.35);
}

.featured-card:hover .featured-overlay {
  background: linear-gradient(180deg, rgba(5,5,5,0.06) 0%, rgba(5,5,5,0.5) 48%, rgba(5,5,5,0.8) 100%);
}

.featured-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.08) contrast(1.03);
  transform: scale(1.02);
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.08) 0%, rgba(5,5,5,0.55) 48%, rgba(5,5,5,0.85) 100%);
}

.featured-content {
  position: relative;
  z-index: 1;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 8px;
  background: linear-gradient(180deg, rgba(5,5,5,0.15) 0%, rgba(5,5,5,0.6) 58%, rgba(5,5,5,0.85) 100%);
}

.featured-content * {
  text-shadow: 0 2px 14px rgba(0,0,0,0.85);
}

.featured-brand {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(5,5,5,0.55);
  border: 1px solid rgba(214,183,124,0.6);
  padding: 6px 12px 5px;
  border-radius: 999px;
  width: fit-content;
  box-shadow: 0 10px 24px rgba(0,0,0,0.45);
}

.featured-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--hl-sand-gold);
}

.featured-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #F3F4F6;
}

.featured-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E1E4EC;
}

.featured-list {
  list-style: none;
  margin: 8px 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.featured-list li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #EEF0F4;
}

.featured-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--hl-sand-gold);
}

.featured-price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.featured-from,
.featured-pp {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D6DBE3;
}

.featured-amount {
  font-size: 32px;
  font-weight: 600;
  color: #FFFFFF;
}

.featured-whatsapp {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #F2E2C1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(214,183,124,0.6);
  background: rgba(214,183,124,0.18);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.featured-source {
  margin: 8px 0 2px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hl-sand-gold);
}


.featured-whatsapp:hover {
  color: #050505;
  background: rgba(214,183,124,0.9);
  border-color: rgba(214,183,124,0.95);
  box-shadow: 0 8px 18px rgba(0,0,0,0.4), 0 0 12px rgba(214,183,124,0.35);
}

.featured-disclaimer {
  margin: 24px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 12px;
  color: var(--hl-sand-gold);
}

.featured-updated {
  margin: 8px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 12px;
  color: #cdd2db;
}

.featured-next-update {
  margin: 4px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 12px;
  color: #b8c0cf;
}

@media (max-width: 960px) {
  .featured-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .featured-card {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .featured {
    padding: 44px 16px 56px;
  }

  .featured-header {
    margin-bottom: 28px;
  }

  .featured-card {
    min-height: 520px;
  }

  .featured-content {
    padding: 20px 18px;
  }
}

.why {
  background-color: var(--hl-obsidian);
  padding: 68px 20px 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}


.why-inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.why-point {
  background: radial-gradient(circle at 0% 0%, rgba(214,183,124,0.14), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(0,0,0,0.9), rgba(0,0,0,0.99));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.why-point:hover {
  border-color: var(--hl-sand-gold);
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0,0,0,0.7);
  background: radial-gradient(circle at 0% 0%, rgba(214,183,124,0.24), transparent 60%),
              radial-gradient(circle at 100% 100%, rgba(0,0,0,0.94), rgba(0,0,0,0.99));
}

.why-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--hl-ivory);
}

.why-text {
  font-size: 14px;
  line-height: 1.7;
  color: #D0D2D8;
}

.how {
  background-color: var(--hl-obsidian);
  padding: 68px 20px 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.how-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.how-step {
  background: radial-gradient(circle at 0% 0%, rgba(214,183,124,0.12), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(0,0,0,0.9), rgba(0,0,0,0.99));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 190px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.how-step:hover {
  border-color: var(--hl-sand-gold);
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0,0,0,0.7);
  background: radial-gradient(circle at 0% 0%, rgba(214,183,124,0.24), transparent 60%),
              radial-gradient(circle at 100% 100%, rgba(0,0,0,0.94), rgba(0,0,0,0.99));
}

.how-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--hl-ivory);
}

.how-text {
  font-size: 14px;
  line-height: 1.7;
  color: #D0D2D8;
}

.contact {
  background-color: var(--hl-obsidian);
  padding: 72px 20px 88px;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}

#privacy .contact-inner {
  max-width: 960px;
}

#privacy .section-title {
  font-size: clamp(26px, 3vw, 34px);
}

#privacy .section-subtitle {
  font-size: 16px;
  line-height: 1.8;
}

#privacy .contact-text,
#privacy .form-field p,
#privacy .form-field li {
  font-size: 14px;
  line-height: 1.75;
}

#privacy .form-field h2 {
  font-size: 17px;
  margin-bottom: 6px;
}

#privacy .form-field ul {
  padding-left: 18px;
  margin-top: 6px;
}

#privacy .contact-grid {
  display: block;
}

#privacy .contact-methods {
  margin-bottom: 32px;
}

#privacy .contact-form {
  max-width: 100%;
}

#privacy .form-field {
  margin-bottom: 20px;
}

.contact-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: flex-start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: radial-gradient(circle at 0% 0%, rgba(214,183,124,0.14), transparent 60%),
              radial-gradient(circle at 100% 100%, rgba(0,0,0,0.9), rgba(0,0,0,0.99));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--hl-ivory);
}

.contact-text {
  font-size: 14px;
  line-height: 1.6;
  color: #D0D2D8;
}

.contact-link {
  font-size: 13px;
  margin-top: 6px;
  text-decoration: none;
  color: var(--hl-sand-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(214,183,124,0.5);
  background: linear-gradient(135deg, rgba(214,183,124,0.22), rgba(214,183,124,0.08));
  box-shadow: 0 10px 22px rgba(0,0,0,0.35), 0 0 14px rgba(214,183,124,0.2), inset 0 0 0 1px rgba(214,183,124,0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.contact-link:hover {
  transform: translateY(-1px);
  border-color: rgba(214,183,124,0.8);
  background: transparent;
  box-shadow: 0 14px 28px rgba(0,0,0,0.4), 0 0 22px rgba(214,183,124,0.26), inset 0 0 0 1px rgba(214,183,124,0.2);
}

.contact-link:focus-visible {
  outline: 2px solid rgba(214,183,124,0.7);
  outline-offset: 3px;
}

.contact-form {
  background: radial-gradient(circle at 0% 0%, rgba(214,183,124,0.10), transparent 60%),
              radial-gradient(circle at 100% 100%, rgba(0,0,0,0.9), rgba(0,0,0,0.99));
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 22px 20px 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 18px;
  position: relative;
}

.contact-form h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--hl-ivory);
  margin-bottom: 6px;
}

.contact-form p {
  font-size: 14px;
  line-height: 1.65;
  color: #D0D2D8;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-message,
.form-field-dates {
  grid-column: 1 / -1;
}

.form-field-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-field label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(239,237,231,0.78);
}

.form-field input,
.form-field textarea {
  background-color: rgba(18,18,18,0.85);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 10px 11px;
  font-size: 14px;
  color: var(--hl-ivory);
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
  font-family: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8E8F96;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--hl-sand-gold);
  box-shadow: 0 0 0 1px rgba(214,183,124,0.7);
  background-color: rgba(12,12,12,0.96);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  grid-column: 1 / -1;
  margin-top: 4px;
  justify-self: flex-start;
  padding: 12px 32px;
  border-radius: 999px;
  border: 1px solid var(--hl-sand-gold);
  background-color: var(--hl-sand-gold);
  color: var(--hl-obsidian);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0,0,0,0.4), 0 0 16px rgba(214,183,124,0.22);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.form-submit:hover {
  background-color: transparent;
  color: var(--hl-sand-gold);
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.55), 0 0 24px rgba(214,183,124,0.3);
}


.form-field-dates .date-range {
  position: relative;
  width: 100%;
}

.date-range-display {
  width: 100%;
  text-align: left;
  background-color: rgba(18,18,18,0.85);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 10px 36px 10px 11px;
  font-size: 14px;
  color: var(--hl-ivory);
  outline: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 0 8px rgba(214,183,124,0.08);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, transform 0.12s ease;
}

.date-range-display::after {
  content: "📅";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.9;
}

.date-range-display:hover {
  background-color: rgba(20,20,20,0.95);
  border-color: rgba(255,255,255,0.26);
  box-shadow: 0 0 12px rgba(214,183,124,0.12);
}

.date-range-display:focus-visible {
  border-color: var(--hl-sand-gold);
  box-shadow: 0 0 0 1px rgba(214,183,124,0.7);
}

.date-range-popup {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: #111111;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 20px 50px rgba(0,0,0,0.85);
  padding: 12px 12px 14px;
  width: 320px;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  z-index: 20;
}

.date-range-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.date-range-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.date-month-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--hl-ivory);
}

.date-nav {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background-color: rgba(18,18,18,0.95);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--hl-ivory);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(214,183,124,0.1);
  transition: background-color 0.14s ease, border-color 0.14s ease, transform 0.1s ease, box-shadow 0.14s ease;
}

.date-nav:hover {
  background-color: rgba(35,36,38,1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
  box-shadow: 0 0 10px rgba(214,183,124,0.18);
}

.date-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.date-weekday {
  font-size: 11px;
  text-align: center;
  color: #8E8F96;
  padding: 2px 0;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.date-cell {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 6px 0;
  font-size: 12px;
  color: var(--hl-ivory);
  cursor: pointer;
  transition: background-color 0.14s ease, color 0.14s ease, box-shadow 0.14s ease;
}

.date-cell:hover {
  background-color: rgba(214,183,124,0.16);
}

.date-outside {
  opacity: 0.35;
}

.date-disabled {
  opacity: 0.28;
  cursor: default;
}

.date-disabled:hover {
  background-color: transparent;
}

.date-selected-start,
.date-selected-end {
  background-color: var(--hl-sand-gold);
  color: var(--hl-obsidian);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.8);
}

.date-in-range {
  background-color: rgba(214,183,124,0.24);
}



.field-error {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: #fca5a5;
}

.field-invalid input,
.field-invalid textarea,
.field-invalid .date-range-display {
  border-color: #f97373;
  box-shadow: 0 0 0 1px rgba(249,115,115,0.6);
}

.site-footer {
  background-color: var(--hl-obsidian);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 20px 22px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/grain-overlay.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hl-ivory);
  line-height: 1.35;
}

.footer-tagline {
  margin-top: 8px;
  font-size: 13px;
  color: var(--hl-sand-gold);
  line-height: 1.55;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 250px;
}

.footer-heading {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hl-ivory);
  margin-bottom: 2px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0;
  font-size: 13px;
  line-height: 1.2;
  color: var(--hl-sand-gold);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--hl-sand-gold);
}

.footer-meta {
  margin-top: 8px;
  font-size: 13px;
  color: var(--hl-sand-gold);
}

.footer-meta span {
  display: inline-block;
  margin-right: 12px;
}

.footer-meta .footer-meta-line {
  display: block;
  margin-top: 4px;
  margin-right: 0;
}

.footer-note {
  font-size: 13px;
  line-height: 1.45;
  color: var(--hl-sand-gold);
  margin-top: 2px;
}

.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  max-width: 1040px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(214,183,124,0.4);
  background: linear-gradient(135deg, rgba(7,7,8,0.96), rgba(13,13,14,0.94));
  box-shadow: 0 16px 44px rgba(0,0,0,0.55), 0 0 0 1px rgba(214,183,124,0.12) inset;
}

.cookie-consent-copy {
  font-size: 14px;
  line-height: 1.55;
  color: var(--hl-ivory);
}

.cookie-consent-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-consent-link {
  color: var(--hl-sand-gold);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-btn {
  border-radius: 999px;
  border: 1px solid rgba(214,183,124,0.55);
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

.cookie-btn-ghost {
  background: transparent;
  color: var(--hl-sand-gold);
}

.cookie-btn-primary {
  background: linear-gradient(135deg, rgba(214,183,124,0.95), rgba(214,183,124,0.75));
  color: var(--hl-obsidian);
}

@media (max-width: 720px) {
  .site-footer {
    padding: 12px 14px 14px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
  }

  .footer-logo {
    font-size: 12px;
  }

  .footer-tagline {
    font-size: 11px;
    margin-top: 6px;
    line-height: 1.4;
  }

  .footer-nav {
    min-width: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 10px;
  }

  .footer-heading {
    font-size: 11px;
    margin-bottom: 0;
    grid-column: 1 / -1;
  }

  .footer-link {
    font-size: 11px;
    min-height: 16px;
    padding: 0;
  }

  .footer-meta,
  .footer-note {
    font-size: 11px;
  }

  .footer-note {
    margin-top: 2px;
  }
}

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

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    margin-top: 4px;
  }
}

@media (max-width: 720px) {
  .how-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-submit {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .date-range-popup {
    left: 0;
    right: auto;
    width: 100%;
  }
}

.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.section-bg-offerings {
  background-image: url("images/offerings-bg.webp");
  opacity: 0.5;
  filter:blur(2px);
}

.section-bg-featured {
  background-image: url("images/featured-bg.webp");
  opacity: 0.28;
  filter: none;
}

.section-bg-why {
  background-image: url("images/why-bg.webp");
  opacity: 0.5;
  filter: blur(2px);
}

.section-bg-contact {
  background-image: url("images/contact-bg.webp");
    opacity: 0.22;
    filter: blur(2px);
}

.section-bg-how {
  background-image: url("images/grain-overlay.webp");
  opacity: 0.5;
  filter: none;
}

.section-bg-privacy {
  background-image: url("images/grain-overlay.webp");
  opacity: 0.5;
  filter: blur(3px);
}

@media (max-width: 720px) {
  .contact {
    position: relative;
    overflow: hidden;
  }

  .section-bg-contact {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    background-size: cover;
    background-position: center top;
    opacity: 0.32;
    filter: none;
    z-index: 0;
  }

  .contact-inner {
    position: relative;
    z-index: 1;
  }
}

.form-status {
  margin-top: 14px;
  min-height: 20px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hl-ash);
}

.form-status.form-status-success {
  color: var(--hl-sand-gold);
}

.form-status.form-status-error {
  color: #C86B6B;
}
.trust-strip {
  margin: 0 auto 10px;
  max-width: 680px;
  text-align: center;
}

.trust-header {
  margin: 12px auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.trust-header-copy {
  min-width: 0;
}

.trust-header-badge {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  display: block;
  background: rgba(255,255,255,0.02);
  padding: 10px;
  border: 1px solid rgba(214,183,124,0.2);
  object-fit: contain;
  object-position: center;
}

.trust-header-line {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hl-sand-gold);
  margin-bottom: 6px;
}

.trust-header-sub {
  font-size: 14px;
  color: var(--hl-sand-gold);
  max-width: 520px;
  font-weight: 500;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.trust-kicker {
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hl-sand-gold);
  margin-bottom: 8px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  margin: 0 auto 12px;
  max-width: 440px;
  padding: 4px;
  border-radius: 18px;
  border: 1px solid rgba(214,183,124,0.22);
  background: transparent;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}

.trust-badges img {
  width: min(360px, 95%);
  height: auto;
  border-radius: 12px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.28);
}

.trust-protected {
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hl-sand-gold);
  margin-bottom: 10px;
}

.trust-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.trust-card {
  background: transparent;
  border-radius: 10px;
  border: none;
  padding: 4px 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  width: 240px;
}

.trust-card-badge {
  width: 84px;
  height: 84px;
  border-radius: 4px;
  display: block;
  background: rgba(255,255,255,0.02);
  padding: 8px;
  border: 1px solid rgba(214,183,124,0.2);
  object-fit: contain;
  object-position: center;
}

.trust-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hl-sand-gold);
}

.trust-detail {
  font-size: 15px;
  line-height: 1.55;
  color: var(--hl-ivory);
  max-width: 250px;
  text-align: center;
  white-space: normal;
  overflow: visible;
}

.trust-note {
  font-size: 14px;
  color: var(--hl-sand-gold);
  letter-spacing: 0.06em;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .footer-logo {
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .footer-tagline {
    font-size: 13px;
  }

  .footer-nav {
    min-width: auto;
    gap: 8px;
  }

  .footer-link {
    font-size: 13px;
    min-height: 26px;
  }

  .footer-meta,
  .footer-note {
    font-size: 12px;
  }

  .trust-header {
    margin: 14px auto 22px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    text-align: center;
  }

  .trust-header-sub {
    font-size: 12px;
  }

  .trust-header-badge {
    width: 64px;
    height: 64px;
    padding: 6px;
  }

  .trust-header-line {
    font-size: 12px;
  }

  .trust-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-kicker {
    font-size: 13px;
  }

  .trust-protected {
    font-size: 15px;
  }

  .trust-detail {
    font-size: 14px;
  }

  .trust-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    justify-items: center;
  }

  .trust-card {
    width: 100%;
    max-width: 170px;
  }

  .trust-card-badge {
    width: 64px;
    height: 64px;
  }

  .contact-form h2 {
    font-size: 16px;
  }

  .contact-form p {
    font-size: 13px;
  }
}
