
:root {
  /* Brand colors from logo.jpg */
  --color-primary: #ff7637;
  --color-primary-dark: #e85f20;
  --color-primary-soft: #fff1ea;
  --color-secondary: #703a2a;
  --color-secondary-dark: #4d2419;

  /* Neutral palette */
  --color-background: #f4ede8;
  --color-surface: #ffffff;
  --color-surface-warm: #efe4de;
  --color-border: #e0d2ca;
  --color-text: #703a2a;
  --color-text-muted: #8d6f63;
  --color-white: #ffffff;
  --color-black: #050505;

  /* Semantic colors */
  --color-success: #2f8f5b;
  --color-warning: #d98a12;
  --color-danger: #c73522;
  --color-info: #2d6f9f;

  /* Typography */
  --font-heading: "Cera Regular", Arial, sans-serif;
  --font-display: "Cera Regular", Arial, sans-serif;
  --font-body: "Cera Regular", "Segoe UI", Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 16px;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 3rem;
  --heading-h1: clamp(2.5rem, 5vw, 4.5rem);
  --heading-h2: clamp(2rem, 3.6vw, 3.25rem);
  --heading-h3: clamp(1.5rem, 2.6vw, 2.25rem);
  --heading-h4: clamp(1.25rem, 2vw, 1.75rem);
  --heading-h5: 1.125rem;
  --heading-h6: 1rem;
  --hero-breadcrumb-size: 15px;
  --hero-title-size: clamp(1.65rem, 3.1vw, 2.65rem);
  --hero-description-size: 17px;
  --hero-mobile-title-size: 1.55rem;
  --hero-mobile-description-size: 15px;
  --line-height-tight: 1.15;
  --line-height-normal: 1.55;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Layout */
  --container-width: 1180px;
  --container-padding: clamp(1rem, 4vw, 2rem);
  --header-height: 72px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 6px 18px rgba(112, 58, 42, 0.08);
  --shadow-md: 0 14px 34px rgba(112, 58, 42, 0.12);
  --shadow-lg: 0 24px 60px rgba(112, 58, 42, 0.16);

  /* Motion */
  --transition-fast: 160ms ease;
  --transition-base: 240ms ease;

  /* External image CDN */
  --image-hero: url("https://images.unsplash.com/photo-1528127269322-539801943592?auto=format&fit=crop&w=1800&q=85");
}

/* Blog listing page */
.blogs-page {
  overflow-x: hidden;
  background: var(--color-white);
}

.blogs-hero {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 48px 0;
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
    url("https://images.unsplash.com/photo-1528127269322-539801943592?auto=format&fit=crop&w=1800&q=88") center / cover no-repeat;
}

.blogs-hero__content {
  max-width: 780px;
}

.blogs-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: var(--hero-breadcrumb-size);
  font-weight: 700;
}

.blogs-breadcrumb a {
  color: inherit;
}

.blogs-breadcrumb strong {
  color: var(--color-primary);
}

.blogs-breadcrumb svg {
  width: 15px;
  height: 15px;
  color: var(--color-white);
}

.blogs-hero h1 {
  margin-top: 16px;
  color: var(--color-white);
  font-size: var(--hero-title-size);
  font-weight: 900;
  line-height: 1.05;
}

.blogs-hero p {
  margin-top: 8px;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.blogs-hero span {
  display: block;
  max-width: 620px;
  margin: 8px auto 0;
  color: var(--color-white);
  font-size: var(--hero-description-size);
  line-height: 1.35;
}

.blog-categories {
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-primary-soft);
}

.blog-categories__inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.blog-categories a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 64px;
  color: var(--color-black);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.blog-categories a::after {
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: transparent;
  content: "";
}

.blog-categories a.is-active {
  color: var(--color-primary);
}

.blog-categories a.is-active::after {
  background: var(--color-primary);
}

.blog-categories svg {
  width: 18px;
  height: 18px;
}

.blogs-section {
  padding: 34px 0 70px;
}

.blogs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: start;
  max-width: 100%;
}

.blogs-main,
.blogs-sidebar,
.featured-blog-card,
.blog-card-grid,
.blog-card,
.blog-sidebar-card {
  min-width: 0;
  max-width: 100%;
}

.blogs-main > h2 {
  margin-bottom: 18px;
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.featured-blog-card {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.95fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.featured-blog-card__image,
.blog-card > a {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.featured-blog-card__image img,
.blog-card img,
.blog-about-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.featured-blog-card__image img {
  height: 100%;
  min-height: 260px;
  aspect-ratio: 4 / 3;
}

.featured-blog-card__image span {
  position: absolute;
  top: 14px;
  left: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-blog-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  min-height: 260px;
  padding: 24px;
}

.featured-blog-card__body > div,
.featured-blog-card h3,
.featured-blog-card p,
.blog-card h3,
.blog-card p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 700;
}

.blog-card__meta span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.featured-blog-card h3,
.blog-card h3 {
  margin-top: 8px;
  color: var(--color-primary);
  font-weight: 900;
  line-height: 1.15;
}

.featured-blog-card h3 {
  font-size: 24px;
}

.blog-card h3 {
  font-size: 15px;
}

.featured-blog-card h3 a,
.blog-card h3 a {
  color: inherit;
}

.featured-blog-card__body > div > p:not(.blog-card__meta),
.blog-card__body > p:not(.blog-card__meta) {
  margin-top: 10px;
  color: var(--color-secondary);
  font-size: 14px;
  line-height: 1.35;
}

.featured-blog-card__body > div > p:not(.blog-card__meta) {
  font-size: 15px;
  line-height: 1.45;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
}

.blog-card__link svg {
  width: 15px;
  height: 15px;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.blog-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.blog-card img {
  height: 100%;
  aspect-ratio: 4 / 3;
}

.blog-card__body {
  padding: 12px 13px 14px;
}

.blogs-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 160px;
  min-height: 34px;
  margin: 42px auto 0;
  padding: 0 20px;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary);
  background: var(--color-white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blogs-sidebar {
  display: grid;
  gap: 16px;
}

.blog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px;
  overflow: hidden;
  min-height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
}

.blog-search input {
  min-width: 0;
  padding: 0 16px;
  border: 0;
  outline: 0;
  color: var(--color-secondary);
  font-size: 16px;
}

.blog-search button {
  display: grid;
  place-items: center;
  border: 0;
  color: var(--color-white);
  background: var(--color-primary);
  cursor: pointer;
}

.blog-search svg {
  width: 19px;
  height: 19px;
}

.blog-sidebar-card {
  padding: 18px;
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.blog-sidebar-card h2 {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.blog-about-card > div {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.blog-about-card img {
  height: 126px;
  border-radius: 8px;
}

.blog-about-card p,
.blog-subscribe-card p {
  color: var(--color-secondary);
  font-size: 13px;
  line-height: 1.35;
}

.blog-about-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-top: 14px;
  padding: 0 14px;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-subscribe-card {
  background: var(--color-primary-soft);
}

.blog-subscribe-card form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.blog-subscribe-card input {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  outline: 0;
  color: var(--color-secondary);
  background: var(--color-white);
  font-size: 14px;
}

.blog-subscribe-card input:focus {
  border-color: var(--color-primary);
  box-shadow: inset 0 0 0 1px var(--color-primary);
}

.blog-search:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 118, 55, 0.12);
}

.blog-subscribe-card button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-subscribe-card small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.blog-subscribe-card small svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.blog-socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.blog-socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-white);
}

.blog-socials img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .blogs-layout {
    grid-template-columns: 1fr;
  }

  .blogs-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .blog-categories__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-blog-card {
    grid-template-columns: 1fr;
  }

  .featured-blog-card__image img {
    height: 100%;
    min-height: 220px;
  }

  .featured-blog-card__body {
    min-height: 0;
  }

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

  .blogs-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blogs-hero {
    min-height: 310px;
    padding: 42px 0;
  }

  .blogs-hero h1 {
    font-size: var(--hero-mobile-title-size);
  }

  .blogs-hero p {
    font-size: 18px;
  }

  .blogs-hero span {
    font-size: var(--hero-mobile-description-size);
  }

  .blog-categories__inner {
    display: flex;
    overflow-x: auto;
    max-width: 100%;
    padding: 0;
  }

  .blog-categories a {
    flex: 0 0 auto;
    min-height: 56px;
    padding: 0 14px;
  }

  .blogs-section {
    padding: 26px 0 52px;
  }

  .blogs-main > h2 {
    font-size: 24px;
  }

  .featured-blog-card__image img {
    min-height: 190px;
    aspect-ratio: 4 / 3;
  }

  .featured-blog-card__body {
    padding: 18px;
  }

  .featured-blog-card h3 {
    font-size: 21px;
  }

  .featured-blog-card__body > div > p:not(.blog-card__meta) {
    font-size: 14px;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-card img {
    height: 100%;
  }

  .blog-about-card > div {
    grid-template-columns: 1fr;
  }

  .blog-about-card img {
    height: 170px;
  }
}

/* Contact page */
.contact-hero {
  min-height: 560px;
  padding: 54px 0;
  background-position: center;
  background-size: cover;
  color: var(--color-white);
}

.contact-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.86fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: var(--hero-breadcrumb-size);
}

.contact-breadcrumb a {
  color: var(--color-white);
}

.contact-breadcrumb span {
  color: var(--color-primary);
  font-weight: 700;
}

.contact-breadcrumb svg {
  width: 14px;
  height: 14px;
}

.contact-hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--color-white);
  font-size: var(--hero-title-size);
  line-height: 1.12;
}

.contact-hero__content > p {
  max-width: 660px;
  margin: 18px 0 30px;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
  max-width: 680px;
}

.contact-methods > * {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  color: var(--color-white);
}

.contact-methods > * > svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--color-primary);
  stroke-width: 2.2;
}

.contact-methods span {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.contact-methods strong {
  font-size: 16px;
  line-height: 1.2;
}

.contact-methods small {
  font-size: 15px;
  line-height: 1.4;
}

.contact-methods small {
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-secondary);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.contact-form h2,
.contact-office h2 {
  margin: 0;
  color: var(--color-secondary);
  font-size: 1.25rem;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--color-secondary);
  font-weight: 700;
}

.contact-form label > span:first-child {
  font-size: 14px;
}

.contact-form b {
  margin-left: 3px;
  color: var(--color-primary);
}

.contact-form__control {
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(112, 58, 42, 0.3);
  border-radius: 7px;
}

.contact-form__control:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 118, 55, 0.12);
}

.contact-form__control > svg {
  flex: 0 0 auto;
  width: 18px;
  margin-left: 14px;
  color: var(--color-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-secondary);
  font: inherit;
  font-size: 14px;
}

.contact-form input,
.contact-form select {
  min-height: 42px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 92px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 4px;
  border: 0;
  border-radius: 6px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.contact-form button:hover {
  background: var(--color-secondary);
}

.contact-form button svg {
  width: 20px;
}

.contact-office {
  padding: clamp(42px, 5vw, 70px) 0;
  background: var(--color-white);
}

.contact-office__inner {
  display: grid;
  grid-template-columns: 0.78fr 0.9fr 1.4fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: stretch;
}

.contact-office__address {
  padding-right: 34px;
  border-right: 1px solid var(--color-border);
}

.contact-office address {
  margin: 22px 0 30px;
  color: #8a6a5d;
  font-style: normal;
  line-height: 1.5;
}

.contact-office address strong {
  color: var(--color-secondary);
}

.contact-office .button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 300px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--color-primary);
  border-radius: 7px;
  background: transparent;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.contact-office .button:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.contact-office .button svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.contact-reasons ul {
  display: grid;
  gap: 22px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-reasons li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 700;
}

.contact-reasons svg {
  flex: 0 0 auto;
  width: 20px;
  color: #20b968;
}

