/* ==========================================================================
   MASTER DESIGN SYSTEM - YOROTRAILHOUSE.SBS (PIRATE SLOT THEME)
   ========================================================================== */

/* Typography & Variable System */
:root {
  --color-bg-deep: #050b14;
  --color-bg-ocean: #091627;
  --color-surface: #102136;
  --color-surface-hover: #162c47;
  --color-gold-primary: #d4af37;
  --color-gold-glow: #ffdf7a;
  --color-gold-dark: #aa8411;
  --color-crimson: #8b0000;
  --color-crimson-hover: #b22222;
  --color-text-light: #f4ebd0;
  --color-text-white: #ffffff;
  --color-text-muted: #8fa0b5;
  --font-family-display: 'Georgia', 'Playfair Display', serif;
  --font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max-width: 1280px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-deep);
  color: var(--color-text-light);
  font-family: var(--font-family-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Base Typo */
h1, h2, h3, h4 {
  font-family: var(--font-family-display);
  color: var(--color-text-white);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 2rem; position: relative; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin-bottom: 1rem; }
p { font-size: 1.05rem; color: var(--color-text-muted); margin-bottom: 1.5rem; }
a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }

/* Global Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Spacing */
.section-padding {
  padding: 100px 0;
}

/* Decorative Gold Divider */
h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
  margin: 15px auto 0 auto;
}

/* Buttons System */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-primary) 50%, var(--color-gold-glow) 100%);
  color: #050b14;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-gold-primary);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--color-gold-primary) 0%, var(--color-gold-glow) 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-text-white);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 13px 31px;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--color-gold-primary);
  color: var(--color-gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   TOP DISCLAIMER BAR
   ========================================================================== */
.top-disclaimer-bar {
  background-color: var(--color-crimson);
  color: var(--color-text-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
  position: relative;
  z-index: 9999;
  border-bottom: 1px solid var(--color-gold-primary);
}

/* ==========================================================================
   SLIM STICKY HEADER
   ========================================================================== */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(5, 11, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

.slim-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  fill: var(--color-gold-primary);
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.6));
}

.logo-text {
  font-family: var(--font-family-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-text-white);
  letter-spacing: 0.05em;
}

.logo-text span {
  color: var(--color-gold-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold-primary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* Hamburger Menu Icon */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--color-text-light);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at center, var(--color-bg-ocean) 0%, var(--color-bg-deep) 100%);
  overflow: hidden;
  padding: 80px 0;
  border-bottom: 2px solid rgba(212, 175, 55, 0.15);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(139, 0, 0, 0.2);
  border: 1px solid var(--color-gold-primary);
  color: var(--color-gold-glow);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.hero-title span {
  color: var(--color-gold-primary);
  display: block;
  font-size: 1.1em;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Interactive Map/Chest Element styling */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(16, 33, 54, 0.8) 0%, rgba(5, 11, 20, 0.9) 100%);
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--color-gold-primary);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

/* ==========================================================================
   GAME IFRAME CONTAINER (THE HEART OF THE ACTION)
   ========================================================================== */
.game-integration-section {
  background: radial-gradient(circle at top, #0e233c 0%, var(--color-bg-deep) 100%);
  padding: 80px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.game-window-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--color-gold-primary);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 30px rgba(212, 175, 55, 0.2);
}

