@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Spline Sans";
  src: url("../fonts/SplineSans.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #1a1714;
  --surface: #242019;
  --surface-2: #2f2a22;
  --surface-3: #3a322c;
  --text: #f5efe6;
  --text-muted: #b8a99a;
  --accent: #c17f3e;
  --accent-2: #d4956a;
  --accent-dark: #8b5e2a;
  --border: #4a3f36;
  --font-display: 'Fraunces', serif;
  --font-body: 'Spline Sans', sans-serif;
  --fs-display: clamp(2.8rem, 6vw, 5rem);
  --fs-h1: clamp(2.2rem, 5vw, 3.8rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 2.8rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-copper: 0 4px 20px rgba(193,127,62,0.2);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

main {
  flex: 1 0 auto;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--accent);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

.section-overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.section-head {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-head-left {
  text-align: left;
}

.section-head h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.section-lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: var(--fs-body);
}

.section-head-left .section-lead {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-body);
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-copper {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1714;
  padding: 0.85rem 2rem;
  box-shadow: var(--shadow-copper);
}

.btn-copper:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(193,127,62,0.35);
  color: #1a1714;
}

.btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: var(--fs-small);
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.btn-full {
  width: 100%;
}

.copper-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  margin: 0 auto;
  max-width: 80%;
  opacity: 0.6;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 23, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.8rem clamp(1rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-line1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--text);
}

.logo-line2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
}

.main-nav {
  display: flex;
  gap: 1.8rem;
}

.main-nav a {
  font-size: var(--fs-small);
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--accent-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ad-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26,23,20,0.4) 0%, rgba(26,23,20,0.72) 65%, rgba(26,23,20,0.92) 100%), linear-gradient(to top, rgba(26,23,20,0.95) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(7rem, 14vh, 11rem) clamp(1.5rem, 5vw, 3rem) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-overline {
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: var(--space-sm);
}

.hero h1 {
  font-size: var(--fs-display);
  font-weight: 900;
  margin-bottom: var(--space-md);
  line-height: 1.05;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  max-width: 600px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 0.8rem;
  margin-bottom: var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text);
  background: rgba(193,127,62,0.12);
  border: 1px solid rgba(193,127,62,0.3);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
}

.hero-badge i {
  color: var(--accent);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.advantages {
  padding: var(--space-xl) 0;
  background: var(--surface);
  position: relative;
}

.advantages::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(193,127,62,0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.advantages-grid > * {
  min-width: 0;
  max-width: 100%;
}

.adv-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.adv-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.4s;
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-dark);
}

.adv-card:hover::after {
  opacity: 1;
}

.adv-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(193,127,62,0.1);
  border: 2px solid rgba(193,127,62,0.25);
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
}

.adv-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.8rem;
}

.adv-card p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.adv-tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(193,127,62,0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  border: 1px solid rgba(193,127,62,0.2);
  white-space: nowrap;
}

.included {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.cask-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(193,127,62,0.1), 0 0 0 8px rgba(193,127,62,0.05);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-xl);
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 2.4rem;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(193,127,62,0.15));
}

.timeline-step:last-child::before {
  display: none;
}

.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  padding-top: 0.4rem;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.transfer-showcase {
  border-top: 1px solid var(--border);
  padding-top: var(--space-lg);
}

.showcase-title {
  font-size: var(--fs-h3);
  margin-bottom: 0.6rem;
}

.transfer-intro {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  max-width: 640px;
}

.transfer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.transfer-grid > * {
  min-width: 0;
  max-width: 100%;
}

.transfer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.transfer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.transfer-img {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.transfer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.transfer-card:hover .transfer-img img {
  transform: scale(1.05);
}

.transfer-flag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1714;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

.transfer-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.transfer-body h4 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.transfer-body p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.transfer-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
}

.spec-chip i {
  color: var(--accent);
  font-size: 0.8rem;
}

.destinations {
  padding: var(--space-xl) 0;
  background: var(--surface);
  position: relative;
}

