@import url("https://fonts.googleapis.com/css2?family=Patrick+Hand&family=Inter:wght@400;500;600;700;800;900&display=swap");

/* ==================================================
   GLOBAL DRAWINGTAYO FOUNDATION
   ================================================== */

:root {
  --paper: #fbfaf6;
  --ink: #0e1117;
}

/* Page background */
body {
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(14, 17, 23, 0.025) 1px, transparent 1px),
    radial-gradient(rgba(14, 17, 23, 0.018) 1px, transparent 1px);
  background-size: 24px 24px, 7px 7px;
  background-position: 0 0, 12px 12px;
}

/* Header background */
.site-header,
#masthead,
.elementor-location-header,
.hfe-site-header,
.wp-site-blocks > header {
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(14, 17, 23, 0.025) 1px, transparent 1px),
    radial-gradient(rgba(14, 17, 23, 0.018) 1px, transparent 1px);
  background-size: 24px 24px, 7px 7px;
  background-position: 0 0, 12px 12px;
  border-bottom: 2px solid rgba(14, 17, 23, 0.86);
}


/* ==================================================
   NAVIGATION
   ================================================== */

#menu-item-89,
#menu-item-90 {
  position: relative !important;
  margin-right: 6px !important;
}

#menu-item-89::after,
#menu-item-90::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  right: 0 !important;
  width: 1px !important;
  height: 20px !important;
  background-color: rgba(14, 17, 23, 0.18) !important;
  transform: translateY(-50%) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
}

@media (max-width: 1024px) {
  #menu-item-89::after,
  #menu-item-90::after {
    display: none !important;
  }

  #menu-item-89,
  #menu-item-90 {
    padding-right: 0 !important;
    margin-right: 0 !important;
  }

  .hfe-menu-toggle.sub-arrow,
  .hfe-nav-menu .sub-arrow {
    width: 0 !important;
    max-width: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
}


/* ==================================================
   GLOBAL RESPONSIVE SAFEGUARDS
   ================================================== */

html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}

.dt-hero > *,
.dt-page > *,
.dt-mockup-wrap,
.dt-trip-card {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 680px) {
  .dt-pill {
    max-width: 100%;
    height: auto;
    min-height: 36px;
    padding-block: 7px;
    white-space: normal;
    line-height: 1.2;
  }

  .dt-hero-title {
    font-size: clamp(42px, 14vw, 54px);
  }

  .dt-highlight {
    white-space: normal;
  }
}


/* ==================================================
   DRAWINGTAYO RESORT POST DESIGN SYSTEM

   Applies only to content inside:
   <article class="dt-resort-post">
   ================================================== */

.dt-resort-post,
.dt-resort-post * {
  box-sizing: border-box;
}

.dt-resort-post {
  --dt-rp-bg: #fbfaf6;
  --dt-rp-paper: #ffffff;
  --dt-rp-ink: #0e1117;
  --dt-rp-muted: #5d6674;
  --dt-rp-line: rgba(14, 17, 23, 0.18);
  --dt-rp-yellow: #ffe15a;
  --dt-rp-yellow-soft: #fff6c9;
  --dt-rp-blue-soft: #dff3f8;
  --dt-rp-font-head: "Patrick Hand", "Comic Sans MS", cursive;
  --dt-rp-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  width: min(100%, 920px);
  margin-inline: auto;
  color: var(--dt-rp-ink);
  font-family: var(--dt-rp-font-body);
  font-size: 1rem;
  line-height: 1.72;
  text-align: left;
}

.dt-resort-post a {
  color: inherit;
  text-decoration-color: rgba(14, 17, 23, 0.48);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}

.dt-resort-post a:hover {
  text-decoration-color: var(--dt-rp-ink);
}

.dt-resort-post :focus-visible {
  outline: 3px solid var(--dt-rp-yellow);
  outline-offset: 4px;
}

.dt-resort-post strong {
  font-weight: 800;
}


/* ==================================================
   CONSISTENT ARTICLE PROSE
   ================================================== */

