:root {
  --sand: #f5f0e8;
  --sand-dark: #ede8dd;
  --teal: #0d4f5c;
  --teal-light: #1a6b7c;
  --coral: #e8612a;
  --earth: #1a1a1a;
  --muted: #6b5f54;
  --light: #faf8f5;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--earth);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--sand-dark);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--earth);
  letter-spacing: -0.02em;
}
.nav__tag {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__content {
  padding: 5rem 4rem 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--light);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(250,248,245,0.75);
  max-width: 44ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero__detail-item {
  font-size: 0.78rem;
  color: rgba(250,248,245,0.6);
  letter-spacing: 0.03em;
}
.hero__detail-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
}
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero__img-frame {
  width: 90%;
  max-width: 480px;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transform: rotate(2deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero__img-inner {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 40%, #1a6b7c 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, #e8612a 0%, transparent 50%),
    linear-gradient(160deg, #0a3d4a 0%, #0d5060 40%, #e8612a 100%);
}

/* ── WHY JAMAICA ── */
.whyjamaica {
  padding: 6rem 3.5rem;
  background: var(--sand);
}
.whyjamaica__inner { max-width: 1100px; margin: 0 auto; }
.whyjamaica__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
  font-weight: 500;
}
.whyjamaica__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--earth);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
  max-width: 22ch;
}
.whyjamaica__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.whyjamaica__card {
  background: var(--light);
  border: 1px solid var(--sand-dark);
  border-radius: 3px;
  padding: 2rem 2rem 2.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whyjamaica__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,26,26,0.08);
}
.whyjamaica__icon { margin-bottom: 1.25rem; }
.whyjamaica__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.whyjamaica__card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── OFFERS ── */
.offers {
  padding: 6rem 3.5rem;
  background: var(--sand-dark);
}
.offers__inner { max-width: 1100px; margin: 0 auto; }
.offers__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
  font-weight: 500;
}
.offers__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--earth);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.offers__card {
  background: var(--light);
  border: 1px solid var(--sand-dark);
  border-radius: 3px;
  padding: 2.25rem;
  position: relative;
}
.offers__card--hybrid {
  border-color: var(--coral);
  border-width: 1.5px;
  transform: translateY(-4px);
}
.offers__card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.offers__type {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}
.offers__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--earth);
  letter-spacing: -0.03em;
}
.offers__card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.offers__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.offers__list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
}
.offers__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}
.offers__tag {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.offers__cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.offers__cta:hover { color: var(--coral); }
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--coral);
  color: var(--light);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 0 0 2px 2px;
  font-weight: 600;
}

/* ── VIBE ── */
.vibe {
  padding: 6rem 3.5rem;
  background: var(--sand);
}
.vibe__inner { max-width: 1100px; margin: 0 auto; }
.vibe__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
  line-height: 1.4;
  max-width: 30ch;
  margin-bottom: 0.75rem;
}
.vibe__attribution {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 4rem;
  padding-left: 0.25rem;
}
.vibe__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--earth);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.vibe__rules { display: flex; flex-direction: column; gap: 0; }
.vibe__rule {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--sand-dark);
  align-items: start;
}
.vibe__rule:last-child { border-bottom: none; }
.vibe__rule-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--coral);
  font-weight: 700;
  padding-top: 0.15rem;
}
.vibe__rule h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.vibe__rule p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CLOSING ── */
.closing {
  background: var(--teal);
  padding: 6rem 3.5rem;
}
.closing__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--light);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.closing__sub {
  font-size: 1.05rem;
  color: rgba(250,248,245,0.7);
  margin-bottom: 2rem;
  font-weight: 300;
}
.closing__detail {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  padding: 1.75rem 2rem;
}
.closing__detail p {
  font-size: 0.92rem;
  color: rgba(250,248,245,0.65);
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  padding: 2rem 3.5rem;
  background: var(--earth);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.footer__tagline {
  font-size: 0.78rem;
  color: rgba(250,248,245,0.4);
}
.footer__links {
  font-size: 0.75rem;
  color: rgba(250,248,245,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual { display: none; }
  .hero__content { padding: 4rem 2rem; }
  .whyjamaica__grid { grid-template-columns: 1fr; }
  .offers__grid { grid-template-columns: 1fr; }
  .offers__card--hybrid { transform: none; }
  .nav { padding: 1.25rem 1.5rem; }
  .whyjamaica, .offers, .vibe, .closing { padding: 4rem 1.5rem; }
  .footer { padding: 1.5rem; }
  .footer__inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ═══════════════════════════════════
   DIGITAL RESET PAGE
   ═══════════════════════════════════ */

.dr-hero {
  background: var(--teal);
  padding: 6rem 3.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.dr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}
.dr-hero__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.dr-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.dr-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--light);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.dr-sub {
  font-size: 1.05rem;
  color: rgba(250,248,245,0.75);
  line-height: 1.7;
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.dr-cta {
  display: inline-block;
  background: var(--coral);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.dr-cta:hover { background: #d4541f; transform: translateY(-1px); }
.dr-cta--full { display: block; text-align: center; width: 100%; }
.dr-cta--large { font-size: 1.1rem; padding: 1.1rem 2.8rem; }
.dr-cta-sub {
  font-size: 0.78rem;
  color: rgba(250,248,245,0.5);
  margin-top: 0.75rem;
  letter-spacing: 0.03em;
}

/* ── SECTION SHARED ── */
.dr-section-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.dr-section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--earth);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 3rem;
}

/* ── INCLUDES ── */
.dr-includes { padding: 6rem 3.5rem; background: var(--sand); }
.dr-includes__inner { max-width: 1100px; margin: 0 auto; }
.dr-includes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dr-includes__card {
  background: var(--light);
  border: 1px solid var(--sand-dark);
  border-radius: 3px;
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dr-includes__card:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(26,26,26,0.07); }
.dr-includes__icon {
  width: 44px;
  height: 44px;
  background: var(--sand-dark);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1rem;
}
.dr-includes__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.dr-includes__card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── CURRICULUM ── */
.dr-curriculum { padding: 6rem 3.5rem; background: var(--sand-dark); }
.dr-curriculum__inner { max-width: 900px; margin: 0 auto; }
.dr-weeks { display: flex; flex-direction: column; gap: 0; }
.dr-week {
  background: var(--light);
  border: 1px solid var(--sand-dark);
  border-radius: 3px;
  padding: 2rem 2.25rem;
  border-left: 3px solid var(--teal);
  margin-bottom: 1.25rem;
}
.dr-week:last-child { margin-bottom: 0; }
.dr-week__header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 0.5rem; }
.dr-week__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}
.dr-week__theme {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--earth);
  letter-spacing: -0.02em;
}
.dr-week__focus {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 1rem;
  font-style: italic;
}
.dr-week__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.dr-week__list li { font-size: 0.88rem; color: var(--muted); padding-left: 1rem; position: relative; }
.dr-week__list li::before { content: '—'; position: absolute; left: 0; color: var(--coral); }

