/* Berggasthaus Bleckenau - Custom Stylesheet */
:root {
  --color-alpine-dark: #1e2d24;
  --color-alpine-forest: #2b3e34;
  --color-pine: #3b5245;
  --color-timber: #785e4f;
  --color-amber: #d97706;
  --color-cream: #faf8f5;
  --color-warm-bg: #f4f0ea;
  --color-surface: #ffffff;
  --color-border: #e3ded6;
  --color-text-main: #1f2937;
  --color-text-muted: #59655f;
  --color-highlight: #b45309;
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 16px rgba(30,45,36,0.08);
  --shadow-lg: 0 12px 28px rgba(30,45,36,0.12);
  --container-max: 1160px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background-color: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 20px;
  background: var(--color-alpine-dark);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

/* Utility Layout */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

/* Quick Scannable Decision Ribbon */
.top-notice-bar {
  background-color: var(--color-alpine-dark);
  color: #f1f5f3;
  padding: 10px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-notice-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.notice-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.notice-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.notice-item svg {
  flex-shrink: 0;
  color: var(--color-amber);
}
.notice-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.notice-item a:hover {
  text-decoration: underline;
}
.badge-cash-only {
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid rgba(217, 119, 6, 0.4);
  color: #fbbf24;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Site Header */
.site-header {
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--color-alpine-dark);
}
.brand-logo {
  height: 54px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.brand-title-wrap {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-alpine-dark);
  line-height: 1.2;
}
.brand-tagline {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 6px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: block;
  padding: 10px 14px;
  color: var(--color-text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.nav-link:hover, .nav-link:focus {
  background-color: var(--color-warm-bg);
  color: var(--color-alpine-dark);
}
.nav-link.active {
  color: var(--color-alpine-forest);
  background-color: rgba(43, 62, 52, 0.08);
}

/* Dropdown Menu */
.has-dropdown > .nav-link::after {
  content: "▾";
  display: inline-block;
  margin-left: 6px;
  font-size: 0.8em;
  transition: transform 0.2s ease;
}
.has-dropdown:hover > .nav-link::after,
.has-dropdown:focus-within > .nav-link::after {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 105;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: block;
  padding: 8px 18px;
  color: var(--color-text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s ease;
}
.dropdown-link:hover, .dropdown-link:focus {
  background-color: var(--color-warm-bg);
  color: var(--color-alpine-forest);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 1.1rem;
  color: var(--color-alpine-dark);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-color: var(--color-alpine-dark);
  color: #fff;
  padding: 64px 0 80px 0;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(24, 36, 29, 0.92) 0%, rgba(38, 54, 45, 0.8) 100%), url('../assets/header-3.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fed7aa;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 32px;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}
.btn-primary {
  background-color: var(--color-amber);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #b45309;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.4);
}
.btn-secondary {
  background-color: rgba(255,255,255,0.15);
  color: #ffffff;
  backdrop-filter: blur(6px);
  border-color: rgba(255,255,255,0.25);
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
.btn-outline-dark {
  background-color: transparent;
  border-color: var(--color-pine);
  color: var(--color-pine);
}
.btn-outline-dark:hover, .btn-outline-dark:focus {
  background-color: var(--color-pine);
  color: #ffffff;
}

/* Scannable Decision Grid (Benchmark Mechanism 1: Fast Arrival Decision Matrix) */
.decision-matrix-section {
  position: relative;
  margin-top: -40px;
  z-index: 10;
  margin-bottom: 60px;
}
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.matrix-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.matrix-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.matrix-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.matrix-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-warm-bg);
  color: var(--color-alpine-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.matrix-icon svg {
  width: 24px;
  height: 24px;
}
.matrix-card-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--color-alpine-dark);
  line-height: 1.25;
}
.matrix-status {
  font-size: 0.8rem;
  color: #15803d;
  font-weight: 600;
  display: inline-block;
  margin-top: 2px;
}
.matrix-card-body {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}
.matrix-card-body strong {
  color: var(--color-text-main);
}
.matrix-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}
.matrix-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-alpine-forest);
  text-decoration: none;
}
.matrix-link:hover {
  text-decoration: underline;
}

/* Signature Motion: Interactive Interactive Hiking Route Map / Elevation Horizon Switcher */
/* (Benchmark Mechanism 2: Interactive Filter & Elevation Switcher) */
.experience-section {
  padding: 60px 0;
  background-color: var(--color-warm-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px auto;
}
.section-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-timber);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--color-alpine-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

/* Route Showcase Tabs */
.route-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.route-tab-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}
.route-tab-btn:hover {
  border-color: var(--color-pine);
  color: var(--color-pine);
}
.route-tab-btn.active {
  background: var(--color-alpine-forest);
  border-color: var(--color-alpine-forest);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.route-panel {
  display: none;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.route-panel.active {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  animation: fadeIn 0.35s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.route-details h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  margin-bottom: 14px;
  color: var(--color-alpine-dark);
}
.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0;
  padding: 14px;
  background: var(--color-warm-bg);
  border-radius: var(--radius-md);
}
.route-meta-item {
  display: flex;
  flex-direction: column;
}
.route-meta-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}
.route-meta-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-alpine-dark);
}
.route-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #2b3e34;
  min-height: 260px;
}
.route-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bleckenau Profile / Story Section */
.story-section {
  padding: 80px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.story-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}