.dt-resort-post__prose {
  width: min(100%, 84ch);
  max-width: 84ch;
  margin: 0;
  text-align: left;
}

.dt-resort-post__prose > p {
  width: 100%;
  max-width: none !important;
  margin: 0 0 1.2rem;
  text-align: left;
}

.dt-resort-post__prose > p:last-child {
  margin-bottom: 0;
}

.dt-resort-post__prose > ul,
.dt-resort-post__prose > ol {
  width: 100%;
  max-width: none !important;
  margin-right: 0;
  margin-left: 0;
}


/* ==================================================
   ARTICLE LABELS
   ================================================== */

.dt-resort-post__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
}

.dt-resort-post__stamp {
  display: inline-flex;
  min-height: 1.85rem;
  align-items: center;
  padding: 0.34rem 0.65rem;
  border: 1.5px solid var(--dt-rp-ink);
  background: var(--dt-rp-paper);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.dt-resort-post__stamp--verified {
  background: var(--dt-rp-yellow);
  transform: rotate(-1deg);
}

.dt-resort-post__stamp--location {
  background: var(--dt-rp-blue-soft);
}


/* ==================================================
   TL;DR
   ================================================== */

.dt-resort-post__tldr {
  width: 100%;
  margin: 0 0 1.65rem;
  padding: clamp(1.1rem, 2.6vw, 1.45rem);
  border: 1.5px solid var(--dt-rp-ink);
  border-left-width: 0.45rem;
  background:
    linear-gradient(rgba(14, 17, 23, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 17, 23, 0.025) 1px, transparent 1px),
    var(--dt-rp-yellow-soft);
  background-size: 24px 24px;
}

.dt-resort-post__tldr-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dt-resort-post__tldr .dt-resort-post__prose {
  max-width: 78ch;
}

.dt-resort-post__tldr p {
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.68;
}


/* ==================================================
   INTRODUCTION
   ================================================== */

.dt-resort-post__intro {
  margin-bottom: 1.5rem;
}

.dt-resort-post__intro > p:first-child {
  font-family: var(--dt-rp-font-head);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.15;
}


/* ==================================================
   ARTICLE SECTIONS
   ================================================== */

.dt-resort-post__section {
  margin-top: clamp(2.6rem, 5vw, 3.8rem);
}

.dt-resort-post__section > h2 {
  width: auto;
  max-width: 28ch;
  margin: 0 0 0.85rem;
  font-family: var(--dt-rp-font-head);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-align: left;
}

.dt-resort-post__section h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.dt-resort-post__section-lead {
  color: var(--dt-rp-muted);
}


/* ==================================================
   PROMO LEDGER
   ================================================== */

.dt-resort-post__ledger {
  width: 100%;
  margin: 1.5rem 0 1.75rem;
  border-top: 1.5px solid var(--dt-rp-ink);
  border-bottom: 1.5px solid var(--dt-rp-ink);
}

.dt-resort-post__ledger dl {
  display: grid;
  grid-template-columns: minmax(9rem, 0.72fr) minmax(0, 1.28fr);
  margin: 0;
}

.dt-resort-post__ledger dt,
.dt-resort-post__ledger dd {
  margin: 0;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--dt-rp-line);
}

.dt-resort-post__ledger dt:last-of-type,
.dt-resort-post__ledger dd:last-of-type {
  border-bottom: 0;
}