/* ── SCHEDULE ── */
.dr-schedule { padding: 6rem 3.5rem; background: var(--sand); }
.dr-schedule__inner { max-width: 900px; margin: 0 auto; }
.dr-schedule__grid { display: flex; flex-direction: column; gap: 1px; background: var(--sand-dark); border: 1px solid var(--sand-dark); border-radius: 3px; overflow: hidden; }
.dr-schedule__block { display: grid; grid-template-columns: 140px 1fr; background: var(--light); }
.dr-schedule__block--weekend { background: var(--sand); }
.dr-schedule__time {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--earth);
  letter-spacing: -0.01em;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--sand-dark);
  display: flex;
  align-items: center;
  background: var(--sand);
}
.dr-schedule__block--weekend .dr-schedule__time { background: var(--sand-dark); color: var(--teal); }
.dr-schedule__content { padding: 1.25rem 1.5rem; }
.dr-schedule__content strong { font-size: 0.9rem; display: block; margin-bottom: 0.2rem; }
.dr-schedule__content p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* ── PRICING ── */
.dr-pricing { padding: 6rem 3.5rem; background: var(--teal); }
.dr-pricing__inner { max-width: 520px; margin: 0 auto; }
.dr-pricing__card {
  background: var(--light);
  border-radius: 3px;
  padding: 2.5rem;
  border: 1.5px solid var(--coral);
}
.dr-pricing__top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 0.5rem; }
.dr-pricing__label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); font-weight: 600; }
.dr-pricing__amount { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--earth); letter-spacing: -0.03em; }
.dr-pricing__heading { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--earth); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.dr-pricing__sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.75rem; }
.dr-pricing__list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.dr-pricing__list li { font-size: 0.9rem; color: var(--muted); padding-left: 1.25rem; position: relative; }
.dr-pricing__list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--coral); }

/* ── FAQ ── */
.dr-faq { padding: 6rem 3.5rem; background: var(--sand); }
.dr-faq__inner { max-width: 800px; margin: 0 auto; }
.dr-faq__list { display: flex; flex-direction: column; }
.dr-faq__item {
  border-bottom: 1px solid var(--sand-dark);
  padding: 1.75rem 0;
}
.dr-faq__item:first-child { padding-top: 0; }
.dr-faq__item h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--earth); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.dr-faq__item p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── FINAL CTA ── */
.dr-final { padding: 6rem 3.5rem; background: var(--earth); }
.dr-final__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.dr-final__heading { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--light); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.25rem; }
.dr-final__sub { font-size: 1rem; color: rgba(250,248,245,0.65); line-height: 1.7; margin-bottom: 2.5rem; font-weight: 300; }
.dr-final__detail { font-size: 0.8rem; color: rgba(250,248,245,0.4); margin-top: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .dr-includes__grid { grid-template-columns: 1fr 1fr; }
  .dr-schedule__time { font-size: 0.72rem; padding: 1rem; }
}
@media (max-width: 700px) {
  .dr-includes__grid { grid-template-columns: 1fr; }
  .dr-schedule__block { grid-template-columns: 1fr; }
  .dr-schedule__time { border-right: none; border-bottom: 1px solid var(--sand-dark); padding: 0.75rem 1rem; }
  .dr-hero, .dr-includes, .dr-curriculum, .dr-schedule, .dr-pricing, .dr-faq, .dr-final { padding: 4rem 1.5rem; }
  .dr-pricing__top { flex-direction: column; gap: 0.25rem; }
}
@media (max-width: 500px) {
  .dr-headline { font-size: 2.4rem; }
  .dr-cta { display: block; text-align: center; }
}

/* ── ORIGINAL RESPONSIVE ── */
@media (max-width: 500px) {
  .hero__headline { font-size: 2.4rem; }
  .offers__price { font-size: 1.6rem; }
  .vibe__rule { grid-template-columns: 2rem 1fr; }
}