:root {
  color-scheme: light;
  --cream: #f6f1e7;
  --cream-soft: #fdf8ef;
  --cream-strong: #efe7d8;
  --surface: #ffffff;
  --surface-clean: #ffffff;
  --indigo: #234b6c;
  --indigo-deep: #16364f;
  --red: #d94a38;
  --red-deep: #b93628;
  --matcha: #7c9a5d;
  --charcoal: #2e2a28;
  --muted: #746b63;
  --line: rgba(35, 75, 108, 0.14);
  --radius: 8px;
  --radius-sm: 8px;
  --warm-shadow: 0 24px 60px rgba(46, 42, 40, 0.1);
  --shadow: 0 14px 36px rgba(46, 42, 40, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: linear-gradient(180deg, var(--cream) 0%, #ffffff 55%, var(--cream) 100%);
  color: var(--charcoal);
  font-family:
    Avenir Next,
    Avenir,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(217, 74, 56, 0.42);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: 112px;
}

.announcement {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  color: var(--indigo);
  font-size: 0.83rem;
  font-weight: 700;
}

.announcement a {
  border-bottom: 2px solid rgba(217, 74, 56, 0.42);
  color: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(253, 248, 239, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: clamp(172px, 18vw, 232px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: var(--indigo);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--red);
}

.nav-links a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.menu-toggle {
  display: none;
  width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream-soft);
  color: var(--indigo);
  font: inherit;
  padding: 0;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    background 160ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: rotate(-45deg);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.nav-cta {
  padding: 0 20px;
  background: var(--red);
  color: #fffaf1;
  box-shadow: 0 10px 24px rgba(217, 74, 56, 0.2);
}

.button {
  padding: 0 24px;
}

.button:active,
.nav-cta:active {
  transform: translateY(1px);
}

.primary {
  background: var(--red);
  color: #fffaf1;
  box-shadow: 0 10px 24px rgba(217, 74, 56, 0.25);
}

.primary:hover,
.nav-cta:hover {
  background: var(--red-deep);
}

.secondary {
  border: 1px solid rgba(35, 75, 108, 0.2);
  background: var(--cream);
  color: var(--indigo);
}

.secondary:hover {
  border-color: rgba(124, 154, 93, 0.36);
  background: rgba(124, 154, 93, 0.12);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  min-height: calc(100dvh - 170px);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 62px) clamp(20px, 5vw, 48px) 30px;
}

.hero::before {
  position: absolute;
  top: clamp(18px, 4vw, 42px);
  left: clamp(10px, 3vw, 34px);
  z-index: -1;
  width: min(36vw, 360px);
  height: 230px;
  background-image:
    radial-gradient(circle at 50% 100%, transparent 30px, rgba(35, 75, 108, 0.065) 31px, rgba(35, 75, 108, 0.065) 33px, transparent 34px),
    radial-gradient(circle at 0 100%, transparent 30px, rgba(35, 75, 108, 0.045) 31px, rgba(35, 75, 108, 0.045) 33px, transparent 34px),
    radial-gradient(circle at 100% 100%, transparent 30px, rgba(35, 75, 108, 0.045) 31px, rgba(35, 75, 108, 0.045) 33px, transparent 34px);
  background-size: 72px 36px;
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: clamp(24px, 8vw, 120px);
  bottom: 6px;
  left: clamp(36px, 7vw, 110px);
  z-index: -1;
  height: 84px;
  border-bottom: 2px dashed rgba(35, 75, 108, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: rotate(-2deg);
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--matcha);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--indigo);
  font-size: clamp(3.25rem, 7.2vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-local {
  position: relative;
  isolation: isolate;
  display: inline-block;
  color: var(--red);
}

.hero-local::after {
  position: absolute;
  right: 0.06em;
  bottom: 0.03em;
  left: 0.06em;
  z-index: -1;
  height: 0.09em;
  border-radius: 999px;
  background: rgba(124, 154, 93, 0.48);
  content: "";
  transform: rotate(-2deg);
}

h2 {
  margin-bottom: 16px;
  color: var(--indigo);
  font-size: clamp(2.1rem, 4.5vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  letter-spacing: 0;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 22px;
  color: var(--charcoal);
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
  line-height: 1.65;
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(100%, 570px);
  margin-bottom: 20px;
  border: 1px solid rgba(35, 75, 108, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(46, 42, 40, 0.08);
  padding: 8px 8px 8px 20px;
}

.hero-search span,
.hero-search strong {
  display: block;
}

.hero-search span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-search strong {
  margin-top: 2px;
  color: var(--indigo);
  font-size: 0.98rem;
}

.hero-search a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  color: #fffaf1;
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
  padding: 0 18px;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.hero-search a:hover {
  background: var(--red-deep);
}

.hero-search a:active {
  transform: translateY(1px);
}

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

.hero-mini-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-mini-icons span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(35, 75, 108, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--indigo);
  font-size: 0.88rem;
  font-weight: 850;
  padding: 6px 14px 6px 8px;
  box-shadow: 0 10px 24px rgba(46, 42, 40, 0.06);
}

.hero-mini-icons img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hero-mini-icons .mini-food {
  border-color: rgba(217, 74, 56, 0.2);
  color: var(--red);
}

.hero-mini-icons .mini-city {
  border-color: rgba(35, 75, 108, 0.18);
}

.hero-mini-icons .mini-nature {
  border-color: rgba(124, 154, 93, 0.24);
  color: #58723f;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(35, 75, 108, 0.12);
  border-radius: calc(var(--radius) + 14px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(253, 248, 239, 0.74)),
    #ffffff;
  box-shadow: var(--warm-shadow);
}

.hero-visual::before {
  position: absolute;
  top: 28px;
  right: 34px;
  z-index: 0;
  display: block;
  width: min(45%, 250px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(217, 74, 56, 0.08);
  content: "";
}

.hero-visual::after {
  position: absolute;
  right: 18px;
  bottom: 112px;
  z-index: 0;
  width: 92px;
  height: 92px;
  background: url("getlocaljapan_assets/getlocaljapan_icons_web/icon-09-saved-post.webp") center / contain no-repeat;
  content: "";
  opacity: 0.12;
  pointer-events: none;
  transform: rotate(18deg);
}

.hero-photo {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(35, 75, 108, 0.12);
  border-radius: calc(var(--radius) + 8px);
  background: #f8faf7;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  background: rgba(253, 248, 239, 0.92);
  color: var(--indigo);
  font-size: 0.78rem;
  font-weight: 850;
  padding: 7px 12px;
}

.hero-photo-main {
  top: 22px;
  bottom: 106px;
  left: 22px;
  width: 64%;
}

.hero-photo-side {
  top: 54px;
  right: 22px;
  width: 42%;
  height: 220px;
}

.guide-card,
.booking-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(35, 75, 108, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(46, 42, 40, 0.1);
}

.guide-card {
  left: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  width: min(40%, 200px);
  padding: 12px;
}

.guide-card img {
  width: 50px;
  border-radius: 999px;
  background: rgba(217, 74, 56, 0.1);
  padding: 5px;
  filter: drop-shadow(0 10px 16px rgba(217, 74, 56, 0.14));
}

.guide-card strong,
.booking-card strong {
  display: block;
  color: var(--indigo);
}

.guide-card span,
.booking-card span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.booking-card {
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 8px;
  width: min(46%, 240px);
  padding: 18px;
}

.booking-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: rgba(124, 154, 93, 0.14);
  color: #58723f;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  padding: 7px 10px;
}

.booking-card a {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  background: var(--indigo);
  color: #fffaf1;
  font-size: 0.9rem;
  font-weight: 850;
  padding: 0 16px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(35, 75, 108, 0.12);
  background:
    linear-gradient(180deg, rgba(253, 248, 239, 0.88), rgba(255, 255, 255, 0.72)),
    var(--cream);
}

.value-strip div {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 124px;
  padding: 26px 20px;
  text-align: center;
}

.value-strip div + div {
  border-left: 1px solid rgba(35, 75, 108, 0.08);
}

.value-strip img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.value-strip strong {
  color: var(--indigo);
  font-size: 1.34rem;
}

.value-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 48px);
}

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

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro p,
.host-panel p,
.route-copy p,
.app-story-copy p,
.testimonial-head p,
.download-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.route-board {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.route-board::before {
  position: absolute;
  inset: 46px clamp(20px, 5vw, 48px);
  z-index: -1;
  border: 1px solid rgba(35, 75, 108, 0.1);
  border-radius: calc(var(--radius) + 14px);
  background:
    linear-gradient(90deg, rgba(253, 248, 239, 0.9), rgba(255, 255, 255, 0.64)),
    url("getlocaljapan_assets/social_pack_v2_web/backgrounds/japanese_travel_square_background_1x1.webp");
  background-position: center;
  background-size: cover;
  content: "";
}

.route-copy {
  max-width: 520px;
  padding: clamp(18px, 3vw, 34px);
}

.route-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.route-pills span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(35, 75, 108, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--indigo);
  font-weight: 850;
  padding: 6px 14px 6px 8px;
}

.route-pills img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.route-visual {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(170px, 0.76fr);
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
}

.route-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 212px;
  border: 1px solid rgba(35, 75, 108, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--indigo);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(46, 42, 40, 0.08);
}

.route-card.large {
  grid-row: span 2;
  min-height: 444px;
}

.route-card > img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-card:not(.large) > img {
  inset: auto 10px 58px auto;
  z-index: 0;
  width: min(58%, 132px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(35, 75, 108, 0.16));
}

.route-card.large::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(22, 54, 79, 0.02), rgba(22, 54, 79, 0.48));
  content: "";
}

