/* Theme tokens — restyle the site here (or in overrides.css) without editing PHP pages. */
:root {
  --forest: #173404;
  --green: #3b6d11;
  --saffron: #f2921a;
  --maroon: #7a1f0c;
  --paper: #ffffff;
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #000000;
  --muted: #000000;
  --line: #e6e6e6;
  --river: #000000;
  --river-deep: #122c03;
  --canopy: #000000;
  --mist: #f6f6f6;
  --laterite: #f2921a;
  --laterite-dark: #7a1f0c;
  --hornbill: #f2921a;
  --wa: #128c4a;
  --leaf: var(--canopy);
  --leaf-dark: #000000;
  --leaf-soft: var(--mist);
  --gold: var(--hornbill);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(23, 52, 4, 0.06), 0 14px 32px rgba(23, 52, 4, 0.08);
  --header-top: 36px;
  --header-main: 70px;
  --header-h: 109px;
  --max: 1120px;
  --space: clamp(1rem, 4vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 5.5rem;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--mist);
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.do-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--saffron);
  color: #000;
}

.do-skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

@media (max-width: 1023px) {
  .do-hide-sm {
    display: none !important;
  }
}

.do-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.do-header::after {
  content: "";
  display: block;
  height: 3px;
  background: var(--saffron);
}

.do-header__top {
  height: var(--header-top);
  background: #1a1a1a;
  color: #e8e8e8;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 0;
}

.do-header__top-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.do-header__tag {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.do-header__meta {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
}

.do-header__meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
}

.do-header__meta a:hover {
  color: var(--saffron);
  text-decoration: none;
}

.do-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
  height: var(--header-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.do-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: inherit;
}

.do-logo:hover {
  text-decoration: none;
}

.do-logo img {
  height: 44px;
  width: auto;
}

.do-nav {
  display: none;
}

.do-nav__list {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1024px) {
  .do-nav {
    display: block;
  }
}

.do-nav__item {
  position: relative;
}

.do-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.55rem 0.72rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.do-nav__link::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.do-nav__link:hover,
.do-nav__link[aria-current="page"] {
  color: #000;
  background: transparent;
  text-decoration: none;
}

.do-nav__link:hover::after,
.do-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.do-nav__chev {
  display: inline-block;
  margin-left: 0.05rem;
  font-size: 0.62em;
  opacity: 0.55;
  transition: transform 0.18s ease;
}

.do-nav__item--dropdown:hover .do-nav__chev,
.do-nav__item--dropdown:focus-within .do-nav__chev {
  transform: rotate(180deg);
}

.do-nav__sub {
  position: absolute;
  left: 0;
  top: calc(100% - 2px);
  min-width: 240px;
  padding: 0.55rem 0;
  margin: 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(23, 52, 4, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}

.do-nav__item--dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.do-nav__item--dropdown:hover .do-nav__sub,
.do-nav__item--dropdown:focus-within .do-nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.do-nav__sub a {
  display: block;
  padding: 0.55rem 1.05rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  border-left: 3px solid transparent;
}

.do-nav__sub a:hover {
  background: var(--mist);
  border-left-color: var(--saffron);
  color: var(--forest);
  text-decoration: none;
}

.do-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.do-header__actions .do-btn {
  min-height: 40px;
  padding: 0.4rem 1.05rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
}

.do-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--mist);
  border-radius: 999px;
  cursor: pointer;
}

.do-menu-toggle span {
  display: block;
  height: 2px;
  background: #111;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.do-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.do-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.do-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .do-menu-toggle {
    display: none;
  }
}

@media (max-width: 1023px) {
  :root {
    --header-top: 32px;
    --header-main: 60px;
    --header-h: 95px;
  }

  .do-header__tag {
    font-size: 0.72rem;
  }

  .do-logo img {
    height: 38px;
  }
}

@media (max-width: 520px) {
  .do-header__tag {
    display: none;
  }

  .do-header__top-inner {
    justify-content: center;
  }
}

:focus-visible {
  outline: 2px solid var(--hornbill);
  outline-offset: 2px;
}

.do-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.55rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.do-btn:hover {
  text-decoration: none;
}

.do-btn--primary {
  background: var(--saffron);
  color: #000;
  border: 1px solid transparent;
}

.do-btn--primary:hover {
  background: var(--maroon);
  color: #fffaf0;
}

.do-btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.do-btn--ghost:hover {
  background: var(--bg);
}

.do-btn--wa {
  background: var(--wa);
  color: #fff;
}

.do-btn--wa:hover {
  background: #0f7a40;
  color: #fff;
}

.do-btn--light {
  background: var(--surface);
  color: var(--river);
}

.do-btn--light:hover {
  background: var(--bg);
  color: var(--river);
}

.do-drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--surface);
  z-index: 999;
  padding: 1rem var(--space) 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  border-top: 1px solid var(--line);
}

