:root {
  --primary: #cc99ff;
  --primary-soft: #f6eeff;
  --primary-mist: #fcf8ff;
  --primary-deep: #7c679d;
  --primary-text: #524667;
  --muted: #86799d;
  --white: #ffffff;
  --line: rgba(164, 132, 205, 0.18);
  --shadow: 0 20px 50px rgba(156, 125, 199, 0.14);
  --container: min(1180px, calc(100% - 32px));
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Be Vietnam Pro", sans-serif;
  color: var(--primary-text);
  background:
    radial-gradient(circle at top left, rgba(204, 153, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #fffefe 0%, #ffffff 40%, #fbf8ff 100%);
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.alt-section {
  background: linear-gradient(180deg, rgba(246, 238, 255, 0.52), rgba(255, 255, 255, 0.68));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(156, 125, 199, 0.1);
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #e5ccff);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 18px 0 14px;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--primary-deep);
}

.section-heading p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(253, 249, 255, 0.86);
  border-bottom: 1px solid rgba(164, 132, 205, 0.12);
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 16px 32px rgba(171, 136, 219, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text strong {
  display: block;
  color: var(--primary-deep);
  font-size: 1rem;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--primary), var(--primary-deep));
  transition: transform 0.24s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(204, 153, 255, 0.14);
  color: var(--primary-deep);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--primary-deep);
  background: linear-gradient(135deg, #f4eaff, #ddc0ff);
  box-shadow: 0 16px 32px rgba(204, 153, 255, 0.24);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(87, 67, 122, 0.74) 0%, rgba(118, 95, 156, 0.44) 44%, rgba(166, 143, 205, 0.16) 100%),
    url("Tour1/hongnhaidong/Tp35kieHzqfNKF10N3FO9Vxuo5kzCxCF9-z-U0ozxB87330UuIDerQc_o2R7UKmSVGXBV6LYeA_4zFNxRMcf5dxLYSeTicuy_MYx6TSK5BEk7Ia6l8va_U2mr0alwBAWSCo5RfQbXkvqa9_ywuFrc19Q8Enokmr-PCDwUI8KdHWXC733KErEnVJxAB3H6pnA.jpeg")
      center/cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 153, 255, 0.32), transparent 72%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 420px);
  gap: 32px;
  align-items: end;
}

.hero-copy {
  color: var(--white);
  padding: 56px 0 28px;
}

.hero-copy h1 {
  margin: 22px 0 18px;
  font-family: "Fraunces", serif;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 650px;
  margin: 0 0 28px;
  line-height: 1.86;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-highlight {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-highlight strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.hero-highlight span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
  font-size: 0.92rem;
}

.hero-card,
.glass-card,
.feature-card,
.service-card,
.tour-card,
.commitment-banner {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-card-head strong {
  display: block;
  color: var(--primary-deep);
}

.hero-card-head span {
  color: var(--muted);
  font-size: 0.92rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.badge-soft {
  color: var(--primary-deep);
  background: rgba(231, 214, 255, 0.9);
}

.featured-tour-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.featured-tour-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.featured-tour-card__content {
  padding: 20px;
}

.featured-tour-card__content h3 {
  margin: 0 0 12px;
  color: var(--primary-deep);
  font-size: 1.22rem;
}

.tour-meta,
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tour-pill,
.mini-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
}

.tour-pill {
  color: var(--primary-deep);
  background: rgba(204, 153, 255, 0.14);
}

.mini-tag {
  color: var(--primary-deep);
  background: rgba(231, 214, 255, 0.86);
}

.featured-tour-card__content p {
  margin: 14px 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

.tour-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tour-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tour-price span {
  font-size: 0.82rem;
  color: var(--muted);
}

.tour-price strong {
  color: var(--primary-deep);
  font-size: 1.35rem;
}

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

.contact-grid--single {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.glass-card {
  padding: 32px;
  border-radius: var(--radius-xl);
}

.glass-card h3,
.service-card h3,
.feature-card h3,
.tour-card h3,
.commitment-banner h2 {
  margin: 0 0 12px;
  color: var(--primary-deep);
}

.glass-card p,
.feature-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-showcase {
  display: grid;
  gap: 24px;
}

.about-showcase__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 12px;
}

.about-showcase__grid img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 22px;
}

.about-showcase__grid img:first-child {
  grid-row: span 2;
  min-height: 100%;
}

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

.mini-stat {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #faf6ff);
  border: 1px solid var(--line);
}

.mini-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-deep);
}

.mini-stat span {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.93rem;
}

.content-stack {
  display: grid;
  gap: 20px;
}

.content-stack h4 {
  margin: 0 0 10px;
  color: var(--primary-deep);
}

.content-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.86;
}

.feature-grid,
.service-grid,
.tour-grid {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-card,
.service-card {
  padding: 28px;
  border-radius: 24px;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.feature-card:hover,
.service-card:hover,
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(156, 125, 199, 0.18);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(204, 153, 255, 0.22), rgba(231, 214, 255, 0.94));
  color: var(--primary-deep);
  font-size: 1.2rem;
  font-weight: 800;
}

