:root {
  --bg-deep: #12060d;
  --bg-header: rgba(28, 9, 16, 0.82);
  --surface: rgba(44, 13, 22, 0.54);
  --surface-strong: rgba(32, 10, 17, 0.84);
  --line: rgba(255, 185, 145, 0.25);
  --text: #f7e7d8;
  --muted: rgba(255, 236, 224, 0.93);
  --gold: #f5c18a;
  --accent: #ff5a72;
  --accent-strong: #c21739;
  --shadow: rgba(0, 0, 0, 0.44);
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, #3d1217 0%, #18080d 44%, #0c0509 100%);
}

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

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

button,
select {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.landing-page {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.landing-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1080px;
  background:
    linear-gradient(180deg, rgba(11, 4, 8, 0.2) 0%, rgba(11, 4, 8, 0.12) 12%, rgba(11, 4, 8, 0.44) 72%, rgba(11, 4, 8, 0.94) 100%),
    url("imagen/background.webp") center top / cover no-repeat;
  z-index: -3;
}

.landing-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 168, 110, 0.16), transparent 28%),
    radial-gradient(circle at 76% 20%, rgba(255, 124, 154, 0.14), transparent 26%),
    radial-gradient(circle at 50% 52%, rgba(255, 180, 115, 0.1), transparent 30%);
  pointer-events: none;
  z-index: -2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgba(16, 6, 10, 0.86), rgba(16, 6, 10, 0.52));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(248, 188, 147, 0.16);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 26px 0 18px;
}

.brand {
  flex: 0 0 auto;
  max-width: 260px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 30px;
}

.site-nav a {
  position: relative;
  font-size: 1.22rem;
  font-weight: 600;
  color: rgba(251, 228, 214, 0.92);
  transition: color 0.3s ease, transform 0.3s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 180, 0.95), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: #fff5ee;
  transform: translateY(-1px);
}

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

.header-cta {
  padding: 16px 26px;
  border-radius: 18px;
  white-space: nowrap;
  font-size: 1.18rem;
  font-weight: 800;
  background: linear-gradient(180deg, #f8c479 0%, #f69e61 48%, #8e4129 100%);
  box-shadow: 0 20px 40px rgba(69, 15, 23, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(69, 15, 23, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.site-nav a:focus-visible,
.header-cta:focus-visible,
.search-panel button:focus-visible,
.field select:focus-visible {
  outline: 2px solid rgba(255, 208, 150, 0.95);
  outline-offset: 4px;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  grid-template-areas:
    "copy visual"
    "search search";
  gap: 20px 28px;
  padding: 54px 0 30px;
  align-items: start;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 6% 106px auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 173, 102, 0.26) 0%, rgba(255, 173, 102, 0.06) 38%, transparent 72%);
  filter: blur(8px);
  z-index: -1;
}

.hero__copy {
  grid-area: copy;
  max-width: 590px;
  padding-top: 42px;
  animation: rise-in 0.9s ease both;
}

.hero__copy h1 {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 6vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 600;
  text-wrap: balance;
  color: #fae8d7;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.hero__copy p {
  margin: 0;
  max-width: 27ch;
  font-size: clamp(1.25rem, 1.2vw + 1rem, 1.8rem);
  line-height: 1.55;
  color: var(--muted);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}

.hero__visual {
  grid-area: visual;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  animation: rise-in 1.05s ease 0.12s both;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 40px 10px auto auto;
  width: 85%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 198, 132, 0.38) 0%, rgba(255, 198, 132, 0.1) 42%, transparent 72%);
  filter: blur(6px);
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 24% 0 auto auto;
  width: 64%;
  height: 52%;
  background: radial-gradient(circle, rgba(255, 119, 151, 0.22), transparent 72%);
  filter: blur(20px);
}

.hero__visual img {
  position: relative;
  width: min(100%, 610px);
  margin-top: 10px;
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.44));
  opacity: 0.98;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 83%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 83%, transparent 100%);
}

.floating-heart {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.35));
  animation: float-heart 6.2s ease-in-out infinite;
}

.heart--1 {
  top: 142px;
  right: -10px;
  width: 96px;
  animation-delay: -1s;
}

