:root {
  --cream: #fff8f0;
  --cream-light: #fffbf5;
  --cream-dark: #f5ede3;
  --coral: #ff7b54;
  --coral-dark: #e56a45;
  --peach: #ffd4b8;
  --mint: #a8e6cf;
  --text: #4a3728;
  --text-secondary: #7d6b5d;
  --text-muted: #a89485;
  --border: #f0dfd2;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Nunito, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(255, 212, 184, 0.72), transparent 34rem), var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-inner,
.section,
.hero-inner,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: Quicksand, sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  box-shadow: 0 10px 24px rgba(255, 123, 84, 0.24);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-secondary);
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover { color: var(--coral); }

.hero {
  padding: 86px 0 56px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-family: Caveat, cursive;
  font-size: 30px;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: Quicksand, sans-serif;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -0.04em;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.lead {
  margin: 24px 0 0;
  max-width: 720px;
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.75;
  text-wrap: pretty;
}

.gradient-text {
  background: linear-gradient(135deg, var(--coral), #ff9a7b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: Quicksand, sans-serif;
  font-weight: 800;
  text-decoration: none;
  transition-property: transform, box-shadow;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

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

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--coral), #ff9a7b);
  box-shadow: 0 10px 24px rgba(255, 123, 84, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: white;
  border: 2px solid var(--cream-dark);
  box-shadow: 0 10px 24px rgba(74, 55, 40, 0.08);
}

.hero-card {
  padding: 22px;
  border: 1px solid rgba(240, 223, 210, 0.8);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(229, 106, 69, 0.16);
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  background: var(--cream-dark);
}

.hero-card-caption {
  margin: 18px 6px 4px;
  color: var(--text-secondary);
  font-weight: 800;
}

.pet-collage {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 212, 184, 0.62), rgba(168, 230, 207, 0.5));
}

.pet-collage::before {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  filter: blur(4px);
}

.pet-collage-item {
  position: absolute;
  width: var(--size);
  aspect-ratio: 1;
  left: var(--x);
  top: var(--y);
  z-index: var(--z);
  border: 8px solid white;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(74, 55, 40, 0.18);
  transform: rotate(var(--rotate));
}

.pet-collage-item.featured {
  border-radius: 32px;
}

.pet-collage-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  font-family: Quicksand, sans-serif;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(74, 55, 40, 0.12);
}

.pet-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 212, 184, 0.62), rgba(168, 230, 207, 0.5));
}

.pet-mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid white;
  border-radius: 22px;
  background: var(--cream-dark);
  box-shadow: 0 12px 28px rgba(74, 55, 40, 0.12);
}

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

.pet-mosaic-cat img {
  aspect-ratio: 4 / 5;
}

.guide-mosaic {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 212, 184, 0.62), rgba(168, 230, 207, 0.5));
}

.guide-mosaic::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  filter: blur(4px);
}

.guide-mosaic img {
  position: absolute;
  width: var(--size);
  aspect-ratio: var(--ratio, 4 / 3);
  left: var(--x);
  top: var(--y);
  z-index: var(--z);
  object-fit: cover;
  border: 6px solid white;
  border-radius: var(--radius, 24px);
  background: var(--cream-dark);
  box-shadow: 0 16px 34px rgba(74, 55, 40, 0.16);
  transform: rotate(var(--rotate));
}

.pet-letter {
  position: relative;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(210, 171, 132, 0.45);
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 248, 226, 0.92), rgba(255, 248, 226, 0.92)),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(229, 106, 69, 0.13) 32px 33px);
  box-shadow: 0 24px 60px rgba(130, 93, 56, 0.12);
}

.pet-letter::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 123, 84, 0.22);
}

.pet-letter p {
  position: relative;
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.85;
}

.pet-letter p:first-child {
  color: var(--text);
  font-family: Caveat, cursive;
  font-size: 30px;
  font-weight: 700;
}

.pet-letter-signature {
  color: var(--coral-dark) !important;
  font-family: Caveat, cursive;
  font-size: 28px !important;
  font-weight: 700;
}

.gallery-source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.gallery-source-card {
  display: grid;
  gap: 16px;
}

.gallery-source-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  background: var(--cream-dark);
}

.gallery-story-card-link {
  text-decoration: none;
  color: inherit;
}

.section {
  padding: 58px 0;
}

.section-intro {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.75;
  text-wrap: pretty;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.card {
  padding: 26px;
  border: 1px solid rgba(240, 223, 210, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(74, 55, 40, 0.08);
}

.card p,
.content-list,
.faq p {
  color: var(--text-secondary);
  line-height: 1.75;
  text-wrap: pretty;
}

.content-list {
  padding-left: 22px;
}

.content-list li { margin: 8px 0; }

.steps {
  counter-reset: steps;
}

.step {
  position: relative;
  padding-left: 64px;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 24px;
  top: 26px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
  font-family: Quicksand, sans-serif;
  font-weight: 800;
}

.faq details {
  margin-bottom: 12px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white;
}

.faq summary {
  cursor: pointer;
  font-family: Quicksand, sans-serif;
  font-weight: 800;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--coral-dark);
  background: white;
  border: 1px solid var(--border);
  font-weight: 800;
  text-decoration: none;
}

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

.destination-tile {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(240, 223, 210, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(74, 55, 40, 0.08);
  text-decoration: none;
  transition-property: transform, box-shadow;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.destination-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(74, 55, 40, 0.12);
}

.destination-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  background: var(--cream-dark);
}

.destination-tile span {
  font-family: Quicksand, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.destination-tile small {
  color: var(--text-secondary);
  font-weight: 800;
}

.destination-tile.featured {
  padding: 18px;
}

.footer {
  margin-top: 40px;
  padding: 34px 0;
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-secondary);
  font-weight: 800;
}

.footer a { text-decoration: none; }
.footer a:hover { color: var(--coral); }

.destination-magazine-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 118px) 0 64px;
}