.service-card {
  overflow: hidden;
}

.service-card__media {
  margin: -28px -28px 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.service-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

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

.tour-card {
  overflow: hidden;
  border-radius: 28px;
}

.tour-card__media {
  position: relative;
  overflow: hidden;
}

.tour-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.tour-card:hover .tour-card__media img {
  transform: scale(1.04);
}

.tour-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}

.tour-card__body {
  padding: 22px;
}

.tour-card__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.tour-card__head h3 {
  font-size: 1.22rem;
  line-height: 1.35;
}

.tour-card__price {
  text-align: right;
  flex-shrink: 0;
}

.tour-card__price span {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
}

.tour-card__price strong {
  color: var(--primary-deep);
  font-size: 1.15rem;
}

.tour-card__body p {
  margin: 14px 0 18px;
  color: var(--muted);
  line-height: 1.78;
}

.tour-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.btn-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary-deep);
  font-weight: 700;
  cursor: pointer;
}

.commitment-banner {
  padding: 36px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at top right, rgba(239, 226, 255, 0.64), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 239, 255, 0.98));
}

.commitment-banner p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.84;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

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

.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(204, 153, 255, 0.14);
  color: var(--primary-deep);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-deep);
}

.contact-item span,
.contact-item a {
  color: var(--muted);
  line-height: 1.7;
}

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

.form-row {
  display: grid;
  gap: 10px;
}

.form-row.full {
  grid-column: 1 / -1;
}

.form-row label {
  font-weight: 700;
  color: var(--primary-deep);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(164, 132, 205, 0.16);
  background: #fdfaff;
  color: var(--primary-text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(204, 153, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(204, 153, 255, 0.16);
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  padding: 30px 0 42px;
}

.footer-panel {
  padding: 28px 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(239, 226, 255, 0.6), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 255, 0.98));
  border: 1px solid rgba(164, 132, 205, 0.14);
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: 28px;
  padding-bottom: 24px;
}

.footer-brand strong,
.footer-column h4 {
  display: block;
  color: var(--primary-deep);
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(171, 136, 219, 0.18);
}

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

.footer-brand strong {
  margin: 16px 0 12px;
}

.footer-brand p,
.footer-info span {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-column h4 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-links,
.footer-info {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary-deep);
}

.footer-shell {
  padding-top: 24px;
  border-top: 1px solid rgba(164, 132, 205, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-shell p,
.footer-meta span {
  margin: 0;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
}

.tour-modal.active {
  display: block;
}

.tour-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(87, 67, 119, 0.5);
  backdrop-filter: blur(8px);
}

.tour-modal__dialog {
  position: relative;
  width: min(980px, calc(100% - 24px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  margin: 16px auto;
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 40px 100px rgba(136, 112, 176, 0.26);
}

.tour-modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(204, 153, 255, 0.14);
  color: var(--primary-deep);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-tour {
  display: grid;
  gap: 24px;
}

.modal-tour__gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 12px;
}

.modal-tour__gallery img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  border-radius: 20px;
}

.modal-tour__gallery img:first-child {
  grid-row: span 2;
  min-height: 320px;
}

.modal-tour__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.modal-tour__head h3 {
  margin: 0 0 12px;
  color: var(--primary-deep);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.modal-tour__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.modal-tour__pricebox {
  min-width: 220px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fdfaff, #f5eeff);
  border: 1px solid var(--line);
}

.modal-tour__pricebox span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.modal-tour__pricebox strong {
  display: block;
  margin: 8px 0;
  font-size: 1.55rem;
  color: var(--primary-deep);
}

.modal-tour__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.panel {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fefcff;
}

.panel h4 {
  margin: 0 0 14px;
  color: var(--primary-deep);
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.panel p + p {
  margin-top: 12px;
}

.panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.82;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.timeline li {
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}

.timeline li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.timeline strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-deep);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-width: 280px;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(124, 103, 157, 0.97);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(136, 112, 176, 0.24);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .feature-grid,
  .service-grid,
  .tour-grid,
  .modal-tour__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 78px 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 84px 16px auto;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .hero-highlights,
  .mini-stats,
  .feature-grid,
  .service-grid,
  .tour-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .contact-form,
  .modal-tour__gallery,
  .modal-tour__grid {
    grid-template-columns: 1fr;
  }

  .commitment-banner,
  .modal-tour__head,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-showcase__grid {
    grid-template-columns: 1fr;
  }

  .about-showcase__grid img:first-child {
    grid-row: auto;
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .hero-card,
  .glass-card,
  .feature-card,
  .service-card,
  .tour-card__body,
  .commitment-banner,
  .tour-modal__dialog {
    padding: 22px;
  }

  .tour-card__head,
  .tour-card__actions,
  .tour-price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .tour-card__price {
    text-align: left;
  }

  .service-card__media {
    margin: -22px -22px 18px;
  }
}
