:root {
  --bg: #f6f1ea;
  --bg-soft: #fffaf4;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --line: rgba(92, 72, 54, 0.14);
  --text: #261c14;
  --muted: #6e5d50;
  --accent: #7a4d2a;
  --accent-strong: #5c381c;
  --shadow: 0 18px 50px rgba(61, 39, 24, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(180deg, #f9f4ef 0%, var(--bg) 100%);
  color: var(--text);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: var(--container);
  margin: 14px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(64, 43, 28, 0.08);
}

.brand {
  font-weight: 800;
  font-size: clamp(0.96rem, 1.4vw, 1.18rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.main-nav a:hover,
.tour-link:hover {
  color: var(--accent-strong);
}

main {
  padding-bottom: 64px;
}

.hero,
.section,
.site-footer {
  width: var(--container);
}

.hero {
  display: grid;
  gap: 24px;
  margin: 28px auto 0;
  padding: 18px 0 0;
}

.hero-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: min(760px, calc(100vh - 120px));
}

.hero-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.eyebrow {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  letter-spacing: -0.052em;
}

.hero-tagline {
  max-width: 42ch;
  margin: 0;
  color: var(--accent-strong);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  font-weight: 600;
  line-height: 1.55;
}

.hero-text,
.section-heading p,
.info-card p,
.guide-card p,
.helper-text,
.guide-list,
.guide-steps {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.booking-note {
  max-width: 64ch;
  padding-left: 16px;
  border-left: 3px solid rgba(122, 77, 42, 0.22);
}

.location-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: -4px 0 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

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

.button:disabled {
  opacity: 0.75;
  cursor: progress;
  transform: none;
}

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

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-stats,
.summary-list,
.guide-list,
.guide-steps {
  padding: 0;
  list-style: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 14px;
  width: 100%;
}

.hero-stats li,
.panel-card,
.info-card,
.guide-card,
.tour-group {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-stats li {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  padding: 20px;
}

.hero-stats strong,
.panel-card h3,
.info-card h3,
.guide-card h3,
.tour-copy h3 {
  display: block;
  margin-bottom: 6px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.stat-label {
  margin: 6px 0 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.stat-list li {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  white-space: nowrap;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stat-list li:not(:last-child)::after {
  content: "｜";
  margin-inline: 4px;
  color: rgba(110, 93, 80, 0.7);
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: min(100%, 760px);
  aspect-ratio: 1.16 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.section {
  margin: 88px auto 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 28px;
}

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

.map-section {
  margin-top: 64px;
}

.map-shell {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.map-layout {
  display: grid;
  gap: 22px;
  align-items: center;
}

.map-copy {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.map-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.map-copy .button {
  width: fit-content;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 340px;
  border: 0;
}

.map-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.map-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(122, 77, 42, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8f0 0%, #fcf3e8 100%);
  color: var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.guidebooks-page .section {
  margin-top: 48px;
}

.guidebooks-hero .section-heading {
  max-width: 860px;
}

.guidebooks-layout {
  display: grid;
  gap: 18px;
}

.guidebooks-categories-shell {
  display: grid;
  gap: 12px;
}

.guidebooks-category-prompt {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.guidebooks-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guidebook-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease,
    transform 140ms ease, box-shadow 140ms ease;
}

.guidebook-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 22px;
}

.guidebook-index-card {
  display: grid;
  gap: 9px;
  padding: 18px;
  border: 1px solid rgba(92, 72, 54, 0.12);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(252, 248, 243, 0.76));
  color: inherit;
  text-decoration: none;
  transition: border-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.guidebook-index-card:hover {
  border-color: rgba(122, 77, 42, 0.26);
  box-shadow: 0 12px 30px rgba(83, 59, 39, 0.08);
  transform: translateY(-2px);
}

.guidebook-index-card h3,
.guidebook-index-card p {
  margin: 0;
}

.guidebook-index-card h3 {
  color: var(--accent-strong);
  font-size: 1.08rem;
}

.guidebook-index-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.guidebook-index-card span {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.guidebook-filter-btn:hover {
  border-color: rgba(122, 77, 42, 0.24);
  transform: translateY(-1px);
}

.guidebook-filter-btn.is-active {
  border-color: rgba(122, 77, 42, 0.24);
  background: linear-gradient(180deg, #fff8f0 0%, #fcf3e8 100%);
  color: var(--accent-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.guidebooks-main-panel,
.faq-grid {
  display: grid;
  gap: 18px;
}

.guidebooks-main-panel,
.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.guidebooks-main-panel {
  padding: 24px;
}

.guidebooks-panel-head {
  display: grid;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(92, 72, 54, 0.1);
}

.guidebooks-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.guidebooks-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.guidebooks-panel-head h1,
.guidebooks-panel-head h2 {
  margin: 0;
  color: var(--accent-strong);
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  line-height: 1.06;
}

.guidebooks-panel-head > p:last-child {
  margin: 0;
  max-width: 66ch;
  color: var(--muted);
  line-height: 1.68;
}

.guidebook-reader-content {
  display: grid;
  gap: 0;
  padding-top: 4px;
}

.guidebook-cover {
  margin: 22px 0 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
}

.guidebook-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 40 / 21;
  object-fit: cover;
}

.guidebook-updated {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.guidebook-planning-note {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 2px solid rgba(122, 77, 42, 0.24);
  background: linear-gradient(90deg, rgba(252, 243, 232, 0.62), transparent 88%);
}

.guidebook-planning-note span,
.guidebook-booking-cta span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guidebook-planning-note p,
.guidebook-booking-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.guidebook-related {
  display: grid;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(92, 72, 54, 0.1);
}

.guidebook-related h2 {
  margin: 0;
  color: var(--accent-strong);
  font-size: clamp(1.28rem, 2vw, 1.6rem);
}

.guidebook-related > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.guidebook-related a {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(92, 72, 54, 0.12);
  border-radius: 14px;
  color: var(--accent-strong);
  text-decoration: none;
}

.guidebook-related a:hover {
  border-color: rgba(122, 77, 42, 0.3);
  background: rgba(252, 243, 232, 0.45);
}

.guidebook-related a span {
  font-weight: 700;
}

.guidebook-related a small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.guidebook-booking-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(122, 77, 42, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff8f0, #fcf3e8);
}

.guidebook-booking-cta > div {
  display: grid;
  gap: 7px;
}

.guidebook-booking-cta .button {
  flex: 0 0 auto;
  text-decoration: none;
}

.guidebook-reader .guidebook-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.guidebook-reader h3,
.guidebook-subsection > h2,
.faq-card h3 {
  margin: 0;
  color: var(--accent-strong);
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  line-height: 1.16;
}

.guidebook-reader p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.guidebook-subsection {
  display: grid;
  gap: 12px;
  padding: 26px 0;
  border-top: 1px solid rgba(92, 72, 54, 0.1);
}

.guidebook-subsection:first-child {
  border-top: 0;
}

.guidebook-subsection--feature > h3,
.guidebook-subsection--feature > h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.guidebook-subsection--group {
  margin-top: 28px;
  padding: 18px 0 18px 18px;
  border-top: 1px solid rgba(122, 77, 42, 0.12);
  border-right: 0;
  border-bottom: 0;
  border-left: 3px solid rgba(122, 77, 42, 0.3);
  border-radius: 0;
  background: linear-gradient(90deg, rgba(252, 243, 232, 0.58), transparent 72%);
}

.guidebook-subsection--group > h3,
.guidebook-subsection--group > h2 {
  font-size: clamp(1.38rem, 2.2vw, 1.72rem);
  color: var(--accent-strong);
}

.guidebook-subsection--separator {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(122, 77, 42, 0.24);
}

.guidebook-subsection--step {
  margin-left: 18px;
  padding-left: 20px;
  border-top-color: rgba(92, 72, 54, 0.08);
  border-left: 2px solid rgba(122, 77, 42, 0.18);
}

.guidebook-subsection--step > h3,
.guidebook-subsection--step > h2 {
  font-size: 1.08rem;
}

.guidebook-subsection--tip,
.guidebook-subsection--note {
  margin: 14px 0;
  padding: 14px 16px;
  border: 0;
  border-left: 2px solid rgba(122, 77, 42, 0.22);
  border-radius: 0;
  background: linear-gradient(90deg, rgba(252, 248, 243, 0.72), transparent 88%);
}

.guidebook-subsection--tip > h3,
.guidebook-subsection--tip > h2,
.guidebook-subsection--note > h3,
.guidebook-subsection--note > h2 {
  font-size: calc(0.78rem + 4px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.guidebook-subsection--tip > h3::before,
.guidebook-subsection--tip > h2::before,
.guidebook-tip-label::before {
  margin-right: 7px;
  content: "💡";
  font-size: 0.92em;
  letter-spacing: 0;
}

.guidebook-subsection--tip > p,
.guidebook-subsection--note > p {
  font-size: 0.88rem;
}

.guidebook-inline-tip {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding: 12px 0 2px 16px;
  border-top: 1px solid rgba(92, 72, 54, 0.08);
  border-left: 2px solid rgba(122, 77, 42, 0.2);
  border-radius: 0;
  background: transparent;
}

.guidebook-tip-label,
.guidebook-meta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(122, 77, 42, 0.78);
}

.guidebook-tip-label {
  color: var(--accent);
  font-size: calc(0.78rem + 4px);
}

.guidebook-inline-tip p {
  color: rgba(110, 93, 80, 0.88);
  font-size: 0.88rem;
  line-height: 1.58;
}

.guidebook-good-for,
.guidebook-what-to-wear {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px dashed rgba(92, 72, 54, 0.12);
  color: rgba(110, 93, 80, 0.9);
  font-size: 0.92rem;
  line-height: 1.58;
}

.guidebook-good-for > span:last-child,
.guidebook-what-to-wear > span:last-child {
  min-width: 0;
}

.guidebook-closing {
  font-size: 0.94rem;
  font-style: italic;
}

.guidebook-bullets {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.guidebook-bullets li {
  line-height: 1.68;
}

.guidebook-details {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 8px 18px;
  padding: 13px 15px;
  border-radius: 10px;
  background: rgba(252, 248, 243, 0.72);
  list-style-position: inside;
}

.guidebook-route {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(122, 77, 42, 0.07);
  color: var(--accent-strong) !important;
  font-size: 0.94rem;
  font-weight: 600;
}

.faq-card {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.highlight-grid,
.rules-grid,
.policies-grid,
.checkout-grid,
.guide-grid {
  display: grid;
  gap: 18px;
}

.info-card,
.guide-card {
  padding: 22px;
}

.rule-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
  padding: 24px;
}

.rule-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff8ef 0%, #f8efe4 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(122, 77, 42, 0.12);
  color: transparent;
}

.rule-icon::before {
  font-size: 1.6rem;
  line-height: 1;
  color: #8f5d39;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.rule-card:nth-child(1) .rule-icon::before {
  content: "☀";
  color: #d28c32;
}

.rule-card:nth-child(2) .rule-icon::before {
  content: "☕";
  color: #9c6540;
}

.rule-card:nth-child(3) .rule-icon::before {
  content: "♡";
  color: #c46c7d;
}

.rule-card h3 {
  margin-top: 6px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}

.rule-card p {
  max-width: 28ch;
  font-size: 1rem;
}

.date-input-wrap {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 58px;
}

.date-input-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(92, 72, 54, 0.18);
  border-radius: 16px;
  background: #fffdf9;
  color: var(--text);
  box-sizing: border-box;
}

.date-input-text {
  min-width: 0;
  color: rgba(110, 93, 80, 0.7);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.date-input-wrap.has-value .date-input-text {
  color: var(--text);
}

.date-input-icon {
  flex: 0 0 auto;
  font-size: 1rem;
  opacity: 0.72;
}

.date-input-wrap:focus-within .date-input-display {
  outline: 2px solid rgba(122, 77, 42, 0.18);
  border-color: rgba(122, 77, 42, 0.5);
}

.date-input-wrap input[type="date"] {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  color: transparent;
  opacity: 0;
  cursor: pointer;
}

.date-input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.date-input-wrap input[type="date"]::-webkit-clear-button,
.date-input-wrap input[type="date"]::-webkit-inner-spin-button {
  display: none;
}

.policy-card {
  display: grid;
  gap: 8px;
}

.policy-type {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.policy-length {
  margin: 0;
  color: var(--muted);
}

.tour-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.tour-link {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-weight: 600;
}

.tour-groups {
  display: grid;
  gap: 22px;
}

.tour-group {
  padding: 20px;
}

.tour-copy {
  margin-bottom: 18px;
}

.tour-gallery,
.mini-gallery {
  display: grid;
  gap: 12px;
}

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

.mini-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.tour-gallery figure,
.mini-gallery img {
  margin: 0;
}

.tour-gallery figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

.tour-gallery img,
.mini-gallery img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.tour-gallery figcaption {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.booking-layout {
  display: grid;
  gap: 20px;
}

.booking-form,
.booking-panel {
  display: grid;
  gap: 18px;
}

.booking-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(92, 72, 54, 0.18);
  border-radius: 16px;
  background: #fffdf9;
  color: var(--text);
  font: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(122, 77, 42, 0.18);
  border-color: rgba(122, 77, 42, 0.5);
}

.panel-card {
  padding: 22px;
}

.success-card {
  border-color: rgba(92, 72, 54, 0.14);
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.success-card:focus {
  outline: none;
}

.success-card.is-success {
  border-color: rgba(46, 125, 92, 0.26);
  background: rgba(245, 255, 250, 0.96);
  box-shadow: 0 18px 50px rgba(46, 125, 92, 0.12);
}

.success-card.is-error {
  border-color: rgba(181, 74, 51, 0.24);
  background: rgba(255, 248, 245, 0.96);
  box-shadow: 0 18px 50px rgba(181, 74, 51, 0.12);
}

.success-card.is-success .panel-label {
  color: #2e7d5c;
}

.success-card.is-error .panel-label {
  color: #b54a33;
}

.panel-label,
.guide-meta {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.summary-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.summary-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(92, 72, 54, 0.1);
}

.summary-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.summary-list span {
  color: var(--muted);
}

.hidden {
  display: none;
}

.guide-list,
.guide-steps {
  display: grid;
  gap: 8px;
}

.site-footer {
  display: flex;
  justify-content: center;
  margin: 64px auto 24px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 720px) {
  .hero-copy {
    max-width: 540px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(3.1rem, 4.8vw, 4.5rem);
  }

  .hero-text {
    max-width: 52ch;
  }

  .hero-media img {
    width: min(100%, 860px);
  }

  .highlight-grid,
  .rules-grid,
  .policies-grid,
  .checkout-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

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

  .guidebooks-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .booking-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: start;
  }

  .map-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

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

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

  .tour-group {
    padding: 24px;
  }

  .tour-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .site-header {
    padding-inline: 24px;
  }

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

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(3.4rem, 4.2vw, 4.6rem);
  }

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

@media (max-width: 719px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 32px;
    padding: 18px;
  }

  .brand {
    max-width: 100%;
    white-space: normal;
    line-height: 1.15;
  }

  .main-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 0.9rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
  }

  .guidebooks-categories {
    gap: 8px;
  }

  .guidebook-filter-btn {
    min-height: 42px;
    padding-inline: 15px;
    font-size: 0.94rem;
  }

  .guidebook-index-grid {
    grid-template-columns: 1fr;
  }

  .guidebook-subsection--group {
    padding: 16px 0 16px 14px;
  }

  .guidebook-subsection--step {
    margin-left: 6px;
    padding-left: 14px;
  }

  .guidebook-details {
    grid-template-columns: 1fr;
  }

  .guidebook-related > div {
    grid-template-columns: 1fr;
  }

  .guidebook-booking-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-main {
    min-height: auto;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .booking-form label,
  .date-input-wrap,
  .date-input-display,
  .date-input-wrap input[type="date"] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .map-card iframe {
    min-height: 300px;
  }

  .map-shell {
    padding: 20px;
    border-radius: 28px;
  }

  .rule-card {
    gap: 16px;
    padding: 20px;
  }

  .rule-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .rule-card h3 {
    margin-top: 2px;
    font-size: 1.05rem;
    line-height: 1.18;
  }

  .rule-card p {
    max-width: none;
    font-size: 0.97rem;
  }

  .hero-media img {
    width: 100%;
  }

  .section {
    margin-top: 72px;
  }
}