.route-card div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 14px;
}

.route-card span {
  color: var(--matcha);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.route-card strong {
  max-width: 250px;
  color: var(--indigo);
  font-size: 1.05rem;
  line-height: 1.2;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) repeat(2, minmax(0, 0.92fr));
  gap: 18px;
  align-items: stretch;
}

.experience-card {
  --card-accent: #f28718;
  --card-bg: #fffaf4;
  --card-border: rgba(242, 135, 24, 0.24);
  --tag-bg: #ff9418;
  --scene-opacity: 0.52;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 248px;
  gap: clamp(18px, 2.8vw, 34px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
  color: var(--charcoal);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: none;
}

.experience-card > :not(.experience-scene) {
  position: relative;
  z-index: 2;
}

.experience-card.featured {
  grid-row: span 2;
  min-height: 514px;
  padding: clamp(30px, 4vw, 42px);
}

.experience-card.red {
  --card-accent: #8b69cd;
  --card-bg: #fbf8ff;
  --card-border: rgba(139, 105, 205, 0.24);
  --tag-bg: #8b69cd;
  --scene-opacity: 0.46;
}

.experience-card.green {
  --card-accent: #3c9a65;
  --card-bg: #f8fcf7;
  --card-border: rgba(60, 154, 101, 0.24);
  --tag-bg: #39a46a;
  --scene-opacity: 0.58;
}

.experience-card.blue {
  --card-accent: #3a94d7;
  --card-bg: #f6fbff;
  --card-border: rgba(58, 148, 215, 0.24);
  --tag-bg: #45a2e4;
  --scene-opacity: 0.46;
}

.experience-card.cream {
  --card-accent: #ebaa25;
  --card-bg: #fffaf0;
  --card-border: rgba(235, 170, 37, 0.26);
  --tag-bg: #f5b62a;
  --scene-opacity: 0.48;
}

.experience-head {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.experience-copy {
  align-self: end;
  max-width: 430px;
}

.experience-card.featured .experience-copy {
  max-width: 420px;
}

.experience-tag {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: var(--tag-bg);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  padding: 8px 15px;
}

.experience-icon {
  position: relative;
  display: grid;
  width: var(--icon-size, 70px);
  height: var(--icon-size, 70px);
  place-items: center;
  border: 1px solid rgba(35, 75, 108, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.experience-icon img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.experience-card.featured .experience-icon {
  --icon-size: 88px;
}

.experience-card p {
  margin-bottom: 0;
  color: rgba(46, 42, 40, 0.76);
  line-height: 1.62;
}

.experience-scene {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 72%;
  height: 58%;
  object-fit: cover;
  object-position: right bottom;
  opacity: var(--scene-opacity);
  pointer-events: none;
}

.experience-card.featured .experience-scene {
  width: 94%;
  height: 42%;
}

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

.experience-support article {
  display: grid;
  gap: 10px;
  min-height: 188px;
  align-content: start;
  border: 1px solid rgba(35, 75, 108, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 22px;
}

.experience-support img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.experience-support strong {
  color: var(--indigo);
  font-size: 1.1rem;
  line-height: 1.18;
}

.experience-support span {
  color: var(--muted);
  line-height: 1.55;
}

.flow {
  max-width: none;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(253, 248, 239, 0.88), rgba(255, 255, 255, 0.94)),
    url("getlocaljapan_assets/social_pack_v2_web/backgrounds/japanese_landscape_poster_background_4x5.webp");
  background-position: center;
  background-size: cover;
}

.flow > * {
  max-width: 1120px;
  margin-inline: auto;
}

.flow-mark {
  width: 56px;
  margin-bottom: 18px;
}

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

.flow-grid article,
.quote-grid article,
.contact-cards a {
  border: 1px solid rgba(35, 75, 108, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.flow-grid article {
  display: grid;
  gap: 12px;
  min-height: 176px;
  padding: 28px;
}

.flow-grid article img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.flow-grid strong,
.host-list li::marker,
.contact-cards strong {
  color: var(--indigo);
}

.flow-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.app-story {
  max-width: none;
  padding-inline: clamp(20px, 5vw, 48px);
}

.app-story-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1160px;
  margin-inline: auto;
  border: 1px solid rgba(35, 75, 108, 0.12);
  border-radius: calc(var(--radius) + 14px);
  background:
    linear-gradient(90deg, rgba(253, 248, 239, 0.92), rgba(255, 255, 255, 0.98)),
    #ffffff;
  padding: clamp(26px, 5vw, 54px);
}

.app-story-copy {
  max-width: 610px;
}

.app-story-copy .button {
  margin-top: 12px;
}

.app-story-art {
  position: relative;
  height: 430px;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(35, 75, 108, 0.12);
  border-radius: calc(var(--radius) + 12px);
  background: #fffaf4;
}

.story-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.story-mascot {
  position: absolute;
  right: 9%;
  bottom: 9%;
  width: min(52%, 210px);
  filter: drop-shadow(0 18px 24px rgba(35, 75, 108, 0.16));
}

.hosts {
  padding-top: clamp(76px, 10vw, 128px);
}

.host-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(170px, 0.36fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  border: 1px solid rgba(35, 75, 108, 0.14);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 255, 255, 0.94);
  padding: clamp(30px, 6vw, 56px);
}

.host-visual {
  display: grid;
  justify-items: center;
  gap: 12px;
  align-self: stretch;
  align-content: center;
  min-height: 220px;
  border: 1px solid rgba(35, 75, 108, 0.12);
  border-radius: var(--radius);
  background: rgba(124, 154, 93, 0.08);
  padding: 18px;
}

.host-visual img {
  width: min(190px, 100%);
  filter: drop-shadow(0 16px 22px rgba(35, 75, 108, 0.14));
}

.host-visual span {
  border-radius: 999px;
  background: var(--cream-soft);
  color: var(--indigo);
  font-size: 0.8rem;
  font-weight: 850;
  padding: 8px 13px;
}

.host-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding-left: 20px;
  color: var(--charcoal);
  line-height: 1.6;
}

.testimonial-head {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 760px;
  margin: 0 0 26px;
}

.testimonial-head img {
  width: 116px;
  filter: drop-shadow(0 14px 18px rgba(35, 75, 108, 0.12));
}

.testimonial-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

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

.quote-grid article {
  padding: 26px;
}

.quote-grid p {
  min-height: 72px;
  margin-bottom: 22px;
  color: var(--charcoal);
  font-size: 1.08rem;
  line-height: 1.55;
}

.quote-grid strong,
.quote-grid span {
  display: block;
}

.quote-grid strong {
  color: var(--indigo);
}

.quote-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.download-section {
  display: grid;
  gap: 34px;
  justify-items: center;
  padding: clamp(72px, 10vw, 118px) 20px;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
    url("getlocaljapan_assets/social_pack_v2_web/backgrounds/japanese_landscape_story_background_9x16.webp");
  background-position: center;
  background-size: cover;
  color: var(--charcoal);
  text-align: center;
}

.download-copy {
  max-width: 760px;
}

.download-copy img {
  width: 128px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 14px 18px rgba(35, 75, 108, 0.12));
}

.download-copy h2 {
  color: var(--indigo);
}

.download-copy p {
  max-width: 620px;
  margin-inline: auto;
  color: var(--muted);
}

.download-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 16px;
  width: min(720px, 100%);
}

.download-actions a {
  display: grid;
  gap: 6px;
  min-height: 104px;
  justify-items: center;
  align-content: center;
  border: 1px solid rgba(35, 75, 108, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  color: var(--indigo);
  padding: 18px;
  box-shadow: none;
}

.download-actions img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.download-actions span {
  color: var(--muted);
  font-size: 0.84rem;
}

.download-actions strong {
  font-size: 1.05rem;
}

.download-actions .mini-program {
  background: #f8faf7;
  color: var(--indigo);
}

.download-actions .mini-program span {
  color: var(--muted);
}

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

.contact-cards a {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 132px;
  align-content: center;
  padding: 24px;
  text-align: center;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.contact-cards img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.contact-cards a:hover {
  border-color: rgba(217, 74, 56, 0.42);
  transform: translateY(-2px);
}

.contact-cards span {
  color: var(--muted);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 42px 20px;
  border-top: 1px solid var(--line);
  background: var(--cream-soft);
  color: var(--muted);
  text-align: center;
}

.site-footer img {
  width: 200px;
}

.site-footer span {
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--cream-soft);
    box-shadow: 0 14px 30px rgba(46, 42, 40, 0.12);
    padding: 10px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .hero,
  .route-board,
  .route-visual,
  .experience-grid,
  .experience-support,
  .flow-grid,
  .app-story-panel,
  .host-panel,
  .quote-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-photo-main {
    width: 68%;
  }

  .guide-card {
    width: min(54%, 280px);
  }

  .experience-card {
    min-height: 308px;
  }

  .experience-card.featured {
    grid-row: auto;
    min-height: 372px;
  }

  .experience-scene,
  .experience-card.featured .experience-scene {
    width: 82%;
    height: 46%;
  }

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

  .route-board::before {
    inset: 34px 20px;
  }

  .route-copy,
  .route-visual {
    padding-inline: clamp(18px, 5vw, 34px);
  }

  .route-card.large {
    min-height: 360px;
  }

  .app-story-art {
    min-height: 390px;
  }

  .story-bg {
    min-height: 390px;
  }
}

@media (max-width: 620px) {
  .announcement {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }

  .brand img {
    width: 158px;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .hero {
    padding-top: 38px;
  }

  .hero-search {
    grid-template-columns: 1fr;
    border-radius: var(--radius-sm);
    padding: 16px;
  }

  .hero-search a {
    width: 100%;
  }

  .hero-visual {
    min-height: 590px;
  }

  .hero-photo-main {
    top: 14px;
    right: 14px;
    bottom: auto;
    left: 14px;
    width: auto;
    height: 280px;
  }

  .hero-photo-side {
    display: none;
  }

  .hero-photo figcaption {
    left: 12px;
    bottom: 12px;
  }

  .guide-card {
    right: 14px;
    bottom: 158px;
    left: 14px;
    width: auto;
    grid-template-columns: 56px 1fr;
  }

  .guide-card img {
    width: 56px;
  }

  .booking-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .value-strip,
  .download-actions {
    grid-template-columns: 1fr;
  }

  .route-board::before {
    inset: 20px 12px;
  }

  .route-copy,
  .route-visual {
    padding: 18px;
  }

  .route-pills {
    align-items: stretch;
    flex-direction: column;
  }

  .route-pills span {
    width: 100%;
  }

  .route-card,
  .route-card.large {
    min-height: 260px;
  }

  .route-card:not(.large) > img {
    width: min(46%, 116px);
  }

  .app-story-panel {
    padding: 22px;
  }

  .app-story-art {
    min-height: 360px;
  }

  .story-bg {
    min-height: 360px;
  }

  .testimonial-head {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
  }

  .testimonial-head img {
    width: 82px;
  }

  .experience-card,
  .experience-card.featured {
    min-height: 318px;
    gap: 28px;
    padding: 22px;
  }

  .experience-head {
    gap: 12px;
  }

  .experience-icon {
    --icon-size: 58px;
  }

  .experience-card.featured .experience-icon {
    --icon-size: 66px;
  }

  .experience-copy {
    max-width: 100%;
  }

  .experience-scene,
  .experience-card.featured .experience-scene {
    width: 92%;
    height: 42%;
  }

  .value-strip div {
    min-height: auto;
  }

  .section {
    padding-block: 66px;
  }
}

/* Instagram travel creator refresh */
:root {
  --cream: #fbf4e9;
  --cream-soft: #fffaf2;
  --cream-strong: #efe1cf;
  --surface: #fffdf8;
  --surface-clean: #ffffff;
  --indigo: #23384c;
  --indigo-deep: #142332;
  --red: #e35a48;
  --red-deep: #c94535;
  --matcha: #6f8c62;
  --charcoal: #25201d;
  --muted: #766d66;
  --line: rgba(37, 32, 29, 0.12);
  --radius: 18px;
  --radius-sm: 14px;
  --warm-shadow: 0 28px 70px rgba(37, 32, 29, 0.14);
  --shadow: 0 18px 44px rgba(37, 32, 29, 0.1);
}

body {
  background:
    linear-gradient(90deg, rgba(227, 90, 72, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf2 0%, #ffffff 46%, #fbf4e9 100%);
  background-size: 72px 72px, auto;
  color: var(--charcoal);
}

.announcement {
  min-height: 40px;
  border-bottom: 0;
  background: var(--indigo-deep);
  color: #fffaf2;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.announcement a {
  border-bottom-color: rgba(255, 250, 242, 0.5);
  color: #ffd8c8;
}

.site-header {
  min-height: 72px;
  border-bottom: 1px solid rgba(37, 32, 29, 0.08);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 8px 30px rgba(37, 32, 29, 0.04);
}

.nav-links {
  color: rgba(35, 56, 76, 0.84);
  font-size: 0.9rem;
}

.nav-cta,
.button,
.hero-search a,
.booking-card a {
  border-radius: 999px;
}

.nav-cta,
.primary,
.hero-search a {
  background: var(--charcoal);
  color: #fffaf2;
  box-shadow: 0 14px 28px rgba(37, 32, 29, 0.16);
}

.nav-cta:hover,
.primary:hover,
.hero-search a:hover {
  background: #000000;
}

.secondary {
  border-color: rgba(37, 32, 29, 0.16);
  background: rgba(255, 255, 255, 0.64);
  color: var(--charcoal);
}

.hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.92fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  max-width: 1320px;
  min-height: calc(100dvh - 112px);
  padding-top: clamp(36px, 5vw, 58px);
  padding-bottom: clamp(28px, 5vw, 58px);
}

.hero::before,
.hero::after {
  display: none;
}

.hero-copy {
  max-width: 670px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(227, 90, 72, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--red-deep);
  font-size: 0.78rem;
  text-transform: none;
  padding: 8px 13px;
}

h1 {
  max-width: 720px;
  color: var(--charcoal);
  font-size: clamp(3.25rem, 5.7vw, 5.9rem);
  line-height: 0.94;
}

h2 {
  color: var(--charcoal);
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  line-height: 0.94;
}

h3 {
  color: var(--charcoal);
}

.hero-text {
  max-width: 610px;
  color: rgba(37, 32, 29, 0.72);
  font-size: clamp(1.05rem, 1.65vw, 1.2rem);
  line-height: 1.7;
}

.hero-search {
  max-width: 620px;
  border: 1px solid rgba(37, 32, 29, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(37, 32, 29, 0.08);
  backdrop-filter: blur(14px);
}

.hero-search span {
  color: rgba(37, 32, 29, 0.58);
}

.hero-search strong {
  color: var(--charcoal);
}

.hero-mini-icons span,
.route-pills span {
  min-height: 40px;
  border-color: rgba(37, 32, 29, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--charcoal);
  box-shadow: none;
}

.hero-mini-icons .mini-food,
.hero-mini-icons .mini-city,
.hero-mini-icons .mini-nature {
  border-color: rgba(37, 32, 29, 0.12);
  color: var(--charcoal);
}

.hero-visual {
  min-height: clamp(520px, 55vw, 660px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-visual::before {
  top: 8%;
  right: -4%;
  width: 78%;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    #f1dcc7;
  transform: rotate(5deg);
}

.hero-visual::after {
  right: 3%;
  bottom: 8%;
  width: 128px;
  height: 128px;
  opacity: 0.18;
}

.hero-photo {
  border: 10px solid #fffdf8;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 26px 68px rgba(37, 32, 29, 0.18);
}

.hero-photo img {
  filter: saturate(1.05) contrast(1.02);
}

.hero-photo figcaption {
  left: 16px;
  bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(37, 32, 29, 0.72);
  color: #fffaf2;
  backdrop-filter: blur(12px);
}

.hero-photo-main {
  top: 2%;
  right: 10%;
  bottom: 13%;
  left: 0;
  width: auto;
  transform: rotate(-2deg);
}

.hero-photo-side {
  top: 10%;
  right: -2%;
  width: 38%;
  height: 238px;
  transform: rotate(5deg);
}

.hero-photo-polaroid {
  right: 10%;
  bottom: 0;
  width: 42%;
  height: 236px;
  transform: rotate(4deg);
}

.guide-card,
.booking-card {
  border: 1px solid rgba(37, 32, 29, 0.1);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 20px 50px rgba(37, 32, 29, 0.14);
  backdrop-filter: blur(14px);
}

.guide-card {
  left: -2%;
  bottom: 7%;
  width: min(48%, 260px);
  grid-template-columns: 58px 1fr;
  padding: 14px;
  transform: rotate(2deg);
}

.guide-card img {
  width: 58px;
  background: #ffe3d7;
}

.booking-card {
  right: -1%;
  bottom: 26%;
  width: min(42%, 246px);
  padding: 18px;
  transform: rotate(-3deg);
}

.booking-label {
  background: #ffe3d7;
  color: var(--red-deep);
}

.booking-card a {
  background: var(--charcoal);
}

.value-strip {
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(37, 32, 29, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(37, 32, 29, 0.07);
  overflow: hidden;
}

.value-strip strong {
  color: var(--charcoal);
}

.section {
  max-width: 1320px;
  padding-block: clamp(84px, 10vw, 140px);
}

.section-intro {
  max-width: 920px;
}

.section-intro.centered {
  text-align: left;
}

.section-intro p,
.host-panel p,
.route-copy p,
.app-story-copy p,
.testimonial-head p,
.download-copy p,
.contact p {
  color: rgba(37, 32, 29, 0.66);
}

.route-board {
  grid-template-columns: minmax(0, 0.68fr) minmax(440px, 1fr);
}

.route-board::before {
  inset: 60px clamp(20px, 5vw, 48px) 58px;
  border: 0;
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.56)),
    url("getlocaljapan_assets/social_pack_v2_web/backgrounds/japanese_travel_square_background_1x1.webp");
  box-shadow: inset 0 0 0 1px rgba(37, 32, 29, 0.08);
}

.route-card {
  border: 8px solid #fffdf8;
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(37, 32, 29, 0.14);
}

.route-card.large {
  min-height: 500px;
  transform: rotate(-1.5deg);
}

.route-card:not(.large) {
  background: rgba(255, 253, 248, 0.94);
}

.route-card div {
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.9);
}

.route-card span {
  color: var(--red-deep);
  text-transform: none;
}

.experience-grid {
  grid-template-columns: minmax(330px, 1.1fr) repeat(2, minmax(0, 0.86fr));
  gap: 20px;
}

.experience-card {
  border: 0;
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 18px 46px rgba(37, 32, 29, 0.08);
}

.experience-card.featured {
  min-height: 560px;
}

.experience-card.red,
.experience-card.green,
.experience-card.blue,
.experience-card.cream,
.experience-card.featured {
  --tag-bg: rgba(37, 32, 29, 0.82);
  --scene-opacity: 0.72;
}

.experience-card.red {
  background: #f4eefb;
}

.experience-card.green {
  background: #eef6e8;
}

.experience-card.blue {
  background: #edf5fb;
}

.experience-card.cream {
  background: #fff2d7;
}

.experience-tag {
  background: rgba(37, 32, 29, 0.82);
  color: #fffaf2;
}

.experience-icon {
  border: 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 24px rgba(37, 32, 29, 0.07);
}

.experience-scene {
  width: 86%;
  height: 62%;
}

.experience-card.featured .experience-scene {
  width: 108%;
  height: 52%;
}

.experience-support article,
.flow-grid article,
.quote-grid article,
.contact-cards a {
  border: 0;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 44px rgba(37, 32, 29, 0.07);
}

.flow {
  border: 0;
  background:
    linear-gradient(180deg, rgba(35, 56, 76, 0.78), rgba(35, 56, 76, 0.82)),
    url("getlocaljapan_assets/social_pack_v2_web/backgrounds/japanese_landscape_poster_background_4x5.webp");
  background-position: center;
  background-size: cover;
  color: #fffaf2;
}

.flow h2,
.flow-grid strong {
  color: #fffaf2;
}

.flow .section-intro p,
.flow-grid p {
  color: rgba(255, 250, 242, 0.72);
}

.flow .eyebrow {
  border-color: rgba(255, 250, 242, 0.2);
  background: rgba(255, 250, 242, 0.1);
  color: #ffd8c8;
}

.flow-grid article {
  background: rgba(255, 250, 242, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 242, 0.12);
  backdrop-filter: blur(10px);
}

.app-story-panel,
.host-panel {
  border: 0;
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 24px 64px rgba(37, 32, 29, 0.1);
}

.app-story-art {
  border: 10px solid #fffdf8;
  border-radius: 30px;
  box-shadow: 0 24px 52px rgba(37, 32, 29, 0.12);
  transform: rotate(2deg);
}

.host-visual {
  border: 0;
  border-radius: 26px;
  background: #eef6e8;
}

.testimonial-head {
  max-width: 920px;
}

.testimonial-head h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.5rem);
}

.quote-grid article {
  padding: 30px;
}

.quote-grid p {
  min-height: 0;
  color: var(--charcoal);
  font-size: 1.16rem;
}

.download-section {
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.78), rgba(255, 250, 242, 0.96)),
    url("getlocaljapan_assets/social_pack_v2_web/backgrounds/japanese_landscape_story_background_9x16.webp");
  background-position: center;
  background-size: cover;
}

.download-actions a {
  border: 0;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 44px rgba(37, 32, 29, 0.08);
}

.site-footer {
  border-top: 0;
  background: #fffaf2;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-photo,
  .guide-card,
  .booking-card,
  .route-card,
  .experience-card,
  .quote-grid article {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease;
  }

  .experience-card:hover,
  .quote-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(37, 32, 29, 0.12);
  }

  .route-card.large:hover {
    transform: rotate(-1.5deg) translateY(-4px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav-links {
    border: 0;
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.96);
  }

  .hero,
  .route-board,
  .experience-grid,
  .experience-support,
  .flow-grid,
  .app-story-panel,
  .host-panel,
  .quote-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 600px;
  }

  .hero-photo-main {
    right: 16%;
  }

  .hero-photo-side {
    right: 2%;
  }

  .hero-photo-polaroid {
    right: 12%;
  }

  .route-card.large {
    min-height: 380px;
  }

  .experience-card.featured {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .announcement {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .brand img {
    width: 154px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 34px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-search {
    border-radius: 22px;
  }

  .hero-visual {
    order: -1;
    width: 100%;
    min-height: 392px;
    margin-bottom: 6px;
  }

  .hero-photo {
    border-width: 7px;
    border-radius: 22px;
  }

  .hero-photo-main {
    top: 0;
    right: 8px;
    left: 8px;
    height: 258px;
  }

  .hero-photo-side {
    display: block;
    top: 214px;
    right: 8px;
    width: 46%;
    height: 118px;
  }

  .hero-photo-polaroid {
    right: auto;
    bottom: 12px;
    left: 8px;
    width: 50%;
    height: 126px;
  }

  .guide-card {
    right: auto;
    bottom: 92px;
    left: auto;
    width: 48%;
    grid-template-columns: 42px 1fr;
    padding: 10px;
    display: none;
  }

  .guide-card img {
    width: 42px;
  }

  .guide-card span,
  .booking-card span {
    font-size: 0.78rem;
  }

  .booking-card {
    right: 8px;
    bottom: 48px;
    width: 50%;
    padding: 12px;
    transform: none;
  }

  .booking-card a {
    width: 100%;
    min-height: 34px;
  }

  .value-strip {
    width: calc(100% - 32px);
  }

  .route-board::before {
    inset: 20px 12px;
    border-radius: 28px;
  }

  .route-card,
  .route-card.large {
    min-height: 280px;
  }

  .experience-card,
  .experience-card.featured {
    min-height: 330px;
    border-radius: 24px;
  }

  .app-story-art {
    transform: none;
  }
}

/* Round 3 real-photo editorial refresh */
:root {
  --cream: #f7f8f2;
  --cream-soft: #fffdfa;
  --cream-strong: #e4ecdf;
  --surface: #fffdfa;
  --surface-clean: #ffffff;
  --indigo: #123047;
  --indigo-deep: #071d2a;
  --red: #ef4d42;
  --red-deep: #cf382e;
  --matcha: #47765a;
  --lake: #1e8aa5;
  --sun: #ffbc48;
  --charcoal: #171b1d;
  --muted: #66706f;
  --line: rgba(18, 48, 71, 0.12);
  --warm-shadow: 0 26px 68px rgba(18, 48, 71, 0.14);
  --shadow: 0 18px 44px rgba(18, 48, 71, 0.1);
}

body {
  background:
    linear-gradient(90deg, rgba(30, 138, 165, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbf8 0%, #fffdfa 45%, #edf7f4 100%);
  background-size: 78px 78px, auto;
}

.announcement {
  background: linear-gradient(90deg, var(--indigo-deep), #0a3d4b);
}

.announcement a {
  color: #ffe2a3;
}

.site-header {
  background: rgba(255, 253, 250, 0.9);
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.eyebrow,
.route-card span,
.booking-label {
  color: var(--red-deep);
}

.nav-links a[aria-current="page"]::after,
.nav-cta,
.primary,
.hero-search a {
  background: var(--red);
}

.nav-cta:hover,
.primary:hover,
.hero-search a:hover {
  background: var(--red-deep);
}

.secondary:hover {
  border-color: rgba(30, 138, 165, 0.26);
  background: rgba(30, 138, 165, 0.09);
}

.hero {
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
}

.hero-text {
  color: rgba(23, 27, 29, 0.72);
}

.hero-search {
  border-color: rgba(30, 138, 165, 0.16);
}

.hero-mini-icons span,
.route-pills span {
  border-color: rgba(18, 48, 71, 0.1);
}

.hero-mini-icons img,
.route-pills img,
.value-strip img,
.experience-support img,
.guide-card img,
.flow-mark,
.flow-grid article img,
.download-actions img,
.contact-cards img {
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.96), rgba(235, 246, 244, 0.92));
  border: 1px solid rgba(18, 48, 71, 0.1);
  box-shadow: 0 10px 24px rgba(18, 48, 71, 0.1);
  padding: 6px;
}

.hero-mini-icons img,
.route-pills img {
  padding: 4px;
}

.testimonial-head img,
.download-copy img {
  border: 1px solid rgba(18, 48, 71, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(145deg, #fffdfa, #f0f7ee);
  box-shadow: 0 18px 42px rgba(18, 48, 71, 0.13);
  filter: none;
}

.hero-visual::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    #cbe8e6;
}

.hero-photo {
  border-color: #fffdfa;
  box-shadow: 0 28px 70px rgba(18, 48, 71, 0.18);
}

.hero-photo-main {
  top: 0;
  right: 8%;
  bottom: 12%;
}

.hero-photo-side {
  top: 12%;
  right: -1%;
  height: 248px;
}

.hero-photo-polaroid {
  right: 7%;
  bottom: 0;
  width: 38%;
  height: 252px;
}

.guide-card {
  width: min(45%, 246px);
}

.guide-card img {
  background: #fff5d8;
  object-fit: cover;
}

.booking-card {
  border-color: rgba(239, 77, 66, 0.14);
}

.booking-label {
  background: #ffe7df;
}

.value-strip {
  background: rgba(255, 253, 250, 0.72);
}

.route-board::before {
  background:
    linear-gradient(90deg, rgba(247, 251, 248, 0.96), rgba(247, 251, 248, 0.56)),
    url("getlocaljapan_assets/real_photo_v3_web/GetLocalJapan_round1_photo_pack/GetLocalJapan_round1_photo_pack/food_shop_details/07_izakaya_storefront.webp");
  background-position: center;
  background-size: cover;
}

.route-card:not(.large) > img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.route-card:not(.large)::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(7, 29, 42, 0.03), rgba(7, 29, 42, 0.42));
  content: "";
}

.route-card:not(.large) div {
  color: var(--charcoal);
}

.experience-card.photo-card {
  overflow: hidden;
  min-height: 320px;
  background: #11181d;
  color: #fffdfa;
}

.experience-card.photo-card.featured {
  min-height: 590px;
}

.experience-card.photo-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 29, 42, 0.08), rgba(7, 29, 42, 0.72)),
    linear-gradient(90deg, rgba(7, 29, 42, 0.48), transparent 56%);
  content: "";
  pointer-events: none;
}

.experience-card.photo-card > :not(.experience-scene) {
  z-index: 2;
}

.experience-card.photo-card h3,
.experience-card.photo-card strong {
  color: #fffdfa;
}

.experience-card.photo-card p {
  color: rgba(255, 253, 250, 0.78);
}

.experience-card.photo-card .experience-icon {
  background: rgba(255, 253, 250, 0.9);
}

.experience-card.photo-card .experience-scene,
.experience-card.photo-card.featured .experience-scene {
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: cover;
}

.experience-card.photo-card .experience-copy {
  align-self: end;
}

.detail-mosaic {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(220px, 0.78fr) minmax(180px, 0.48fr);
  gap: 18px;
  margin-top: 20px;
  align-items: stretch;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  margin: 0;
  border: 8px solid #fffdfa;
  border-radius: 28px;
  background: #dce9e7;
  box-shadow: 0 18px 44px rgba(18, 48, 71, 0.1);
}

.mosaic-card.wide {
  min-height: 310px;
}

.mosaic-card.tall {
  min-height: 310px;
}

.mosaic-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.mosaic-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border-radius: 999px;
  background: rgba(7, 29, 42, 0.72);
  color: #fffdfa;
  font-size: 0.82rem;
  font-weight: 850;
  padding: 8px 12px;
  backdrop-filter: blur(10px);
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.story-strip figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border: 8px solid #fffdfa;
  border-radius: 24px;
  background: #e7eef0;
  box-shadow: 0 18px 44px rgba(18, 48, 71, 0.08);
}