.dt-resort-post__ledger dt {
  padding-right: 1rem;
  color: var(--dt-rp-muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dt-resort-post__ledger dd {
  font-weight: 750;
}


/* ==================================================
   RATE TABLE
   ================================================== */

.dt-resort-post__table-wrap {
  width: 100%;
  margin: 1.5rem 0;
  overflow-x: auto;
  border: 1.5px solid var(--dt-rp-ink);
  background: var(--dt-rp-paper);
  -webkit-overflow-scrolling: touch;
}

.dt-resort-post__rate-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.45;
}

.dt-resort-post__rate-table caption {
  padding: 0.95rem 1rem;
  border-bottom: 1.5px solid var(--dt-rp-ink);
  background: var(--dt-rp-yellow-soft);
  font-weight: 800;
  text-align: left;
}

.dt-resort-post__rate-table th,
.dt-resort-post__rate-table td {
  padding: 0.9rem 1rem;
  border-right: 1px solid var(--dt-rp-line);
  border-bottom: 1px solid var(--dt-rp-line);
  vertical-align: top;
  text-align: left;
}

.dt-resort-post__rate-table th:last-child,
.dt-resort-post__rate-table td:last-child {
  border-right: 0;
}

.dt-resort-post__rate-table tbody tr:last-child th,
.dt-resort-post__rate-table tbody tr:last-child td {
  border-bottom: 0;
}

.dt-resort-post__rate-table thead th {
  background: var(--dt-rp-ink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dt-resort-post__rate-table tbody th {
  width: 23%;
  background: rgba(14, 17, 23, 0.025);
  font-weight: 800;
}

.dt-resort-post__rate-table del {
  display: block;
  margin-top: 0.12rem;
  color: var(--dt-rp-muted);
  font-size: 0.72rem;
  font-weight: 600;
}


/* ==================================================
   RATE NOTE
   ================================================== */

.dt-resort-post__note {
  width: min(100%, 84ch);
  margin: 1.5rem 0;
  padding: 0.95rem 1.05rem;
  border-left: 4px solid var(--dt-rp-yellow);
  background: var(--dt-rp-bg);
}

.dt-resort-post__note p {
  width: 100%;
  max-width: none !important;
  margin: 0 0 1rem;
}

.dt-resort-post__note p:last-child {
  margin-bottom: 0;
}


/* ==================================================
   FIGURES
   ================================================== */

.dt-resort-post__figure {
  width: 100%;
  margin: 1.35rem 0 1.75rem;
}

.dt-resort-post__figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--dt-rp-line);
  border-radius: 8px;
  background: var(--dt-rp-bg);
}

.dt-resort-post__figure figcaption {
  margin-top: 0.55rem;
  color: var(--dt-rp-muted);
  font-size: 0.74rem;
  line-height: 1.5;
}


/* ==================================================
   NUMBERED LIST
   ================================================== */

.dt-resort-post__numbered-list {
  margin: 1rem 0 0;
  padding: 0;
  counter-reset: dt-rp-counter;
  list-style: none;
}

.dt-resort-post__numbered-list li {
  position: relative;
  min-height: 2.4rem;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0 0.35rem 3rem;
  counter-increment: dt-rp-counter;
}

.dt-resort-post__numbered-list li::before {
  content: counter(dt-rp-counter);
  position: absolute;
  top: 0.15rem;
  left: 0;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1.5px solid var(--dt-rp-ink);
  border-radius: 50%;
  background: var(--dt-rp-yellow-soft);
  font-size: 0.78rem;
  font-weight: 900;
}


/* ==================================================
   AMENITIES
   ================================================== */

.dt-resort-post__amenities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  margin-top: 1.5rem;
}

.dt-resort-post__amenity-group {
  padding-top: 1rem;
  border-top: 1.5px solid var(--dt-rp-ink);
}

.dt-resort-post__checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dt-resort-post__checklist li {
  position: relative;
  margin-bottom: 0.65rem;
  padding-left: 1.45rem;
  color: var(--dt-rp-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.dt-resort-post__checklist li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--dt-rp-ink);
  font-family: var(--dt-rp-font-head);
  font-size: 1.05rem;
  font-weight: 700;
}

.dt-resort-post__addons {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border: 1px dashed var(--dt-rp-ink);
  background: var(--dt-rp-yellow-soft);
}

.dt-resort-post__addons p {
  margin: 0;
}


/* ==================================================
   POLICY NOTICE
   ================================================== */

.dt-resort-post__notice {
  width: 100%;
  margin: 1.4rem 0 0;
  padding: clamp(1rem, 2.5vw, 1.3rem);
  border: 1.5px solid var(--dt-rp-ink);
  background: var(--dt-rp-blue-soft);
}