.contact-map {
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

@media (max-width: 1080px) {
  .contact-hero__inner {
    grid-template-columns: 1fr;
  }

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

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

  .contact-map {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 36px 0;
  }

  .contact-hero h1 {
    font-size: var(--hero-mobile-title-size);
  }

  .contact-hero__content > p {
    font-size: var(--hero-mobile-description-size);
  }

  .contact-methods,
  .contact-form__grid,
  .contact-office__inner {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .contact-office__address {
    padding-right: 0;
    padding-bottom: 30px;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .contact-map {
    grid-column: auto;
  }
}

/* Blog detail page */
.blog-detail-page {
  overflow-x: hidden;
  background: var(--color-white);
}

.blog-detail-hero {
  display: grid;
  min-height: 330px;
  place-items: center;
  padding: 54px 0;
  color: var(--color-white);
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("https://images.unsplash.com/photo-1559592413-7cec4d0cae2b?auto=format&fit=crop&w=1800&q=88") center / cover no-repeat;
}

.blog-detail-hero__content {
  max-width: 900px;
}

.blog-detail-hero h1 {
  margin-top: 18px;
  color: var(--color-white);
  font-size: var(--hero-title-size);
  font-weight: 900;
  line-height: 1.12;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 800;
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.blog-detail-meta svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.blog-detail-section {
  padding: 48px 0 78px;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 46px;
  align-items: start;
  max-width: 100%;
}

.blog-detail-article,
.blog-detail-sidebar {
  min-width: 0;
  max-width: 100%;
}

.blog-detail-lead,
.blog-detail-article p {
  color: var(--color-secondary);
  font-size: 16px;
  line-height: 1.45;
}

.blog-detail-lead {
  max-width: 760px;
  margin-bottom: 22px;
}

.blog-detail-main-image {
  display: block;
  width: 100%;
  aspect-ratio: 2.45 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.blog-detail-content-block {
  margin-top: 28px;
}

.blog-detail-content-block h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--color-secondary);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.18;
}

.blog-detail-content-block h2 svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

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

.blog-detail-gallery figure {
  min-width: 0;
}

.blog-detail-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.blog-detail-gallery figcaption {
  margin-top: 9px;
  color: var(--color-secondary);
}

.blog-detail-gallery strong,
.blog-detail-gallery span {
  display: block;
}

.blog-detail-gallery strong {
  font-size: 13px;
  font-weight: 900;
}

.blog-detail-gallery span {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
}

.blog-category-card nav {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.blog-category-card nav a,
.blog-category-card nav button {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: 0;
  color: var(--color-secondary);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.blog-category-card__parent {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
}

.blog-category-card__parent > a {
  min-width: 0;
}

.blog-category-card__parent > button {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--color-secondary);
}

.blog-category-card__parent svg {
  grid-area: 1 / 1;
  width: 16px;
  height: 16px;
}

.blog-category-card__parent .blog-category-card__icon-minus,
.blog-category-card__parent.is-open .blog-category-card__icon-plus {
  display: none;
}

.blog-category-card__parent.is-open .blog-category-card__icon-minus {
  display: block;
}

.blog-category-card__parent.is-open > a,
.blog-category-card__parent.is-open > button {
  color: var(--color-primary);
}

.blog-category-card small {
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 900;
}

.blog-category-card__children {
  display: grid;
  gap: 8px;
  overflow: hidden;
  margin: -4px 0 4px 20px;
  padding-left: 14px;
  border-left: 1px solid var(--color-border);
  transition: max-height var(--transition-base), margin var(--transition-base);
}

.blog-category-card__children.is-collapsed {
  margin-top: -9px;
  margin-bottom: 0;
}

.blog-category-card__children a {
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 700;
}

.blog-related-card {
  display: grid;
  gap: 14px;
}

.blog-related-card > a {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.blog-related-card img {
  width: 78px;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.blog-related-card strong,
.blog-related-card small {
  display: block;
}

.blog-related-card strong {
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.blog-related-card small {
  margin-top: 4px;
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1.25;
}

.blog-detail-related {
  margin-top: 56px;
}

.blog-detail-related__header {
  margin-bottom: 24px;
  text-align: center;
}

.blog-detail-related__eyebrow {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.blog-detail-related h2 {
  margin-top: 8px;
  color: var(--color-secondary);
  font-size: clamp(1.35rem, 2.25vw, 2rem);
  font-weight: 900;
  line-height: 1.12;
}

.blog-detail-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.blog-detail-related .blog-card {
  height: 100%;
}

.blog-detail-related .blog-card > a img {
  aspect-ratio: 4 / 3;
}

@media (max-width: 980px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

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

  .blog-related-card {
    grid-column: 1 / -1;
  }

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

@media (max-width: 640px) {
  .blog-detail-hero {
    min-height: 300px;
    padding: 42px 0;
  }

  .blog-detail-hero h1 {
    font-size: var(--hero-mobile-title-size);
  }

  .blog-detail-meta {
    gap: 10px;
    font-size: 13px;
  }

  .blog-detail-section {
    padding: 32px 0 56px;
  }

  .blog-detail-main-image {
    aspect-ratio: 1.35 / 1;
  }

  .blog-detail-content-block h2 {
    font-size: 22px;
  }

  .blog-detail-gallery,
  .blog-detail-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-detail-related {
    margin-top: 40px;
  }

  .blog-detail-related__grid {
    grid-template-columns: 1fr;
  }
}

/* Tour detail lower sections */
.tour-detail-subsection {
  margin-top: 44px;
}

.tour-detail-subsection > h2 {
  margin-bottom: 22px;
  padding-bottom: 0;
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.tour-detail-subsection > h2::after {
  display: none;
}

.tour-map__frame {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-surface-warm);
}

.tour-map {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.tour-map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 2.35 / 1;
  border: 0;
}

.tour-reviews {
  display: grid;
  gap: 14px;
}

.tour-reviews > h2 {
  margin-bottom: 8px;
}

.tour-review {
  padding: 16px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.tour-review__header {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tour-review__header > img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.tour-review__header strong,
.tour-review__header span {
  display: block;
}

.tour-review__header strong {
  color: var(--color-secondary);
  font-size: 15px;
}

.tour-review__header span {
  margin-top: 2px;
  color: #ffc400;
  font-size: 17px;
  line-height: 1;
}

.tour-review > p {
  margin-top: 12px;
  color: var(--color-secondary);
  font-size: 15px;
  line-height: 1.4;
}

.tour-reviews__more {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
}

.tour-reviews__more svg {
  width: 17px;
  height: 17px;
}

.tour-faq__list {
  display: block;
}

.tour-faq__item {
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
}

.tour-faq__item.is-active {
  border-color: var(--color-border);
  box-shadow: none;
}

.tour-faq__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 15px 0;
  border: 0;
  color: var(--color-secondary);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.tour-faq__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-secondary);
  background: transparent;
  transition: transform var(--transition-base);
}

.tour-faq__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke-width: 2.25;
}

.tour-faq__item.is-active .tour-faq__icon {
  color: var(--color-secondary);
  background: transparent;
  transform: rotate(180deg);
}

.tour-faq__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-faq__content {
  padding: 0 34px 16px 0;
}

.tour-faq__content p {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .tour-detail-subsection {
    margin-top: 34px;
  }

  .tour-map iframe {
    aspect-ratio: 16 / 9;
  }

  .tour-review {
    padding: 14px;
  }
}

/* Tour detail content and booking */
.tour-detail-content {
  padding: 8px 0 80px;
  background: var(--color-white);
}

.tour-detail-content__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: 38px;
  align-items: start;
}

.tour-overview__intro {
  width: min(100%, 680px);
  margin: 0 0 14px;
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}

.tour-overview__book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-bottom: 22px;
  padding: 0 24px;
  border-radius: 6px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background-color var(--transition-fast);
}

.tour-overview__book-button:hover {
  background: var(--color-primary-dark);
}

.tour-facts-table {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.tour-facts-table h2 {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-secondary);
  font-size: 22px;
  line-height: 1.15;
  text-transform: uppercase;
}

.tour-facts-table__row {
  display: grid;
  grid-template-columns: 22px 180px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 52px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-secondary);
  font-size: 16px;
  line-height: 1.3;
}

.tour-facts-table__row:last-child {
  border-bottom: 0;
}

.tour-facts-table__row svg {
  width: 19px;
  height: 19px;
  color: var(--color-primary);
}

.tour-facts-table__row a {
  color: var(--color-primary);
  font-weight: 800;
}

.tour-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.tour-benefits section + section {
  padding-left: 30px;
  border-left: 1px solid var(--color-border);
}

.tour-benefits h2,
.tour-itinerary h2 {
  margin-bottom: 16px;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.15;
  text-transform: uppercase;
}

.tour-benefits ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-benefits li {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 8px;
  color: var(--color-secondary);
  font-size: 15px;
  line-height: 1.3;
}

.tour-benefits li svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.tour-itinerary {
  margin-top: 34px;
}

.tour-itinerary h3 {
  margin-top: 20px;
  color: var(--color-secondary);
  font-size: 17px;
}

.tour-itinerary p {
  margin-top: 8px;
  color: var(--color-secondary);
  font-size: 16px;
  line-height: 1.4;
}

.tour-itinerary__note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  padding: 14px 16px;
  color: var(--color-secondary);
  background: var(--color-primary-soft);
  font-size: 14px;
}

.tour-itinerary__note svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.show-detail-page .show-overview__intro h2 {
  margin: 0 0 12px;
  color: var(--color-secondary);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
}

.show-detail-page .show-overview__intro p {
  margin: 10px 0 0;
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.show-detail-page .tour-overview__book-button {
  margin-top: 10px;
}

.show-detail-page .tour-facts-table h2,
.show-detail-page .tour-benefits h2,
.show-detail-page .tour-itinerary h2 {
  font-size: 22px;
  line-height: 1.15;
}

.show-detail-page .tour-detail-subsection > h2 {
  font-size: 22px;
  line-height: 1.15;
}

.show-detail-page .tour-itinerary h3,
.show-detail-page .show-optional-activities h3 {
  font-size: 16px;
  line-height: 1.25;
}

.show-detail-page .tour-faq__header {
  font-size: 14px;
}

.show-price-table {
  overflow-x: auto;
  margin-top: 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.show-price-table table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: var(--color-white);
}

.show-price-table th,
.show-price-table td {
  padding: 13px 14px;
  border: 1px solid var(--color-border);
  color: var(--color-secondary);
  font-size: 14px;
  line-height: 1.25;
  text-align: left;
  vertical-align: top;
}

.show-price-table thead th {
  color: var(--color-primary);
  font-weight: 900;
}

.show-price-table small {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
}

.show-optional-activities {
  display: grid;
  gap: 14px;
}

.show-optional-activities article {
  padding: 16px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.show-optional-activities h3 {
  color: var(--color-secondary);
  font-weight: 900;
}

.show-optional-activities h3 span {
  color: var(--color-primary);
}

.show-optional-activities p {
  margin-top: 8px;
  color: var(--color-secondary);
  font-size: 14px;
  line-height: 1.4;
}

.show-optional-activities a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
}

.tour-booking-column {
  position: static;
}

.tour-booking {
  scroll-margin-top: calc(var(--header-height) + 18px);
  padding: 22px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.tour-booking > h2 {
  margin-bottom: 18px;
  color: var(--color-secondary);
  font-size: 20px;
  text-transform: uppercase;
}

.tour-booking__field {
  display: block;
  margin-top: 14px;
}

.tour-booking__field > span,
.booking-options legend,
.booking-travelers h3 {
  display: block;
  margin-bottom: 7px;
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 900;
}

.tour-booking__field input,
.tour-booking__field select,
.tour-booking__field textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  outline: 0;
  color: var(--color-secondary);
  background: var(--color-white);
  font-size: 15px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.tour-booking__field input:focus,
.tour-booking__field select:focus,
.tour-booking__field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 118, 55, 0.12);
}

.tour-booking__field textarea {
  min-height: 92px;
  resize: vertical;
}

.booking-options {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  border: 0;
}

.booking-options label {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  cursor: pointer;
}

.booking-options label:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
}

.booking-options input {
  margin: 0;
  accent-color: var(--color-primary);
}

.booking-options strong,
.booking-options small {
  display: block;
}

.booking-options strong {
  color: var(--color-secondary);
  font-size: 13px;
  line-height: 1.2;
}

.booking-options small {
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.booking-options b {
  color: var(--color-primary);
  font-size: 14px;
  white-space: nowrap;
}

.tour-booking__price {
  margin-top: 16px;
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}

.tour-booking__price strong {
  color: var(--color-primary);
  font-size: 24px;
}

.booking-travelers {
  margin-top: 18px;
}

.booking-counter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px 30px 30px;
  gap: 5px;
  align-items: center;
  margin-top: 8px;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 700;
}

.booking-counter button,
.booking-counter output {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-secondary);
  background: var(--color-white);
}

.booking-counter button {
  cursor: pointer;
}

.tour-booking__notice {
  display: flex;
  gap: 7px;
  margin-top: 10px;
  color: var(--color-secondary);
  font-size: 12px;
  line-height: 1.25;
}

.tour-booking__notice svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--color-success);
}

.tour-booking__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border: 0;
  border-radius: 6px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.tour-booking__submit:hover {
  background: var(--color-primary-dark);
}

.tour-booking__submit svg {
  width: 18px;
  height: 18px;
}

.tour-booking-whatsapp {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  color: #1e6c38;
  background: #e9faec;
}

.tour-booking-whatsapp > svg {
  width: 28px;
  height: 28px;
}

.tour-booking-whatsapp strong,
.tour-booking-whatsapp small {
  display: block;
}

.tour-booking-whatsapp small {
  margin-top: 4px;
  font-size: 14px;
}

