/* Paris Diva Tours. Hand-written stylesheet, no framework.
   Palette taken from the logo: cream paper, teal, coral.
   One display face (Lora, self-hosted, OFL) does the whole site; the system sans
   is kept for form controls and a few small labels where it reads better. */

@font-face {
  font-family: "Lora";
  src: url("/fonts/lora.woff") format("woff");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("/fonts/lora-italic.woff") format("woff");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #f8f5ee;
  --cream: #efead7;
  --cream-deep: #e3dcc4;
  --ink: #2b2622;
  --ink-soft: #574f48;
  --muted: #675e56;
  --teal: #76c0b3;
  --teal-mid: #2a7a6c;
  --teal-deep: #1f5b51;
  --coral: #de7d65;
  --coral-btn: #b4523b;
  --coral-btn-hover: #9d4530;
  --coral-text: #a84a2c;
  --rule: rgba(43, 38, 34, 0.16);
  --rule-soft: rgba(43, 38, 34, 0.09);
  --serif: "Lora", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Noto Serif Devanagari", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans Devanagari", sans-serif;
  --wrap: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --radius: 3px;
  --radius-btn: 6px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.1875rem, 1.06rem + 0.35vw, 1.3125rem);
  line-height: 1.62;
  font-feature-settings: "kern", "liga";
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}
ul,
ol {
  padding: 0;
}
a {
  color: var(--teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}
a:hover {
  color: var(--coral-text);
}
:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 2px;
}
[hidden] {
  display: none !important;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
::selection {
  background: var(--teal);
  color: var(--ink);
}
html:lang(hi) body {
  line-height: 1.78;
}

/* ---------- Type ---------- */
.h1,
.hero__h1 {
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.012em;
  font-size: clamp(2.3rem, 4.9vw, 3.9rem);
  text-wrap: balance;
}
.hero__h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  letter-spacing: -0.018em;
}
.h2 {
  font-weight: 600;
  line-height: 1.12;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.h2--mt {
  margin-top: 2.5rem;
}
.h3 {
  font-weight: 600;
  line-height: 1.18;
  font-size: clamp(1.5rem, 2.3vw, 1.95rem);
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.h4 {
  font-weight: 600;
  line-height: 1.25;
  font-size: 1.3rem;
}
.lead {
  font-size: clamp(1.35rem, 1.6vw, 1.62rem);
  line-height: 1.46;
  color: var(--ink-soft);
  max-width: 36em;
  text-wrap: pretty;
}
.lead--sm {
  font-size: clamp(1.25rem, 1.3vw, 1.4rem);
}
.eyebrow {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
}
.prose p + p,
.prose p + h2,
.prose h2 + p,
.prose p + h3,
.prose h3 + p {
  margin-top: 1.05em;
}
.prose h2,
.prose h3 {
  margin-top: 1.9em;
}
.prose--lg,
.prose--lg p {
  font-size: clamp(1.25rem, 1.25vw, 1.4rem);
  line-height: 1.56;
}
.prose--article p {
  font-size: clamp(1.25rem, 1.3vw, 1.42rem);
  line-height: 1.62;
}

/* ---------- Layout ---------- */
.wrap {
  width: min(100% - 2 * var(--gutter), var(--wrap));
  margin-inline: auto;
}
.wrap--narrow {
  max-width: 44rem;
}
.wrap--article-hero {
  max-width: 58rem;
}
.section {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}
.section--tight {
  padding-block: clamp(2rem, 4vw, 3.5rem);
}
.section--cream {
  background: var(--cream);
}
.section__head {
  margin-bottom: 2.5rem;
}
.section__head .lead {
  margin-top: 0.85rem;
}
.section__more {
  margin-top: 2.5rem;
}
.h2 + .lead,
.h2 + .lead--sm {
  margin-top: 0.85rem;
  margin-bottom: 2.25rem;
}
.h2 + p:not(.lead) {
  margin-top: 1rem;
}
.grid {
  display: grid;
  gap: 2rem;
}
.grid--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}
.grid--gap-lg {
  gap: 2.75rem 3rem;
}
.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-btn);
  z-index: 100;
}
.skip:focus {
  top: 1rem;
}

