:root {
  --bg: #eef3f2;
  --surface: #ffffff;
  --ink: #242424;
  --deep: #363636;
  --deep-2: #292929;
  --water: #126b76;
  --water-soft: #e7e9e8;
  --muted: #687c82;
  --line: #d3d6d5;
  --orange: #f2672e;
  --orange-dark: #d94e18;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(242, 103, 46, 0.55);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 48px, 1400px);
  height: 88px;
  margin: 0 auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark,
.footer-brand span,
.closing-mark {
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  font-family: Arial Black, Arial, sans-serif;
  font-weight: 900;
  line-height: 1;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0 0 2px 1px;
  font-size: 27px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: #40565d;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a,
.secondary-link,
.spots-heading a,
.site-footer a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.secondary-link:hover,
.spots-heading a:hover,
.site-footer a:hover {
  color: var(--orange);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 24px;
  padding: 13px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

.header-action:hover {
  background: var(--water);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(560px, 1.14fr);
  width: min(100% - 48px, 1400px);
  min-height: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 26px;
  background: var(--deep);
  box-shadow: 0 24px 70px rgba(8, 35, 45, 0.12);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  padding: 76px 64px 54px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.hero h1,
.section-heading h2,
.spots-heading h2,
.plan-copy h2,
.closing-section h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.065em;
}

.hero h1 {
  margin-top: 48px;
  font-size: clamp(70px, 7vw, 112px);
  line-height: 0.94;
}

.hero-intro {
  max-width: 500px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  min-width: 220px;
  padding: 17px 20px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 180ms ease, transform 180ms ease;
}

.primary-button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.secondary-link {
  padding: 11px 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.hero-tags {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 42px;
}

.hero-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 700px;
  margin: 0;
  overflow: hidden;
  background: #95aaa8;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: 58% center;
}

.bite-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  width: min(400px, calc(100% - 56px));
  padding: 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 48px rgba(6, 42, 51, 0.22);
  backdrop-filter: blur(12px);
}

.bite-card-head,
.bite-score,
.bite-readings {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bite-card-head {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.live-dot {
  position: relative;
  padding-left: 13px;
  color: var(--water);
  font-weight: 800;
}

.live-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.bite-score {
  margin-top: 22px;
}

.bite-score div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bite-score small {
  color: var(--muted);
  font-size: 11px;
}

.bite-score strong {
  font-size: 22px;
  font-weight: 900;
}

.bite-score b {
  color: var(--water);
  font-family: Arial, sans-serif;
  font-size: 54px;
  line-height: 1;
}

.bite-readings {
  gap: 14px;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.bite-readings span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
}

.bite-readings small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

.photo-label {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(6, 42, 51, 0.76);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.finder-wrap {
  position: relative;
  z-index: 5;
  width: min(100% - 96px, 1240px);
  margin: -36px auto 0;
}

.finder {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.85fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 20px 55px rgba(8, 35, 45, 0.1);
}

.finder label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 96px;
  padding: 18px 26px;
  border-right: 1px solid var(--line);
}

.finder label > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.finder input,
.finder select {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.finder input::placeholder {
  color: #8ca0a5;
  font-weight: 500;
}

.finder button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-width: 168px;
  padding: 0 24px;
  border: 0;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 180ms ease;
}

.finder button:hover {
  background: var(--orange-dark);
}

.feature-section,
.plan-section {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.feature-section {
  padding: 142px 0 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.spots-heading h2,
.plan-copy h2 {
  margin-top: 18px;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.08;
}

.section-heading > p {
  max-width: 450px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.feature-card {
  min-height: 278px;
  padding: 25px 24px 27px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  border-color: #9bb3b0;
  box-shadow: 0 15px 38px rgba(8, 35, 45, 0.07);
  transform: translateY(-4px);
}

.feature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-card-top span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--water-soft);
  color: var(--water);
  font-size: 10px;
  font-weight: 900;
}

.feature-card-top b {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.feature-card h3 {
  margin: 62px 0 0;
  font-size: 25px;
  font-weight: 900;
}

.feature-card p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.spots-section {
  padding: 116px max(24px, calc((100vw - 1240px) / 2)) 126px;
  background: var(--deep-2);
  color: #fff;
}

.spots-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-kicker.light {
  color: #68bcc1;
}

.spots-heading a {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.spot-list {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.spot-row {
  display: grid;
  grid-template-columns: 45px minmax(180px, 1.5fr) 0.7fr 1fr 1fr auto 24px;
  align-items: center;
  gap: 24px;
  min-height: 126px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 180ms ease, padding 180ms ease;
}

.spot-row:hover {
  padding-right: 14px;
  padding-left: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.spot-index {
  color: rgba(255, 255, 255, 0.38);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.spot-name,
.spot-meta,
.spot-status {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.spot-name strong {
  font-size: 21px;
  font-weight: 800;
}

.spot-name span,
.spot-meta small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.spot-meta strong {
  font-size: 12px;
  font-weight: 600;
}

.spot-status {
  align-items: flex-end;
}

.spot-status b {
  color: #77d0d0;
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.spot-status span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
}

.spot-arrow {
  color: var(--orange);
  font-size: 18px;
}

.data-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
}

.plan-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  padding-top: 142px;
  padding-bottom: 150px;
}

.plan-copy h2 {
  max-width: 580px;
}

.plan-intro {
  max-width: 470px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.trip-steps {
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.trip-steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.trip-steps article > span {
  color: var(--orange);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.trip-steps h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}

.trip-steps p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.trip-card {
  align-self: center;
  padding: 34px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 24px 65px rgba(8, 35, 45, 0.11);
}

.trip-card-head,
.activity-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trip-card-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
}

.trip-card-head b {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--water-soft);
  color: var(--water);
  font-size: 9px;
}

.trip-destination {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 18px;
  padding: 28px 0 30px;
}

.trip-destination small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.trip-destination strong {
  font-size: 27px;
  font-weight: 900;
}

.trip-destination span {
  align-self: center;
  color: var(--muted);
  font-size: 11px;
}

.activity-title {
  color: var(--muted);
  font-size: 10px;
}

.activity-title strong {
  color: var(--ink);
  font-size: 12px;
}

.activity-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 108px;
  margin-top: 18px;
  padding: 18px 16px 0;
  border-bottom: 1px solid var(--line);
  background: #f2f6f5;
}

.activity-bars span {
  flex: 1;
  min-height: 5px;
  border-radius: 3px 3px 0 0;
  background: var(--water);
}

.activity-bars span:nth-child(4),
.activity-bars span:nth-child(5) {
  background: var(--orange);
}

.trip-weather {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px 0;
}

.trip-weather span {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
}

.trip-weather small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

.trip-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: background-color 180ms ease;
}

.trip-card > a:hover {
  background: var(--water);
}

.closing-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 24px 118px;
  background: var(--orange);
  color: #fff;
  text-align: center;
}

.closing-mark {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: transparent;
  font-size: 39px;
}

.closing-section p {
  margin: 24px 0 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.closing-section h2 {
  max-width: 920px;
  margin-top: 28px;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.1;
}

.closing-section > a {
  display: inline-flex;
  align-items: center;
  gap: 62px;
  margin-top: 38px;
  padding: 16px 20px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease;
}

.closing-section > a:hover {
  transform: translateY(-3px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto auto;
  align-items: center;
  gap: 42px;
  min-height: 142px;
  padding: 30px max(24px, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 21px;
}

.footer-brand strong {
  color: #fff;
  font-size: 16px;
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.site-footer > div {
  display: flex;
  gap: 26px;
  font-size: 11px;
}

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

  .hero-copy {
    padding-right: 40px;
    padding-left: 40px;
  }

  .hero h1 {
    font-size: clamp(68px, 8vw, 90px);
  }

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

  .spot-row {
    grid-template-columns: 38px minmax(180px, 1.4fr) 0.7fr 1fr auto 22px;
  }

  .method-meta {
    display: none;
  }

  .plan-section {
    gap: 60px;
  }
}

@media (max-width: 840px) {
  .site-header {
    width: calc(100% - 32px);
    height: 78px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    border-radius: 20px;
  }

  .hero-copy {
    min-height: 630px;
    padding: 62px 34px 42px;
  }

  .hero h1 {
    font-size: clamp(72px, 17vw, 106px);
  }

  .hero-intro {
    max-width: 600px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 620px;
  }

  .hero-visual img {
    object-position: 58% center;
  }

  .finder-wrap {
    width: calc(100% - 48px);
  }

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

  .finder label {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .finder button {
    min-height: 68px;
  }

  .feature-section,
  .plan-section {
    width: calc(100% - 32px);
  }

  .feature-section {
    padding-top: 112px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading > p {
    max-width: 580px;
  }

  .spots-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .spot-row {
    grid-template-columns: 34px 1fr auto 20px;
    min-height: 110px;
  }

  .spot-meta {
    display: none;
  }

  .plan-section {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-top: 110px;
    padding-bottom: 110px;
  }

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

  .site-footer p {
    order: 3;
  }

  .site-footer small {
    order: 4;
    text-align: right;
  }
}

@media (max-width: 520px) {
  .brand-copy strong {
    font-size: 16px;
  }

  .header-action {
    gap: 12px;
    padding: 11px 14px;
    font-size: 11px;
  }

  .hero-copy {
    min-height: 590px;
    padding: 52px 24px 34px;
  }

  .hero h1 {
    margin-top: 38px;
    font-size: 68px;
  }

  .hero-intro {
    margin-top: 30px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  .primary-button {
    width: 100%;
  }

  .hero-tags {
    flex-wrap: wrap;
    padding-top: 30px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 520px;
  }

  .hero-visual img {
    object-position: 62% center;
  }

  .bite-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 18px;
  }

  .bite-score b {
    font-size: 46px;
  }

  .bite-readings {
    gap: 8px;
  }

  .bite-readings span {
    font-size: 10px;
  }

  .photo-label {
    top: 14px;
    right: 14px;
  }

  .finder-wrap {
    width: calc(100% - 32px);
    margin-top: -24px;
  }

  .section-heading h2,
  .spots-heading h2,
  .plan-copy h2 {
    font-size: 40px;
  }

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

  .feature-card {
    min-height: 230px;
  }

  .feature-card h3 {
    margin-top: 48px;
  }

  .spots-section {
    padding-top: 88px;
    padding-bottom: 92px;
  }

  .spots-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .spot-list {
    margin-top: 42px;
  }

  .spot-row {
    grid-template-columns: 28px 1fr auto;
    gap: 14px;
  }

  .spot-status {
    align-items: flex-end;
  }

  .spot-arrow {
    display: none;
  }

  .trip-card {
    padding: 24px 20px;
  }

  .trip-destination {
    grid-template-columns: 1fr;
  }

  .trip-destination span {
    margin-top: 4px;
  }

  .trip-weather {
    grid-template-columns: 1fr;
  }

  .closing-section {
    padding: 90px 18px 98px;
  }

  .closing-section h2 {
    font-size: 45px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .site-footer > div {
    flex-wrap: wrap;
  }

  .site-footer p,
  .site-footer small {
    order: initial;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