.related-tours {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.related-tours h2 {
  margin-bottom: 14px;
  color: var(--color-secondary);
  font-size: 18px;
}

.related-tours > a {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.related-tours img {
  width: 78px;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.related-tours strong,
.related-tours small {
  display: block;
}

.related-tours strong {
  color: var(--color-primary);
  font-size: 15px;
}

.related-tours small {
  margin-top: 4px;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.25;
}

/* Show detail booking */
.show-booking {
  scroll-margin-top: calc(var(--header-height) + 18px);
  padding: 22px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.show-booking__title {
  margin: 0 0 18px;
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.show-booking__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.show-booking__price-row p {
  margin: 0;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
}

.show-booking__price-row strong {
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 900;
}

.show-booking__price-row span {
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.show-booking__price-row b {
  color: #e5df00;
  font-size: 16px;
  letter-spacing: 1px;
}

.show-booking__facts {
  display: grid;
  gap: 22px;
  padding: 24px 0 20px;
}

.show-booking__facts p {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0;
  color: #a6796d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.show-booking__facts svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  stroke-width: 2.4;
}

.show-booking__facts strong {
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: 900;
}

.show-booking__field {
  display: block;
  margin-top: 14px;
}

.show-booking__field > span {
  display: block;
  margin-bottom: 7px;
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 900;
}

.show-booking__field input {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-secondary);
  background: var(--color-white);
  font-size: 15px;
  outline: 0;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.show-booking__field input::placeholder {
  color: #b79387;
}

.show-booking__field input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 118, 55, 0.12);
}

.show-booking__field--date {
  position: relative;
}

.show-booking__field--date input {
  padding-right: 42px;
}

.show-booking__field--date svg {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 17px;
  height: 17px;
  color: var(--color-secondary);
}

.show-booking__participants {
  margin-top: 18px;
}

.show-booking__participants h2 {
  margin-bottom: 12px;
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 900;
}

.show-booking__ticket-group {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.show-booking__ticket-group:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.show-booking__ticket-heading {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.show-booking__ticket-heading small {
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 700;
}

.show-booking__ticket-heading .show-booking__ticket-price {
  color: var(--color-primary);
}

.show-booking .booking-counter {
  min-height: 34px;
  margin-top: 5px;
  padding: 0;
  border: 0;
  background: transparent;
}

.show-booking .booking-counter span {
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: 900;
}

.show-booking .booking-counter small {
  color: inherit;
  font-size: 15px;
  font-weight: 700;
}

.show-booking__ticket-counter span {
  display: flex;
  gap: 6px;
  align-items: baseline;
  line-height: 1.15;
}

.show-booking .show-booking__ticket-counter span small {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}

.show-booking .show-booking__ticket-counter--free span {
  color: var(--color-primary);
}

.show-booking .booking-counter button,
.show-booking .booking-counter output {
  width: 30px;
  height: 30px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-secondary);
  background: var(--color-white);
  font-size: 14px;
  font-weight: 900;
}

.show-booking__price {
  margin: 16px 0 0;
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}

.show-booking__price strong {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 900;
}

.show-booking__submit {
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border-radius: 6px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background-color var(--transition-fast);
}

.show-booking__submit:hover {
  background: var(--color-primary-dark);
}

.show-booking__submit svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 980px) {
  .tour-detail-content__layout {
    grid-template-columns: 1fr;
  }

  .tour-booking-column {
    position: static;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-table__head {
    display: none;
  }

  .cart-item {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .cart-item__experience,
  .cart-item__guests,
  .cart-item__price,
  .cart-item__total {
    grid-column: 2;
  }

  .cart-item__guests,
  .cart-item__price {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
  }
}

@media (max-width: 640px) {
  .tour-detail-content {
    padding-bottom: 52px;
  }

  .tour-facts-table__row {
    grid-template-columns: 20px minmax(0, 1fr);
    padding: 12px;
  }

  .tour-facts-table__row span {
    grid-column: 2;
  }

  .tour-benefits {
    grid-template-columns: 1fr;
  }

  .tour-benefits section + section {
    padding: 24px 0 0;
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .tour-booking {
    padding: 16px;
  }

  .show-booking {
    padding: 22px 18px;
  }

  .show-booking__price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .show-booking__price-row span {
    white-space: normal;
  }

  .cart-section {
    padding: 30px 0 56px;
  }

  .cart-alert {
    align-items: flex-start;
    height: auto;
    min-height: 0;
    padding: 14px;
    font-size: 13px;
  }

  .cart-items,
  .cart-summary {
    padding: 16px;
  }

  .cart-item__experience {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
  }

  .cart-item__experience img {
    width: 84px;
  }

  .cart-item__guests,
  .cart-item__price {
    grid-template-columns: 1fr;
  }

  .cart-summary__total span,
  .cart-summary__total strong {
    font-size: 18px;
  }
}

/* Tour detail page */
.tour-detail-page {
  background: var(--color-white);
}

.tour-detail-hero {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 46px 0;
  overflow: hidden;
  color: var(--color-white);
  background-color: var(--color-secondary-dark);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.tour-detail-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(15, 13, 11, 0.58);
}

.tour-detail-hero__content {
  position: relative;
  z-index: 1;
}

.tour-detail-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
}

.tour-detail-breadcrumb svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}

.tour-detail-breadcrumb a {
  transition: color var(--transition-fast);
}

.tour-detail-breadcrumb a:hover,
.tour-detail-breadcrumb span {
  color: var(--color-primary);
}

.tour-detail-hero h1 {
  color: var(--color-white);
  font-size: clamp(1.4rem, 2.8vw, 2.3rem);
  line-height: 1.04;
}

.tour-detail-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-top: 18px;
}

.tour-detail-facts span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
}

.tour-detail-facts svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  fill: var(--color-primary);
}

.tour-detail-gallery-section {
  padding: 32px 0px;
}

.tour-detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 14px;
}

.tour-detail-gallery > a:not(.tour-detail-gallery__hidden) {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-surface-warm);
}

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

.tour-detail-gallery__more::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(20, 15, 12, 0.58);
}

.tour-detail-gallery__more span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--color-white);
  font-size: 34px;
  font-weight: 900;
}

.tour-detail-gallery__hidden {
  display: none;
}

@media (max-width: 980px) {
  .tour-detail-hero {
    min-height: 360px;
  }

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

@media (max-width: 640px) {
  .tour-detail-hero {
    min-height: 350px;
    padding: 40px 0;
  }

  .tour-detail-breadcrumb {
    flex-wrap: wrap;
    font-size: 12px;
  }

  .tour-detail-hero h1 br {
    display: none;
  }

  .tour-detail-facts {
    flex-direction: column;
    align-items: center;
  }

  .tour-detail-gallery-section {
    padding: 22px 0px;
  }

  .tour-detail-gallery {
    gap: 10px;
  }

  .tour-detail-gallery__more span {
    font-size: 26px;
  }
}

/* Tours catalog */
.tours-page .tour-search-section {
  padding-bottom: 28px;
}

.tours-catalog {
  padding: 18px 0 80px;
  background: var(--color-white);
}

.tours-catalog__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.tour-filters {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.tour-filters__heading {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.tour-filters__heading h2 {
  color: var(--color-secondary);
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
}

.tour-filter-group {
  min-width: 0;
  margin: 0;
  padding: 14px 0 16px;
  border: 0;
  border-bottom: 1px solid var(--color-border);
}

.tour-filter-group legend {
  width: 100%;
  margin-bottom: 10px;
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: 900;
}

.tour-filter-group label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 30px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.tour-filter-group input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--color-primary);
}

.tour-filter-group small {
  font-size: 12px;
}

.tour-filters__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  margin-top: 22px;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary);
  background: var(--color-white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.tour-filters__reset:hover {
  color: var(--color-white);
  background: var(--color-primary);
}

.tour-filters__reset svg {
  width: 18px;
  height: 18px;
}

.tours-results__count {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--color-secondary);
  background: #faf7f5;
  font-size: 15px;
  font-weight: 900;
}

.tours-results__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 12px;
  align-items: stretch;
}

.tours-results__grid .tour-card:last-child {
  grid-column: auto;
  width: auto;
  justify-self: stretch;
}

.tours-results__grid .tour-card__image {
  aspect-ratio: 4 / 3;
}

.tours-results__grid .tour-card__body {
  padding: 12px 12px 16px;
}

.tours-results__grid .tour-card h3 {
  font-size: 15px;
}

.tours-results__grid .tour-card__meta {
  font-size: 12px;
}

@media (max-width: 1180px) {
  .tours-results__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .tours-catalog__layout {
    grid-template-columns: 1fr;
  }

  .tour-filters {
    position: static;
  }

  .tour-filters__heading {
    text-align: center;
  }

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

  .tour-filters__heading,
  .tour-filters__reset {
    grid-column: 1 / -1;
  }

  .tours-results__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 8px;
  }
}

@media (max-width: 640px) {
  .tours-catalog {
    padding: 10px 0 52px;
  }

  .tours-catalog__layout {
    gap: 26px;
  }

  .tour-filters {
    grid-template-columns: 1fr;
  }

  .tour-filters__heading,
  .tour-filters__reset {
    grid-column: auto;
  }

  .tours-results__count {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  .tours-results__grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }
}

/* Tours listing page */
.tours-page {
  background: var(--color-white);
}

.tours-hero {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 58px 0 92px;
  overflow: hidden;
  color: var(--color-white);
  background-color: var(--color-secondary-dark);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.tours-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(16, 14, 12, 0.56);
}

.tours-hero__content {
  position: relative;
  z-index: 1;
}

.tours-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
}

.tours-breadcrumb svg {
  width: 15px;
  height: 15px;
}

.tours-breadcrumb a {
  transition: color var(--transition-fast);
}

.tours-breadcrumb a:hover,
.tours-breadcrumb span {
  color: var(--color-primary);
}

.tours-hero h1 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  line-height: 1;
}

.tours-hero__content > p {
  margin-top: 18px;
  color: var(--color-white);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
}

.tour-search-section {
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}

.tour-search {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(145px, 1fr)) auto;
  align-items: center;
  margin-top: -60px;
  padding: 20px;
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: 0 12px 30px rgba(77, 36, 25, 0.18);
}

.tour-search__field {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  min-height: 76px;
  align-items: start;
  padding: 8px 18px;
  border-right: 1px solid var(--color-border);
  cursor: pointer;
}

.tour-search__field > svg {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--color-primary);
  stroke-width: 2.2;
}

.tour-search__field span {
  min-width: 0;
}