/* ---------- Buttons and links ---------- */
.btn {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-btn);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn--primary {
  background: var(--coral-btn);
  color: #fff;
  border-color: var(--coral-btn);
}
.btn--primary:hover {
  background: var(--coral-btn-hover);
  border-color: var(--coral-btn-hover);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--sm {
  font-size: 1rem;
  padding: 0.62rem 1.1rem;
}
.btn--lg {
  font-size: 1.18rem;
  padding: 1.05rem 1.75rem;
}
.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}
.btn:disabled {
  opacity: 0.6;
  cursor: wait;
}
.btns .btn + .btn {
  margin-left: 0.5rem;
}
.link-arrow {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
}
.link-arrow::after {
  content: " \2192";
  display: inline-block;
  transition: transform 0.15s ease;
}
.link-arrow:hover::after {
  transform: translateX(4px);
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-top: 1rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 238, 0.95);
  backdrop-filter: saturate(1.2) blur(6px);
  border-bottom: 1px solid var(--rule);
}
.site-header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark {
  width: 50px;
  height: auto;
}
.brand__word {
  width: 136px;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  justify-content: flex-end;
}
.nav__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav__list a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.08rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.nav__list a:hover,
.nav__list a[aria-current="page"] {
  border-bottom-color: var(--coral);
}
.nav__aside {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang {
  display: inline-flex;
  gap: 0.15rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
}
.lang a {
  text-decoration: none;
  padding: 0.32rem 0.5rem;
  border-radius: 4px;
  color: var(--muted);
}
.lang a:hover {
  color: var(--ink);
  background: var(--cream);
}
.lang a.lang__cur {
  color: var(--ink);
  background: var(--cream-deep);
}
.menu-btn {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-btn);
  padding: 0.55rem 0.9rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.menu-btn__bars {
  width: 19px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.menu-btn__bars::before,
.menu-btn__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  background: var(--ink);
}
.menu-btn__bars::before {
  top: -6px;
}
.menu-btn__bars::after {
  top: 6px;
}

@media (max-width: 959px) {
  .menu-btn {
    display: inline-flex;
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--gutter) 1.5rem;
    gap: 1rem;
    box-shadow: 0 20px 40px -30px rgba(43, 38, 34, 0.5);
  }
  .nav.is-open {
    display: flex;
  }
  .nav__list {
    flex-direction: column;
    gap: 0;
  }
  .nav__list a {
    display: block;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--rule-soft);
    font-size: 1.2rem;
  }
  .nav__list a[aria-current="page"] {
    border-bottom-color: var(--rule-soft);
    color: var(--coral-text);
  }
  .nav__aside {
    justify-content: space-between;
    padding-top: 0.5rem;
  }
  .brand__word {
    width: 120px;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(2.25rem, 5vw, 5rem) clamp(2.5rem, 6vw, 5rem);
}
.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 4.5rem;
  }
  .hero__media {
    margin-top: 2rem;
  }
}
.hero__lead {
  margin-top: 1.6rem;
  font-size: clamp(1.25rem, 1.4vw, 1.45rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 32em;
  text-wrap: pretty;
}
.hero__proof {
  margin-top: 1.6rem;
  font-size: 1.08rem;
}
.hero__proof a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.hero__proof a:hover {
  border-bottom-color: var(--ink);
}
.rating__star {
  color: var(--coral);
  font-size: 1.1em;
}
.hero__cta {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}
.figure__cap {
  font-style: italic;
  font-size: 0.98rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* ---------- Tour cards ---------- */
.card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.card__media {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}
.card__media img {
  width: 100%;
  aspect-ratio: var(--ratio, 4 / 3);
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card__media img {
  transform: scale(1.02);
}
.card__tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--paper);
  color: var(--coral-text);
  font-size: 0.95rem;
  font-style: italic;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}
.card__title {
  font-size: clamp(1.45rem, 2.1vw, 1.85rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.005em;
}
.card__title a {
  color: var(--ink);
  text-decoration: none;
}
.card__title a:hover {
  color: var(--coral-text);
}
.card__meta {
  font-size: 1rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.4rem;
  margin-top: 0.45rem;
}
.card__text {
  margin-top: 0.65rem;
  color: var(--ink-soft);
}
.card__foot {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.card__price {
  font-size: 1.22rem;
  font-weight: 600;
}
.card__from {
  font-size: 0.96rem;
  font-weight: 400;
  color: var(--muted);
}
.card--featured {
  margin-bottom: 3.25rem;
}
@media (min-width: 960px) {
  .card--featured {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 0;
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .card--featured .card__media {
    border-radius: 0;
  }
  .card--featured .card__media img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 400px;
  }
  .card--featured .card__body {
    padding: 2.5rem 2.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .card--featured .card__title {
    font-size: clamp(1.7rem, 2.5vw, 2.15rem);
  }
}

/* ---------- The written passage (home) ---------- */
.essay {
  display: grid;
  gap: 1.5rem 3rem;
}
@media (min-width: 960px) {
  .essay {
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    align-items: start;
  }
  .essay__h {
    grid-column: 1 / -1;
    max-width: 20ch;
  }
  .essay__note {
    position: sticky;
    top: 110px;
  }
}
.essay__h {
  margin-bottom: 0.75rem;
}
.essay__note {
  border-top: 2px solid var(--coral);
  padding-top: 0.9rem;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* ---------- Quotes and reviews ---------- */
.reviews__h {
  max-width: 22ch;
}
.reviews__intro {
  margin-top: 0.85rem;
  color: var(--muted);
  font-style: italic;
  max-width: 40em;
}
.quote {
  margin-top: 2.75rem;
  max-width: 26em;
}
.quote blockquote p {
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
  line-height: 1.16;
  font-style: italic;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.quote figcaption {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.reviews__rest {
  list-style: none;
  display: grid;
  gap: 2rem 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
@media (min-width: 800px) {
  .reviews__rest {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.review blockquote p {
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.45;
}
.review__by {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 1rem;
}
.reviews__more {
  margin-top: 2.5rem;
}
.reviews__list {
  list-style: none;
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}
.reviews__list--col {
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

/* ---------- Split and banner ---------- */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .split {
    grid-template-columns: 5fr 6fr;
    gap: 4rem;
  }
  .split--rev {
    grid-template-columns: 4fr 7fr;
  }
  .split--form {
    grid-template-columns: 5fr 6fr;
    align-items: start;
  }
}
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.split__text .h2 + p,
.split__text p + p {
  margin-top: 1.1rem;
}
.banner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .banner {
    grid-template-columns: 1.6fr 1fr;
    gap: 3.5rem;
  }
}
.banner__text p {
  margin-top: 1.1rem;
}
.banner__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- FAQ ---------- */
.faq {
  border-top: 1px solid var(--rule);
  margin-top: 1.75rem;
}
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2.75rem 1.15rem 0;
  font-weight: 600;
  font-size: 1.22rem;
  position: relative;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__icon {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--teal-mid);
  left: 0;
  top: 6px;
  width: 15px;
  height: 2px;
  transition: transform 0.2s ease;
}
.faq__icon::after {
  transform: rotate(90deg);
}
.faq__item[open] .faq__icon::after {
  transform: rotate(0);
}
.faq__q:hover {
  color: var(--coral-text);
}
.faq__a {
  padding: 0 0 1.4rem;
  color: var(--ink-soft);
  max-width: 58ch;
}

/* ---------- Page head, breadcrumbs ---------- */
.page-head {
  padding-block: clamp(1.5rem, 3vw, 2.75rem) clamp(1rem, 2vw, 2rem);
}
.page-head .h1 {
  margin-top: 0.85rem;
}
.page-head .lead {
  margin-top: 1.1rem;
}
.page-head .eyebrow {
  margin-top: 0.85rem;
}
.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 1rem;
  color: var(--muted);
}
.crumbs li + li::before {
  content: "/";
  margin-right: 0.4rem;
  color: var(--cream-deep);
}
.crumbs a {
  color: var(--muted);
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--ink);
}

/* ---------- Comparison table ---------- */
.compare {
  margin-top: 3rem;
  overflow-x: auto;
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare__table th,
.compare__table td {
  text-align: left;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: top;
}
.compare__table thead th {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--teal-deep);
  border-bottom: 2px solid var(--teal);
}
.compare__table tbody th {
  font-weight: 600;
  white-space: nowrap;
  width: 1%;
  padding-right: 2rem;
}
.compare__table td {
  color: var(--ink-soft);
}

/* ---------- Tour page ---------- */
.tour__head {
  margin-top: 0.85rem;
}
.tour__head .lead {
  margin-top: 1.1rem;
}
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.75rem;
  margin-top: 1.75rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
}
.facts__k {
  display: block;
  font-size: 1rem;
  color: var(--muted);
}
.facts__v {
  display: block;
  margin: 0;
  font-weight: 600;
}
.rating {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  font-size: 1.05rem;
}
.rating:hover {
  border-bottom-color: var(--ink);
}
.tour__hero {
  margin-top: 2.25rem;
}
.tour__hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (min-width: 700px) {
  .tour__hero img {
    aspect-ratio: 21 / 9;
  }
}
.tour__grid {
  display: grid;
  gap: 3rem;
  margin-top: 2.75rem;
}
@media (min-width: 1040px) {
  .tour__grid {
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 4.5rem;
    align-items: start;
  }
  .tour__side {
    position: sticky;
    top: 100px;
  }
}
.tour__section {
  margin-top: 3.25rem;
}
.tour__section .h3 {
  margin-bottom: 1.35rem;
}

/* Itinerary: run-in headings, hairline between stops, no numbered discs. */
.stops {
  list-style: none;
  border-top: 1px solid var(--rule-soft);
}
.stop {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink-soft);
  text-wrap: pretty;
}
.stop__h {
  font-weight: 600;
  color: var(--ink);
}

.incl p {
  color: var(--ink-soft);
}
.incl p + p {
  margin-top: 0.8rem;
}
.incl__k {
  font-weight: 600;
  color: var(--ink);
}

ul.dots {
  list-style: none;
  border-top: 1px solid var(--rule-soft);
}
ul.dots li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink-soft);
}
.meeting {
  margin-top: 3.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.9rem;
}
.meeting__addr {
  font-size: 1.22rem;
  font-weight: 600;
  margin-top: 0.8rem;
}
.meeting__transport {
  list-style: none;
  margin-top: 0.6rem;
  color: var(--ink-soft);
}
.meeting__note {
  margin-top: 0.85rem;
  color: var(--ink-soft);
}
.meeting p:last-child {
  margin-top: 0.85rem;
}
.tour__journal {
  margin-top: 3.25rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
}
.tour__journal p + p {
  margin-top: 0.45rem;
}

/* ---------- Booking widget ---------- */
.book {
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.7rem;
  box-shadow: 0 12px 34px -26px rgba(43, 38, 34, 0.45);
}
.book__title {
  font-size: 1.55rem;
  font-weight: 600;
}
.book__sub {
  color: var(--muted);
  font-size: 1.02rem;
  margin-top: 0.3rem;
  margin-bottom: 1.3rem;
}
.book__field {
  display: block;
  border: 0;
  padding: 0;
  margin: 0 0 1.05rem;
  min-width: 0;
}
.book__label {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}
.book input[type="date"],
.book input[type="text"],
.book select,
.ask input,
.ask select,
.ask textarea {
  width: 100%;
  background: var(--paper);
  border: 1.5px solid var(--cream-deep);
  border-radius: 5px;
  padding: 0.7rem 0.8rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  min-height: 50px;
}
.book input:focus,
.book select:focus,
.ask input:focus,
.ask select:focus,
.ask textarea:focus {
  outline: none;
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(118, 192, 179, 0.35);
}
.book__two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
@media (max-width: 430px) {
  .book__two {
    grid-template-columns: 1fr;
  }
}
.book__radio {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  border: 1.5px solid var(--cream-deep);
  border-radius: 5px;
  padding: 0.85rem 0.95rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
}
.book__radio:has(input:checked) {
  border-color: var(--teal-mid);
  background: rgba(118, 192, 179, 0.12);
}
.book__radio input {
  margin-top: 0.4rem;
  accent-color: var(--teal-mid);
}
.book__radio-body {
  display: block;
}
.book__radio-title {
  display: block;
  font-weight: 600;
}
.book__radio-detail {
  display: block;
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.35;
  margin-top: 0.15rem;
}
.book__radio-price {
  display: block;
  font-size: 1rem;
  color: var(--muted);
  margin-top: 0.3rem;
}
.book__travelers {
  border-top: 1px solid var(--rule-soft);
  margin-top: 0.3rem;
}
.book__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--rule-soft);
}
.book__row-label {
  display: block;
  font-weight: 600;
}
.book__row-sub {
  display: block;
  font-size: 0.98rem;
  color: var(--muted);
}
.stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.stepper__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
}
.stepper__btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  fill: none;
}
.stepper__btn:hover {
  background: var(--ink);
  color: var(--paper);
}
.stepper__btn:disabled {
  opacity: 0.3;
  cursor: default;
  background: transparent;
  color: var(--ink);
}
.stepper__input {
  width: 2.8rem;
  text-align: center;
  border: 0;
  background: transparent;
  font-size: 1.2rem;
  font-weight: 600;
  -moz-appearance: textfield;
  appearance: textfield;
}
.stepper__input::-webkit-outer-spin-button,
.stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.book__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.15rem 0 1rem;
  font-size: 1.12rem;
}
.book__total strong {
  font-size: 1.75rem;
  font-weight: 600;
}
.book__error {
  background: #fbe9e4;
  color: #8a3b24;
  border-radius: 5px;
  padding: 0.75rem 0.95rem;
  font-size: 1.02rem;
  margin-bottom: 0.9rem;
}
.book__note {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-top: 0.85rem;
  line-height: 1.45;
}
.book__note--muted {
  color: var(--muted);
  font-size: 0.98rem;
  margin-top: 0.55rem;
}
.bookbar {
  display: none;
}
@media (max-width: 1039px) {
  .bookbar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    background: rgba(248, 245, 238, 0.97);
    backdrop-filter: blur(6px);
    border-top: 1px solid var(--rule);
    padding: 0.65rem 0;
    transform: translateY(0);
    transition: transform 0.25s ease;
  }
  .bookbar.is-hidden {
    transform: translateY(110%);
  }
  .bookbar__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .bookbar__price {
    font-size: 1rem;
    color: var(--ink-soft);
  }
  .bookbar__price strong {
    font-size: 1.25rem;
    color: var(--ink);
  }
  body.page-tour {
    padding-bottom: 82px;
  }
}