.story-strip img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

.story-strip figure:hover img {
  transform: scale(1.04);
}

.story-strip figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  background: rgba(7, 29, 42, 0.72);
  color: #fffdfa;
  font-size: 0.78rem;
  font-weight: 850;
  padding: 7px 10px;
  backdrop-filter: blur(10px);
}

.flow {
  background:
    linear-gradient(180deg, rgba(7, 29, 42, 0.74), rgba(7, 29, 42, 0.82)),
    url("getlocaljapan_assets/new_web/GetLocalJapan_batch1_service_flow/GetLocalJapan_batch1_service_flow/04_host_showing_phone_route_01.webp");
  background-position: center;
  background-size: cover;
}

.app-story-panel {
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.94), rgba(236, 248, 246, 0.86)),
    #fffdfa;
}

.app-story,
.hosts {
  padding-block: clamp(64px, 7vw, 96px);
}

.app-story-art {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.54fr);
  gap: 16px;
  align-items: stretch;
  height: 480px;
  min-height: 480px;
  overflow: visible;
  border: 0;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.9), rgba(225, 243, 241, 0.86)),
    #f3fbfa;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(18, 48, 71, 0.12);
}

.app-photo-card,
.app-phone-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 8px solid #fffdfa;
  border-radius: 26px;
  background: #dfecea;
}

