/* --- STYLING SYSTEM FOR MOVEMENT AND JOINT EDUCATION --- */

:root {
  /* Thematic Neumorphic Color Palette */
  --wellness-ambient-bg: #EAEFF3;
  --wellness-surface-soft: #EEF3F6;
  --wellness-accent-eco: #2F6C53;
  --wellness-accent-eco-hover: #1E4636;
  --wellness-accent-light: #6DA68F;
  --wellness-ink-main: #1D2A32;
  --wellness-ink-dim: #4B5E6B;
  --wellness-white: #FFFFFF;
  
  /* Neumorphic Shadows (Elevated and Depressed) */
  --wellness-shadow-out: 8px 8px 16px rgba(163, 177, 198, 0.6), -8px -8px 16px rgba(255, 255, 255, 0.9);
  --wellness-shadow-in: inset 6px 6px 12px rgba(163, 177, 198, 0.5), inset -6px -6px 12px rgba(255, 255, 255, 0.9);
  
  /* Layout Constants */
  --wellness-radius-soft: 20px;
  --wellness-radius-pill: 999px;
  --wellness-padding-unit: 10dvh;
  
  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* Reset & Global Base HTML */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--wellness-ambient-bg);
  color: var(--wellness-ink-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wellness-ink-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Scroll-Driven Progress Bar */
.artic-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background: var(--wellness-accent-eco);
  z-index: 99999;
  animation: artic-horizontal-progress linear;
  animation-timeline: scroll();
}

@keyframes artic-horizontal-progress {
  to { width: 100%; }
}

/* Viewport Scroll Entry Transitions */
.artic-scroll-reveal {
  animation: artic-fade-up-view linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

@keyframes artic-fade-up-view {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base Neumorphic Elements */
.artic-neumorphic-out {
  background: var(--wellness-surface-soft);
  border-radius: var(--wellness-radius-soft);
  box-shadow: var(--wellness-shadow-out);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.artic-neumorphic-in {
  background: var(--wellness-surface-soft);
  border-radius: var(--wellness-radius-soft);
  box-shadow: var(--wellness-shadow-in);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- HEADER / NAVIGATION (Preset G) --- */
.artic-navbar-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--wellness-surface-soft);
  box-shadow: var(--wellness-shadow-out);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1rem 2rem;
}

.artic-navbar-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.artic-logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.artic-logo-svg {
  width: 42px;
  height: 42px;
  fill: var(--wellness-accent-eco);
}

.artic-logo-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--wellness-ink-main);
}

.artic-navbar-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.artic-navbar-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 0.5rem 0.25rem;
  border-bottom: 2px solid transparent;
}

.artic-navbar-link:hover,
.artic-navbar-link.artic-active-link {
  color: var(--wellness-accent-eco);
  border-bottom: 2px solid var(--wellness-accent-eco);
}

/* Mobile Hamburger Menu (Pure CSS) */
.artic-nav-toggle-input {
  display: none;
}

.artic-nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.artic-nav-toggle-label span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--wellness-ink-main);
  transition: all 0.3s ease;
  border-radius: var(--wellness-radius-pill);
}

/* Responsive Menu logic */
@media (max-width: 768px) {
  .artic-nav-toggle-label {
    display: flex;
  }

  .artic-navbar-list {
    position: fixed;
    top: 74px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 74px);
    background: var(--wellness-surface-soft);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 8px 16px rgba(0,0,0,0.05);
  }

  .artic-navbar-link {
    font-size: 1.25rem;
  }

  .artic-nav-toggle-input:checked ~ .artic-navbar-list {
    left: 0;
  }

  .artic-nav-toggle-input:checked ~ .artic-nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .artic-nav-toggle-input:checked ~ .artic-nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .artic-nav-toggle-input:checked ~ .artic-nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* --- COMMON CONTAINER (No forbidden string '.container') --- */
.artic-viewport-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--wellness-padding-unit) 2rem;
}

/* --- HERO SEGMENT (PRESET G - SPLIT) --- */
.artic-hero-shell {
  display: flex;
  align-items: center;
  gap: 4rem;
  min-height: 80vh;
}

.artic-hero-content {
  flex: 1.2;
  position: relative;
}

.artic-hero-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  z-index: 10;
  max-width: 280px;
}

.artic-badge-icon {
  background: var(--wellness-accent-eco);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wellness-white);
  font-weight: bold;
}