/* ---------- Private tours ---------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
@media (min-width: 960px) {
  .mosaic {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
  }
  .mosaic__item--2,
  .mosaic__item--4 {
    margin-top: 3rem;
  }
}
.mosaic__item img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}
.mosaic__item--2 img {
  object-position: 20% center;
}
.services {
  list-style: none;
  display: grid;
  gap: 2.25rem 3.5rem;
  margin-top: 1rem;
}
@media (min-width: 800px) {
  .services {
    grid-template-columns: 1fr 1fr;
  }
}
.service .h3 {
  font-size: clamp(1.35rem, 1.9vw, 1.6rem);
}
.service p {
  margin-top: 0.55rem;
  color: var(--ink-soft);
}
.ask {
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.ask .h3 {
  margin-bottom: 1.3rem;
}
.ask textarea {
  resize: vertical;
}
/* Honeypot: off screen for people, still in the DOM for naive bots. */
.ask__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ask__status {
  margin-top: 0.75rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--teal-deep);
}

.ask__status--error {
  color: var(--coral-text);
}

.ask__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

/* ---------- Journal ---------- */
.articles {
  list-style: none;
  display: grid;
  gap: 2.75rem;
}
@media (min-width: 960px) {
  .articles {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.75rem;
  }
  .article-card--lead {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 3rem;
    align-items: center;
  }
}
.article-card__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
}
.article-card__body {
  margin-top: 1.1rem;
}
.article-card__body .h3 {
  margin-top: 0.55rem;
}
.article-card__body .h3 a {
  color: var(--ink);
  text-decoration: none;
}
.article-card__body .h3 a:hover {
  color: var(--coral-text);
}
.article-card__body p {
  margin-top: 0.65rem;
  color: var(--ink-soft);
}
.article__head {
  margin-top: 1rem;
}
.article__head .h1 {
  margin-top: 0.85rem;
}
.article__head .lead {
  margin-top: 1.1rem;
}
.figure--hero {
  margin-top: 2.5rem;
}
.figure--hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}
.prose--article {
  margin-top: 2.75rem;
}
.figure--article {
  margin-block: 2.25rem;
}
.figure--article img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
}
.note {
  margin: 2.25rem 0;
  padding: 0.2rem 0 0.2rem 1.4rem;
  border-left: 2px solid var(--coral);
  font-style: italic;
  color: var(--ink-soft);
}
.pull {
  margin: 2.5rem 0;
  font-style: italic;
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  line-height: 1.24;
  color: var(--teal-deep);
  text-wrap: pretty;
}
.related {
  margin-top: 3.5rem;
  padding: 1.9rem;
  background: var(--cream);
  border-radius: var(--radius);
}
.related__t {
  font-size: 1.45rem;
  font-weight: 600;
  margin-top: 0.45rem;
}
.related__t a {
  color: var(--ink);
  text-decoration: none;
}
.related p + p {
  margin-top: 0.55rem;
}
.related .btn {
  margin-top: 0.6rem;
}