.do-drawer.is-open {
  transform: translateX(0);
}

.do-drawer .do-btn {
  width: 100%;
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .do-drawer {
    display: none;
  }
}

.do-drawer__section {
  margin-bottom: 1.25rem;
}

.do-drawer__title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.do-drawer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.do-drawer__links li {
  border-bottom: 1px solid var(--line);
}

.do-drawer__links a {
  display: block;
  padding: 0.65rem 0;
  color: var(--ink);
  font-size: 0.9375rem;
}

.do-drawer__links a:hover {
  color: var(--leaf);
}

body.do-drawer-open {
  overflow: hidden;
}

.do-backdrop {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(23, 52, 4, 0.45);
  z-index: 998;
}

.do-backdrop.is-visible {
  display: block;
}

@media (min-width: 1024px) {
  .do-backdrop {
    display: none !important;
  }
}

.do-hero {
  position: relative;
  min-height: min(68vh, 540px);
  display: flex;
  align-items: flex-end;
  background: var(--river-deep);
}

.do-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.do-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.do-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 52, 4, 0.22) 0%, rgba(18, 44, 3, 0.9) 100%);
}

.do-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space);
  padding-bottom: clamp(1.5rem, 5vw, 2.75rem);
}

.do-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hornbill);
  margin: 0 0 0.55rem;
}

.do-hero__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.85rem, 4.2vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #fff;
  max-width: 18ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.do-hero__sub {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #f3faf6;
  max-width: 42ch;
}

.do-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}

.do-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(23, 52, 4, 0.42);
  border: 1px solid rgba(242, 146, 26, 0.45);
  border-radius: 999px;
  color: #fff;
}

.do-chip svg {
  flex-shrink: 0;
}

.do-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.do-field input {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
}

.do-field input:focus,
.do-field select:focus {
  outline: 2px solid var(--hornbill);
  outline-offset: 1px;
  border-color: transparent;
}

.do-field select {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
}

.do-main {
  padding-bottom: 2.5rem;
}

.do-section {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.8rem, 4.5vw, 2.75rem) var(--space);
  content-visibility: auto;
  contain-intrinsic-size: 1px 680px;
}

.do-section.do-intro {
  content-visibility: visible;
}

.do-section--panel {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}

.do-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 1.2rem;
}

.do-section__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.do-section__title::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 3px;
  margin-top: 0.5rem;
  background: var(--laterite);
  border-radius: 2px;
}

.do-section__sub {
  margin: 0.35rem 0 0;
  max-width: 46ch;
  font-size: 0.98rem;
  color: var(--muted);
}

.do-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
}

.do-lead {
  margin: 0.75rem 0 0;
  max-width: 62ch;
  font-size: 1.05rem;
  color: var(--muted);
}

.do-why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.do-why li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.do-why strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.do-why span {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 799px) {
  .do-why {
    grid-template-columns: 1fr;
  }
}

.do-link-all {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--leaf);
  white-space: nowrap;
}

.do-cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (max-width: 699px) {
  .do-cats {
    grid-template-columns: 1fr;
  }
}

.do-cat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.05rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.do-cat:hover {
  border-color: var(--leaf);
  background: var(--leaf-soft);
  text-decoration: none;
  transform: translateY(-2px);
}

.do-cat__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--leaf-soft);
  color: var(--leaf-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.do-cat__icon svg {
  width: 22px;
  height: 22px;
}

.do-cat__text strong {
  display: block;
  font-size: 0.98rem;
}

.do-cat__text span {
  font-size: 0.8125rem;
  color: var(--muted);
}

.do-scroll-hint {
  font-size: 0.75rem;
  color: var(--muted);
  margin: -0.4rem 0 0.7rem;
}

.do-grid-scroll-outer {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  margin-left: calc(-1 * var(--space));
  margin-right: calc(-1 * var(--space));
  padding: 0 var(--space) 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.do-grid-scroll-outer:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 2px;
}

.do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.15rem;
}

.do-grid.do-grid--scroll {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  max-width: none;
  margin: 0 auto;
}

.do-grid.do-grid--scroll .do-card {
  flex: 0 0 min(270px, calc(100vw - 3rem));
  max-width: 290px;
  scroll-snap-align: start;
}