.destinations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(193,127,62,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.dest-grid > * {
  min-width: 0;
  max-width: 100%;
}

.dest-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-dark);
}

.dest-img {
  height: 300px;
  overflow: hidden;
  flex-shrink: 0;
}

.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.dest-card:hover .dest-img img {
  transform: scale(1.04);
}

.dest-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dest-region {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(193,127,62,0.1);
  border: 1px solid rgba(193,127,62,0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}

.dest-body h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.8rem;
}

.dest-body > p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.dest-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.fact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text);
  background: var(--surface-3);
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
}

.fact-chip i {
  color: var(--accent);
}

.dest-routes {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: auto;
}

.route-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s;
}

.route-item:hover {
  border-color: var(--accent);
}

.route-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.route-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: right;
}

.enquiry-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
  position: relative;
}

.enquiry-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(193,127,62,0.03) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.enquiry-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.enquiry-layout > * {
  min-width: 0;
  max-width: 100%;
}

.enquiry-form-wrap h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.form-intro {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  max-width: 520px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
  max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(193,127,62,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(184,169,154,0.5);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b8a99a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-consent label {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
}

.form-consent a {
  color: var(--accent-2);
  text-decoration: underline;
}

.enquiry-faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.enquiry-faq h3 {
  font-size: var(--fs-h3);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: color 0.3s;
}

.faq-q:hover {
  color: var(--accent-2);
}

.faq-q i {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-q.active i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 1rem;
}

.faq-a p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.7;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.logo-footer .logo-line1 {
  font-size: 1rem;
}

.logo-footer .logo-line2 {
  font-size: 0.85rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: var(--fs-small);
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--accent-2);
}

.footer-info {
  margin-bottom: var(--space-md);
}

.footer-legal-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.footer-address,
.footer-vat,
.footer-reg {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.footer-disclaimer {
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.footer-disclaimer p {
  font-size: 0.82rem;
  color: rgba(184,169,154,0.7);
  line-height: 1.7;
  max-width: 900px;
}

.footer-bottom {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 1.2rem clamp(1rem, 4vw, 3rem);
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-inner p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-inner a {
  color: var(--accent-2);
  text-decoration: underline;
}

.thanks-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: calc(var(--space-lg) + 80px) 0 var(--space-lg);
  background: var(--bg);
  overflow: hidden;
}

.thanks-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(193,127,62,0.09) 0%, transparent 55%);
  pointer-events: none;
}

.thanks-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(193,127,62,0.04) 1px, transparent 0);
  background-size: 36px 36px;
  pointer-events: none;
}

.thanks-card {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.thanks-logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin: 0 auto 1.2rem;
}

.thanks-seal {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(193,127,62,0.16), rgba(212,149,106,0.08));
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 6px rgba(193,127,62,0.08), 0 0 0 12px rgba(193,127,62,0.04);
  font-size: 2rem;
  color: var(--accent-2);
}

.thanks-title {
  font-size: var(--fs-h1);
  font-weight: 900;
  margin-bottom: var(--space-sm);
}

.thanks-greeting {
  font-size: clamp(1.2rem, 1.6vw, 1.35rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto var(--space-md);
}

.thanks-greeting #thanks-name,
.thanks-greeting #thanks-email {
  color: var(--accent-2);
  font-weight: 500;
}

.thanks-divider {
  height: 2px;
  width: 120px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.thanks-subtitle {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-md);
}

.thanks-steps {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: var(--space-md);
}

.thanks-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.3rem;
  padding-bottom: 1.8rem;
}

.thanks-step:last-child {
  padding-bottom: 0;
}

.thanks-step::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 50px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(193,127,62,0.15));
}

.thanks-step:last-child::before {
  display: none;
}

.thanks-step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  padding-top: 0.35rem;
}

.thanks-step-content p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.thanks-info {
  text-align: left;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: var(--space-md);
}