.app-photo-card {
  box-shadow: 0 18px 38px rgba(18, 48, 71, 0.1);
}

.app-photo-card figcaption,
.app-phone-card span,
.app-note {
  position: absolute;
  border-radius: 999px;
  background: rgba(7, 29, 42, 0.74);
  color: #fffdfa;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  padding: 9px 12px;
  backdrop-filter: blur(10px);
}

.app-photo-card figcaption {
  left: 14px;
  top: 14px;
  bottom: auto;
}

.app-phone-card {
  align-self: center;
  height: 78%;
  background: #fffdfa;
  box-shadow: 0 20px 48px rgba(18, 48, 71, 0.14);
}

.app-phone-card span {
  right: 12px;
  bottom: 12px;
  background: rgba(217, 74, 56, 0.9);
}

.story-bg,
.story-mascot {
  position: static;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.story-mascot {
  filter: none;
}

.app-note {
  z-index: 2;
  background: #fffdfa;
  color: var(--indigo);
  box-shadow: 0 14px 34px rgba(18, 48, 71, 0.14);
}

.app-note-host {
  top: 34px;
  right: 34px;
}

.app-note-save {
  left: 34px;
  bottom: 34px;
  background: #eaf4df;
  color: #4c6935;
}

.host-panel {
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.55fr) minmax(260px, 0.62fr);
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.95), rgba(232, 247, 244, 0.82)),
    #fffdfa;
}