@media (min-width: 900px) {
  .do-scroll-hint {
    display: none;
  }

  .do-grid-scroll-outer {
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .do-grid.do-grid--scroll {
    display: grid;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .do-grid.do-grid--scroll .do-card {
    flex: none;
    max-width: none;
  }

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

@media (min-width: 1100px) {
  .do-grid.do-grid--adventure {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.do-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow 0.2s, transform 0.2s;
}

.do-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.do-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--line);
}

a.do-card__media {
  color: inherit;
}

a.do-card__media:hover {
  text-decoration: none;
}

.do-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.do-card__body {
  padding: 1.05rem 1.15rem 1.2rem;
}

.do-card__title {
  margin: 0 0 0.25rem;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.3;
}

.do-card__title a {
  color: inherit;
}

.do-card__title a:hover {
  color: var(--leaf);
  text-decoration: none;
}

.do-card__meta {
  font-size: 0.875rem;
  color: var(--leaf);
  font-weight: 600;
  margin: 0 0 0.45rem;
}

.do-card__desc {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.do-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.do-card__actions .do-btn {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.8rem;
  padding: 0.48rem 0.7rem;
}

.do-taxi-lead {
  margin: -0.4rem 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.do-taxi {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 799px) {
  .do-taxi {
    grid-template-columns: 1fr;
  }
}

.do-taxi__card {
  text-align: center;
  padding: 1rem 1rem 1.15rem;
}

.do-taxi__card img {
  width: 100%;
  max-width: 220px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 0.7rem;
}

.do-taxi__card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.02rem;
}

.do-taxi__people {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.do-taxi__price {
  margin: 0.35rem 0 0.85rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
}

.do-faq {
  display: grid;
  gap: 0.7rem;
  max-width: 48rem;
}

.do-faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.15rem 1rem 0.15rem;
}

.do-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.4;
  padding: 0.9rem 0;
  list-style: none;
}

.do-faq summary::-webkit-details-marker {
  display: none;
}

.do-faq summary::after {
  content: "+";
  float: right;
  font-weight: 600;
  color: #000;
}

.do-faq details[open] summary::after {
  content: "–";
}

.do-faq p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.do-banner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space) 2rem;
}

.do-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, var(--river-deep) 0%, var(--forest) 62%, var(--green) 100%);
  border-radius: var(--radius);
  color: #fff;
  box-shadow: inset 0 3px 0 var(--saffron);
}

.do-banner__inner h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.do-banner__inner p {
  margin: 0.28rem 0 0;
  font-size: 0.9rem;
  opacity: 0.95;
}

.do-banner__inner .do-btn {
  background: var(--saffron);
  color: #000;
}

.do-banner__inner .do-btn:hover {
  background: var(--maroon);
  color: #fffaf0;
}

.do-footer {
  background: var(--river-deep);
  color: #c9d4ce;
  padding: 2.5rem var(--space) 1.5rem;
  font-size: 0.875rem;
}

.do-footer a {
  color: #e8f0eb;
}

.do-footer a:hover {
  color: #fff;
}

.do-footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2rem;
}

.do-footer__brand {
  max-width: 280px;
}

.do-footer__brand p {
  margin: 0;
  line-height: 1.55;
  color: #9aada4;
}

.do-footer__contact {
  margin-top: 1rem !important;
}

.do-footer__contact a {
  color: #fff;
  font-weight: 600;
}

.do-footer__place {
  margin-top: 0.75rem !important;
  font-size: 0.875rem;
}

.do-footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hornbill);
  margin: 0 0 0.75rem;
}

.do-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.do-footer__list li {
  margin-bottom: 0.45rem;
}

.do-footer__bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: #8fa399;
  text-align: center;
}

.do-footer__bottom p {
  margin: 0;
}

.do-fab {
  position: fixed;
  left: 1rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease;
}

.do-fab:hover {
  transform: scale(1.06);
  text-decoration: none;
  color: #fff;
}

.do-fab--call {
  bottom: calc(1rem + 3.5rem + 0.7rem);
  background: var(--saffron);
  color: #000;
}

.do-fab--call:hover {
  color: #000;
}

.do-fab--call svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.do-fab--wa {
  bottom: 1rem;
  background: #25d366;
}

.do-fab--wa svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: currentColor;
}

/* Blog article + listing */
.do-blog-hero {
  position: relative;
  min-height: min(46vh, 420px);
  display: flex;
  align-items: flex-end;
  background: var(--river-deep);
}

.do-blog-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.do-blog-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.do-blog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 52, 4, 0.18) 0%, rgba(18, 44, 3, 0.92) 100%);
}

.do-blog-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space);
  padding-bottom: clamp(1.4rem, 4vw, 2.4rem);
}

.do-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: #d7e6de;
}

.do-crumb a {
  color: #e8f5ee;
}

.do-crumb a:hover {
  color: #fff;
}

.do-crumb__sep {
  opacity: 0.55;
}

.do-blog-hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #fff;
  max-width: 22ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.do-blog-hero__sub {
  margin: 0;
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #f3faf6;
}

.do-blog-layout {
  display: grid;
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.4rem, 3.5vw, 2.2rem) var(--space) 2.5rem;
}