.artic-badge-txt {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.artic-hero-media {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.artic-hero-frame {
  max-width: 100%;
  border-radius: 32px;
  padding: 15px;
}

.artic-hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.artic-hero-title {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.artic-hero-subtitle {
  font-size: 1.15rem;
  color: var(--wellness-ink-dim);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

@media (max-width: 991px) {
  .artic-hero-shell {
    flex-direction: column;
    gap: 3rem;
    padding-top: 4dvh;
    padding-bottom: 4dvh;
  }
  .artic-hero-content {
    flex: none;
    width: 100%;
  }
  .artic-hero-media {
    flex: none;
    width: 100%;
  }
  .artic-hero-title {
    font-size: 2.25rem;
  }
}

/* --- ACTION UTILITIES (No forbidden string '.btn') --- */
.artic-action-solid {
  display: inline-block;
  background: var(--wellness-accent-eco);
  color: var(--wellness-white);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2.25rem;
  border-radius: var(--wellness-radius-pill);
  box-shadow: 0 4px 10px rgba(47, 108, 83, 0.3);
  border: 2px solid transparent;
}

.artic-action-solid:hover {
  background: var(--wellness-accent-eco-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 108, 83, 0.4);
}

.artic-action-neumorphic {
  display: inline-block;
  background: var(--wellness-surface-soft);
  color: var(--wellness-accent-eco);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2.25rem;
  border-radius: var(--wellness-radius-pill);
  box-shadow: var(--wellness-shadow-out);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.artic-action-neumorphic:hover {
  box-shadow: var(--wellness-shadow-in);
  color: var(--wellness-accent-eco-hover);
}

/* --- PROBLEM & SOLUTION GRID (Preset G) --- */
.artic-pain-relief-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: var(--wellness-padding-unit);
}

.artic-pain-item {
  padding: 2.5rem;
}

.artic-pain-item--problem {
  background: #FCE8E6; /* very soft elegant dynamic warm-red tone */
  border-radius: var(--wellness-radius-soft);
  box-shadow: inset 4px 4px 10px rgba(220,100,100,0.1);
}

.artic-pain-item--solution {
  background: #E6F3EE; /* soft green tone fitting accent */
  border-radius: var(--wellness-radius-soft);
  box-shadow: inset 4px 4px 10px rgba(47,108,83,0.1);
}

.artic-pain-header {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.artic-pain-header-icon {
  width: 24px;
  height: 24px;
}

.artic-pain-header--problem-color {
  color: #C0392B;
}

.artic-pain-header--solution-color {
  color: var(--wellness-accent-eco);
}

.artic-checklist {
  list-style: none;
}

.artic-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.artic-checklist-item::before {
  content: "•";
  font-size: 1.5rem;
  line-height: 1;
}

.artic-pain-item--problem .artic-checklist-item::before {
  color: #C0392B;
}

.artic-pain-item--solution .artic-checklist-item::before {
  color: var(--wellness-accent-eco);
}

/* Big Image Plate underneath with Text Overlay */
.artic-landscape-plate {
  position: relative;
  height: 45vh;
  border-radius: var(--wellness-radius-soft);
  overflow: hidden;
  box-shadow: var(--wellness-shadow-out);
}

.artic-landscape-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artic-landscape-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 42, 50, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
}

.artic-landscape-text {
  color: var(--wellness-white);
  font-size: 1.85rem;
  font-family: var(--font-display);
  max-width: 800px;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .artic-pain-relief-strip {
    grid-template-columns: 1fr;
  }
  .artic-landscape-text {
    font-size: 1.3rem;
  }
}

/* --- FEATURES GRID (Preset G - Neumorphic Grid & Inner Shadows) --- */
.artic-features-shelf {
  text-align: center;
  margin-bottom: var(--wellness-padding-unit);
}

.artic-shelf-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.artic-shelf-subtitle {
  color: var(--wellness-ink-dim);
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.artic-grid-auto-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.artic-feature-card {
  padding: 3rem 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Inset Neumorphism for default state */
.artic-feature-card.artic-neumorphic-in {
  /* established in common selectors */
}

/* Inverts hover box-shadow to Raised/Elevated effect */
.artic-feature-card:hover {
  transform: translateY(-8px);
  background: var(--wellness-surface-soft);
  box-shadow: var(--wellness-shadow-out);
}

.artic-feature-icon-wrapper {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--wellness-shadow-out);
  background: var(--wellness-surface-soft);
  transition: all 0.3s ease;
}

.artic-feature-card:hover .artic-feature-icon-wrapper {
  box-shadow: var(--wellness-shadow-in);
}

.artic-feature-svg {
  width: 32px;
  height: 32px;
  fill: var(--wellness-accent-eco);
}

.artic-feature-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.artic-feature-body {
  font-size: 0.95rem;
  color: var(--wellness-ink-dim);
}

/* --- STEPPER PROCESS TIMELINE (Preset G) --- */
.artic-stepper-segment {
  margin-bottom: var(--wellness-padding-unit);
}

.artic-stepper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 3.5rem;
}

/* Stepper Connection Bridge line */
.artic-stepper-row::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  border-top: 3px dotted var(--wellness-accent-light);
  transform: translateY(-50%);
  z-index: 1;
}

.artic-stepper-pill {
  position: relative;
  z-index: 2;
  border-radius: var(--wellness-radius-pill);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 250px;
}

.artic-stepper-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--wellness-accent-eco);
  color: var(--wellness-white);
  font-family: var(--font-display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(47, 108, 83, 0.2);
}

.artic-stepper-word {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}

/* Bottom Grid of step details */
.artic-stepper-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.artic-detail-card {
  padding: 1.5rem;
}

.artic-detail-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--wellness-accent-eco);
}