.heart--2 {
  top: 720px;
  left: -16px;
  width: 88px;
  animation-delay: -2.2s;
}

.heart--3 {
  top: 900px;
  right: 40px;
  width: 76px;
  animation-delay: -3.4s;
}

.heart--4 {
  top: 1040px;
  left: 44%;
  width: 66px;
  opacity: 0.75;
  animation-delay: -1.6s;
}

.search-panel {
  grid-area: search;
  position: relative;
  z-index: 4;
  margin-top: 0;
  padding: 28px 30px 30px;
  border: 1px solid rgba(245, 175, 137, 0.28);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(46, 12, 20, 0.66) 0%, rgba(20, 6, 11, 0.76) 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px rgba(8, 2, 5, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  animation: rise-in 1.15s ease 0.22s both;
}

.search-panel__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
}

.field {
  position: relative;
}

.field::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 228, 210, 0.86);
  border-bottom: 2px solid rgba(255, 228, 210, 0.86);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.field select {
  width: 100%;
  appearance: none;
  border: none;
  border-radius: 18px;
  padding: 20px 56px 20px 22px;
  background: rgba(29, 8, 14, 0.84);
  color: #f9e8dc;
  box-shadow: inset 0 0 0 1px rgba(248, 182, 145, 0.14);
  font-size: 1.25rem;
  line-height: 1.3;
}

.search-panel button {
  border: none;
  border-radius: 18px;
  padding: 20px 34px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff7f6;
  background: linear-gradient(180deg, #ff92a2 0%, #ff647d 38%, #c31b39 100%);
  box-shadow: 0 18px 28px rgba(179, 21, 52, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-panel button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(179, 21, 52, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.search-panel__benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 48px;
  list-style: none;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(243, 174, 136, 0.18);
}

.search-panel__benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.22rem;
  font-weight: 600;
  color: #f7d8be;
}

.search-panel__benefits li::before {
  content: "✓";
  flex: 0 0 auto;
  color: #ffc27e;
  font-size: 1.7rem;
  line-height: 1;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 90px 0 120px;
}

.feature-card {
  position: relative;
  padding: 26px 34px 0;
  text-align: center;
  animation: rise-in 0.95s ease both;
}

.feature-card:nth-child(2) {
  animation-delay: 0.12s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.24s;
}

.feature-card:not(:first-child)::before {
  content: "";
  position: absolute;
  inset: 12px auto 0 0;
  width: 1px;
  height: 72%;
  background: linear-gradient(180deg, rgba(247, 182, 145, 0.26), rgba(247, 182, 145, 0.04));
}

.feature-card__icon {
  width: 124px;
  height: 124px;
  margin: 0 auto 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 24%, rgba(255, 242, 226, 0.16), rgba(113, 19, 34, 0.12));
  border: 1px solid rgba(247, 182, 145, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-card__icon img {
  max-width: 74px;
  max-height: 74px;
}

.feature-card h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3.2vw, 3.3rem);
  line-height: 0.96;
  font-weight: 600;
  color: #f4dcc5;
  text-wrap: balance;
}

.feature-card p {
  max-width: 24ch;
  margin: 0 auto;
  font-size: 1.16rem;
  line-height: 1.7;
  color: rgba(244, 224, 212, 0.84);
}

.longread,
.guide,
.story,
.cities,
.safety,
.faq,
.closing {
  padding-bottom: 96px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #f4bf8f;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
  line-height: 0.95;
  font-weight: 600;
  color: #f6e1cf;
  text-wrap: balance;
}

.longread__columns {
  column-width: 320px;
  column-gap: 42px;
  padding: 34px 34px 10px;
  border: 1px solid rgba(247, 182, 145, 0.16);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(35, 10, 17, 0.72), rgba(18, 6, 11, 0.84));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.longread__columns p,
.story__main p,
.safety__text p,
.closing__panel p {
  margin: 0 0 22px;
  color: rgba(247, 231, 216, 0.9);
  font-size: 1.08rem;
  line-height: 1.95;
}

.guide__grid,
.cities__grid,
.faq__grid {
  display: grid;
  gap: 22px;
}

.guide__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 28px;
}

