:root {
  --ink: #16211f;
  --muted: #66736e;
  --paper: #fbfaf7;
  --paper-2: #f4f6ef;
  --warm: #f2e8da;
  --mint: #dce9e2;
  --forest: #214b40;
  --aqua: #2d7370;
  --clay: #b8644d;
  --gold: #b78942;
  --line: rgba(22, 33, 31, 0.14);
  --shadow: 0 20px 55px rgba(22, 33, 31, 0.14);
  --radius: 8px;
  --font-serif: Georgia, "Times New Roman", "Noto Serif TC", "PMingLiU", serif;
  --font-sans: Inter, "Aptos", "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.65;
}

body::selection {
  background: var(--gold);
  color: #fff;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 44px;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 260ms ease, color 260ms ease, box-shadow 260ms ease, padding 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.93);
  color: var(--ink);
  box-shadow: 0 10px 38px rgba(22, 33, 31, 0.1);
  backdrop-filter: blur(14px);
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand,
.nav-links,
.hero-actions,
.button,
.route-step,
.source-grid a,
.location,
.budget-summary,
.link-pair,
.map-actions,
.route-facts span,
.parking-note,
.map-guidance article,
.guide-grid article,
.qa-grid article {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
  font-weight: 780;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
}

.nav-links {
  gap: clamp(12px, 2.7vw, 26px);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.nav-links a:hover {
  opacity: 1;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}

svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 70px) 72px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 17, 16, 0.82), rgba(10, 17, 16, 0.34) 54%, rgba(10, 17, 16, 0.62)),
    linear-gradient(180deg, rgba(10, 17, 16, 0.18), rgba(10, 17, 16, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.section-heading h2,
.closing h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 850px;
  font-size: 6.2rem;
  overflow-wrap: anywhere;
}

.hero h1 span {
  display: block;
}

.hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.14rem;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 780;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease;
}

.button.small {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 0.82rem;
}

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

.button.primary {
  background: #fff;
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.closing .button.primary {
  background: var(--forest);
  color: #fff;
}

.section-pad {
  padding: clamp(68px, 9vw, 118px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  background: linear-gradient(180deg, var(--paper), #f5f7f1);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
}

.lead-stack {
  display: grid;
  gap: 18px;
}

.intro h2,
.section-heading h2,
.closing h2 {
  font-size: 4rem;
  overflow-wrap: anywhere;
}

.lead,
.section-heading p,
.closing-inner p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.metric-strip {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-strip div {
  padding: 24px clamp(12px, 2vw, 24px);
  border-right: 1px solid var(--line);
}

.metric-strip div:last-child {
  border-right: 0;
}

.metric-strip span {
  display: block;
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1;
}

.metric-strip p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.route,
.budget,
.sources {
  background: var(--mint);
}

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

.section-heading p {
  margin-top: 18px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
  gap: 22px;
  align-items: stretch;
}

.map-panel {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #dce7e5;
  box-shadow: var(--shadow);
}

.route-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  background: #e6eee9;
}

.travel-map {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.map-pin {
  position: absolute;
  z-index: 3;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(33, 75, 64, 0.93);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(22, 33, 31, 0.24);
  transition: transform 180ms ease, background 180ms ease;
  transform: translate(-50%, -50%);
}

.map-pin:hover,
.map-pin.is-active {
  transform: translate(-50%, calc(-50% - 3px));
  background: var(--clay);
}

.pin-melbourne {
  left: 12.7%;
  top: 17.6%;
}

.pin-hobart {
  left: 48.8%;
  top: 79.5%;
}

.pin-port {
  left: 55.6%;
  top: 81%;
}

.pin-freycinet {
  left: 64.5%;
  top: 51.5%;
}

.pin-launceston {
  left: 56.8%;
  top: 38.8%;
}

.pin-cradle {
  left: 42%;
  top: 39.5%;
}

.route-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 33, 31, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.route-note span {
  color: var(--muted);
  font-size: 0.86rem;
}

.route-list {
  display: grid;
  gap: 10px;
}

.route-step {
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 33, 31, 0.1);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.route-step:hover,
.route-step.is-active {
  transform: translateX(4px);
  background: #fff;
  border-color: rgba(33, 75, 64, 0.4);
}

.route-step span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-weight: 850;
  font-size: 0.82rem;
  flex: 0 0 auto;
}

.route-step h3,
.day-card h3,
.nearby-card h3,
.guide-grid h3,
.qa-grid h3,
.map-guidance h3 {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.28;
}

.route-step p,
.day-card p,
.nearby-card p,
.guide-grid p,
.qa-grid p,
.map-guidance p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-guidance,
.guide-grid,
.qa-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.map-guidance article,
.guide-grid article,
.qa-grid article {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-guidance svg,
.guide-grid svg,
.qa-grid svg {
  width: 30px;
  height: 30px;
  color: var(--clay);
}

.timeline,
.guide,
.daily-maps {
  background: var(--paper);
}

.day-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.day-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(22, 33, 31, 0.08);
}

.day-card figure {
  margin: 0;
  position: relative;
  min-height: 100%;
  background: #dde5df;
}

.day-card figure img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.day-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 33, 31, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.82rem;
  backdrop-filter: blur(8px);
}

.day-card figcaption span {
  color: var(--muted);
  font-size: 0.74rem;
}

.day-card-content {
  padding: clamp(20px, 3vw, 32px);
}

.day-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  margin-bottom: 10px;
}

.location {
  gap: 8px;
  margin-top: 8px;
  color: var(--aqua) !important;
  font-weight: 750;
}

.time-plan {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.time-plan p {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(22, 33, 31, 0.08);
}

.time-plan strong {
  color: var(--ink);
  text-transform: capitalize;
}

.day-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.day-note strong,
.nearby-mini h4 {
  display: block;
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 0.9rem;
}

.nearby-mini {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.nearby-mini h4 {
  margin-bottom: 2px;
}

.place-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.place-row strong,
.nearby-list strong {
  display: block;
  overflow-wrap: anywhere;
}

.place-row span,
.nearby-list span {
  display: block;
  margin-top: 3px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
}

.link-pair {
  gap: 8px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.link-pair a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(45, 115, 112, 0.28);
  border-radius: 999px;
  color: var(--aqua);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.budget-mini {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: var(--forest);
  color: #fff;
  border-radius: var(--radius);
}

.budget-mini span {
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 850;
  color: rgba(255, 255, 255, 0.7);
}

.budget-mini strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
}

.budget-mini em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
}

.add-ons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.add-ons span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--warm);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 780;
}