.artic-detail-desc {
  font-size: 0.95rem;
  color: var(--wellness-ink-dim);
}

@media (max-width: 991px) {
  .artic-stepper-row {
    flex-direction: column;
    gap: 2.5rem;
  }
  .artic-stepper-row::before {
    display: none;
  }
  .artic-stepper-details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- CTA STRIP (Preset G - Centered floating strip) --- */
.artic-action-center-wrapper {
  margin-bottom: var(--wellness-padding-unit);
  display: flex;
  justify-content: center;
}

.artic-cta-focused-card {
  max-width: 800px;
  width: 100%;
  padding: 4rem 3rem;
  text-align: center;
}

.artic-cta-card-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.artic-cta-card-desc {
  color: var(--wellness-ink-dim);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- STATS GRID (Used in expert.html / reserve.html) --- */
.artic-stats-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: var(--wellness-padding-unit);
}

.artic-stat-cell {
  padding: 2.5rem;
  text-align: center;
}

.artic-stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--wellness-accent-eco);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.artic-stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wellness-ink-dim);
  letter-spacing: 0.05em;
}

/* --- ALTERNATING INFO ROWS (expert.html) --- */
.artic-alternating-shelf {
  display: flex;
  flex-direction: column;
  gap: var(--wellness-padding-unit);
  margin-bottom: var(--wellness-padding-unit);
}

.artic-info-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.artic-info-row--flipped {
  flex-direction: row-reverse;
}

.artic-info-text-col {
  flex: 1.2;
}

.artic-info-media-col {
  flex: 0.8;
}

.artic-info-img-box {
  padding: 12px;
  border-radius: var(--wellness-radius-soft);
}

.artic-info-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--wellness-radius-soft) - 6px);
  object-fit: cover;
  display: block;
}

.artic-info-tag {
  color: var(--wellness-accent-eco);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  letter-spacing: 0.1em;
}

.artic-info-heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.artic-info-paragraph {
  color: var(--wellness-ink-dim);
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .artic-info-row,
  .artic-info-row--flipped {
    flex-direction: column;
    gap: 2rem;
  }
}

/* --- RESERVATION LAYOUT (reserve.html) --- */
.artic-booking-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--wellness-padding-unit);
}

.artic-centered-form-frame {
  max-width: 680px;
  width: 100%;
  padding: 3.5rem 2.5rem;
}

.artic-form-intro-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.artic-form-intro-text {
  text-align: center;
  color: var(--wellness-ink-dim);
  margin-bottom: 2.5rem;
}

.artic-field-group {
  margin-bottom: 1.75rem;
}

.artic-field-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.artic-input-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  background: var(--wellness-surface-soft);
  box-shadow: var(--wellness-shadow-in);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--wellness-ink-main);
  outline: none;
  transition: all 0.3s ease;
}

.artic-input-control:focus {
  box-shadow: var(--wellness-shadow-out);
}

.artic-area-control {
  height: 120px;
  resize: none;
}