.tour-search__field strong {
  display: block;
  overflow: hidden;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tour-search__field input,
.tour-search__field select {
  width: 100%;
  height: 34px;
  margin-top: 8px;
  padding: 0 24px 0 0;
  border: 0;
  outline: 0;
  color: var(--color-secondary);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
}

.tour-search__field input::placeholder {
  color: var(--color-secondary);
  opacity: 1;
}

.tour-search__submit {
  min-height: 52px;
  margin-left: 20px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.tour-search__submit:hover {
  background: var(--color-primary-dark);
}

@media (max-width: 1180px) {
  .tour-search {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 0;
  }

  .tour-search__field:nth-child(3) {
    border-right: 0;
  }

  .tour-search__submit {
    width: calc(100% - 20px);
  }
}

@media (max-width: 980px) {
  .tours-hero {
    min-height: 360px;
  }

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

  .tour-search__field:nth-child(3) {
    border-right: 1px solid var(--color-border);
  }

  .tour-search__field:nth-child(even) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .tours-hero {
    min-height: 350px;
    padding: 48px 0 88px;
  }

  .tours-breadcrumb {
    font-size: 14px;
  }

  .tours-hero__content > p {
    font-size: 16px;
  }

  .tour-search-section {
    padding-bottom: 48px;
  }

  .tour-search {
    grid-template-columns: 1fr;
    margin-top: -50px;
    padding: 14px;
  }

  .tour-search__field,
  .tour-search__field:nth-child(3),
  .tour-search__field:nth-child(even) {
    min-height: 70px;
    padding: 10px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .tour-search__submit {
    width: 100%;
    margin: 8px 0 0;
  }
}

/* About introduction */
.about-intro {
  padding: 28px 0 76px;
  background: var(--color-white);
}

.about-intro__header {
  width: min(100%, 760px);
  margin-inline: auto;
  text-align: center;
}

.about-section__eyebrow {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.about-intro__header h2 {
  margin-top: 14px;
  color: var(--color-secondary);
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  line-height: 1.12;
}

.about-intro__header > p:last-child {
  margin-top: 18px;
  color: var(--color-secondary);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.about-value {
  text-align: center;
}

.about-value__icon {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

.about-value__icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.2;
}

.about-value h3 {
  color: var(--color-primary);
  font-size: 17px;
  line-height: 1.15;
}

.about-value p {
  margin-top: 14px;
  color: var(--color-text-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.about-gallery__item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-surface-warm);
}

.about-gallery__item--featured {
  grid-row: auto;
}

.about-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-gallery__item--more::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(53, 35, 28, 0.5);
}

.about-gallery__item--more span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--color-white);
  font-size: 34px;
  font-weight: 900;
}

.about-gallery__hidden {
  display: none;
}

.about-intro__action {
  text-align: center;
}

.about-intro__action .section-button {
  gap: 10px;
}

.about-intro__action .section-button svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 980px) {
  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
  }

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

  .about-gallery__item--featured {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .about-intro {
    padding: 20px 0 52px;
  }

  .about-section__eyebrow {
    font-size: 15px;
  }

  .about-intro__header > p:last-child {
    font-size: 15px;
  }

  .about-values {
    gap: 26px 12px;
    margin-top: 30px;
  }

  .about-value__icon {
    width: 66px;
    height: 66px;
    margin-bottom: 14px;
  }

  .about-value__icon svg {
    width: 32px;
    height: 32px;
  }

  .about-value h3 {
    font-size: 15px;
  }

  .about-value p {
    margin-top: 10px;
    font-size: 13px;
  }

  .about-gallery {
    gap: 10px;
    margin-top: 32px;
  }
}

/* About page */
.about-page {
  background: var(--color-white);
}

.about-hero {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 56px 0 88px;
  overflow: hidden;
  color: var(--color-white);
  background-color: var(--color-secondary-dark);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.about-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(18, 12, 10, 0.58);
}

.about-hero__content {
  position: relative;
  z-index: 1;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 600;
}

.about-breadcrumb a {
  transition: color var(--transition-fast);
}

.about-breadcrumb a:hover,
.about-breadcrumb span {
  color: var(--color-primary);
}

.about-breadcrumb svg {
  width: 15px;
  height: 15px;
}

.about-hero__eyebrow {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.about-hero h1 {
  margin-top: 14px;
  color: var(--color-white);
  font-size: clamp(1.4rem, 2.8vw, 2.45rem);
  line-height: 1.06;
}

.about-hero__lead {
  width: min(100%, 760px);
  margin: 12px auto 0;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.about-stats {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -50px;
  padding: 16px 24px;
  border-radius: 10px;
  background: var(--color-primary-soft);
  box-shadow: var(--shadow-md);
}

.about-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 84px;
  padding: 12px 22px;
}

.about-stat + .about-stat {
  border-left: 1px solid var(--color-border);
}

.about-stat > svg {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: var(--color-primary);
  stroke-width: 2.2;
}

.about-stat div {
  min-width: 0;
}

.about-stat strong,
.about-stat span {
  display: block;
}

.about-stat strong {
  color: var(--color-black);
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

.about-stat span {
  margin-top: 5px;
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
}

@media (max-width: 980px) {
  .about-hero {
    min-height: 360px;
  }

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

  .about-stat:nth-child(3) {
    border-left: 0;
  }

  .about-stat:nth-child(n + 3) {
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 350px;
    padding: 46px 0 82px;
  }

  .about-breadcrumb {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .about-hero__eyebrow {
    font-size: 15px;
  }

  .about-hero__lead {
    font-size: 16px;
  }

  .about-stats {
    padding-bottom: 42px;
  }

  .about-stats__grid {
    margin-top: -42px;
    padding: 10px;
  }

  .about-stat {
    flex-direction: column;
    gap: 8px;
    min-height: 128px;
    padding: 14px 8px;
    text-align: center;
  }

  .about-stat > svg {
    width: 36px;
    height: 36px;
  }

  .about-stat strong {
    font-size: 19px;
  }

  .about-stat span {
    font-size: 13px;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background: var(--color-background);
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: var(--line-height-tight);
  letter-spacing: 0;
}

h1 {
  font-size: var(--heading-h1);
}

h2 {
  font-size: var(--heading-h2);
}

h3 {
  font-size: var(--heading-h3);
}

h4 {
  font-size: var(--heading-h4);
}

h5 {
  font-size: var(--heading-h5);
}

h6 {
  font-size: var(--heading-h6);
}

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - (var(--container-padding) * 2), var(--container-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  background: var(--color-black);
}

.header-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 88px;
  padding: 0 38px 0 146px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.header-logo {
  position: absolute;
  top: 50%;
  left: 30px;
  width: 82px;
  height: 82px;
  overflow: hidden;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(112, 58, 42, 0.12);
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  flex: 1;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 88px;
  color: #070707;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link svg,
.nav-toggle svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-primary);
}

.nav-item--dropdown:hover .nav-link,
.nav-item--dropdown:focus-within .nav-link {
  color: var(--color-primary);
}

.nav-item--dropdown:hover .nav-link::before,
.nav-item--dropdown:focus-within .nav-link::before {
  opacity: 1;
}

.nav-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.nav-link.is-active::before {
  opacity: 1;
}

.nav-link.has-dropdown svg {
  width: 15px;
  height: 15px;
  transition: transform var(--transition-fast);
}

.nav-item--dropdown:hover .nav-link.has-dropdown svg,
.nav-item--dropdown:focus-within .nav-link.has-dropdown svg {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 30;
  display: grid;
  min-width: 248px;
  padding: 12px;
  border-radius: 0 0 8px 8px;
  background: var(--color-white);
  box-shadow: 0 18px 36px rgba(112, 58, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.nav-item--dropdown:hover .submenu,
.nav-item--dropdown:focus-within .submenu {
  opacity: 1;
  visibility: visible;
}

.submenu a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 6px;
  color: #0b0b0b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.submenu a:hover {
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}


.cart-button svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.cart-section {
  padding: 42px 0 80px;
  background: var(--color-white);
}

.cart-heading {
  margin-bottom: 18px;
}

.cart-heading h1 {
  color: var(--color-secondary);
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  line-height: 1;
}

.cart-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.cart-breadcrumb a {
  color: var(--color-text-muted);
}

.cart-breadcrumb span {
  color: var(--color-primary);
}

.cart-breadcrumb svg {
  width: 12px;
  height: 12px;
}

.cart-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin-bottom: 22px;
  padding: 0 18px;
  border-radius: 6px;
  color: #2d8b45;
  background: #e9fae7;
  font-size: 14px;
  font-weight: 700;
}

.cart-alert svg {
  width: 20px;
  height: 20px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 16px;
  align-items: start;
}

.cart-items,
.cart-summary {
  border-radius: 6px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.cart-items {
  min-width: 0;
  padding: 18px 20px;
}

.cart-table__head,
.cart-item {
  display: grid;
  grid-template-columns: 28px minmax(260px, 1.5fr) minmax(130px, 0.7fr) minmax(70px, 0.42fr) minmax(70px, 0.42fr);
  gap: 16px;
  align-items: center;
}

.cart-table__head {
  padding: 0 0 14px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 900;
}

.cart-table__head span:first-child {
  grid-column: 2;
}

.cart-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-secondary);
}

.cart-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cart-item__remove {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid var(--color-secondary);
  border-radius: 50%;
  color: var(--color-secondary);
  background: transparent;
  cursor: pointer;
}

.cart-item__remove svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.4;
}

.cart-item__experience {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.cart-item__experience img {
  width: 96px;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.cart-item__experience h2 {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-secondary);
  font-size: 16px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.cart-item__experience > div {
  min-width: 0;
}

.cart-item__experience p,
.cart-item__guests span,
.cart-item__price span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.cart-item__experience p svg,
.cart-item__experience svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.cart-item__total {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.cart-item__price span {
  justify-content: flex-end;
  white-space: nowrap;
}

.cart-summary {
  padding: 24px 22px;
}

.cart-summary h2 {
  margin-bottom: 22px;
  color: #111111;
  font-size: 22px;
}

.cart-summary dl {
  display: grid;
  gap: 20px;
  margin: 0;
}

.cart-summary dl div,
.cart-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-summary dt {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 900;
}

.cart-summary dd {
  margin: 0;
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 700;
}

.cart-summary__total {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  color: var(--color-primary);
}

.cart-summary__total span,
.cart-summary__total strong {
  font-size: 20px;
  font-weight: 900;
}

.cart-summary__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  border-radius: 6px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background-color var(--transition-fast);
}

.cart-summary__button:hover {
  background: var(--color-primary-dark);
}

.cart-summary__button svg {
  width: 17px;
  height: 17px;
}

.cart-summary__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  color: #111111;
  font-size: 11px;
  font-weight: 800;
}

.cart-summary__secure svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 1180px) {
  .cart-layout {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 300px);
  }

  .cart-table__head,
  .cart-item {
    grid-template-columns: 24px minmax(220px, 1.35fr) minmax(118px, 0.62fr) minmax(64px, 0.42fr) minmax(64px, 0.42fr);
    gap: 12px;
  }

  .cart-item__experience {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
  }

  .cart-item__experience img {
    width: 86px;
  }

  .cart-summary {
    padding: 22px 18px;
  }
}

@media (max-width: 980px) {
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cart-table__head {
    display: none;
  }

  .cart-item {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 18px 0;
  }

  .cart-item__experience,
  .cart-item__guests,
  .cart-item__price,
  .cart-item__total {
    grid-column: 2;
  }

  .cart-item__experience {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .cart-item__experience img {
    width: 96px;
  }

  .cart-item__experience h2 {
    -webkit-line-clamp: 2;
  }

  .cart-item__guests,
  .cart-item__price {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    margin-top: 4px;
  }

  .cart-item__price span {
    justify-content: flex-start;
  }

  .cart-item__total {
    margin-top: 4px;
    text-align: left;
  }

  .cart-summary {
    width: min(100%, 420px);
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .cart-section {
    padding: 30px 0 56px;
  }

  .cart-heading {
    margin-bottom: 16px;
  }

  .cart-heading h1 {
    font-size: 1.4rem;
  }

  .cart-items,
  .cart-summary {
    padding: 16px;
  }

  .cart-summary {
    width: 100%;
    justify-self: stretch;
  }

  .cart-item {
    grid-template-columns: 28px repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 0;
  }

  .cart-item__remove {
    position: static;
    margin-top: 2px;
  }

  .cart-item__experience,
  .cart-item__total {
    grid-column: 2 / -1;
  }

  .cart-item__guests {
    grid-column: 2;
  }

  .cart-item__price {
    grid-column: 3;
  }

  .cart-item__experience {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .cart-item__experience img {
    width: 88px;
  }

  .cart-item__guests,
  .cart-item__price {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cart-item__guests::before,
  .cart-item__price::before,
  .cart-item__total::before {
    display: block;
    margin-bottom: 2px;
    color: var(--color-secondary);
    font-size: 12px;
    font-weight: 900;
  }

  .cart-item__guests::before {
    content: "Guests";
  }

  .cart-item__price::before {
    content: "Price";
  }

  .cart-item__total {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
  }

  .cart-item__total::before {
    content: "Total";
    margin-bottom: 0;
    color: var(--color-primary);
  }

  .cart-summary h2 {
    font-size: 20px;
  }

  .cart-summary dl {
    gap: 14px;
  }

  .cart-summary__total {
    margin-top: 20px;
  }

  .cart-summary__total span,
  .cart-summary__total strong {
    font-size: 20px;
  }

  .cart-summary__button {
    min-height: 50px;
    font-size: 15px;
  }
  .cart-item__experience p, .cart-item__guests span, .cart-item__price span {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .cart-items,
  .cart-summary {
    padding: 14px;
  }

  .cart-item {
    grid-template-columns: 24px repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .cart-item__remove {
    width: 20px;
    height: 20px;
  }

  .cart-item__experience {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
  }

  .cart-item__experience img {
    width: 76px;
  }

  .cart-item__experience h2 {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }

  .cart-summary dl div,
  .cart-summary__total {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .cart-summary__button {
    padding: 0 12px;
    text-align: center;
  }
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border: 2px solid var(--color-white);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  background: var(--color-secondary);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

/* Checkout page */
.checkout-section {
  padding: 38px 0 78px;
  background: var(--color-white);
}

.checkout-heading {
  margin-bottom: 26px;
}

.checkout-heading h1 {
  color: var(--color-secondary);
  font-size: clamp(1.5rem, 2.25vw, 2.1rem);
  line-height: 1;
}

.checkout-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 15px;
  font-weight: 700;
}

.checkout-breadcrumb a,
.checkout-breadcrumb svg {
  color: var(--color-text-muted);
}

.checkout-breadcrumb svg {
  width: 15px;
  height: 15px;
}

.checkout-breadcrumb strong {
  color: var(--color-primary);
  font-weight: 900;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 408px);
  gap: 28px;
  align-items: start;
}

.checkout-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 28px;
  min-width: 0;
  padding: 28px 30px 34px;
  border-radius: 6px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.checkout-form__column {
  min-width: 0;
}

.checkout-panel + .checkout-panel {
  margin-top: 26px;
}

.checkout-panel h2,
.checkout-payment h2,
.checkout-order h2 {
  color: var(--color-secondary);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  margin-top: 28px;
}

.checkout-field {
  display: block;
  min-width: 0;
}

.checkout-field--wide {
  grid-column: 1 / -1;
}

.checkout-field > span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-secondary);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.checkout-field b,
.checkout-terms b {
  color: var(--color-primary);
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #d8bfb4;
  border-radius: 8px;
  outline: 0;
  color: var(--color-secondary);
  background: var(--color-white);
  font: inherit;
  font-size: 15px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.checkout-field select {
  appearance: auto;
  padding-right: 14px;
}

.checkout-field textarea {
  min-height: 114px;
  padding-top: 16px;
  resize: vertical;
}

.checkout-field input::placeholder,
.checkout-field textarea::placeholder {
  color: #a9877b;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 118, 55, 0.12);
}

.checkout-payment {
  min-width: 0;
  padding-top: 48px;
}

.checkout-payment__secure {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #9b6655;
  font-size: 13px;
  line-height: 1.25;
}

.checkout-payment__secure svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.checkout-payment__option {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid #d8bfb4;
  border-radius: 6px;
  background: var(--color-white);
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.checkout-payment__option:has(input:checked) {
  border-color: var(--color-primary);
  background: #fff9f6;
  box-shadow: 0 0 0 3px rgba(255, 118, 55, 0.08);
}

.checkout-payment__option + .checkout-payment__option {
  margin-top: 20px;
}

.checkout-payment__option input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--color-primary);
}

.checkout-payment__option strong,
.checkout-payment__option small {
  display: block;
}

.checkout-payment__option strong {
  color: var(--color-secondary);
  font-size: 15px;
  line-height: 1.2;
}

.checkout-payment__option small {
  margin-top: 14px;
  color: #9b6655;
  font-size: 12px;
  line-height: 1.25;
}

.checkout-payment__option b {
  color: #1f7bd9;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.checkout-terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  color: #9b6655;
  font-size: 11px;
  line-height: 1.25;
}

.checkout-terms input {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--color-primary);
}

.checkout-terms a {
  color: var(--color-primary);
}

.checkout-order {
  padding: 32px 28px 28px;
  border-radius: 6px;
  background: #fff9f6;
  box-shadow: var(--shadow-sm);
}

.checkout-order h2 {
  color: #111111;
  font-size: 26px;
}

.checkout-order-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 0 24px;
  border-bottom: 1px solid var(--color-border);
}

.checkout-order-item img {
  width: 96px;
  aspect-ratio: 1 / 0.78;
  border-radius: 8px;
  object-fit: cover;
}

.checkout-order-item__body {
  min-width: 0;
}

.checkout-order-item__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  gap: 10px;
  align-items: start;
}

.checkout-order-item h3 {
  color: #111111;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.checkout-order-item__top button {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 0;
  color: #111111;
  background: transparent;
  cursor: pointer;
}

.checkout-order-item__top svg {
  width: 17px;
  height: 17px;
  stroke-width: 3;
}

.checkout-order-item p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.checkout-order-item p svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.checkout-order-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 700;
}

.checkout-order-item__meta strong {
  font-size: 12px;
  white-space: nowrap;
}

.checkout-order__totals {
  display: grid;
  gap: 26px;
  margin: 26px 0 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.checkout-order__totals div,
.checkout-order__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.checkout-order__totals dt,
.checkout-order__totals dd {
  color: #111111;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.checkout-order__totals dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.checkout-order__total {
  margin-top: 24px;
  color: var(--color-primary);
}

.checkout-order__total span,
.checkout-order__total strong {
  font-size: 25px;
  font-weight: 900;
  line-height: 1.1;
}

.checkout-order__total strong {
  font-size: 30px;
}

.checkout-order__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  margin-top: 20px;
  border: 0;
  border-radius: 6px;
  color: var(--color-white);
  background: var(--color-primary);
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.checkout-order__button:hover {
  background: var(--color-primary-dark);
}

.checkout-order__button svg {
  width: 19px;
  height: 19px;
}

.checkout-order__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  color: #111111;
  font-size: 12px;
  font-weight: 800;
}

.checkout-order__secure svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 1180px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 360px);
    gap: 22px;
  }

  .checkout-form {
    grid-template-columns: 1fr;
  }

  .checkout-payment {
    padding-top: 0;
  }
}