.host-visual {
  position: relative;
  overflow: hidden;
  background: #cbe8e6;
  padding: 0;
}

.host-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: none;
}

.host-visual span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(255, 253, 250, 0.9);
}

.host-roster {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 18px auto 0;
}

.host-roster article {
  overflow: hidden;
  border-radius: 26px;
  background: #fffdfa;
  box-shadow: 0 18px 44px rgba(18, 48, 71, 0.08);
}

.host-roster img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.host-roster strong,
.host-roster span {
  display: block;
  padding-inline: 18px;
}

.host-roster strong {
  padding-top: 16px;
  color: var(--charcoal);
  font-size: 1.1rem;
}

.host-roster span {
  padding-top: 4px;
  padding-bottom: 18px;
  color: var(--muted);
}

.testimonial-head img,
.download-copy img {
  border-radius: 999px;
  background: #fff5d8;
  padding: 8px;
}

.download-section {
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.72), rgba(247, 251, 248, 0.96)),
    url("getlocaljapan_assets/new_web/GetLocalJapan_batch3_craft_nature/GetLocalJapan_batch3_craft_nature/nature_slow_travel/10_shrine_path_slow_walk_01.webp");
  background-position: center;
  background-size: cover;
}

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

  .detail-mosaic,
  .host-roster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-strip {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
  }

  .story-strip figure {
    flex: 0 0 min(42vw, 240px);
    scroll-snap-align: start;
  }

  .host-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.75rem, 13vw, 3.75rem);
  }

  .hero-visual {
    order: 0;
    min-height: 370px;
  }

  .hero-photo-main {
    height: 238px;
  }

  .hero-photo-side {
    top: 196px;
  }

  .hero-photo-polaroid {
    height: 126px;
  }

  .booking-card {
    bottom: 34px;
    width: 58%;
  }

  .detail-mosaic,
  .host-roster {
    grid-template-columns: 1fr;
  }

  .story-strip figure {
    flex-basis: 72vw;
    min-height: 260px;
  }

  .mosaic-card,
  .mosaic-card.wide,
  .mosaic-card.tall {
    min-height: 260px;
  }

  .app-story-art {
    grid-template-columns: 1fr 0.72fr;
    height: 360px;
    min-height: 360px;
    padding: 10px;
  }
}