.game-window-header {
  background-color: #102136;
  border-bottom: 2px solid var(--color-gold-primary);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-window-title {
  font-family: var(--font-family-display);
  font-size: 1.1rem;
  color: var(--color-gold-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.game-status-dot {
  width: 10px;
  height: 10px;
  background-color: #00ff66;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #00ff66;
}

.game-window-controls {
  display: flex;
  gap: 8px;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-text-muted);
}

.control-dot.red { background-color: #ff5f56; }
.control-dot.yellow { background-color: #ffbd2e; }
.control-dot.green { background-color: #27c93f; }

/* The Actual Iframe Aspect Ratio & Wrapper */
.game-frame-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: #000;
}

.game-frame-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #091627;
  padding: 15px 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.meta-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold-primary);
}

/* ==========================================================================
   GRID CARD STYLES (BENEFITS & VISUALS)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--color-surface);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 40px 30px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-gold-primary);
  transform: scaleY(0);
  transition: var(--transition-smooth);
  transform-origin: bottom;
}

.feature-card:hover {
  transform: translateY(-5px);
  background-color: var(--color-surface-hover);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-card:hover::before {
  transform: scaleY(1);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon-box svg {
  width: 30px;
  height: 30px;
  fill: var(--color-gold-primary);
}

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-ocean) 100%);
  padding: 80px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-family-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-gold-primary);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-text-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 5px;
}

/* ==========================================================================
   ABOUT PAGE BRAND CORE SYSTEM
   ========================================================================== */
.brand-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content-block {
  padding-right: 20px;
}

.about-highlight-box {
  background-color: var(--color-surface);
  border-left: 4px solid var(--color-gold-primary);
  padding: 24px;
  margin-bottom: 30px;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.vision-mission-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.v-card {
  background-color: var(--color-bg-ocean);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 30px;
  border-radius: var(--border-radius-md);
}

/* ==========================================================================
   BLOG GRID & ARTICLE PRESENTATION
   ========================================================================== */
.blog-layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.blog-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.blog-img-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--color-crimson);
  color: var(--color-text-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.blog-body {
  padding: 30px;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-family: var(--font-family-display);
  font-size: 1.3rem;
  color: var(--color-text-white);
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.blog-read-more {
  color: var(--color-gold-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-read-more:hover {
  color: var(--color-gold-glow);
}

/* ==========================================================================
   CONTACT FORM & INTERACTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info-panel {
  background-color: var(--color-surface);
  padding: 40px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold-primary);
}

.info-title {
  font-size: 1rem;
  color: var(--color-text-white);
  font-weight: 600;
  margin-bottom: 4px;
}

.info-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Contact Form Styling */
.contact-form-container {
  background-color: var(--color-surface);
  padding: 45px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: var(--color-bg-ocean);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius-sm);
  padding: 14px 18px;
  color: var(--color-text-white);
  font-family: var(--font-family-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* Form success message simulator */
.form-success-message {
  display: none;
  background-color: rgba(0, 255, 102, 0.1);
  border: 1px solid #00ff66;
  color: #00ff66;
  padding: 16px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 24px;
  text-align: center;
  font-weight: 600;
}

/* ==========================================================================
   FAQ ACCORDION SYSTEM
   ========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-surface);
  border: 1px solid rgba(212, 175, 55, 0.1);
  margin-bottom: 16px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 24px 30px;
  text-align: left;
  cursor: pointer;
  color: var(--color-text-white);
  font-family: var(--font-family-display);
  font-size: 1.15rem;
}

.faq-trigger:hover {
  background-color: rgba(212, 175, 55, 0.05);
}

.faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--color-gold-primary);
  transition: var(--transition-smooth);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 30px;
}

.faq-content p {
  padding-bottom: 24px;
  margin: 0;
}

/* Custom state for open panels toggled by CSS Class in JS */
.faq-item.active .faq-content {
  max-height: 300px; /* safety limit */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   LEGAL PAGES STRUCTURE
   ========================================================================== */
.legal-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-surface);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 50px;
  border-radius: var(--border-radius-md);
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.legal-section {
  margin-bottom: 35px;
}

.legal-section h3 {
  color: var(--color-gold-primary);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.legal-section ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.legal-section li {
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  background-color: rgba(16, 33, 54, 0.98);
  border: 1px solid var(--color-gold-primary);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  padding: 24px;
  border-radius: var(--border-radius-md);
  z-index: 10000;
  display: none; /* Controlled by local storage check */
}

.cookie-title {
  font-family: var(--font-family-display);
  font-size: 1.15rem;
  color: var(--color-gold-glow);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
}

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

.cookie-btn {
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
}

.cookie-btn-accept {
  background: var(--color-gold-primary);
  color: #050b14;
  border: 1px solid var(--color-gold-primary);
}

.cookie-btn-accept:hover {
  background: var(--color-gold-glow);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-text-muted);
}

.cookie-btn-reject:hover {
  border-color: var(--color-gold-primary);
  color: var(--color-gold-primary);
}

/* ==========================================================================
   FOOTER (MANDATORY & FULLY STYLED)
   ========================================================================== */
.footer-wrapper {
  background-color: #03070d;
  border-top: 3px solid var(--color-gold-primary);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col-desc {
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-white);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-link-item {
  margin-bottom: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-link:hover {
  color: var(--color-gold-primary);
  padding-left: 5px;
}

.footer-contact-info {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  fill: var(--color-gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Bottom Footer (Copyright & Legal Disclaimer) */
.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-crimson);
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-finland-info {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 10px;
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-frame {
    margin: 40px auto 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .brand-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Mobile Slim Sticky Navigation Toggle */
  .hamburger {
    display: block;
    z-index: 1001;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-bg-deep);
    border-left: 2px solid var(--color-gold-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 1000;
  }
  .nav-menu.open {
    right: 0;
  }
  .header-cta {
    display: none; /* Hide top CTA inside header to keep mobile slim */
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    left: 24px;
    right: 24px;
    max-width: 100%;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-img {
  animation: float 4s ease-in-out infinite;
}