/* Checkbox Styling */
.artic-boolean-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
  cursor: pointer;
  user-select: none;
}

.artic-boolean-input {
  appearance: none;
  background: var(--wellness-surface-soft);
  box-shadow: var(--wellness-shadow-in);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.artic-boolean-input:checked {
  box-shadow: var(--wellness-shadow-out);
}

.artic-boolean-input:checked::after {
  content: "✔";
  color: var(--wellness-accent-eco);
  font-size: 0.8rem;
}

.artic-boolean-description {
  font-size: 0.85rem;
  color: var(--wellness-ink-dim);
  line-height: 1.4;
}

.artic-boolean-link {
  color: var(--wellness-accent-eco);
  text-decoration: underline;
}

.artic-action-submit-block {
  width: 100%;
  text-align: center;
}

.artic-action-button-form {
  border: none;
  cursor: pointer;
  width: 100%;
}

/* Contact Info Area */
.artic-contact-info-plate {
  margin-top: 3.5rem;
  padding: 2rem;
  text-align: center;
}

.artic-email-mailto-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--wellness-accent-eco);
}

.artic-email-mailto-link:hover {
  color: var(--wellness-accent-eco-hover);
}

/* FAQ Accordion Section (reserve.html) */
.artic-faq-rack {
  max-width: 800px;
  margin: 0 auto var(--wellness-padding-unit) auto;
}

.artic-faq-rack-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.artic-faq-node {
  margin-bottom: 1.5rem;
  border-radius: var(--wellness-radius-soft);
  overflow: hidden;
}

.artic-faq-node-summary {
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.3s ease;
}

.artic-faq-node-details {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  font-size: 0.95rem;
  color: var(--wellness-ink-dim);
}

/* Using simple details/summary tag emulation without JS */
details[open] .artic-faq-node-details {
  padding: 1rem 2rem 2rem 2rem;
  max-height: 500px;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: bold;
}

details[open] summary::after {
  content: "−";
}

/* --- DOCUMENT SHELL (Privacy Policy / Terms) --- */
.artic-document-board {
  max-width: 800px;
  margin: 0 auto;
}

.artic-document-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.artic-document-meta {
  color: var(--wellness-ink-dim);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  display: block;
}

.artic-document-para {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.artic-document-divider {
  margin: 3rem 0;
  border: 0;
  height: 2px;
  background: var(--wellness-accent-light);
  opacity: 0.3;
}

/* --- FOOTER REGION (Common) --- */
.artic-footer-bar {
  background: var(--wellness-ink-main);
  color: #BECBD3;
  padding: 4rem 2rem 2rem 2rem;
  border-top: 4px solid var(--wellness-accent-eco);
}

.artic-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.artic-footer-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

.artic-footer-logo-title {
  color: var(--wellness-white);
  font-size: 1.35rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.artic-footer-logo-svg {
  width: 42px;
  height: 42px;
  fill: var(--wellness-white);
}

.artic-footer-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.artic-footer-nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
}

.artic-footer-nav-link:hover {
  color: var(--wellness-white);
}

.artic-disclaimer-box {
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.artic-footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #8C9CA6;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .artic-footer-upper {
    flex-direction: column;
    text-align: center;
  }
  .artic-footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
  .artic-footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* --- COOKIE CONSENT BOX --- */
.artic-cookie-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--wellness-surface-soft);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
  border-top: 2px solid var(--wellness-accent-eco);
  z-index: 99999;
  padding: 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.artic-cookie-box.artic-cookie-visible {
  transform: translateY(0);
}

.artic-cookie-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.artic-cookie-text {
  font-size: 0.9rem;
  color: var(--wellness-ink-main);
  line-height: 1.5;
}

.artic-cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.artic-cookie-btn {
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--wellness-radius-pill);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.artic-cookie-btn--accept {
  background: var(--wellness-accent-eco);
  color: var(--wellness-white);
}

.artic-cookie-btn--accept:hover {
  background: var(--wellness-accent-eco-hover);
}

.artic-cookie-btn--decline {
  background: var(--wellness-surface-soft);
  color: var(--wellness-ink-dim);
  box-shadow: var(--wellness-shadow-out);
}

.artic-cookie-btn--decline:hover {
  box-shadow: var(--wellness-shadow-in);
}

@media (max-width: 768px) {
  .artic-cookie-shell {
    flex-direction: column;
    text-align: center;
  }
  .artic-cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}