.nearby {
  background: #f7f1e8;
}

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

.nearby-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(22, 33, 31, 0.06);
}

.nearby-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.nearby-list > div {
  padding-top: 12px;
  border-top: 1px solid rgba(22, 33, 31, 0.08);
}

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

.map-day-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(22, 33, 31, 0.08);
}

.map-frame-wrap {
  position: relative;
  min-height: 260px;
  background: #dde5df;
}

.route-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  aspect-ratio: 16 / 10;
}

.map-day-content {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.map-day-head span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.map-day-head h3 {
  margin: 6px 0 6px;
  font-size: 1.18rem;
}

.map-day-head p,
.waypoint-line p,
.map-note {
  margin: 0;
  color: var(--muted);
}

.route-facts {
  display: grid;
  gap: 8px;
}

.route-facts span {
  gap: 8px;
  padding: 9px 11px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 780;
}

.route-facts svg,
.parking-note svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--clay);
}

.waypoint-line {
  padding-top: 2px;
}

.waypoint-line strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.parking-note {
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  background: #f7f1e8;
  border: 1px solid rgba(151, 98, 68, 0.2);
  border-radius: 12px;
}

.parking-note p {
  margin: 0;
  color: var(--muted);
}

.parking-note strong {
  display: block;
  color: var(--ink);
}

.map-actions {
  gap: 10px;
  flex-wrap: wrap;
}

.map-actions .button.primary {
  background: var(--forest);
  color: #fff;
}

.map-actions .button.ghost {
  border-color: rgba(33, 75, 64, 0.28);
  color: var(--forest);
  background: #fff;
  backdrop-filter: none;
}

.budget-summary {
  gap: 16px;
  align-items: stretch;
  margin-bottom: 20px;
}

.budget-summary article {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(22, 33, 31, 0.06);
}

.budget-summary span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.budget-summary strong {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.budget-summary p {
  margin: 0;
  color: var(--muted);
}

.budget-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 45px rgba(22, 33, 31, 0.08);
}

.budget-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 960px;
  font-size: 0.9rem;
}

.budget-table th,
.budget-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(22, 33, 31, 0.08);
  vertical-align: top;
}