/* App preview polish: clear hierarchy, no floating transparent assets. */
.app-story .app-story-art {
  overflow: visible;
}

.app-story .app-photo-card,
.app-story .app-phone-card {
  display: block;
}

.app-story .app-phone-card img {
  object-position: center;
}

@media (max-width: 980px) {
  .app-story .app-story-art {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 0.56fr);
    height: 430px;
    min-height: 430px;
  }
}

@media (max-width: 620px) {
  .app-story .app-story-panel {
    gap: 22px;
  }

  .app-story .app-story-art {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    padding: 12px;
  }

  .app-story .app-photo-card {
    min-height: 260px;
  }

  .app-story .app-phone-card {
    width: min(72%, 240px);
    height: 250px;
    margin: -66px 14px 0 auto;
  }

  .app-story .app-note-host {
    display: none;
  }

  .app-story .app-note-save {
    left: 22px;
    bottom: 22px;
  }
}

/* Host visual must behave like a photo frame, not an image sitting inside a tile. */
.hosts .host-visual {
  position: relative;
  min-height: clamp(520px, 42vw, 680px);
  overflow: hidden;
  border-radius: 30px;
  background: #d9ece8;
}

.hosts .host-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(7, 29, 42, 0.34));
  pointer-events: none;
}

.hosts .host-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.hosts .host-visual span {
  z-index: 1;
  right: 18px;
  bottom: 18px;
}

@media (max-width: 980px) {
  .hosts .host-visual {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .hosts .host-visual {
    min-height: 360px;
  }
}