@media (min-width: 960px) {
  .do-blog-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 1.6rem;
  }

  .do-blog-aside {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

.do-blog-article,
.do-blog-aside__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.do-blog-article {
  padding: clamp(1.15rem, 3vw, 1.7rem);
}

.do-blog-article .do-section {
  max-width: none;
  margin: 0;
  padding: 1.4rem 0 0.2rem;
  content-visibility: visible;
}

.do-blog-article .do-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.do-blog-figure {
  margin: 1.2rem 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.do-blog-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.do-blog-figure figcaption {
  padding: 0.55rem 0.85rem 0.7rem;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
}

.do-blog-pair {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 0;
}

@media (min-width: 640px) {
  .do-blog-pair {
    grid-template-columns: 1fr 1fr;
  }

  .do-blog-pair .do-blog-figure {
    margin: 0;
  }
}

.do-carousel {
  position: relative;
  margin-top: 1rem;
}

.do-carousel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.do-carousel__hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.do-carousel__nav {
  display: flex;
  gap: 0.35rem;
}

.do-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.do-carousel__btn:hover {
  border-color: var(--leaf);
  background: var(--leaf-soft);
  color: var(--leaf-dark);
}

.do-carousel__btn svg {
  width: 18px;
  height: 18px;
}

.do-carousel__track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.15rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 0.35rem 0.15rem 0.85rem;
  background: linear-gradient(180deg, transparent 18px, rgba(23, 52, 4, 0.06) 18px, rgba(23, 52, 4, 0.06) calc(100% - 18px), transparent calc(100% - 18px));
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.do-carousel__track:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 2px;
}

.do-carousel__track > .do-taxi__card {
  flex: 0 0 min(78%, 230px);
  scroll-snap-align: start;
}

.do-carousel .do-taxi__card img {
  max-width: none;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.do-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  margin: 0 0 1.1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--muted);
}

.do-blog-meta strong {
  color: var(--ink);
  font-weight: 650;
}

.do-blog-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.do-blog-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.28rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 600;
}

.do-blog-toc a:hover {
  border-color: var(--leaf);
  background: var(--leaf-soft);
  color: var(--leaf-dark);
  text-decoration: none;
}