@media (max-width: 980px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-order {
    width: min(100%, 520px);
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .checkout-section {
    padding: 30px 0 56px;
  }

  .checkout-heading {
    margin-bottom: 18px;
  }

  .checkout-heading h1 {
    font-size: 1.55rem;
  }

  .checkout-breadcrumb {
    font-size: 13px;
  }

  .checkout-form,
  .checkout-order {
    padding: 18px 16px;
  }

  .checkout-fields {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;
  }

  .checkout-panel h2,
  .checkout-payment h2 {
    font-size: 18px;
  }

  .checkout-field > span {
    font-size: 15px;
  }

  .checkout-payment__option {
    grid-template-columns: 16px minmax(0, 1fr);
    padding: 14px;
  }

  .checkout-payment__option b {
    grid-column: 2;
    font-size: 14px;
  }

  .checkout-order {
    width: 100%;
    justify-self: stretch;
  }

  .checkout-order h2 {
    font-size: 22px;
  }

  .checkout-order-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
  }

  .checkout-order-item img {
    width: 88px;
  }

  .checkout-order-item h3 {
    font-size: 15px;
  }

  .checkout-order__total span,
  .checkout-order__total strong {
    font-size: 22px;
  }

  .checkout-order__total {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .checkout-order__button {
    min-height: 52px;
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .checkout-form,
  .checkout-order {
    padding: 16px 14px;
  }

  .checkout-order-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
  }

  .checkout-order-item img {
    width: 76px;
  }

  .checkout-order-item__meta,
  .checkout-order__totals div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .checkout-order__total {
    align-items: center;
    flex-direction: row;
  }
}

/* Checkout success page */
.checkout-success-body {
  background: linear-gradient(180deg, #e9fbe9 0, #f8fff8 340px, var(--color-white) 340px);
}

.checkout-success-page {
  min-height: 100vh;
  padding: 46px var(--container-padding) 78px;
  color: #133f1d;
}

.success-hero {
  position: relative;
  display: grid;
  justify-items: center;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.success-check {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  color: var(--color-white);
  background: #2f8738;
}

.success-check svg {
  width: 58px;
  height: 58px;
  stroke-width: 3;
}

.success-hero h1 {
  margin-top: 22px;
  color: #143d1c;
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1.05;
}

.success-hero p {
  margin-top: 18px;
  color: #1d2a20;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.success-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 226px;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 24px;
  border: 1px solid #9ea99e;
  border-radius: 8px;
  color: #111111;
  background: var(--color-white);
  font-size: 14px;
  font-weight: 900;
  transition: border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.success-detail-button:hover {
  border-color: #2f8738;
  color: #2f8738;
  box-shadow: 0 8px 20px rgba(47, 135, 56, 0.12);
}

.success-detail-button svg {
  width: 18px;
  height: 18px;
}

.success-confetti {
  position: absolute;
  display: block;
  width: 13px;
  height: 8px;
}

.success-confetti--red {
  background: #d60000;
}

.success-confetti--green {
  background: #00df45;
}

.success-confetti--yellow {
  background: #e8e300;
}

.success-confetti--1 {
  top: -20px;
  left: 24%;
}

.success-confetti--2 {
  top: -2px;
  left: 39%;
}

.success-confetti--3 {
  top: 30px;
  left: 31%;
}

.success-confetti--4 {
  top: -2px;
  right: 26%;
}

.success-confetti--5 {
  top: 5px;
  right: 17%;
}

.success-confetti--6 {
  top: 34px;
  right: 31%;
}

.success-booking-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  width: min(100%, 1100px);
  margin: 74px auto 0;
  padding: 20px;
  scroll-margin-top: calc(var(--header-height) + 24px);
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: 0 10px 28px rgba(22, 58, 28, 0.18);
}

.success-booking-card:target {
  box-shadow: 0 12px 34px rgba(22, 58, 28, 0.22), 0 0 0 3px rgba(77, 152, 87, 0.16);
}

.success-booking-card__content {
  min-width: 0;
}

.success-booking-card__top {
  display: grid;
  grid-template-columns: minmax(145px, 0.45fr) minmax(0, 1fr);
  gap: 34px;
  padding: 2px 0 24px;
  border-bottom: 1px solid #d3d9d3;
}

.success-booking-card__label {
  color: #4d9857;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.success-booking-card h2 {
  margin-top: 12px;
  color: #1c2d21;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.success-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 22px;
  margin-top: 12px;
  padding: 0 9px;
  border-radius: 999px;
  color: #267a31;
  background: #dff8df;
  font-size: 11px;
  font-weight: 900;
}

.success-status svg {
  width: 12px;
  height: 12px;
}

.success-booking-facts,
.success-payment-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
}

.success-booking-facts dt,
.success-payment-facts dt {
  color: #4d9857;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.success-booking-facts dd,
.success-payment-facts dd {
  margin: 8px 0 0;
  color: #1f2d22;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.success-booking-facts dd span {
  font-weight: 500;
}

.success-booking-facts div:last-child dd {
  color: #4d9857;
  font-size: 20px;
  font-weight: 900;
}

.success-order-list {
  padding-top: 22px;
}

.success-order-list__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.success-order-list__header h3 {
  color: #111111;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.success-order-list__header span {
  color: #4d9857;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.success-order-tour {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid #d3d9d3;
}

.success-order-tour img {
  width: 76px;
  aspect-ratio: 1 / 0.78;
  border-radius: 8px;
  object-fit: cover;
}

.success-order-tour h4 {
  color: #111111;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.success-order-tour p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: #4f604f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.success-order-tour p svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  color: #4d9857;
}

.success-order-tour > strong {
  color: #111111;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.success-order-total {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
  padding-top: 16px;
  border-top: 1px solid #d3d9d3;
}

.success-order-total div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.success-order-total dt,
.success-order-total dd {
  color: #111111;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.success-order-total dd {
  margin: 0;
}

.success-order-total div:last-child {
  padding-top: 12px;
}

.success-order-total div:last-child dt,
.success-order-total div:last-child dd {
  color: #4d9857;
  font-size: 22px;
  font-weight: 900;
}

.success-payment-facts {
  padding-top: 22px;
}

.success-payment-facts dd {
  color: #4d9857;
  font-size: 14px;
  font-weight: 800;
}

.success-payment-facts div:last-child dd {
  color: #4d9857;
  font-size: 24px;
  font-weight: 900;
}

.success-email-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(180px, 230px);
  gap: 18px;
  align-items: center;
  min-height: 68px;
  margin-top: -4px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #e7ffe7;
}

.success-email-strip__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid #72c67b;
  border-radius: 50%;
  color: #4d9857;
  background: var(--color-white);
}

.success-email-strip__icon svg {
  width: 30px;
  height: 30px;
}

.success-email-strip p {
  color: #7b877c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.success-email-strip strong {
  display: block;
  margin-top: 6px;
  color: #111111;
  font-size: 12px;
}

.success-email-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid #9ea99e;
  border-radius: 8px;
  color: #111111;
  background: var(--color-white);
  font-size: 14px;
  font-weight: 900;
}

.success-email-strip a svg {
  width: 18px;
  height: 18px;
}

.success-next-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1040px);
  margin: 38px auto 0;
}

.success-step {
  display: grid;
  justify-items: center;
  min-height: 248px;
  padding: 40px 28px 0;
  border-left: 1px solid #d1d8d1;
  text-align: center;
}

.success-step:first-child {
  border-left: 0;
}

.success-step__icon {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

.success-step__icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 2.6;
}

.success-step h2 {
  margin-top: 34px;
  color: #111111;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.success-step p {
  margin-top: 18px;
  color: #454545;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
}

.success-step a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  margin-top: 22px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 900;
}

.success-step a svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 980px) {
  .success-booking-card {
    grid-template-columns: 1fr;
  }

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

  .success-step:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .checkout-success-page {
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .success-check {
    width: 78px;
    height: 78px;
  }

  .success-check svg {
    width: 48px;
    height: 48px;
  }

  .success-hero p {
    font-size: 17px;
  }

  .success-booking-card {
    margin-top: 46px;
    padding: 14px;
  }

  .success-booking-card__top,
  .success-booking-facts,
  .success-payment-facts {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .success-order-list__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .success-order-tour {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .success-order-tour img {
    width: 70px;
  }

  .success-order-tour > strong {
    grid-column: 2;
    color: #4d9857;
  }

  .success-email-strip {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .success-email-strip a {
    width: 100%;
  }

  .success-next-steps {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .success-step {
    min-height: 0;
    padding: 30px 18px;
    border-top: 1px solid #d1d8d1;
    border-left: 0;
  }

  .success-step:first-child {
    border-top: 0;
  }

  .success-step h2 {
    margin-top: 22px;
  }
}

@media (max-width: 420px) {
  .success-order-tour {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
  }

  .success-order-tour img {
    width: 62px;
  }

  .success-order-total div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

/* Shows page */
.shows-page {
  background: var(--color-white);
}

.shows-hero {
  display: grid;
  min-height: 420px;
  place-items: center;
  color: var(--color-white);
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.62)),
    url("https://images.unsplash.com/photo-1559592413-7cec4d0cae2b?auto=format&fit=crop&w=1800&q=88") center / cover;
}

.shows-hero__content {
  padding: 84px 0 110px;
}

.shows-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 800;
}

.shows-breadcrumb strong {
  color: var(--color-primary);
}

.shows-breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--color-white);
}

.shows-hero h1 {
  margin-top: 52px;
  color: var(--color-white);
  font-weight: 900;
  line-height: 1.05;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.42);
}