.guide-card,
.city-card,
.faq-item,
.story__aside,
.closing__panel {
  padding: 28px 28px 30px;
  border: 1px solid rgba(247, 182, 145, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(33, 10, 16, 0.74), rgba(17, 6, 11, 0.82));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.guide-card h3,
.story__aside h3,
.city-card h3,
.faq-item h3,
.safety__panel h3,
.closing__panel h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  line-height: 0.98;
  font-weight: 600;
  color: #f5dcc3;
}

.guide-card p,
.city-card p,
.faq-item p,
.section-note {
  margin: 0;
  color: rgba(247, 231, 216, 0.86);
  font-size: 1.04rem;
  line-height: 1.82;
}

.detail-list,
.quote-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.detail-list {
  display: grid;
  gap: 14px;
  padding: 28px 30px;
  border: 1px solid rgba(247, 182, 145, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(31, 10, 16, 0.78), rgba(16, 6, 11, 0.88));
}

.detail-list li,
.quote-list li {
  color: rgba(247, 231, 216, 0.88);
  font-size: 1.03rem;
  line-height: 1.82;
}

.detail-list strong,
.quote-list strong {
  color: #ffd7b1;
}

.story__grid,
.safety__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.story__main,
.safety__text {
  padding: 32px 34px 12px;
  border: 1px solid rgba(247, 182, 145, 0.16);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(35, 10, 17, 0.72), rgba(18, 6, 11, 0.84));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.cities__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.city-card {
  min-height: 100%;
}

.section-note {
  max-width: 860px;
}

.safety__panel {
  padding: 28px;
  border: 1px solid rgba(247, 182, 145, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(33, 10, 16, 0.74), rgba(17, 6, 11, 0.82));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.detail-list--compact {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

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

.closing {
  padding-bottom: 56px;
}

.closing__panel {
  max-width: 980px;
}

.site-footer {
  position: relative;
  padding: 34px 0 30px;
  border-top: 1px solid rgba(247, 182, 145, 0.14);
  background:
    linear-gradient(180deg, rgba(20, 7, 12, 0.2), rgba(11, 5, 9, 0.92) 18%, rgba(9, 4, 7, 0.98) 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 174, 120, 0.12), transparent 26%),
    radial-gradient(circle at 86% 34%, rgba(255, 114, 148, 0.12), transparent 22%);
  pointer-events: none;
}

.site-footer__inner,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.8fr));
  gap: 22px;
  align-items: start;
}