/* ---------- Practical ---------- */
.meets {
  list-style: none;
  display: grid;
  gap: 2.25rem;
  margin-top: 2.25rem;
}
@media (min-width: 800px) {
  .meets {
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  }
}
.meet p {
  margin-top: 0.45rem;
  color: var(--ink-soft);
}
.meet__t {
  font-size: 1rem;
  color: var(--muted);
}

/* ---------- Result pages ---------- */
.result__logo {
  margin-bottom: 1.6rem;
  width: 160px;
}
.result .lead,
.result p {
  margin-top: 1.1rem;
}
.recap {
  margin-top: 1.6rem;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.6rem 1.85rem;
}
.recap__dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.55rem 1.6rem;
  margin-top: 1.1rem;
}
.recap__dl dt {
  font-size: 1rem;
  color: var(--muted);
  padding-top: 0.2rem;
}
.recap__dl dd {
  margin: 0;
  font-weight: 600;
}
.result__loading,
.result__pending {
  font-size: 1.02rem;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  padding-block: clamp(3rem, 6vw, 4.75rem) 2rem;
}
.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
  }
}
.site-footer__brand img {
  width: 180px;
}
.site-footer__tag {
  margin-top: 1.3rem;
  color: var(--ink-soft);
  max-width: 24em;
}
.site-footer__ta {
  margin-top: 0.8rem;
  font-size: 1.02rem;
}
.site-footer__h {
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.site-footer__list + .site-footer__h,
.site-footer__p + .site-footer__h {
  margin-top: 1.6rem;
}
.site-footer__list {
  list-style: none;
  font-size: 1.05rem;
}
.site-footer__list li {
  margin-bottom: 0.5rem;
}
.site-footer__list a,
.site-footer__p a {
  color: var(--ink);
  text-decoration: none;
}
.site-footer__list a:hover,
.site-footer__p a:hover {
  color: var(--coral-text);
  text-decoration: underline;
}
.site-footer__p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
  font-size: 1rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
}
.site-footer__bottom p {
  margin: 0;
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