.shows-hero p {
  margin-top: 20px;
  color: var(--color-white);
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.shows-section {
  padding: 72px 0 86px;
  background: var(--color-white);
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 26px;
  align-items: stretch;
  justify-content: center;
}

.show-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: 0 10px 28px rgba(112, 58, 42, 0.16);
}

.show-card__image {
  display: block;
  aspect-ratio: 1.42;
  overflow: hidden;
  background: #ffe2d6;
}

.show-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.show-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 20px 22px;
}

.show-card h2 {
  color: var(--color-primary);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
}

.show-card h2 a {
  color: inherit;
}

.show-card h2 a:hover {
  color: var(--color-primary-dark);
}

.show-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin: 12px 0 0;
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.28;
}

.show-card__meta div {
  display: flex;
  gap: 8px;
  min-width: 0;
}

.show-card__meta dt {
  flex: 0 0 auto;
  font-weight: 900;
}

.show-card__meta dd {
  min-width: 0;
  margin: 0;
  font-weight: 600;
}

.show-card__meta dd strong {
  font-weight: 900;
}

.show-card p {
  margin-top: 12px;
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.32;
}

.show-card__details {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid #efd8cf;
  color: var(--color-secondary);
}

.show-card__details div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.show-card__details dt {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.show-card__details dd {
  min-width: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.28;
}

.show-card__details strong {
  font-weight: 900;
}

.show-card__price {
  margin-top: auto;
  padding-top: 16px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.show-card__price strong {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .shows-grid {
    gap: 24px;
  }
}

@media (max-width: 980px) {
  .shows-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shows-hero {
    min-height: 330px;
  }

  .shows-hero__content {
    padding: 52px 0 78px;
  }

  .shows-hero h1 {
    margin-top: 36px;
  }

  .shows-section {
    padding: 38px 0 52px;
  }

  .shows-grid {
    gap: 18px;
  }

  .show-card__image img {
    aspect-ratio: 1.65 / 1;
  }

  .show-card__body {
    padding: 18px;
  }

  .show-card h2 {
    font-size: 18px;
  }

  .show-card p {
    font-size: 13px;
  }

  .show-card__details div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .show-card__details dd {
    font-size: 13px;
  }

  .show-card__price {
    margin-top: 22px;
    font-size: 16px;
  }

  .show-card__price strong {
    font-size: 23px;
  }
}

/* Destinations page */
.destinations-page {
  background: var(--color-white);
}

.destinations-hero {
  position: relative;
  display: grid;
  min-height: 368px;
  place-items: center;
  color: var(--color-white);
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.58)),
    url("https://images.unsplash.com/photo-1559592413-7cec4d0cae2b?auto=format&fit=crop&w=1800&q=88") center / cover;
}

.destinations-hero__content {
  padding: 64px 0 92px;
}

.destinations-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 800;
}

.destinations-breadcrumb strong {
  color: var(--color-primary);
}

.destinations-breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--color-white);
}

.destinations-hero h1 {
  position: relative;
  margin-top: 26px;
  color: var(--color-white);
  font-size: clamp(1.7rem, 3.15vw, 2.65rem);
  font-weight: 900;
  line-height: 1;
}

.destinations-hero p {
  margin-top: 20px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.destinations-section {
  padding: 64px 0 72px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 26px;
  margin: 0 auto;
}

.destinations-grid__side {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.destinations-grid__side .destination-card:nth-child(1),
.destinations-grid__side .destination-card:nth-child(2) {
  grid-column: span 3;
}

.destinations-grid__side .destination-card:nth-child(n + 3) {
  grid-column: span 2;
}

.destination-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 8px 22px rgba(112, 58, 42, 0.14);
}

.destination-card__image {
  display: block;
  overflow: hidden;
}

.destination-card__image img {
  width: 100%;
  aspect-ratio: 1.82 / 1;
  object-fit: cover;
  background: #ffe2d6;
}

.destination-card__body {
  padding: 12px 14px 14px;
}

.destination-card h2 {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.destination-card span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
  color: #b78574;
  font-size: 11px;
  font-weight: 800;
}

.destination-card span svg {
  width: 11px;
  height: 11px;
  color: var(--color-primary);
}

.destination-card p {
  margin-top: 5px;
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.destination-card a:not(.destination-card__image) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
}

.destination-card a:not(.destination-card__image) svg {
  width: 14px;
  height: 14px;
}

.destination-card--featured {
  align-self: stretch;
}

.destination-card--featured .destination-card__image img {
  aspect-ratio: 1.52 / 1;
}

.destination-card--featured .destination-card__body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding: 18px 20px 16px;
}

.destination-card--featured h2 {
  font-size: 25px;
}

.destination-card--featured p {
  margin-top: 0;
  font-size: 14px;
}

.destinations-grid .destination-card:not(.destination-card--featured) {
  min-width: 0;
}

.destinations-grid__side .destination-card:nth-child(n + 3) .destination-card__image img {
  aspect-ratio: 1.65 / 1;
}

.destinations-grid .destination-card:not(.destination-card--featured) {
  display: flex;
  flex-direction: column;
}

.destinations-grid .destination-card:not(.destination-card--featured) .destination-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.destinations-grid .destination-card:not(.destination-card--featured) a:not(.destination-card__image) {
  margin-top: auto;
}

.destinations-benefits {
  background: #fff5ef;
}

.destinations-benefits__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
  padding-block: 30px;
}

.destinations-benefits h2 {
  grid-column: 1 / -1;
  color: var(--color-secondary);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  margin-bottom: 20px;
}

.destinations-benefits article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.destinations-benefits article > svg {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 50%;
  color: var(--color-primary);
  background: var(--color-white);
  stroke-width: 2.5;
  box-shadow: 0 6px 16px rgba(112, 58, 42, 0.1);
}

.destinations-benefits strong,
.destinations-benefits small {
  display: block;
}

.destinations-benefits strong {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
}

.destinations-benefits small {
  margin-top: 4px;
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 1180px) {
  .destinations-grid {
    width: 100%;
  }

  .destinations-benefits__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 24px;
  }

  .destinations-benefits h2 {
    grid-column: 1 / -1;
  }
}

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

  .destination-card--featured,
  .destinations-grid__side {
    grid-column: 1 / -1;
  }

  .destination-card--featured .destination-card__body {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .destinations-hero {
    min-height: 310px;
  }

  .destinations-hero__content {
    padding: 44px 0 74px;
  }

  .destinations-hero h1 {
    font-size: 1.6rem;
  }

  .destinations-hero p {
    font-size: 15px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .destinations-grid__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .destinations-grid__side .destination-card:nth-child(n) {
    grid-column: auto;
  }

  .destination-card--featured .destination-card__body {
    padding: 16px;
  }

  .destination-card--featured h2 {
    font-size: 22px;
  }

  .destinations-benefits__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 28px;
  }

  .destinations-benefits h2 {
    font-size: 24px;
  }

  .destinations-benefits article {
    align-items: flex-start;
  }
}

/* Destination detail page */
.destination-detail-page {
  background: var(--color-white);
}

.destination-detail-hero {
  display: grid;
  min-height: 368px;
  place-items: center;
  color: var(--color-white);
  text-align: center;
  background-position: center;
  background-size: cover;
}

.destination-detail-hero__content {
  padding: 54px 0 38px;
}

.destination-detail-hero h1 {
  margin-top: 10px;
  color: var(--color-white);
  font-size: var(--hero-title-size);
  font-weight: 900;
  line-height: 1;
}

.destination-detail-hero__tagline {
  margin-top: 6px;
  color: #f6c93f;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.destination-detail-hero__desc {
  max-width: 610px;
  margin: 14px auto 0;
  color: var(--color-white);
  font-size: var(--hero-description-size);
  font-weight: 700;
  line-height: 1.25;
}

.destination-detail-section {
  padding: 36px 0 70px;
}

.destination-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 15px;
  align-items: start;
}

.destination-detail-main,
.destination-detail-sidebar {
  min-width: 0;
}

.destination-detail-main {
  display: contents;
}

.destination-about {
  grid-column: 1;
  grid-row: 1;
}

.destination-detail-sidebar {
  grid-column: 2;
  grid-row: 1;
}

.destination-tours,
.destination-shows {
  grid-column: 1 / -1;
}

.destination-about > h2,
.destination-tours > h2,
.destination-shows > h2 {
  color: var(--color-primary);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 900;
  line-height: 1.08;
  font-size: 22px;
  text-transform: uppercase;
}

.destination-about p {
  max-width: 670px;
  margin-top: 18px;
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.32;
}

.destination-tours,
.destination-shows {
  margin-top: 40px;
}

.destination-tour-grid {
  margin-top: 24px;
  width: 100%;
}

.destination-shows-grid {
  margin-top: 24px;
  padding: 0;
  justify-content: start;
  grid-template-columns: repeat(2,1fr);
}

.destination-detail-sidebar {
  display: grid;
  gap: 28px;
}

.destination-map-card,
.destination-media-placeholder {
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.destination-map-card {
  overflow: hidden;
}

.destination-map-card iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.destination-map-card .button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 44px);
  min-height: 50px;
  margin: 18px auto 0;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.destination-map-card .button:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.destination-map-card .button svg {
  width: 18px;
  height: 18px;
}

.destination-media-placeholder {
  min-height: 380px;
}

.destination-host-badge {
  display: grid;
  place-items: center;
  width: 122px;
  height: 122px;
  margin: 18px auto 0;
  border-radius: 50%;
  background: #1e1e1e;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.destination-host-badge img {
  width: 56px;
  height: 56px;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .destination-detail-layout {
    grid-template-columns: 1fr;
  }

  .destination-about,
  .destination-detail-sidebar,
  .destination-tours,
  .destination-shows {
    grid-column: 1;
    grid-row: auto;
  }

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

  .destination-host-badge {
    display: none;
  }
}

@media (max-width: 820px) {
  .destination-detail-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .destination-detail-hero {
    min-height: 330px;
  }

  .destination-detail-hero__content {
    padding: 42px 0 32px;
  }

  .destination-detail-hero__desc {
    font-size: var(--hero-mobile-description-size);
  }

  .destination-shows-grid {
    grid-template-columns: 1fr;
  }
}

/* Transfers page */
.transfers-page {
  background: var(--color-white);
}

.transfers-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.22)),
    url("https://images.unsplash.com/photo-1511919884226-fd3cad34687c?auto=format&fit=crop&w=1800&q=86") center / cover;
}

.transfers-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 520px;
  padding-block: 56px;
}

.transfers-hero__copy {
  color: var(--color-white);
}

.transfers-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 800;
}

.transfers-breadcrumb strong {
  color: var(--color-primary);
}

.transfers-breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--color-white);
}

