:root {
  --bg: #f5f1e8;
  --surface: #efe7d9;
  --surface-strong: #e1d5bf;
  --green: #516443;
  --green-deep: #3f4b34;
  --green-ink: #222a1f;
  --gold: #d6b25e;
  --gold-deep: #c9933e;
  --muted: #746f63;
  --line: rgba(63, 75, 52, 0.12);
  --shadow: 0 20px 60px rgba(34, 42, 31, 0.12);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "PingFang SC", "Helvetica Neue", sans-serif;
  background: radial-gradient(circle at top, rgba(214, 178, 94, 0.15), transparent 26%),
    linear-gradient(180deg, #f7f3eb 0%, #f5f1e8 100%);
  color: var(--green-ink);
}

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

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

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(245, 241, 232, 0.78);
  border-bottom: 1px solid rgba(81, 100, 67, 0.08);
}

.nav-row,
.footer-row,
.intro-grid,
.highlight-grid,
.cta-grid,
.testimonials-grid {
  display: grid;
  gap: 28px;
}

.nav-row {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 18px 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none !important;
  visibility: hidden;
  width: 48px;
  height: 48px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(81, 100, 67, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--gold) 100%);
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 0.95rem;
  color: rgba(34, 42, 31, 0.8);
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(81, 100, 67, 0.35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(81, 100, 67, 0.08);
  border: 1px solid rgba(81, 100, 67, 0.1);
}

.page-lang-switch {
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--green);
  min-width: 54px;
  min-height: 40px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  padding: 0 14px;
}

.lang-button.is-active {
  background: var(--green);
  color: #fff;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--green-ink);
}

.button-primary:hover {
  background: var(--gold-deep);
}