.story-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.story-img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.story-img-card.wide {
  grid-column: span 2;
}
.story-img-card.wide img {
  height: 240px;
}
.story-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--color-alpine-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.story-content p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.story-highlight-box {
  background: var(--color-warm-bg);
  border-left: 4px solid var(--color-amber);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
}
.story-highlight-box p {
  margin: 0;
  font-weight: 600;
  color: var(--color-alpine-dark);
  font-size: 1rem;
}

/* Touch-Swipe Photo Gallery (Benchmark Mechanism 3: Two-Way Touch-Enabled Gallery) */
.gallery-section {
  padding: 70px 0;
  background-color: #ffffff;
}
.gallery-container {
  position: relative;
}
.gallery-scroll-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 4px 28px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.gallery-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}
.gallery-scroll-wrapper::-webkit-scrollbar-track {
  background: var(--color-warm-bg);
  border-radius: 4px;
}
.gallery-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}
.gallery-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-card-thumb {
  height: 240px;
  width: 100%;
  background: var(--color-warm-bg);
  overflow: hidden;
}
.gallery-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-card-thumb img {
  transform: scale(1.04);
}
.gallery-card-info {
  padding: 16px;
}
.gallery-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-alpine-dark);
  margin-bottom: 6px;
}
.gallery-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}
.gallery-arrow-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-alpine-dark);
  transition: all 0.2s ease;
}
.gallery-arrow-btn:hover {
  background: var(--color-warm-bg);
  border-color: var(--color-pine);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 20, 0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox-modal.active {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  position: relative;
  max-width: 960px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 36px rgba(0,0,0,0.5);
}
.lightbox-caption {
  color: #fff;
  margin-top: 12px;
  font-size: 1rem;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* Contact / Inquiries & Honest Form (No Fake Success Contract) */
.inquiry-section {
  padding: 80px 0;
  background: var(--color-warm-bg);
  border-top: 1px solid var(--color-border);
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.inquiry-info h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-alpine-dark);
  margin-bottom: 16px;
}
.inquiry-info p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.info-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.info-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-alpine-forest);
  flex-shrink: 0;
}
.info-content strong {
  display: block;
  font-size: 0.88rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}
.info-content a, .info-content span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-alpine-dark);
  text-decoration: none;
}
.info-content a:hover {
  text-decoration: underline;
}

/* Honest Contact Box (No Fake Form Success Contract) */
.contact-action-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-action-box h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-alpine-dark);
  margin-bottom: 14px;
}
.contact-notice-box {
  background: #fef3c7;
  border-left: 4px solid var(--color-amber);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: #92400e;
}
.call-direct-card {
  text-align: center;
  padding: 24px;
  background: var(--color-warm-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.call-direct-phone {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-alpine-forest);
  margin: 12px 0 16px 0;
  display: block;
  text-decoration: none;
}
.call-direct-phone:hover {
  text-decoration: underline;
}

/* Sub-page Specific Styles */
.page-hero {
  background-color: var(--color-alpine-dark);
  color: #fff;
  padding: 56px 0 64px 0;
  position: relative;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero-desc {
  font-size: 1.1rem;
  color: #e2e8f0;
  max-width: 680px;
}
.content-body {
  padding: 60px 0;
}
.content-article {
  max-width: 820px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.content-article h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin: 28px 0 14px 0;
  color: var(--color-alpine-dark);
}
.content-article h2:first-child {
  margin-top: 0;
}
.content-article p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-main);
  margin-bottom: 18px;
}
.content-article ul {
  margin-bottom: 24px;
  padding-left: 24px;
}
.content-article li {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

/* Site Footer */
.site-footer {
  background-color: var(--color-alpine-dark);
  color: #cbd5e1;
  padding: 60px 0 32px 0;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand h4 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 340px;
}
.footer-links-col h5 {
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}
.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #94a3b8;
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  color: #cbd5e1;
  text-decoration: none;
}
.footer-legal-links a:hover {
  color: #fff;
}

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

/* Responsive Composition */
@media (max-width: 900px) {
  .header-inner {
    height: 72px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    padding: 16px 24px;
  }
  .main-nav.open {
    display: block;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .nav-item {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .has-dropdown.expanded .dropdown-menu {
    display: block;
  }
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .route-panel.active {
    grid-template-columns: 1fr;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .matrix-grid {
    grid-template-columns: 1fr;
  }
  .content-article {
    padding: 24px 18px;
  }
}