.do-blog-prose {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.do-blog-prose > * + * {
  margin-top: 1rem;
}

.do-blog-prose h2 {
  margin: 1.7rem 0 0.55rem;
  font-size: clamp(1.22rem, 2vw, 1.42rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
  padding-bottom: 0.4rem;
  box-shadow: inset 0 -3px 0 var(--laterite);
  display: inline-block;
  max-width: 100%;
}

.do-blog-prose h2:first-child {
  margin-top: 0;
}

.do-blog-prose p {
  margin: 0;
}

.do-blog-prose ul,
.do-blog-prose ol {
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
}

.do-blog-prose li {
  margin: 0.28rem 0;
}

.do-blog-prose a {
  font-weight: 600;
}

.do-blog-quote {
  margin: 1.4rem 0 0;
  padding: 0.9rem 1.05rem 0.9rem 1.15rem;
  border-left: 4px solid var(--laterite);
  background: var(--bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.5;
}

.do-blog-quote cite {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}

.do-days {
  display: grid;
  gap: 0.85rem;
  margin: 1.2rem 0 0;
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

@media (min-width: 720px) {
  .do-days {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.do-day {
  position: relative;
  padding: 1rem 1.05rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.do-day__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 1.55rem;
  margin-bottom: 0.55rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: var(--saffron);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.do-day h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: var(--ink);
}

.do-day p,
.do-day ul {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.do-day ul {
  padding-left: 1.1rem;
}

.do-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.15rem 0 0;
}

@media (min-width: 700px) {
  .do-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.do-fact {
  padding: 0.9rem 0.95rem;
  background: var(--mist);
  border-radius: var(--radius-sm);
}

.do-fact strong {
  display: block;
  font-size: 1.05rem;
  color: var(--river);
}

.do-fact span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.do-inline-cta {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0 0.4rem;
  padding: 1.2rem 1.25rem;
  background: linear-gradient(135deg, var(--river-deep) 0%, var(--river) 100%);
  border-radius: var(--radius);
  color: #fff;
}

@media (min-width: 640px) {
  .do-inline-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.do-inline-cta h3 {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
}

.do-inline-cta p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.95;
}

.do-inline-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.do-inline-cta .do-btn--light {
  background: var(--saffron);
  color: #000;
}

.do-inline-cta .do-btn--light:hover {
  background: var(--maroon);
  color: #fffaf0;
}

.do-blog-share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.do-blog-aside {
  display: grid;
  gap: 1rem;
}

.do-blog-aside__card {
  padding: 1.1rem 1.15rem 1.2rem;
}

.do-blog-aside__card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.do-blog-aside__card p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.do-blog-aside__cta {
  background: linear-gradient(160deg, var(--river-deep) 0%, var(--river) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: inset 0 3px 0 var(--hornbill);
}

.do-blog-aside__cta h2,
.do-blog-aside__cta p {
  color: #fff;
}

.do-blog-aside__cta p {
  opacity: 0.94;
}

.do-blog-aside .do-btn {
  width: 100%;
  margin-top: 0.4rem;
}

.do-blog-aside .do-btn--light {
  background: var(--saffron);
  color: #000;
}

.do-blog-aside .do-btn--light:hover {
  background: var(--maroon);
  color: #fffaf0;
}

.do-aside-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.do-aside-links li {
  border-bottom: 1px solid var(--line);
}

.do-aside-links li:last-child {
  border-bottom: 0;
}

.do-aside-links a {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.62rem 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.do-aside-links a:hover {
  color: var(--leaf);
  text-decoration: none;
}

.do-aside-links span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.8rem;
}

.do-blog-index {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.4rem) var(--space) 2.5rem;
}

.do-featured {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 800px) {
  .do-featured {
    grid-template-columns: 1.15fr 1fr;
    min-height: 340px;
  }
}

.do-featured__media {
  position: relative;
  display: block;
  min-height: 220px;
  height: 100%;
  background: var(--line);
  overflow: hidden;
}

.do-featured__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.do-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.3rem 1.35rem 1.45rem;
}

.do-featured__body h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.25;
}

.do-featured__body h2 a {
  color: inherit;
}

.do-featured__body h2 a:hover {
  color: var(--leaf);
  text-decoration: none;
}

.do-featured__body p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.do-featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.do-story-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

@media (min-width: 720px) {
  .do-story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.do-page-head {
  background: linear-gradient(135deg, #102803 0%, var(--forest) 55%, #1f4a08 100%);
  border-bottom: 0;
  padding: 1.5rem var(--space) 1.85rem;
  color: #eef6e8;
}

.do-page-head__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.do-page-head .do-kicker {
  color: var(--saffron);
}

.do-page-head h1 {
  margin: 0.55rem 0 0.4rem;
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}

.do-page-head .do-lead {
  margin: 0;
  max-width: 52ch;
  color: #d5e4cc;
}

.do-page-head .do-breadcrumb {
  color: #b7c9ae;
}

.do-page-head .do-breadcrumb a {
  color: #fff;
}

.do-page-head .do-breadcrumb li:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.35);
}

.do-breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.do-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: var(--line);
}

.do-breadcrumb a {
  color: var(--leaf);
  font-weight: 600;
}

.do-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.do-contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.3rem 1.35rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
  min-height: 10.5rem;
}

.do-contact-card:hover {
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
}

.do-contact-card strong {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.do-contact-card__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.do-contact-card__hint {
  font-size: 0.9rem;
  opacity: 0.92;
}

.do-contact-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.55rem;
}

.do-contact-card__icon svg {
  width: 100%;
  height: 100%;
}

.do-contact-card--call {
  background: var(--saffron);
  color: #000;
}

.do-contact-card--call:hover {
  color: #000;
}

.do-contact-card--wa {
  background: #128c4a;
}

.do-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 1.15rem;
  align-items: start;
}

.do-contact-form {
  display: grid;
  gap: 0.85rem;
}

.do-contact-form textarea {
  width: 100%;
  min-height: 7rem;
  padding: 0.65rem 0.75rem;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  resize: vertical;
}

.do-contact-form textarea:focus {
  outline: 2px solid var(--leaf);
  outline-offset: 1px;
  border-color: transparent;
}

.do-contact-form .do-btn {
  justify-self: start;
  min-width: 12rem;
}

.do-contact-meta p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.do-contact-meta p:last-child {
  margin-bottom: 0;
}

.do-contact-meta strong {
  color: var(--ink);
}

.do-booking-context {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  background: var(--mist);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--saffron);
}

.do-booking-context p {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.do-booking-context p:last-child {
  margin-bottom: 0;
}

.do-booking-context strong {
  color: var(--ink);
}

@media (max-width: 799px) {
  .do-contact-actions,
  .do-contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Sample property listing */
.pp-body .do-fab {
  display: none;
}

.pp-body {
  background: #fff;
  padding-bottom: 5.75rem;
}

@media (min-width: 960px) {
  .pp-body {
    padding-bottom: 0;
  }
}

.pp-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--space) 2.5rem;
}

.pp-crumb {
  margin-bottom: 0.85rem;
}

.pp-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
  height: min(540px, 64vh);
  margin-bottom: 1.35rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.pp-gallery__main,
.pp-gallery__grid button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: var(--river-deep);
}

.pp-gallery__main {
  grid-row: 1 / -1;
}

.pp-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pp-gallery__grid {
  grid-column: 2;
  grid-row: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 6px;
  min-height: 0;
}

.pp-gallery__all {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  padding: 0.45rem 0.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.8125rem;
  cursor: pointer;
}