.button-secondary {
  border: 1px solid rgba(245, 241, 232, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.highlight-copy .button-secondary {
  color: var(--green);
  border-color: rgba(81, 100, 67, 0.22);
  background: transparent;
}

.highlight-copy .button-secondary:hover {
  background: rgba(81, 100, 67, 0.06);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(34, 42, 31, 0.88) 0%, rgba(34, 42, 31, 0.65) 42%, rgba(34, 42, 31, 0.22) 100%),
    linear-gradient(180deg, rgba(34, 42, 31, 0.1), rgba(34, 42, 31, 0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 760px;
  padding: 128px 0 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.intro-grid h2,
.highlight-copy h2,
.cta-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  max-width: 700px;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 1.06rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.hero-points,
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points li,
.bullet-list li,
.badge,
.route-meta span {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.88rem;
}

.hero-points li {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.section {
  padding: 96px 0;
}

.intro-strip {
  padding-top: 70px;
  padding-bottom: 24px;
}

.intro-grid,
.highlight-grid,
.cta-grid,
.testimonials-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.highlight-copy h2,
.cta-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--green-ink);
}

.intro-copy,
.highlight-copy p,
.cta-copy p,
.feature-card p,
.destination-card p,
.logic-card p,
.process-step p,
.route-card p,
.testimonial-card p,
.inquiry-form label,
.site-footer p {
  color: var(--muted);
  line-height: 1.82;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.split-heading {
  display: flex;
  gap: 28px;
  align-items: flex-end;
  justify-content: space-between;
  max-width: none;
}

.text-link {
  color: var(--green);
  font-weight: 800;
}

.feature-grid,
.destination-grid,
.process-grid,
.route-grid,
.testimonial-cards {
  display: grid;
  gap: 22px;
}

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

.feature-card,
.process-step,
.route-card,
.testimonial-card,
.logic-card,
.inquiry-form,
.destination-card-body {
  border-radius: var(--radius-md);
}

.feature-card,
.process-step,
.route-card,
.testimonial-card,
.logic-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-card h3,
.destination-card h3,
.logic-card h3,
.process-step h3,
.route-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.destinations-section {
  background: linear-gradient(180deg, rgba(214, 178, 94, 0.08), rgba(214, 178, 94, 0));
}

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

.destination-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.destination-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.destination-card-large img {
  height: 100%;
  min-height: 430px;
}

.destination-card-body {
  padding: 24px;
}

.destination-card-body p {
  margin: 0;
}

.badge {
  display: inline-flex;
  background: rgba(81, 100, 67, 0.12);
  color: var(--green);
  margin-bottom: 16px;
  font-weight: 800;
}

.badge-muted {
  background: rgba(34, 42, 31, 0.06);
  color: rgba(34, 42, 31, 0.72);
}

.highlight-section {
  background: linear-gradient(180deg, rgba(81, 100, 67, 0.04), rgba(81, 100, 67, 0.01));
}

.bullet-list {
  display: grid;
  gap: 12px;
}

.bullet-list li {
  background: rgba(81, 100, 67, 0.06);
  color: var(--green-ink);
}

.logic-panel {
  display: grid;
  gap: 16px;
}

.highlight-copy {
  max-width: 640px;
}

.highlight-copy .bullet-list {
  margin-top: 24px;
}

.logic-card span,
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(214, 178, 94, 0.2);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 18px;
}

.process-section {
  background: rgba(255, 255, 255, 0.38);
}

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

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

.route-card {
  background: rgba(255, 255, 255, 0.72);
}

.route-card-accent {
  background: linear-gradient(180deg, rgba(81, 100, 67, 0.9), rgba(63, 75, 52, 0.98));
  color: #fff;
}

.route-card-accent p,
.route-card-accent .text-link {
  color: rgba(255, 255, 255, 0.82);
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.route-meta span {
  background: rgba(81, 100, 67, 0.08);
  color: var(--green);
  font-weight: 700;
}

.route-card-accent .route-meta span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.testimonial-cards {
  grid-template-columns: 1fr 1fr;
}

.testimonial-card strong {
  display: inline-block;
  margin-top: 12px;
}

.testimonials-section {
  background: linear-gradient(180deg, rgba(214, 178, 94, 0.08), rgba(255, 255, 255, 0));
}

.cta-section {
  background: linear-gradient(180deg, rgba(63, 75, 52, 0.98), rgba(34, 42, 31, 1));
  color: #fff;
}

.cta-copy h2,
.cta-copy p {
  color: #fff;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.inquiry-form {
  background: var(--bg);
  padding: 28px;
  display: grid;
  gap: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--green-ink);
  font-weight: 700;
}

.inquiry-form input {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(81, 100, 67, 0.14);
  padding: 0 16px;
  font: inherit;
  color: var(--green-ink);
  background: rgba(255, 255, 255, 0.94);
}

.inquiry-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(81, 100, 67, 0.14);
  padding: 14px 16px;
  font: inherit;
  color: var(--green-ink);
  background: rgba(255, 255, 255, 0.94);
  resize: vertical;
}

.inquiry-form input:focus {
  outline: 2px solid rgba(214, 178, 94, 0.34);
  border-color: rgba(81, 100, 67, 0.24);
}

.inquiry-form textarea:focus {
  outline: 2px solid rgba(214, 178, 94, 0.34);
  border-color: rgba(81, 100, 67, 0.24);
}

.form-status {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.form-status-success {
  color: #3f4b34;
}

.form-status-error {
  color: #9a4026;
}

.cta-section .contact-method-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.cta-section .contact-method-card h4,
.cta-section .contact-method-card p,
.cta-section .contact-method-card .text-link,
.cta-section .result-label {
  color: #fff;
}

.cta-section .contact-method-card p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 30px 0 40px;
  background: #eae2d3;
}

.footer-row {
  grid-template-columns: 1fr auto;
  align-items: flex-end;
}

.footer-links {
  justify-content: flex-end;
}

.planner-page {
  background:
    radial-gradient(circle at top right, rgba(81, 100, 67, 0.13), transparent 26%),
    radial-gradient(circle at top left, rgba(214, 178, 94, 0.16), transparent 22%),
    linear-gradient(180deg, #f7f3eb 0%, #f3eee4 100%);
}

.journey-page {
  background:
    radial-gradient(circle at top left, rgba(214, 178, 94, 0.14), transparent 22%),
    radial-gradient(circle at top right, rgba(81, 100, 67, 0.12), transparent 24%),
    linear-gradient(180deg, #f8f3eb 0%, #f2ecdf 100%);
}

.route-page {
  background:
    radial-gradient(circle at top left, rgba(214, 178, 94, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(81, 100, 67, 0.1), transparent 24%),
    linear-gradient(180deg, #f8f3eb 0%, #f3ede1 100%);
}

.planner-hero {
  padding: 84px 0 48px;
}

.planner-hero-grid,
.planner-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.planner-hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.planner-points li {
  background: rgba(81, 100, 67, 0.08);
  border: 1px solid rgba(81, 100, 67, 0.08);
  color: var(--green);
}

.planner-hero-panel,
.planner-form-shell,
.planner-results-shell {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.planner-hero-panel,
.planner-results-shell {
  padding: 28px;
}

.planner-summary-card h2,
.result-header h2,
.compact-heading h2,
.contact-card h3,
.journey-panel h2,
.journey-panel h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.journey-hero {
  padding: 78px 0 34px;
}

.journey-hero-grid,
.journey-main-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.journey-hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.95;
}

.route-hero {
  padding: 78px 0 34px;
}

.route-hero-grid,
.route-page-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.route-hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
  color: var(--green-ink);
}

.route-hero-copy {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(81, 100, 67, 0.1);
  box-shadow: var(--shadow);
}

.route-hero-copy .hero-copy {
  color: var(--green);
}

.route-hero-copy .journey-tag {
  background: rgba(81, 100, 67, 0.1);
  color: var(--gold-deep);
  border: 1px solid rgba(81, 100, 67, 0.14);
}

.route-main,
.route-sidebar {
  display: grid;
  gap: 18px;
}

.table-wrap {
  overflow-x: auto;
}

.route-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.route-table th,
.route-table td {
  text-align: left;
  vertical-align: top;
  padding: 16px 14px;
  border-bottom: 1px solid rgba(81, 100, 67, 0.12);
  line-height: 1.7;
}

.route-table th {
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
  background: rgba(81, 100, 67, 0.05);
}

.journey-hero-side,
.journey-panel {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.journey-stat-card,
.journey-panel {
  padding: 26px;
}

.journey-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 18px 0 18px;
}

.journey-stat-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.journey-stat-grid strong {
  font-size: 1rem;
}

.journey-content,
.journey-sidebar {
  display: grid;
  gap: 18px;
}

.sticky-journey-panel {
  position: sticky;
  top: 108px;
}

.journey-sidebar-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.summary-list,
.route-outline {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.planner-section {
  padding-top: 36px;
}

.planner-form-shell {
  padding: 28px;
}

.planner-panel-top {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.planner-panel-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.planner-steps {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.planner-step {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(81, 100, 67, 0.08);
  color: var(--green);
  font-weight: 800;
}

.planner-step.is-active {
  background: var(--green);
  color: #fff;
}

.planner-form,
.mini-contact-form {
  display: grid;
  gap: 22px;
}

.planner-quick-actions {
  margin-top: 22px;
  padding: 22px;
  background: rgba(81, 100, 67, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.quick-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quick-action-button {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(81, 100, 67, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: var(--green);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0 14px;
  text-align: left;
}

.quick-action-button:hover {
  background: rgba(81, 100, 67, 0.08);
}

.planner-block {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.compact-heading {
  margin-bottom: 0;
}

.field-label {
  display: grid;
  gap: 8px;
  color: var(--green-ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.field-label select,
.field-label input {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(81, 100, 67, 0.14);
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.94);
  font: inherit;
  color: var(--green-ink);
}

.field-label select:focus,
.field-label input:focus {
  outline: 2px solid rgba(214, 178, 94, 0.34);
  border-color: rgba(81, 100, 67, 0.24);
}

.planner-results-shell {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 108px;
}

.result-copy {
  color: var(--muted);
  line-height: 1.8;
}

.result-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.featured-result {
  background: linear-gradient(180deg, rgba(81, 100, 67, 0.94), rgba(63, 75, 52, 1));
  color: #fff;
}

.featured-result #result-summary {
  color: rgba(255, 255, 255, 0.82);
}

.journey-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.journey-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
}

.result-label {
  margin-bottom: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

.result-card h3,
.featured-result h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highlights-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.journey-segments {
  display: grid;
  gap: 14px;
}

.journey-segment {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(81, 100, 67, 0.04);
}

.journey-segment span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(214, 178, 94, 0.22);
  color: var(--green);
  font-weight: 800;
}

.journey-segment h4 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.journey-segment p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.planner-secondary-button {
  background: transparent;
  border: 1px solid rgba(81, 100, 67, 0.18);
  color: var(--green);
}

.planner-secondary-button:hover {
  background: rgba(81, 100, 67, 0.06);
}

.contact-card p {
  color: var(--muted);
}

.contact-methods-grid {
  display: grid;
  gap: 14px;
  margin: 18px 0 22px;
}

.route-contact-grid {
  margin-top: 22px;
}

.contact-method-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(81, 100, 67, 0.05);
  border: 1px solid rgba(81, 100, 67, 0.1);
}

.contact-method-card h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.contact-method-card p {
  margin: 0 0 10px;
  color: var(--muted);
  word-break: break-word;
}

.route-sidebar .contact-method-card {
  background: rgba(81, 100, 67, 0.04);
}

.copy-contact-button {
  border: 0;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-weight: 800;
  padding: 0;
  cursor: pointer;
}

@media (max-width: 1120px) {
  .feature-grid,
  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-grid,
  .process-grid,
  .intro-grid,
  .highlight-grid,
  .cta-grid,
  .testimonials-grid,
  .planner-hero-grid,
  .planner-layout,
  .journey-hero-grid,
  .journey-main-grid,
  .route-hero-grid,
  .route-page-grid {
    grid-template-columns: 1fr;
  }

  .destination-card-large img {
    min-height: 320px;
  }

  .planner-results-shell {
    position: static;
  }

  .sticky-journey-panel {
    position: static;
  }

  .quick-action-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-row {
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: stretch;
  }

  .header-actions {
    width: 100%;
    grid-column: 1 / -1;
    display: none;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0 6px;
  }

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

  .header-actions.is-open {
    display: flex;
    padding-top: 8px;
  }

  .nav-toggle {
    display: inline-flex !important;
    visibility: visible;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 84px;
  }

  .feature-grid,
  .process-grid,
  .route-grid,
  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .footer-row {
    display: grid;
    gap: 12px;
  }

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

  .journey-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-actions {
    display: grid;
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .hero-content {
    padding-top: 108px;
  }

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

  .button,
  .hero-points li,
  .bullet-list li,
  .badge,
  .route-meta span {
    width: 100%;
  }

  .hero-actions,
  .hero-points,
  .footer-links {
    display: grid;
  }
}