.transfers-eyebrow {
  color: var(--color-primary);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.transfers-hero h1 {
  margin-top: 12px;
  color: var(--color-white);
  font-size: clamp(1.7rem, 3.15vw, 2.55rem);
  font-weight: 900;
  line-height: 1.08;
}

.transfers-hero__copy > p:not(.transfers-eyebrow) {
  width: min(100%, 640px);
  margin-top: 16px;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.transfer-booking {
  padding: 22px;
  border-radius: 6px;
  background: var(--color-white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
}

.transfer-booking h2 {
  color: var(--color-primary);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.transfer-booking__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin-top: 12px;
}

.transfer-field {
  position: relative;
  display: block;
  min-width: 0;
}

.transfer-field--wide {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.transfer-field span {
  display: block;
  margin-bottom: 7px;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}

.transfer-field input,
.transfer-field select,
.transfer-field textarea {
  width: 100%;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #d8bfb4;
  border-radius: 7px;
  outline: 0;
  color: var(--color-secondary);
  background: var(--color-white);
  font: inherit;
  font-size: 12px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.transfer-field textarea {
  min-height: 64px;
  padding-top: 12px;
  resize: vertical;
}

.transfer-field input::placeholder,
.transfer-field textarea::placeholder {
  color: #a9877b;
}

.transfer-field > svg {
  position: absolute;
  right: 12px;
  bottom: 9px;
  width: 15px;
  height: 15px;
  color: var(--color-primary);
  pointer-events: none;
}

.transfer-field input:focus,
.transfer-field select:focus,
.transfer-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 118, 55, 0.12);
}

.transfer-booking__submit {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  border: 0;
  border-radius: 7px;
  color: var(--color-white);
  background: var(--color-primary);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.transfer-booking__submit:hover {
  background: var(--color-primary-dark);
}

.transfer-benefits {
  background: #fff5ef;
}

.transfer-benefits__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  min-height: 82px;
  align-items: center;
}

.transfer-benefits article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.transfer-benefits svg {
  width: 32px;
  height: 32px;
  color: #111111;
  stroke-width: 2.4;
}

.transfer-benefits strong,
.transfer-benefits small {
  display: block;
}

.transfer-benefits strong {
  color: #111111;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
}

.transfer-benefits small {
  margin-top: 2px;
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
}

.transfer-showcase {
  padding: 26px 0 72px;
}

.transfer-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.transfer-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.transfer-section-head h2 {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.transfer-section-head a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.transfer-section-head svg {
  width: 16px;
  height: 16px;
}

.transfer-card-row {
  position: relative;
  padding: 2px;
}

.transfer-card-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.transfer-route-card,
.transfer-vehicle-card {
  display: block;
  height: auto;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 8px 20px rgba(112, 58, 42, 0.14);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.transfer-route-card:hover,
.transfer-vehicle-card:hover {
  box-shadow: 0 12px 26px rgba(112, 58, 42, 0.2);
}

.transfer-route-card img,
.transfer-vehicle-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  background: linear-gradient(135deg, #ffe2d6, #f5f5f5);
}

.transfer-route-card span,
.transfer-route-card small,
.transfer-vehicle-card span,
.transfer-vehicle-card small,
.transfer-vehicle-card em {
  display: block;
  padding-inline: 12px;
}

.transfer-route-card span,
.transfer-vehicle-card span {
  margin-top: 8px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.transfer-route-card small,
.transfer-vehicle-card em {
  margin: 5px 0 12px;
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.transfer-vehicle-card small {
  display: inline;
  padding-left: 3px;
  color: #b78574;
  font-size: 12px;
}

.transfer-custom-cta {
  background: #ffc0a8;
}

.transfer-custom-cta__inner {
  display: grid;
  grid-template-columns: 90px minmax(220px, 1fr) minmax(300px, 1.4fr) 170px;
  gap: 28px;
  align-items: center;
  min-height: 140px;
}

.transfer-custom-cta__support {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  color: #111111;
  background: #ffe7dd;
}

.transfer-custom-cta__support svg {
  width: 42px;
  height: 42px;
}

.transfer-custom-cta h2 {
  color: #111111;
  font-size: 18px;
  font-weight: 900;
}

.transfer-custom-cta p {
  margin-top: 18px;
  color: #111111;
  font-size: 17px;
  font-weight: 500;
}

.transfer-custom-cta ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.transfer-custom-cta li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111111;
  font-size: 17px;
  font-weight: 900;
}

.transfer-custom-cta li svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  fill: var(--color-primary);
}

.transfer-custom-cta__inner > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .transfers-hero__inner {
    grid-template-columns: 1fr minmax(340px, 470px);
  }

  .transfer-card-row {
    padding: 2px;
  }

  .transfer-route-card,
  .transfer-vehicle-card {
    min-width: 0;
  }

  .transfer-custom-cta__inner {
    grid-template-columns: 84px minmax(0, 1fr) minmax(280px, 1fr);
  }

  .transfer-custom-cta__inner > a {
    grid-column: 2 / -1;
    width: min(100%, 180px);
  }
}

@media (max-width: 980px) {
  .transfers-hero__inner {
    grid-template-columns: 1fr;
  }

  .transfer-showcase__grid {
    grid-template-columns: 1fr;
  }

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

  .transfer-booking {
    width: min(100%, 620px);
    justify-self: center;
  }

  .transfer-benefits__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 22px;
  }

  .transfer-custom-cta__inner {
    grid-template-columns: 84px minmax(0, 1fr);
    padding-block: 28px;
  }

  .transfer-custom-cta ul,
  .transfer-custom-cta__inner > a {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .transfers-hero__inner {
    min-height: 0;
    padding-block: 42px;
  }

  .transfers-breadcrumb {
    margin-bottom: 20px;
  }

  .transfers-hero h1 {
    font-size: 1.6rem;
  }

  .transfers-hero__copy > p:not(.transfers-eyebrow) {
    font-size: 16px;
  }

  .transfer-booking {
    padding: 18px;
  }

  .transfer-booking__grid {
    grid-template-columns: 1fr;
  }

  .transfer-benefits__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .transfer-benefits article {
    justify-content: flex-start;
  }

  .transfer-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .transfer-section-head h2 {
    font-size: 20px;
  }

  .transfer-carousel + .transfer-carousel {
    margin-top: 28px;
  }

  .transfer-card-row {
    margin-inline: 0;
    padding: 2px;
  }

  .transfer-card-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .transfer-route-card,
  .transfer-vehicle-card {
    box-shadow: 0 6px 14px rgba(112, 58, 42, 0.13);
  }

  .transfer-route-card span,
  .transfer-route-card small,
  .transfer-vehicle-card span,
  .transfer-vehicle-card em {
    padding-inline: 9px;
  }

  .transfer-route-card span,
  .transfer-vehicle-card span {
    font-size: 12px;
    line-height: 1.2;
  }

  .transfer-route-card small,
  .transfer-vehicle-card em {
    font-size: 11px;
  }

  .transfer-route-card img,
  .transfer-vehicle-card img {
    aspect-ratio: 1.35 / 1;
  }

  .transfer-custom-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .transfer-custom-cta__support {
    margin-inline: auto;
  }

  .transfer-custom-cta ul,
  .transfer-custom-cta__inner > a {
    grid-column: auto;
  }

  .transfer-custom-cta ul {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .transfer-custom-cta__inner > a {
    width: 100%;
  }
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.language-option:hover,
.language-option.is-active {
  background: var(--color-primary-soft);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.language-option img {
  width: 26px;
  height: 18px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(112, 58, 42, 0.12);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-md);
  color: var(--color-text);
  background: var(--color-primary-soft);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.home-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(420px, calc(100vh - 88px), 620px);
  padding: clamp(72px, 10vw, 128px) var(--container-padding);
  overflow: hidden;
  color: var(--color-white);
  background-color: #151515;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.36)),
    var(--image-hero),
    radial-gradient(circle at 42% 58%, rgba(243, 39, 0, 0.32), transparent 30%),
    linear-gradient(135deg, #20150f 0%, #0f171b 100%);
  background-position: center;
  background-size: cover;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  text-align: center;
}

.home-hero h1 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.65vw, 2.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.home-hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 198px;
  min-height: 42px;
  padding: 0 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.hero-button--primary {
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.hero-button--primary:hover {
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
}

.hero-button--outline {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.12);
}

.hero-button--outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
}

.feature-strip {
  background: var(--color-primary-soft);
  border-bottom: 1px solid var(--color-border);
}

.feature-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  width: min(100% - (var(--container-padding) * 2), 1140px);
  margin-inline: auto;
  padding: 22px 0 20px;
}

.feature-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.feature-item svg {
  width: 38px;
  height: 38px;
  color: var(--color-primary);
  stroke-width: 2;
}

.feature-item h2 {
  margin: 0 0 2px;
  color: var(--color-secondary);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
}

.feature-item p {
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.tour-section {
  padding: 64px var(--container-padding) 76px;
  background: var(--color-white);
}

.tour-section__header {
  width: min(100%, 720px);
  margin: 0 auto 48px;
  text-align: center;
}

.tour-section__header h2,
.welcome-section h2,
.why-section__header h2,
.experience-section__copy h2,
.testimonial-section__header h2,
.guide-section__header h2 {
  color: var(--color-primary);
  font-size: clamp(1.5rem, 2.15vw, 2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.tour-section__kicker,
.why-section__header h3,
.experience-section__copy h3,
.testimonial-section__header h3,
.guide-section__header h3 {
  margin-top: 8px;
  color: var(--color-secondary);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
}

.tour-section__intro {
  margin-top: 14px;
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.28;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 17px 11px;
  width: min(100%, 1260px);
  margin-inline: auto;
  align-items: stretch;
}

.tour-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(112, 58, 42, 0.18);
}

.tour-card__image {
  display: block;
  aspect-ratio: 1.28;
  overflow: hidden;
  background-color: var(--color-surface-warm);
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 12px 14px 18px;
}

.tour-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 6px;
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.28;
}

.tour-card__meta strong {
  font-weight: 900;
}

.tour-card h3 {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.12;
}

.tour-card h3,
.tour-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tour-card h3 a {
  color: inherit;
}

.tour-card h3 a:hover {
  color: var(--color-primary-dark);
}

.tour-card p {
  margin-top: 4px;
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.28;
}

.tour-card p strong {
  font-weight: 900;
}

.tour-card__price {
  margin-top: auto;
  padding-top: 10px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.tour-card__price strong {
  font-size: 19px;
  font-weight: 900;
}

.welcome-section {
  position: relative;
  padding: 64px var(--container-padding) 40px;
  overflow: hidden;
  background-color: var(--color-secondary);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

.welcome-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(42, 24, 18, 0.68);
}

.welcome-section__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  margin-inline: auto;
}

.welcome-section p {
  margin-top: 10px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.18;
}

.section-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 26px;
  border-radius: 6px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color var(--transition-fast);
}

.section-button:hover {
  background: var(--color-primary-dark);
}

.why-section {
  padding: 36px var(--container-padding) 72px;
  background: var(--color-white);
}

.why-section__header {
  margin-bottom: 28px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 17px 11px;
  width: min(100%, 1260px);
  margin-inline: auto;
}

.why-card {
  min-height: 210px;
  padding: 26px 18px 20px;
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(112, 58, 42, 0.18);
  text-align: center;
}

.why-card svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 28px;
  color: var(--color-primary);
  stroke-width: 2;
}

.why-card h3 {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.12;
}

.why-card p {
  margin-top: 18px;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
}

.experience-section {
  padding: 34px 0 76px;
  background: var(--color-primary-soft);
}

.experience-section__inner {
  display: block;
}

.experience-section__copy {
  width: min(100%, 760px);
  margin: 0 auto 34px;
  text-align: center;
}

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

.experience-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border-radius: 18px;
  padding: 16px;
  color: var(--color-white);
  background: var(--color-secondary);
  text-align: center;
}

.experience-card:nth-child(-n + 2) {
  grid-column: span 2;
}

.experience-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.72));
}

.experience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-card span {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.05;
}

.experience-card:nth-child(-n + 2) span {
  font-size: 20px;
}

.help-cta-section {
  padding: 40px 0px;
  background: var(--color-white);
}

.help-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 32px;
  align-items: center;
  padding: 54px 56px;
  border-radius: 10px;
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0 8px 22px rgba(112, 58, 42, 0.24);
}

.help-cta__copy h2 {
  color: var(--color-white);
  font-size: clamp(1.5rem, 2.15vw, 2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.help-cta__copy p {
  margin-top: 20px;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.help-cta__actions {
  justify-self: end;
  width: min(100%, 320px);
}

.help-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 8px;
  color: var(--color-black);
  background: var(--color-white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.help-cta__button:hover {
  color: var(--color-primary);
  background: #fff7f4;
}

.help-cta__button svg {
  width: 24px;
  height: 24px;
  color: #20c866;
  stroke-width: 2.4;
}

.help-cta__actions p {
  margin-top: 12px;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
}

.help-cta__actions a:not(.help-cta__button) {
  color: inherit;
}

.testimonial-section {
  padding: 38px 0 72px;
  background: var(--color-primary-soft);
}

.testimonial-section__header {
  margin-bottom: 28px;
  text-align: center;
}

.testimonial-stage {
  position: relative;
}

.testimonial-slider {
  overflow: hidden;
  padding: 2px;
  margin: -2px;
  cursor: grab;
  user-select: none;
}

.testimonial-slider:active {
  cursor: grabbing;
}

.testimonial-card {
  display: flex;
  height: auto;
  flex-direction: column;
  min-height: 244px;
  padding: 26px 26px 22px;
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 6px 18px rgba(112, 58, 42, 0.16);
}

.testimonial-card__stars {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  color: #f4c000;
}

.testimonial-card__stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke-width: 0;
}

.testimonial-card > p {
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: auto;
  padding-top: 24px;
}

.testimonial-card__author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-surface-warm);
  pointer-events: none;
}

.testimonial-card__author strong {
  color: var(--color-black);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.testimonial-pagination {
  position: static;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0;
  opacity: 1;
  background: var(--color-border);
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.guide-section {
  padding: 28px 0 76px;
  background: var(--color-white);
}

.guide-section__header {
  margin-bottom: 58px;
  text-align: center;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(48px, 8vw, 96px);
  row-gap: 30px;
}

.guide-post {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.05fr);
  gap: 16px;
  align-items: center;
}

.guide-post__image {
  display: block;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-surface-warm);
}

.guide-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-post__category {
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.guide-post h4 {
  margin-top: 8px;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.08;
}

.guide-post h4 a {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.guide-post h4 a:hover {
  color: var(--color-primary-dark);
}

.guide-post__body > p:not(.guide-post__category) {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 7px;
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.guide-post time {
  display: block;
  margin-top: 14px;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.site-footer {
  background: var(--color-white);
}

.footer-newsletter {
  background: #fff1ea;
}

.footer-newsletter__inner {
  display: grid;
  grid-template-columns: 96px minmax(0, 1.25fr) minmax(340px, 0.95fr);
  gap: 28px;
  align-items: center;
  min-height: 148px;
  padding-block: 28px;
}

.footer-newsletter__icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 118, 55, 0.5);
  border-radius: 50%;
  color: var(--color-primary);
  background: rgba(255, 118, 55, 0.08);
}

.footer-newsletter__icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.3;
}

.footer-newsletter__copy h2 {
  color: var(--color-black);
  font-size: clamp(1.2rem, 1.55vw, 1.5rem);
  font-weight: 900;
  line-height: 1.15;
}

.footer-newsletter__copy p {
  margin-top: 18px;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.footer-newsletter__fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 184px;
  gap: 6px;
}

.footer-newsletter__fields input {
  width: 100%;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid #9b9b9b;
  border-radius: 8px;
  color: var(--color-black);
  background: var(--color-white);
  font-size: 16px;
  outline: 0;
}

.footer-newsletter__fields input:focus {
  border-color: var(--color-primary);
}

.footer-newsletter__fields button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.footer-newsletter__fields button:hover {
  background: var(--color-primary-dark);
}

.footer-newsletter__form > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.footer-newsletter__form > p svg {
  width: 20px;
  height: 20px;
  color: var(--color-secondary);
  stroke-width: 1.8;
}

.footer-main {
  position: relative;
  padding: 52px 0 48px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(49, 25, 17, 0.86), rgba(49, 25, 17, 0.72)),
    url("https://images.unsplash.com/photo-1707235163533-e3b19684f8db?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.footer-main__inner {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.1fr 1.15fr 1.4fr;
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.footer-logo {
  display: block;
  width: 112px;
  height: 112px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 4px 18px rgba(112, 58, 42, 0.12);
  transition: opacity var(--transition-fast);
}

.footer-logo:hover {
  opacity: 0.86;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand p {
  max-width: 250px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  font-size: 18px;
  font-weight: 900;
  transition: border-color var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast);
}

.footer-socials a:hover {
  border-color: var(--color-primary);
  color: var(--color-white);
  background: var(--color-primary);
}

.footer-socials svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.footer-column h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 1px;
  background: var(--color-primary);
}

.footer-column a,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.footer-column a {
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-primary);
}

.footer-column a:hover svg {
  color: var(--color-primary);
}

.footer-column a + a,
.footer-contact p {
  margin-top: 18px;
}

.footer-column a svg,
.footer-contact p svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--color-white);
  stroke-width: 3;
  transition: color var(--transition-fast);
}