@media (max-width: 699px) {
  .pp-gallery {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: hidden;
  }

  .pp-gallery__main {
    height: 220px;
    flex: none;
  }

  .pp-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 88px 88px;
    grid-column: auto;
    grid-row: auto;
  }
}

.pp-layout {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 960px) {
  .pp-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  .pp-book {
    position: sticky;
    top: calc(var(--header-h) + 0.85rem);
  }
}

.pp-titleblock h1 {
  margin: 0.2rem 0 0.4rem;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  line-height: 1.2;
}

.pp-loc {
  margin: 0 0 0.75rem;
  color: var(--muted);
  max-width: 52ch;
}

.pp-rating {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.pp-rating strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.2rem 0.45rem;
  border-radius: 8px;
  background: var(--leaf-dark);
  color: #fff;
  font-size: 0.95rem;
}

.pp-block {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  content-visibility: auto;
  contain-intrinsic-size: 1px 420px;
}

.pp-block h2 {
  margin: 0 0 0.65rem;
  font-size: 1.28rem;
}

.pp-block h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.05rem;
}

.pp-block p,
.pp-block li {
  color: var(--muted);
}

.pp-block__sub {
  margin: -0.2rem 0 1rem;
}

.pp-split {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .pp-split {
    grid-template-columns: 1fr 1fr;
  }
}

.pp-split__col {
  padding: 1rem 1.05rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
}

.pp-split__col h3 {
  margin: 0 0 0.65rem;
}

.pp-split__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-split__col li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.45rem;
  font-size: 0.92rem;
}

.pp-split__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
}

.pp-split__col--in li::before {
  background: var(--leaf-dark);
  box-shadow: inset 0 0 0 2px var(--leaf-dark), inset 0 0 0 3px #fff;
}

.pp-split__col--out li::before {
  background: transparent;
  border: 2px solid #b45309;
}

.pp-days {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .pp-days {
    grid-template-columns: 1fr;
  }
}

.pp-day {
  padding: 1rem 1.05rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pp-day__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 1.55rem;
  margin-bottom: 0.55rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: var(--saffron);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pp-day h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: var(--ink);
}

.pp-day ul {
  margin: 0;
  padding-left: 1.1rem;
}

.pp-itin-note {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
}

.pp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.pp-tabs__btn {
  min-height: 44px;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #000;
  font: inherit;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
}

.pp-tabs__btn:hover {
  border-color: var(--saffron);
}

.pp-tabs__btn.is-active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #000;
}

.pp-itin-panel {
  display: none;
}

.pp-itin-panel.is-active {
  display: block;
}

.pp-todos {
  display: grid;
  gap: 0.85rem;
}

.pp-todo {
  padding: 1rem 1.05rem 1.1rem;
  background: var(--mist);
  border-radius: var(--radius);
}

.pp-todo h3 {
  margin: 0 0 0.55rem;
}

.pp-todo ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-todo li {
  position: relative;
  padding: 0.38rem 0 0.38rem 1.7rem;
  font-size: 0.92rem;
}

.pp-todo li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 1.05rem;
  height: 1.05rem;
  border: 1.5px solid var(--leaf-dark);
  border-radius: 4px;
  background: #fff;
}

.pp-todo li::after {
  content: "";
  position: absolute;
  left: 0.22rem;
  top: 0.62rem;
  width: 0.55rem;
  height: 0.32rem;
  border-left: 2px solid var(--leaf-dark);
  border-bottom: 2px solid var(--leaf-dark);
  transform: rotate(-45deg);
}

.pp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-chips li {
  padding: 0.4rem 0.75rem;
  background: var(--leaf-soft);
  color: var(--leaf-dark);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pp-rooms {
  display: grid;
  gap: 0.9rem;
}

.pp-room {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.pp-room:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 2px;
}

@media (min-width: 720px) {
  .pp-room {
    grid-template-columns: 280px minmax(0, 1fr);
    grid-template-areas:
      "media body"
      "inc inc";
    align-items: start;
  }

  .pp-room__media {
    grid-area: media;
  }

  .pp-room__body {
    grid-area: body;
  }

  .pp-room__inc {
    grid-area: inc;
    grid-template-columns: 1fr 1fr;
  }

  .pp-room__inc div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .pp-room__inc div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

.pp-room.is-selected {
  border-color: var(--laterite);
  box-shadow: 0 0 0 2px rgba(242, 146, 26, 0.28);
}

.pp-room__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--line);
}

.pp-room__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pp-room__inc {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0.35rem 0.4rem 0.5rem;
  border-top: 1px solid var(--line);
}

.pp-room__inc div {
  margin: 0;
  padding: 0.95rem 1.1rem;
}

@media (max-width: 719px) {
  .pp-room__inc div + div {
    border-top: 1px solid var(--line);
  }
}