.thanks-info h2 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.thanks-info p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.thanks-card .btn {
  margin-top: var(--space-sm);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .transfer-grid {
    grid-template-columns: 1fr;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-layout {
    grid-template-columns: 1fr;
  }

  .enquiry-faq {
    position: static;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    gap: 0;
    background: rgba(26, 23, 20, 0.98);
    border-bottom: none;
    z-index: 999;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease, gap 0.4s ease;
  }

  .main-nav.open {
    max-height: 360px;
    opacity: 1;
    padding: 1rem 2rem 1.25rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
  }

  .burger {
    display: flex;
    position: relative;
    z-index: 2;
  }

  .header-actions {
    position: relative;
    z-index: 2;
    margin-left: auto;
  }

  .header-actions .btn {
    display: none;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.8rem;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .timeline-step {
    gap: 1rem;
  }

  .route-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .route-detail {
    text-align: left;
  }

  .thanks-card {
    padding: 1.8rem 1.3rem;
  }

  .thanks-step {
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.legal-hero {
  padding: calc(var(--space-lg) + 90px) 0 var(--space-lg);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(193,127,62,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.legal-hero h1 {
  font-size: var(--fs-h1);
  font-weight: 900;
  margin-bottom: var(--space-xs);
  position: relative;
}

.legal-meta {
  font-size: var(--fs-small);
  color: var(--text-muted);
  position: relative;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  word-break: break-word;
}

.legal-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.8rem;
  margin-bottom: var(--space-lg);
}

.legal-toc h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  display: grid;
  gap: 0.45rem;
}

.legal-toc li {
  counter-increment: toc;
}

.legal-toc li a {
  font-size: var(--fs-small);
  color: var(--text-muted);
  transition: color 0.3s;
}

.legal-toc li a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--accent);
  font-weight: 600;
  margin-right: 0.5rem;
}

.legal-toc li a:hover {
  color: var(--accent-2);
}

.legal-section {
  margin-bottom: var(--space-lg);
  scroll-margin-top: 100px;
}

.legal-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.legal-section h2::before {
  content: attr(data-num);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  border: 2px solid rgba(193,127,62,0.5);
  box-shadow: 0 0 0 3px rgba(193,127,62,0.08);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-section h3 {
  font-size: 1.15rem;
  margin: 1.2rem 0 0.5rem;
}

.legal-section p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.legal-section strong {
  color: var(--text);
  font-weight: 500;
}

.legal-section ul {
  list-style: none;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.5rem;
}

.legal-section ul li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.legal-callout {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  margin: 1.2rem 0;
}

.legal-callout p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 0.7rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--surface-2);
  color: var(--text);
  font-weight: 600;
}

.legal-table td {
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .legal-table {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .legal-table thead {
    display: none;
  }

  .legal-table tbody {
    display: block;
  }

  .legal-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    overflow: hidden;
  }

  .legal-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .legal-table td {
    display: block;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 1rem;
    word-break: break-word;
  }

  .legal-table td:last-child {
    border-bottom: none;
  }

  .legal-table td:first-child {
    background: var(--surface-2);
    color: var(--text);
    font-weight: 600;
  }

  .legal-table td::before {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.35rem;
  }

  .legal-table td:first-child::before {
    display: none;
  }

  .legal-table td:nth-child(2)::before {
    content: "Purpose";
  }

  .legal-table td:nth-child(3)::before {
    content: "Duration";
  }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

[data-aos="flip-left"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) !important;
  opacity: 0;
}

[data-aos="flip-left"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .advantages-grid > *,
  .transfer-grid > *,
  .dest-grid > *,
  .enquiry-layout > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .ad-badge {
    word-break: break-all;
  }

  .logo a,
  .logo {
    flex-direction: column;
  }

  .logo-text {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .footer-col,
  .footer-nav {
    word-break: break-all;
  }

  .transfer-img {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: auto;
  }

  .transfer-flag {
    position: static;
    max-width: 100%;
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .enquiry-form-wrap,
  .enquiry-faq,
  .thanks-card {
    padding: 1.2rem;
  }

  .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-head h2,
  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .btn-lg {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .legal-hero {
    padding-top: calc(var(--space-lg) + 70px);
  }

  .legal-section h2 {
    font-size: 1.3rem;
  }
}