.budget-table th {
  background: var(--forest);
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.budget-table td span {
  color: var(--muted);
  font-size: 0.78rem;
}

.guide-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  margin-bottom: 22px;
  align-items: stretch;
}

.guide-visual-grid > img,
.comfort-card {
  min-height: 360px;
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(22, 33, 31, 0.08);
}

.guide-visual-grid > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comfort-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 40px);
  background: linear-gradient(135deg, #fff, #edf5f0);
  border: 1px solid var(--line);
}

.comfort-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.12;
}

.range-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.range-list div {
  display: grid;
  grid-template-columns: 112px minmax(120px, 1fr) 104px;
  gap: 12px;
  align-items: center;
  font-size: 0.86rem;
}

.range-list span {
  font-weight: 850;
}

.range-list b {
  position: relative;
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c7d7e0, #e7d1bd, #f1ca7b);
}

.range-list i {
  position: absolute;
  top: -4px;
  bottom: -4px;
  display: block;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(33, 75, 64, 0.76);
  box-shadow: 0 6px 18px rgba(22, 33, 31, 0.2);
}

.range-list em {
  color: var(--muted);
  font-style: normal;
}

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

.source-grid a {
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest);
  text-decoration: none;
  font-weight: 800;
}

.source-grid a:hover {
  border-color: rgba(33, 75, 64, 0.42);
}

.closing {
  min-height: 56vh;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(22, 33, 31, 0.7), rgba(22, 33, 31, 0.7)),
    url("https://d2xsxph8kpxj0f.cloudfront.net/310519663151470816/ds4sVHHCXx7WutznNhRTqM/hobart-VUUtmAmsLddvCMBuUfFJyE.webp") center / cover;
}

.closing-inner {
  max-width: 840px;
  text-align: center;
}

.closing-inner .button {
  width: max-content;
  margin: 28px auto 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 4px 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.23, 1, 0.32, 1), transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(-1%, -1%, 0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr 44px;
  }

  .nav-links {
    display: none;
  }

  .intro-grid,
  .map-layout,
  .guide-visual-grid,
  .day-card {
    grid-template-columns: 1fr;
  }

  .metric-strip,
  .nearby-grid,
  .map-day-grid,
  .source-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-guidance,
  .guide-grid,
  .qa-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .day-card figure img {
    min-height: 340px;
    max-height: 440px;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .intro h2,
  .section-heading h2,
  .closing h2 {
    font-size: 3.2rem;
  }

  .metric-strip span {
    font-size: 2.4rem;
  }

  .comfort-card h3 {
    font-size: 2.25rem;
  }

  .budget-summary {
    flex-wrap: wrap;
  }

  .budget-summary article {
    min-width: min(100%, 320px);
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 90vh;
    padding: 104px 18px 60px;
  }

  .hero h1 {
    font-size: 2.7rem;
    line-height: 1.05;
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .intro h2,
  .section-heading h2,
  .closing h2 {
    font-size: 2.35rem;
  }

  .budget-summary strong,
  .comfort-card h3 {
    font-size: 1.85rem;
  }

  .metric-strip,
  .nearby-grid,
  .map-day-grid,
  .source-grid,
  .map-guidance,
  .guide-grid,
  .qa-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-strip div:last-child {
    border-bottom: 0;
  }

  .map-panel,
  .route-visual,
  .travel-map {
    min-height: 420px;
  }

  .map-pin {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    min-height: 30px;
    padding: 0;
    border-radius: 50%;
    color: transparent;
    font-size: 0;
  }

  .map-pin::after {
    color: #fff;
    font-size: 0.76rem;
    line-height: 1;
  }

  .pin-melbourne::after {
    content: "1";
  }

  .pin-hobart::after {
    content: "2";
  }

  .pin-port::after {
    content: "3";
  }

  .pin-freycinet::after {
    content: "4";
  }

  .pin-launceston::after {
    content: "5";
  }

  .pin-cradle::after {
    content: "6";
  }

  .route-note {
    display: none;
  }

  .place-row {
    grid-template-columns: 1fr;
  }

  .time-plan p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .budget-mini {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .range-list div {
    grid-template-columns: 1fr;
  }

  .day-card figcaption {
    position: static;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .day-card figure img {
    min-height: 260px;
    max-height: 310px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media print {
  .site-header,
  .hero-actions {
    display: none !important;
  }

  .hero {
    min-height: auto;
    color: var(--ink);
    padding: 40px 0;
  }

  .hero-image,
  .hero-overlay {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .day-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