.pp-room__inc dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pp-room__inc dd {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.pp-room__body {
  padding: 0.95rem 1.05rem 1.05rem;
}

.pp-room__body h3 {
  margin: 0 0 0.2rem;
}

.pp-room__meta,
.pp-room__price span {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.pp-room__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.55rem 0 0.7rem;
  padding: 0;
  list-style: none;
}

.pp-room__perks li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--leaf-dark);
  background: var(--leaf-soft);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.pp-room__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}

.pp-room__price strong {
  font-size: 1.25rem;
  color: var(--ink);
}

.pp-strike {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.9rem;
}

.pp-reviews {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}

.pp-reviews li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.pp-reviews__who {
  margin: 0 0 0.3rem;
  color: var(--ink);
  font-size: 0.9rem;
}

.pp-reviews p {
  margin: 0;
}

.pp-policy {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.pp-policy div {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 0.5rem;
}

.pp-policy dt {
  font-weight: 700;
  color: var(--ink);
}

.pp-policy dd {
  margin: 0;
}

.pp-near {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .pp-near {
    grid-template-columns: 1fr 1fr;
  }
}

.pp-near li {
  padding: 0.9rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pp-near strong {
  display: block;
  color: var(--ink);
}

.pp-near span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--leaf);
}

.pp-near p {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
}

.pp-book__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.15rem 1.2rem;
  border-top: 3px solid var(--laterite);
}

.pp-book__off {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--laterite);
}

.pp-book__price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0;
}

.pp-book__price strong {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.pp-book__tax,
.pp-book__room,
.pp-book__fine {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.pp-book__form {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.pp-book__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.pp-book__form .do-btn {
  width: 100%;
}

.pp-mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem var(--space);
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(20, 32, 27, 0.08);
}

.pp-mobile-bar strong {
  display: block;
  font-size: 1.15rem;
}

.pp-mobile-bar span {
  font-size: 0.78rem;
  color: var(--muted);
}

@media (min-width: 960px) {
  .pp-mobile-bar {
    display: none;
  }
}

.pp-prompt {
  width: min(420px, 94vw);
  max-height: 92vh;
  margin: auto;
  padding: 1.2rem 1.15rem 1.25rem;
  overflow: auto;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  color: #000;
  box-shadow: var(--shadow);
}

.pp-prompt::backdrop {
  background: rgba(18, 44, 3, 0.72);
}

.pp-prompt h2 {
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
}

.pp-prompt form > p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.pp-prompt .do-field {
  margin-bottom: 0.75rem;
}

.pp-prompt .pp-book__row {
  margin-bottom: 0;
}

.pp-prompt__actions {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.pp-prompt__actions .do-btn {
  flex: 1;
}

.pp-lightbox {
  width: min(920px, 94vw);
  max-height: 88vh;
  padding: 0.75rem;
  border: 0;
  border-radius: var(--radius);
}

.pp-lightbox::backdrop {
  background: rgba(18, 44, 3, 0.72);
}

.pp-lightbox__close {
  display: block;
  margin: 0 0 0.65rem auto;
  border: 0;
  background: var(--saffron);
  color: #000;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.pp-lightbox__track {
  display: grid;
  gap: 0.55rem;
  overflow: auto;
  max-height: calc(88vh - 3rem);
}

.pp-lightbox__track img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.do-stay-list {
  display: grid;
  gap: 1rem;
}

.do-stay-list--tight {
  margin-bottom: 1rem;
}

.do-stay {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

@media (min-width: 760px) {
  .do-stay {
    grid-template-columns: 240px minmax(0, 1fr) 200px;
    align-items: stretch;
  }
}

.do-stay--featured {
  border-color: var(--laterite);
  box-shadow: 0 0 0 2px rgba(242, 146, 26, 0.22);
}

.do-stay__media {
  position: relative;
  display: block;
  min-height: 180px;
  background: var(--line);
  color: inherit;
}

.do-stay__media:hover {
  text-decoration: none;
}

.do-stay__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

@media (min-width: 760px) {
  .do-stay__media img {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.do-stay__badges {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.do-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.do-badge--featured {
  background: var(--saffron);
  color: var(--forest);
}

.do-badge--trusted {
  background: var(--river-deep);
  color: #fff;
}

.do-stay__body {
  padding: 1rem 1.1rem 0.85rem;
}

.do-stay__loc {
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--leaf);
}

.do-stay__title {
  margin: 0 0 0.25rem;
  font-size: 1.12rem;
  line-height: 1.3;
}

.do-stay__title a {
  color: inherit;
}

.do-stay__title a:hover {
  color: var(--leaf);
  text-decoration: none;
}

.do-stay__rating {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.do-stay__rating strong {
  display: inline-block;
  padding: 0.05rem 0.4rem;
  border-radius: 6px;
  background: var(--river-deep);
  color: #fff;
  font-size: 0.8rem;
}

.do-stay__hits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.do-stay__hits li {
  padding: 0.22rem 0.55rem;
  background: var(--mist);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}

.do-stay__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.1rem 1.1rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 760px) {
  .do-stay__aside {
    border-top: 0;
    border-left: 1px solid var(--line);
    text-align: right;
    align-items: flex-end;
  }
}

.do-stay__strike {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
}

.do-stay__price {
  margin: 0;
  line-height: 1.2;
}

.do-stay__price strong {
  font-size: 1.35rem;
}

.do-stay__price span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.do-stay__tax {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.do-stay__aside .do-btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 760px) {
  .do-stay__aside .do-btn {
    width: auto;
    min-width: 9.5rem;
  }
}

/* Sample gallery cards — activities / photo grids */
.do-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .do-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .do-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.do-gallery-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.do-gallery-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.do-gallery-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--line);
  color: inherit;
}

.do-gallery-card__media:hover {
  text-decoration: none;
}

.do-gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.do-gallery-card__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(23, 52, 4, 0.78);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.do-gallery-card__body {
  padding: 1.05rem 1.15rem 1.2rem;
}

.do-gallery-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--forest);
}

.do-gallery-card__title a {
  color: inherit;
}

.do-gallery-card__title a:hover {
  color: var(--leaf);
  text-decoration: none;
}

.do-gallery-card__desc {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.do-gallery-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--leaf);
}

.do-gallery-card__link:hover {
  color: var(--forest);
}

.do-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
}