.destination-magazine-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 46rem;
  height: 46rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 123, 84, 0.22), transparent 68%);
  pointer-events: none;
}

.destination-magazine-hero .hero-inner {
  position: relative;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.destination-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--coral-dark);
  background: rgba(255, 255, 255, 0.72);
  font-family: Caveat, cursive;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(74, 55, 40, 0.08);
}

.destination-hero-media {
  position: relative;
  padding: 18px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 240, 0.8)),
    radial-gradient(circle at 10% 10%, rgba(168, 230, 207, 0.5), transparent 18rem);
  box-shadow:
    0 32px 90px rgba(229, 106, 69, 0.18),
    0 12px 32px rgba(74, 55, 40, 0.08);
  transform: rotate(1.5deg);
}

.destination-hero-media img,
.scene-card img,
.story-panel img,
.travel-fact-card img {
  outline: 1px solid rgba(0, 0, 0, 0.1);
}

.destination-hero-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 26px;
  background: var(--cream-dark);
  box-shadow: 0 18px 42px rgba(74, 55, 40, 0.14);
}

.destination-hero-stamp {
  position: absolute;
  right: -10px;
  bottom: 28px;
  max-width: 220px;
  padding: 14px 18px;
  border-radius: 24px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  font-family: Quicksand, sans-serif;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 16px 36px rgba(74, 55, 40, 0.16);
  transform: rotate(-4deg);
}

.travel-fact-grid,
.pet-personality-grid,
.scene-gallery {
  display: grid;
  gap: 20px;
}

.travel-fact-grid,
.pet-personality-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.travel-fact-card {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 45px rgba(74, 55, 40, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.travel-fact-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--coral-dark);
  font-family: Quicksand, sans-serif;
  font-size: 18px;
}

.travel-fact-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
  text-wrap: pretty;
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 240, 0.9)),
    radial-gradient(circle at 100% 0, rgba(168, 230, 207, 0.42), transparent 20rem);
  box-shadow: 0 26px 70px rgba(74, 55, 40, 0.1);
}

.story-panel p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.8;
  text-wrap: pretty;
}

.story-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(74, 55, 40, 0.14);
}

.pull-quote {
  margin: 28px 0 0;
  padding-left: 20px;
  border-left: 6px solid var(--coral);
  color: var(--text);
  font-family: Caveat, cursive;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
}

.timeline {
  display: grid;
  gap: 16px;
  counter-reset: timeline;
}

.timeline-item {
  position: relative;
  padding: 22px 24px 22px 76px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(74, 55, 40, 0.08);
}

.timeline-item::before {
  counter-increment: timeline;
  content: counter(timeline);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
  font-family: Quicksand, sans-serif;
  font-weight: 800;
}

.timeline-item time {
  display: block;
  margin-bottom: 6px;
  color: var(--coral-dark);
  font-family: Quicksand, sans-serif;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.timeline-item p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  text-wrap: pretty;
}

.scene-gallery {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.scene-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(74, 55, 40, 0.08);
}

.scene-card.featured {
  grid-row: span 2;
}

.scene-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  background: var(--cream-dark);
}

.scene-card.featured img {
  aspect-ratio: 4 / 5;
}

.image-caption {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 800;
  line-height: 1.55;
  text-wrap: pretty;
}

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

.pet-personality-card {
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(74, 55, 40, 0.08);
}

.pet-personality-card p {
  color: var(--text-secondary);
  line-height: 1.75;
  text-wrap: pretty;
}

.content-list.expanded {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  padding-left: 0;
  list-style: none;
}

.content-list.expanded li {
  margin: 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(74, 55, 40, 0.07);
}

@media (max-width: 840px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .destination-magazine-hero .hero-inner,
  .story-panel,
  .scene-gallery,
  .pet-personality-grid,
  .content-list.expanded,
  .grid-3,
  .grid-2,
  .destination-grid,
  .gallery-source-grid { grid-template-columns: 1fr; }
  .travel-fact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .destination-hero-media { transform: none; }
  .destination-hero-stamp {
    right: 12px;
    bottom: 12px;
    max-width: min(220px, calc(100% - 24px));
  }
  .scene-card.featured { grid-row: auto; }
  .scene-card.featured img { aspect-ratio: 4 / 3; }
  .pet-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pet-mosaic-cat { grid-template-columns: 1fr; }
  .guide-mosaic { min-height: 360px; }
  .guide-mosaic img { border-width: 5px; }
  .pet-collage { min-height: 360px; }
  .pet-collage-item { border-width: 6px; }
  .section { padding: 42px 0; }
}

@media (max-width: 560px) {
  .travel-fact-grid { grid-template-columns: 1fr; }
  .destination-hero-stamp { position: static; margin-top: 12px; transform: rotate(-1deg); }
}