.footer-brand,
.footer-column {
  min-height: 100%;
  padding: 24px 24px 26px;
  border: 1px solid rgba(247, 182, 145, 0.14);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(33, 10, 16, 0.74), rgba(14, 6, 10, 0.88));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-logo {
  display: inline-block;
  max-width: 220px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-brand p,
.footer-column p {
  margin: 0;
  color: rgba(247, 231, 216, 0.84);
  font-size: 1rem;
  line-height: 1.8;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(247, 182, 145, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #f6d4b8;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.98;
  font-weight: 600;
  color: #f4dcc5;
}

.footer-column a {
  color: rgba(247, 231, 216, 0.86);
  font-size: 1rem;
  line-height: 1.55;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom__links a:hover,
.footer-bottom__links a:focus-visible {
  color: #ffe8d1;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 8px 6px 0;
}

.footer-bottom p {
  margin: 0;
  color: rgba(247, 231, 216, 0.62);
  font-size: 0.92rem;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.footer-bottom__links a {
  color: rgba(247, 231, 216, 0.72);
  font-size: 0.94rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

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

@keyframes float-heart {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }

  50% {
    transform: translate3d(0, -14px, 0) rotate(3deg);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .brand {
    max-width: 250px;
    margin-inline: auto;
  }

  .site-nav {
    width: 100%;
    gap: 18px 28px;
  }

  .header-cta {
    width: max-content;
    margin-inline: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "search";
    padding-top: 56px;
  }

  .hero__copy {
    padding-top: 24px;
    max-width: 680px;
  }

  .hero__copy p {
    max-width: 34ch;
  }

  .hero__visual {
    min-height: 0;
    justify-content: center;
  }

  .hero__visual img {
    width: min(100%, 560px);
  }

  .heart--1 {
    top: 100px;
    right: 20px;
  }

  .heart--2 {
    top: 740px;
    left: 6px;
  }

  .heart--3 {
    top: 920px;
    right: 18px;
  }

  .heart--4 {
    top: auto;
    bottom: 420px;
    left: 20%;
  }

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

  .search-panel {
    margin-top: 0;
  }

  .search-panel button {
    grid-column: 1 / -1;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 74px;
  }

  .feature-card:not(:first-child)::before {
    inset: 0 10% auto;
    width: auto;
    height: 1px;
  }

  .feature-card p {
    max-width: 34ch;
  }

  .guide__grid,
  .cities__grid,
  .faq__grid,
  .story__grid,
  .safety__grid {
    grid-template-columns: 1fr;
  }

  .longread,
  .guide,
  .story,
  .cities,
  .safety,
  .faq,
  .closing {
    padding-bottom: 74px;
  }

  .section-heading h2 {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 0;
  }

  .footer-bottom__links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 24px);
  }

  .site-header {
    position: relative;
  }

  .site-header__inner {
    padding: 16px 0 14px;
  }

  .brand {
    max-width: 172px;
  }

  .site-nav {
    gap: 8px 10px;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .header-cta {
    width: 100%;
    text-align: center;
    padding: 13px 18px;
    font-size: 1rem;
  }

  .landing-page::before {
    height: 920px;
    background-position: 58% top;
  }

  .hero {
    padding-top: 26px;
    gap: 22px;
  }

  .hero__copy h1 {
    font-size: clamp(2.75rem, 13vw, 3.75rem);
  }

  .hero__copy p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero__visual img {
    width: min(100%, 470px);
  }

  .search-panel {
    padding: 20px 18px 22px;
    border-radius: 24px;
  }

  .search-panel__row {
    grid-template-columns: 1fr;
  }

  .field select,
  .search-panel button {
    font-size: 1.1rem;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .search-panel__benefits {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .search-panel__benefits li {
    font-size: 1rem;
  }

  .features {
    padding: 58px 0 88px;
  }

  .feature-card {
    padding: 12px 12px 0;
  }

  .feature-card__icon {
    width: 108px;
    height: 108px;
    margin-bottom: 24px;
  }

  .feature-card h2 {
    font-size: 2.55rem;
  }

  .feature-card p {
    font-size: 1.03rem;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading__eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .longread__columns,
  .story__main,
  .story__aside,
  .guide-card,
  .detail-list,
  .city-card,
  .safety__text,
  .safety__panel,
  .faq-item,
  .closing__panel {
    padding: 22px 20px 24px;
    border-radius: 24px;
  }

  .longread__columns p,
  .story__main p,
  .safety__text p,
  .closing__panel p,
  .guide-card p,
  .city-card p,
  .faq-item p,
  .detail-list li,
  .quote-list li,
  .section-note {
    font-size: 0.98rem;
    line-height: 1.76;
  }

  .guide-card h3,
  .story__aside h3,
  .city-card h3,
  .faq-item h3,
  .safety__panel h3,
  .closing__panel h2 {
    font-size: 2rem;
  }

  .site-footer {
    padding: 24px 0 24px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-brand,
  .footer-column {
    padding: 20px 18px 22px;
    border-radius: 22px;
  }

  .footer-logo {
    max-width: 190px;
    margin-bottom: 14px;
  }

  .footer-column h3 {
    font-size: 1.82rem;
  }

  .footer-brand p,
  .footer-column p,
  .footer-column a,
  .footer-bottom p,
  .footer-bottom__links a {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .footer-bottom {
    margin-top: 14px;
    gap: 10px;
  }

  .footer-bottom__links {
    gap: 8px 16px;
  }

  .heart--1 {
    top: 120px;
    right: -4px;
    width: 70px;
  }

  .heart--2 {
    top: 660px;
    width: 62px;
  }

  .heart--3 {
    display: none;
  }

  .heart--4 {
    bottom: 360px;
    left: 48%;
    width: 56px;
  }
}