.do-gallery-filter {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--forest);
  border-radius: 999px;
  min-height: 40px;
  padding: 0.4rem 0.95rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.do-gallery-filter:hover {
  border-color: var(--leaf);
  color: var(--leaf);
}

.do-gallery-filter.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.do-gallery-card.is-hidden {
  display: none;
}

.do-gallery-empty {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.do-place-list {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.1rem;
}

.do-place {
  display: grid;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 720px) {
  .do-place {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  }
}

.do-place__media {
  position: relative;
  display: block;
  background: #1a2e10;
}

.do-place__media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

@media (min-width: 720px) {
  .do-place__media img {
    min-height: 100%;
    max-height: 280px;
  }
}

.do-place__num {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  height: 1.85rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: var(--saffron);
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
}

.do-place__body {
  padding: 1.05rem 1.15rem 1.15rem;
}

.do-place__meta {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.do-place__title {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.do-place__title a {
  color: inherit;
  text-decoration: none;
}

.do-place__title a:hover {
  color: var(--leaf);
}

.do-place__body > p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.do-place__tips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.do-place__tips li {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}

.do-place__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.95rem;
}

.do-section .do-blog-toc {
  margin: 0 0 0.25rem;
}

.do-calc {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .do-calc {
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.85fr);
  }
}

.do-calc__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem 1.25rem;
}

.do-calc__totals {
  border-top: 3px solid var(--laterite);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .do-calc__totals {
    position: sticky;
    top: 5.5rem;
  }
}

.do-calc__panel h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.do-calc__choices {
  display: grid;
  gap: 0.7rem;
}

@media (min-width: 600px) {
  .do-calc__choices {
    grid-template-columns: 1fr 1fr;
  }
}

.do-calc__choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 0.7rem;
  align-items: start;
  margin: 0;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--mist);
  cursor: pointer;
}

.do-calc__choice:has(input:checked) {
  border-color: var(--leaf);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--leaf);
}

.do-calc__choice input {
  margin-top: 0.2rem;
}

.do-calc__choice strong {
  display: block;
  font-size: 1rem;
}

.do-calc__choice span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.do-calc__choice em {
  display: block;
  margin-top: 0.35rem;
  font-style: normal;
  font-weight: 700;
  color: var(--river);
}

.do-calc__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1rem;
}

.do-calc__acts {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

@media (min-width: 600px) {
  .do-calc__acts {
    grid-template-columns: 1fr 1fr;
  }
}

.do-calc__act {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin: 0;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--mist);
  cursor: pointer;
}

.do-calc__act:has(input:checked) {
  border-color: var(--leaf);
  background: var(--surface);
}

.do-calc__act--bundle {
  grid-column: 1 / -1;
  background: var(--surface);
}

.do-calc__act span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 650;
}

.do-calc__act b {
  font-weight: 700;
  color: var(--river);
  white-space: nowrap;
}

.do-calc__hint {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.do-calc__sum {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1rem;
}

.do-calc__sum div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.do-calc__sum strong {
  font-variant-numeric: tabular-nums;
}

.do-calc__grand {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  margin: 0 0 0.35rem;
}

.do-calc__grand b {
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.do-calc__avg {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.do-calc__totals .do-btn {
  width: 100%;
}

.do-calc__totals .do-btn + .do-btn {
  margin-top: 0.5rem;
}
