@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #0d1117;
  --bg-warm: #1c1714;
  --bg-cream: #f7f3ed;
  --bg-surface: #ede8e0;
  --bg-surface-2: #e4ddd3;
  --text-dark: #1c1714;
  --text-light: #f7f3ed;
  --text-muted: #7a7570;
  --text-muted-light: #a09a94;
  --accent: #c8956c;
  --accent-dark: #a67553;
  --accent-light: #dbb694;
  --sage: #4a6741;
  --border: rgba(200, 149, 108, 0.2);
  --border-dark: rgba(200, 149, 108, 0.1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --fs-display: clamp(2.4rem, 5vw, 4.2rem);
  --fs-h1: clamp(2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.6rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.6rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: 0.85rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.16);
}

*, *::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-dark);
  background: var(--bg-cream);
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.ad-notice {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted-light);
  background: rgba(200, 149, 108, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  border: 1px solid var(--border-dark);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted-light);
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-light);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero {
  padding: 10rem 0 6rem;
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(200, 149, 108, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(74, 103, 65, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero-grid > * {
  min-width: 0;
  max-width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.badge-outline {
  border: 1px solid var(--border);
  color: var(--text-muted-light);
}

.badge-accent {
  background: var(--accent);
  color: var(--bg-dark);
}

.hero h1 {
  font-size: var(--fs-display);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted-light);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 149, 108, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

.btn-sm {
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: var(--radius-sm);
}

.btn-sm:hover {
  background: var(--accent-light);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-stats-mini {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
}

.stat-mini {
  display: flex;
  flex-direction: column;
}

.stat-mini-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-mini-label {
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

.stat-mini-divider {
  width: 1px;
  height: 40px;
  background: var(--border-dark);
}

.hero-visual {
  position: relative;
}

.viewfinder-frame {
  position: relative;
  display: inline-block;
  padding: 12px;
}

.viewfinder-frame img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
}

.viewfinder-frame.large img {
  width: 100%;
  aspect-ratio: 4/3;
}

.vf-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
  z-index: 2;
}

.vf-tl { top: 0; left: 0; border-top-width: 3px; border-left-width: 3px; }
.vf-tr { top: 0; right: 0; border-top-width: 3px; border-right-width: 3px; }
.vf-bl { bottom: 0; left: 0; border-bottom-width: 3px; border-left-width: 3px; }
.vf-br { bottom: 0; right: 0; border-bottom-width: 3px; border-right-width: 3px; }

.vf-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}

.vf-spec {
  font-size: 0.7rem;
  font-weight: 500;
  background: rgba(13, 17, 23, 0.8);
  color: var(--accent-light);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.story-section {
  padding: 6rem 0;
  background: var(--bg-cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.story-image-wrap {
  position: relative;
}

.story-content .overline {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.story-content h2 {
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.stats-bar {
  padding: 4rem 0;
  background: var(--bg-warm);
  color: var(--text-light);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-dark);
}

.excursions-preview {
  padding: 6rem 0;
  background: var(--bg-surface);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header .overline {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.excursions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.excursion-card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.excursion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease;
}

.excursion-card:hover .card-image img {
  transform: scale(1.03);
}

.card-location {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(13, 17, 23, 0.85);
  color: var(--text-light);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.card-body {
  padding: 1.5rem;
}

.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.spec-chip {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  background: var(--bg-surface);
  border-radius: 100px;
  color: var(--text-muted);
}

.card-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.card-body > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.card-details {
  margin-bottom: 1.5rem;
}

.card-includes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.card-includes span {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-includes i {
  color: var(--sage);
  font-size: 0.9rem;
}

.card-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.focus-tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  background: rgba(200, 149, 108, 0.12);
  color: var(--accent-dark);
  border-radius: 3px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.gallery-preview {
  padding: 6rem 0;
  background: var(--bg-dark);
  color: var(--text-light);
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.gallery-preview-content .overline {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.gallery-preview-content h2 {
  margin-bottom: 1.5rem;
}

.gallery-preview-content p {
  color: var(--text-muted-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.gallery-preview-image .viewfinder-frame {
  display: block;
}

.gallery-preview-image .viewfinder-frame img {
  aspect-ratio: 3/4;
  width: 100%;
}

.gallery-overlay {
  position: absolute;
  inset: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 17, 23, 0);
  border-radius: var(--radius-md);
  transition: background 0.3s ease;
  z-index: 5;
}

.gallery-preview-image a:hover .gallery-overlay {
  background: rgba(13, 17, 23, 0.5);
}

.gallery-overlay-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery-preview-image a:hover .gallery-overlay-text {
  opacity: 1;
  transform: translateY(0);
}

.services-preview {
  padding: 6rem 0;
  background: var(--bg-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--accent);
}

.service-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.service-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.gifts-section {
  padding: 6rem 0;
  background: var(--bg-warm);
  color: var(--text-light);
}

.gifts-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gifts-content .overline {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.gifts-content h2 {
  margin-bottom: 1.5rem;
}

.gifts-content > p {
  color: var(--text-muted-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.gift-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gift-option {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  background: rgba(200, 149, 108, 0.08);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
}

.gift-option-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-light);
}

.gift-option-desc {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.gift-card-mockup {
  perspective: 1000px;
}

.gift-card-inner {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-surface) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.3s ease;
}

.gift-card-inner:hover {
  transform: rotateY(0) rotateX(0);
}

.gift-card-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.gift-card-type {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gift-card-for {
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.gift-card-seal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: 50%;
  font-size: 1.2rem;
}

.about-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.about-image .viewfinder-frame img {
  aspect-ratio: 4/5;
  width: 100%;
}

.about-content .overline {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 2rem;
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-section {
  padding: 6rem 0;
  background: var(--bg-dark);
  color: var(--text-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .overline {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: var(--text-muted-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.contact-detail i {
  font-size: 1.2rem;
  color: var(--accent);
}

.contact-form-wrap {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a09a94' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-check label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted-light);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.site-footer {
  background: var(--bg-dark);
  color: var(--text-muted-light);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--accent-light);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--accent);
}

.footer-company {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-company strong {
  color: var(--text-light);
  font-weight: 500;
}

.footer-disclaimer {
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
}

.footer-disclaimer p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.page-hero {
  padding: 10rem 0 4rem;
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}

.page-hero .overline {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: var(--fs-display);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.all-excursions {
  padding: 4rem 0 6rem;
  background: var(--bg-surface);
}

.excursions-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.routes-section {
  padding: 6rem 0;
  background: var(--bg-cream);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.route-item {
  padding: 2rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.route-city {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.route-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.route-tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  background: rgba(200, 149, 108, 0.12);
  color: var(--accent-dark);
  border-radius: 3px;
}

.cta-section {
  padding: 5rem 0;
  background: var(--bg-warm);
  color: var(--text-light);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-muted-light);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-section {
  padding: 3rem 0 6rem;
  background: var(--bg-dark);
  color: var(--text-light);
}

.gallery-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.slider-track {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide img {
  width: 100%;
  aspect-ratio: 3/2;
}

.slide-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0.5rem;
}

.slide-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.slide-spec {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-warm);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}

.slider-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.gallery-story {
  padding: 5rem 0;
  background: var(--bg-cream);
}

.gallery-story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gallery-story-content .overline {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.gallery-story-content h2 {
  margin-bottom: 1.5rem;
}

.gallery-story-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.gallery-story-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-stat {
  text-align: center;
  padding: 2rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
}

.story-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.story-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.services-full {
  padding: 4rem 0 6rem;
  background: var(--bg-cream);
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-full-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.service-full-card:hover {
  transform: translateY(-3px);
}

.service-full-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--accent);
}

.service-full-content h3 {
  margin-bottom: 0.75rem;
}

.service-full-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-full-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-full-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.process-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.process-step h3 {
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-main {
  padding: 3rem 0 6rem;
  background: var(--bg-cream);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.contact-form-col .contact-form {
  background: var(--bg-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.contact-form-col .form-group label {
  color: var(--text-muted);
}

.contact-form-col .form-group input,
.contact-form-col .form-group select,
.contact-form-col .form-group textarea {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  color: var(--text-dark);
}

.contact-form-col .form-group input::placeholder,
.contact-form-col .form-group textarea::placeholder {
  color: var(--text-muted);
}

.contact-form-col .form-check label {
  color: var(--text-muted);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-block h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-item i {
  font-size: 1.3rem;
  color: var(--accent);
  margin-top: 0.2rem;
}

.info-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.info-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 400;
}

.contact-promises {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.promise-item i {
  font-size: 1.1rem;
  color: var(--sage);
}

.faq-section {
  padding: 5rem 0;
  background: var(--bg-surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item {
  padding: 2rem;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.thanks-section {
  padding: 8rem 0 6rem;
  background: var(--bg-cream);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thanks-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-surface);
  padding: 4rem 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.thanks-icon {
  font-size: 4rem;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.thanks-card h1 {
  margin-bottom: 0.5rem;
}

.thanks-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.thanks-content {
  text-align: left;
  margin-bottom: 2.5rem;
}

.thanks-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.thanks-steps {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
}

.thanks-steps h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-marker {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 600;
}

.thanks-contact-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.thanks-contact-note p {
  margin-bottom: 0.3rem;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .excursions-grid, .excursions-full-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-grid,
  .gifts-grid,
  .about-grid,
  .gallery-story-grid,
  .contact-grid,
  .contact-main-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border-dark);
  }
  .nav-menu.open { right: 0; }
  .hero { padding: 12rem 0 4rem; }
  .story-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .story-grid > * {
    min-width: 0;
    max-width: 100%;
  }
  .hero-actions { flex-direction: column; }
  .hero-stats-mini { flex-wrap: wrap; }
  .stats-grid { flex-direction: column; gap: 2rem; }
  .stat-divider { width: 60px; height: 1px; }
  .excursions-grid, .excursions-full-grid { grid-template-columns: 1fr; }
  .services-grid, .services-full-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .footer-legal-links { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap, .contact-form-col .contact-form { padding: 1.5rem; }
  .thanks-card { padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

.legal-hero {
  padding-bottom: 3.5rem;
}

.legal-stand {
  display: inline-block;
  margin-top: 1.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
}

.last-updated {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-section-wrap {
  padding: 4.5rem 0 5rem;
  background: var(--bg-cream);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  word-break: break-word;
}

.legal-toc {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 3.5rem;
}

.legal-toc-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.legal-toc ol {
  list-style: none;
  counter-reset: legal-toc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
}

.legal-toc li {
  counter-increment: legal-toc;
}

.legal-toc a {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  transition: color 0.3s ease;
}

.legal-toc a::before {
  content: counter(legal-toc, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 0.85rem;
}

.legal-toc a:hover {
  color: var(--accent-dark);
}

.legal-block {
  margin-bottom: 2.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 110px;
}

.legal-block:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-block h2 {
  font-size: 1.7rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.legal-block h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--text-dark);
}

.legal-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-list {
  list-style: none;
  margin: 0 0 1.25rem;
}

.legal-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-list li strong {
  color: var(--text-dark);
  font-weight: 500;
}

.legal-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.4rem;
  font-size: 0.6rem;
  color: var(--accent);
}

.legal-callout {
  background: var(--bg-warm);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2rem 2.25rem;
  margin: 2rem 0;
}

.legal-callout p {
  color: var(--text-muted-light);
  margin-bottom: 0.6rem;
  line-height: 1.8;
}

.legal-callout strong {
  color: var(--accent-light);
  font-weight: 500;
}

.legal-callout .callout-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.legal-callout .callout-title i {
  color: var(--accent);
  font-size: 1.3rem;
}

.legal-callout-light {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}

.legal-callout-light p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.legal-callout-light strong {
  color: var(--accent-dark);
  font-weight: 600;
}

.legal-contact-band {
  padding: 5rem 0;
  background: var(--bg-warm);
  color: var(--text-light);
  text-align: center;
}

.legal-contact-band .overline {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.legal-contact-band h2 {
  margin-bottom: 1rem;
}

.legal-contact-band p {
  color: var(--text-muted-light);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .legal-toc ol {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    padding: 1.5rem 1.25rem;
  }

  .legal-callout {
    padding: 1.5rem 1.25rem;
  }

  .legal-callout-light {
    padding: 1.25rem 1rem;
  }

  .legal-block {
    scroll-margin-top: 90px;
  }
}

[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;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .hero-grid > *,
  .about-grid > *,
  .contact-grid > *,
  .contact-main-grid > *,
  .gallery-preview-grid > *,
  .excursions-grid > *,
  .services-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .ad-notice {
    word-break: break-all;
  }

  .logo {
    flex-direction: column;
  }

  .logo-text {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .footer-col,
  .footer-company {
    word-break: break-all;
  }

  .page-hero.legal-hero h1,
  .page-hero.legal-hero .page-hero-desc,
  .page-hero.legal-hero .last-updated,
  .page-hero.legal-hero .legal-stand,
  .page-hero.legal-hero .overline {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .contact-form-wrap,
  .contact-form-col .contact-form {
    padding: 1rem;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .hero {
    padding-top: 13.5rem;
  }
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form button {
  width: 100%;
  max-width: 100%;
}