.dt-resort-post__notice-label {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dt-resort-post__notice ul {
  width: min(100%, 80ch);
  max-width: 80ch !important;
  margin: 0;
  padding-left: 1.2rem;
}

.dt-resort-post__notice li {
  margin-bottom: 0.45rem;
}

.dt-resort-post__notice li:last-child {
  margin-bottom: 0;
}


/* ==================================================
   ARTICLE CTA
   ================================================== */

.dt-resort-post__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  margin: clamp(2.8rem, 5vw, 4rem) 0 1.5rem;
  padding: clamp(1.3rem, 3vw, 1.75rem);
  border: 1.5px solid var(--dt-rp-ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--dt-rp-ink);
  background-size: 24px 24px;
  color: #fff;
}

.dt-resort-post__cta > div {
  min-width: 0;
}

.dt-resort-post__cta-label {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--dt-rp-yellow);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dt-resort-post__cta h2 {
  max-width: 22ch;
  margin: 0;
  font-family: var(--dt-rp-font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.65rem);
  font-weight: 400;
  line-height: 1.03;
}

.dt-resort-post__cta p {
  max-width: 48rem !important;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.dt-resort-post__cta-link {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--dt-rp-yellow);
  background: var(--dt-rp-yellow);
  color: var(--dt-rp-ink) !important;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform 160ms ease;
}

.dt-resort-post__cta-link:hover {
  transform: translate(-2px, -2px);
}


/* ==================================================
   BOOKING INFORMATION
   ================================================== */

.dt-resort-post__contact {
  width: 100%;
  margin: 1.25rem 0 0;
  padding: 1rem 0;
  border-top: 1.5px solid var(--dt-rp-ink);
  border-bottom: 1.5px solid var(--dt-rp-ink);
  font-style: normal;
}

.dt-resort-post__contact > strong {
  display: block;
  margin: 0 0 0.75rem;
}

.dt-resort-post__contact ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dt-resort-post__contact li {
  min-width: 0;
  margin: 0;
  color: var(--dt-rp-muted);
  line-height: 1.5;
}

.dt-resort-post__contact li > strong {
  display: block;
  margin: 0 0 0.25rem;
}


/* ==================================================
   DISCLAIMER
   ================================================== */

.dt-resort-post__disclaimer {
  width: min(100%, 84ch);
  margin: 1.25rem 0 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--dt-rp-line);
  color: var(--dt-rp-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.dt-resort-post__disclaimer p {
  margin: 0;
}


/* ==================================================
   RESORT POST RESPONSIVE RULES
   ================================================== */

@media (max-width: 48rem) {
  .dt-resort-post {
    width: 100%;
  }

  .dt-resort-post__meta {
    justify-content: flex-start;
  }

  .dt-resort-post__prose,
  .dt-resort-post__note,
  .dt-resort-post__disclaimer,
  .dt-resort-post__notice ul {
    width: 100%;
    max-width: 100% !important;
  }

  .dt-resort-post__amenities {
    grid-template-columns: 1fr;
  }

  .dt-resort-post__cta {
    grid-template-columns: 1fr;
  }

  .dt-resort-post__cta-link {
    width: 100%;
    white-space: normal;
  }

  .dt-resort-post__contact ul {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

@media (max-width: 36rem) {
  .dt-resort-post {
    font-size: 0.96rem;
  }

  .dt-resort-post__section {
    margin-top: 2.35rem;
  }

  .dt-resort-post__section > h2 {
    font-size: clamp(1.95rem, 10vw, 2.55rem);
  }

  .dt-resort-post__tldr,
  .dt-resort-post__notice {
    padding: 1rem;
  }

  .dt-resort-post__ledger dl {
    grid-template-columns: 1fr;
  }

  .dt-resort-post__ledger dt {
    padding-bottom: 0.15rem;
    border-bottom: 0;
  }

  .dt-resort-post__ledger dd {
    padding-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dt-resort-post *,
  .dt-resort-post *::before,
  .dt-resort-post *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}