.footer-contact a svg,
.footer-contact p svg {
  color: var(--color-primary);
  stroke-width: 2.5;
}

.footer-contact__button {
  justify-content: space-between;
  width: min(100%, 210px);
  min-height: 54px;
  margin-top: 36px;
  padding: 0 24px;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-white) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  transition: border-color var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast);
}

.footer-contact__button:hover {
  border-color: var(--color-primary);
  color: var(--color-white) !important;
  background: var(--color-primary);
}

.footer-column .footer-contact__button:hover svg {
  color: var(--color-white);
}

.footer-contact__button svg {
  width: 22px !important;
  height: 22px !important;
}

.footer-bottom {
  background: var(--color-primary-soft);
  border-top: 1px solid rgba(255, 118, 55, 0.22);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 45px;
  color: var(--color-secondary);
}

.footer-bottom p,
.footer-bottom a {
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.footer-bottom a {
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

.footer-bottom nav {
  display: flex;
  align-items: center;
}

.footer-bottom nav a {
  padding-inline: 26px;
}

.footer-bottom nav a + a {
  border-left: 1px solid rgba(112, 58, 42, 0.36);
}

/* Temporary centering for the single leftover final tour card.
   Remove this block when adding more tour cards so the grid can auto-flow normally. */
.tour-section .tour-card:last-child {
  grid-column: 3;
}

.hero-header {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 32px var(--container-padding) 28px;
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(circle at 86% 26%, rgba(243, 39, 0, 0.92) 0 42px, transparent 43px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 36%, rgba(185, 48, 5, 0.68) 100%),
    linear-gradient(135deg, #111 0%, #33231a 44%, #933207 100%);
}

.hero-header::before,
.hero-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-header::before {
  opacity: 0.38;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.12) 19% 20%, transparent 21% 100%),
    repeating-linear-gradient(90deg, rgba(255, 245, 225, 0.12) 0 1px, transparent 1px 68px);
}

.hero-header::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.85rem);
  font-style: normal;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 12px 0 0;
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55);
}

.hero-content p::before,
.hero-content p::after {
  content: "";
  width: clamp(32px, 5vw, 76px);
  height: 2px;
  background: var(--color-primary);
}

@media (max-width: 1180px) {
  .header-bar {
    padding-right: 24px;
  }

  .main-nav {
    gap: 18px;
  }

  .nav-link {
    font-size: 14px;
  }

  .feature-strip__inner {
    gap: 22px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-item h2 {
    font-size: 15px;
  }

  .feature-item p {
    font-size: 13px;
  }

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

  .tour-section .tour-card:last-child {
    grid-column: 2 / span 2;
  }

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

  .experience-grid {
    gap: 18px;
  }

}

@media (max-width: 980px) {
  .header-bar {
        justify-content: end;
        padding: 0px 18px 0px 112px;
        gap: 15px;
  }

  .header-logo {
    left: 18px;
    width: 72px;
    height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    overflow-y: auto;
    background: var(--color-white);
  }

  .nav-open .main-nav {
    display: flex;
    justify-content: start;
  }

  .nav-link {
    width: 100%;
    min-height: 48px;
    border-bottom: 1px solid var(--color-border);
    font-size: 16px;
  }

  .nav-item {
    display: block;
  }

  .submenu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height var(--transition-base), padding var(--transition-base);
  }

  .nav-item--dropdown:hover .submenu,
  .nav-item--dropdown:focus-within .submenu {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-item--dropdown.is-open .submenu {
    max-height: 340px;
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .nav-item--dropdown:hover .nav-link.has-dropdown svg,
  .nav-item--dropdown:focus-within .nav-link.has-dropdown svg {
    transform: none;
  }

  .nav-item--dropdown.is-open .nav-link.has-dropdown svg {
    transform: rotate(180deg);
  }

  .submenu a {
    min-height: 42px;
    border-radius: 6px;
    font-size: 15px;
  }

  .header-actions {
    margin-left: 0;
  }

  .feature-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px 0;
  }

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

  .tour-section .tour-card:last-child {
    grid-column: 2;
  }

  .welcome-section p {
    font-size: 16px;
  }

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

  .help-cta {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    text-align: center;
  }

  .help-cta__actions {
    justify-self: center;
  }

  .testimonial-section {
    padding-top: 28px;
  }

  .testimonial-card {
    border-radius: 18px;
  }

  .footer-newsletter__inner {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .footer-newsletter__icon {
    width: 86px;
    height: 86px;
  }

  .footer-newsletter__icon svg {
    width: 38px;
    height: 38px;
  }

  .footer-newsletter__form {
    grid-column: 1 / -1;
  }

  .footer-main__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-bottom__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 24px;
  }

  .footer-bottom nav a:first-child {
    padding-left: 0;
  }

  .guide-grid {
    grid-template-columns: 1fr;
    row-gap: 26px;
  }

  .guide-post {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {

  .header-logo {
    width: 60px;
    height: 60px;
    border: 0;
  }

  .cart-button {
    width: 40px;
    height: 40px;
  }

  .cart-button svg {
    width: 20px;
    height: 20px;
  }

  .cart-count {
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .language-switcher {
    display: none;
  }

  .hero-header {
    min-height: 176px;
    padding-top: 44px;
  }

  .home-hero {
    min-height: 520px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .home-hero h1 {
    font-size: clamp(1.4rem, 7vw, 2.1rem);
  }

  .home-hero__actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .hero-button {
    width: 100%;
  }

  .feature-strip__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-item {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .tour-section {
    padding-top: 48px;
  }

  .tour-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .tour-section .tour-card:last-child {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }

  .tour-card {
    border-radius: 12px;
  }

  .tour-card__body {
    padding: 12px 10px 16px;
  }

  .tour-card__meta {
    font-size: 13px;
  }

  .tour-card h3 {
    font-size: 15px;
  }

  .tour-card p {
    font-size: 13px;
    margin-top: 5px;
  }

  .tour-card__price {
    padding-top: 16px;
    font-size: 14px;
  }

  .tour-card__price strong {
    font-size: 17px;
  }

  .welcome-section {
    padding-top: 48px;
  }

  .welcome-section p {
    font-size: 15px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .why-card {
    min-height: 0;
    padding: 20px 10px;
  }

  .experience-section {
    padding-top: 42px;
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .experience-card {
    min-height: 0;
    border-radius: 14px;
    padding: 12px;
  }

  .experience-card span {
    font-size: 13px;
  }

  .experience-card:nth-child(-n + 2) span {
    font-size: 16px;
  }

  .help-cta-section {
    padding-bottom: 48px;
  }

  .help-cta {
    gap: 24px;
    padding: 32px 18px;
  }

  .help-cta__copy h2 {
    font-size: 1.65rem;
  }

  .help-cta__copy p,
  .help-cta__actions p {
    font-size: 15px;
  }

  .help-cta__button {
    min-height: 50px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .testimonial-section {
    padding-bottom: 56px;
  }

  .testimonial-section__header {
    margin-bottom: 22px;
  }

  .testimonial-card {
    min-height: 230px;
    padding: 18px 14px 16px;
  }

  .testimonial-card__stars {
    gap: 4px;
    margin-bottom: 14px;
  }

  .testimonial-card__stars svg {
    width: 15px;
    height: 15px;
  }

  .testimonial-card > p {
    font-size: 13px;
  }

  .testimonial-card__author {
    gap: 12px;
    padding-top: 18px;
  }

  .testimonial-card__author img {
    width: 40px;
    height: 40px;
  }

  .guide-section {
    padding-top: 16px;
    padding-bottom: 56px;
  }

  .guide-section__header {
    margin-bottom: 32px;
  }

  .guide-grid {
    row-gap: 24px;
  }

  .guide-post {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guide-post__image {
    min-height: 0;
  }

  .guide-post h4 {
    font-size: 16px;
  }

  .footer-newsletter__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 30px;
    text-align: center;
  }

  .footer-newsletter__icon {
    margin-inline: auto;
  }

  .footer-newsletter__copy p {
    margin-top: 14px;
    font-size: 16px;
  }

  .footer-newsletter__fields {
    grid-template-columns: 1fr;
  }

  .footer-newsletter__form > p {
    justify-content: center;
  }

  .footer-main {
    padding: 42px 0;
  }

  .footer-main__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo,
  .footer-brand p {
    margin-inline: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-column h2 {
    margin-bottom: 24px;
  }

  .footer-column a,
  .footer-contact p {
    font-size: 15px;
  }

  .footer-contact__button {
    margin-inline: auto;
  }

  .footer-bottom__inner {
    align-items: center;
    text-align: center;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 16px;
  }

  .footer-bottom nav {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom nav a {
    padding-inline: 0;
  }

  .footer-bottom nav a + a {
    border-left: 0;
  }

}

/* Shared hero/banner typography */
.tour-detail-breadcrumb,
.tours-breadcrumb,
.about-breadcrumb,
.cart-breadcrumb,
.checkout-breadcrumb,
.destinations-breadcrumb,
.transfers-breadcrumb,
.shows-breadcrumb {
  font-size: var(--hero-breadcrumb-size);
  line-height: 1.2;
}

.tour-detail-breadcrumb svg,
.tours-breadcrumb svg,
.about-breadcrumb svg,
.cart-breadcrumb svg,
.checkout-breadcrumb svg,
.destinations-breadcrumb svg,
.transfers-breadcrumb svg,
.shows-breadcrumb svg {
  width: 15px;
  height: 15px;
}

.tour-detail-hero h1,
.tours-hero h1,
.about-hero h1,
.destinations-hero h1,
.transfers-hero h1,
.shows-hero h1,
.success-hero h1,
.home-hero h1,
.hero-content h1 {
  font-size: var(--hero-title-size);
}

.cart-heading h1,
.checkout-heading h1 {
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
}

.tours-hero__content > p,
.about-hero__lead,
.destinations-hero p,
.transfers-hero__copy > p:not(.transfers-eyebrow),
.shows-hero p,
.success-hero p {
  font-size: var(--hero-description-size);
  line-height: 1.3;
}

@media (max-width: 640px) {
  .tour-detail-hero h1,
  .tours-hero h1,
  .about-hero h1,
  .destinations-hero h1,
  .transfers-hero h1,
  .shows-hero h1,
  .success-hero h1,
  .home-hero h1,
  .hero-content h1 {
    font-size: var(--hero-mobile-title-size);
  }

  .cart-heading h1,
  .checkout-heading h1 {
    font-size: 1.45rem;
  }

  .tours-hero__content > p,
  .about-hero__lead,
  .destinations-hero p,
  .transfers-hero__copy > p:not(.transfers-eyebrow),
  .shows-hero p,
  .success-hero p {
    font-size: var(--hero-mobile-description-size);
  }
}
