/* --- DESIGN SYSTEM: PRESET H (BOLD TYPOGRAPHY + ASYMMETRIC BLOCKS) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Oswald:wght@400;700&display=swap');

:root {
  --alt-bg: #FAF8F5;
  --alt-surface: #F3EFE9;
  --alt-accent-forest: #1F4529;
  --alt-accent-clay: #D35400;
  --alt-accent-clay-hover: #A04000;
  --alt-text-dark: #171E1A;
  --alt-text-light: #FAF8F5;
  --alt-border-dark: #171E1A;
  --alt-border-muted: rgba(23, 30, 26, 0.15);
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --space-scale: 12dvh;
  --radius-soft: 16px;
  --shadow-raised: 8px 8px 0px rgba(23, 30, 26, 0.9);
  --shadow-hover: 12px 12px 0px rgba(211, 84, 0, 0.9);
}

/* --- BASE STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--alt-bg);
  color: var(--alt-text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- SCROLL PROGRESS BAR --- */
.ar-scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--alt-accent-clay);
  z-index: 10001;
  width: 0%;
  animation: ar-progress-grow linear;
  animation-timeline: scroll();
}

@keyframes ar-progress-grow {
  to { width: 100%; }
}

/* --- HEADER --- */
.ar-header-main {
  background-color: #ffffff;
  border-bottom: 2px solid var(--alt-border-dark);
  position: sticky;
  top: 0;
  z-index: 10000;
}

.ar-header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ar-logo-svg {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ar-logo-svg span {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--alt-accent-forest);
  letter-spacing: -0.02em;
}

.ar-nav-list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.ar-nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  position: relative;
}

.ar-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--alt-accent-clay);
  transition: width 0.3s ease;
}

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

.ar-nav-link:hover {
  color: var(--alt-accent-clay);
}

/* --- RESPONSIVE HAMBURGER (CSS ONLY) --- */
.ar-burger-toggle {
  display: none;
}

.ar-burger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10002;
  border: none;
  background: transparent;
}

.ar-burger-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--alt-text-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- HERO SECTION (PRESET H: WORD-BY-WORD ASYMMETRIC) --- */
.ar-hero-section-asym {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-scale) 2rem;
  overflow: hidden;
  background: radial-gradient(circle, rgba(243, 239, 233, 0.5) 0%, rgba(250, 248, 245, 1) 100%);
}

.ar-hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

.ar-hero-container-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.ar-hero-word-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.ar-hero-word-item {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  display: block;
  text-transform: uppercase;
}

.ar-hero-word-item.word-left {
  align-self: flex-start;
  color: var(--alt-text-dark);
}

.ar-hero-word-item.word-right {
  align-self: flex-end;
  text-align: right;
  color: var(--alt-accent-forest);
}

.ar-hero-word-item.word-center-accent {
  align-self: center;
  color: var(--alt-accent-clay);
  text-shadow: var(--shadow-raised);
}

.ar-hero-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  border-top: 2px solid var(--alt-border-dark);
  padding-top: 2rem;
}

.ar-hero-sub-text {
  font-size: 1.25rem;
  max-width: 550px;
  font-weight: 300;
  color: var(--alt-text-dark);
}

.ar-hero-sub-text strong {
  font-weight: 600;
  color: var(--alt-accent-forest);
}

.ar-action-button-pill {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--alt-accent-clay);
  color: var(--alt-text-light);
  padding: 1.25rem 2.5rem;
  border: 2px solid var(--alt-border-dark);
  box-shadow: var(--shadow-raised);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ar-action-button-pill:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-hover);
  background-color: var(--alt-accent-clay-hover);
}

/* --- MASONRY CONTENT (PRESET H) --- */
.ar-masonry-content-section {
  padding: var(--space-scale) 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.ar-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}

.ar-masonry-item {
  border-top: 4px solid var(--alt-accent-forest);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.ar-masonry-item h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--alt-accent-forest);
}

.ar-masonry-item p {
  font-size: 1rem;
  color: var(--alt-text-dark);
  font-weight: 300;
}

.ar-masonry-icon-span {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* --- FULL-WIDTH IMAGE OVERLAY (PRESET H) --- */
.ar-fullwidth-image-span {
  position: relative;
  height: 60vh;
  min-height: 450px;
  background-image: url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  border-top: 2px solid var(--alt-border-dark);
  border-bottom: 2px solid var(--alt-border-dark);
}

.ar-image-overlay-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(23, 30, 26, 0.9) 0%, rgba(23, 30, 26, 0.3) 100%);
  z-index: 1;
}

.ar-image-overlay-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem;
  color: var(--alt-text-light);
  width: 100%;
}

.ar-image-overlay-content h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.ar-image-overlay-content p {
  font-size: 1.25rem;
  max-width: 650px;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* --- MANIFESTO LINES (PRESET H: FEATURES) --- */
.ar-manifesto-features-section {
  padding: var(--space-scale) 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ar-manifesto-heading {
  font-size: 3rem;
  margin-bottom: 4rem;
  text-align: center;
  color: var(--alt-accent-forest);
}

.ar-manifesto-list {
  display: flex;
  flex-direction: column;
}

.ar-manifesto-row {
  display: flex;
  align-items: baseline;
  padding: 2.5rem 0;
  border-bottom: 2px solid var(--alt-border-dark);
  transition: transform 0.2s ease;
}

.ar-manifesto-row:last-child {
  border-bottom: none;
}

.ar-manifesto-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--alt-accent-clay);
  min-width: 80px;
}

.ar-manifesto-content-body {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ar-manifesto-title-bold {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--alt-text-dark);
  min-width: 280px;
}

.ar-manifesto-short-phrase {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--alt-text-dark);
  flex: 1;
  max-width: 600px;
}

/* --- HOW IT WORKS (PRESET H: ASYMMETRIC ROTATED STEPS) --- */
.ar-steps-asym-section {
  background-color: var(--alt-surface);
  padding: var(--space-scale) 2rem;
  border-top: 2px solid var(--alt-border-dark);
  border-bottom: 2px solid var(--alt-border-dark);
}

.ar-steps-container-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.ar-steps-intro-title {
  font-size: 3rem;
  margin-bottom: 5rem;
  text-align: left;
}

.ar-steps-rotated-flex {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.ar-step-card-rotated {
  position: relative;
  flex: 1;
  min-width: 280px;
  padding: 3rem 2rem;
  background-color: #ffffff;
  border: 2px solid var(--alt-border-dark);
  box-shadow: var(--shadow-raised);
}

.ar-step-card-rotated:nth-child(1) {
  transform: rotate(-1.5deg);
}
.ar-step-card-rotated:nth-child(2) {
  transform: rotate(2deg);
  margin-top: 2rem;
}
.ar-step-card-rotated:nth-child(3) {
  transform: rotate(-1deg);
  margin-top: -1rem;
}

.ar-step-bg-num {
  position: absolute;
  top: -10px;
  right: 15px;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 700;
  color: var(--alt-accent-forest);
  opacity: 0.15;
  transform: rotate(-10deg);
  pointer-events: none;
}

.ar-step-card-rotated h4 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--alt-accent-forest);
  z-index: 2;
  position: relative;
}

.ar-step-card-rotated p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--alt-text-dark);
  z-index: 2;
  position: relative;
}

/* --- CTA STRIP (PRESET H) --- */
.ar-cta-strip-asym {
  background-color: var(--alt-accent-forest);
  color: var(--alt-text-light);
  padding: 6rem 3rem;
  border-bottom: 2px solid var(--alt-border-dark);
}

.ar-cta-strip-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.ar-cta-strip-slogan {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.1;
  max-width: 750px;
  text-transform: uppercase;
}

.ar-cta-strip-ghost-button {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--alt-text-light);
  background-color: transparent;
  padding: 1.25rem 3rem;
  border: 3px solid var(--alt-text-light);
  box-shadow: 6px 6px 0px var(--alt-accent-clay);
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.ar-cta-strip-ghost-button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0px var(--alt-accent-clay);
  background-color: var(--alt-text-light);
  color: var(--alt-accent-forest);
}

/* --- EXPERT PAGE (EDITORIAL PRESET H) --- */
.ar-expert-split-container {
  max-width: 1300px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: flex;
  gap: 5rem;
  align-items: stretch;
}

.ar-expert-bio-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ar-expert-bio-left h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--alt-accent-forest);
}

.ar-expert-bio-left h2 {
  font-size: 1.5rem;
  color: var(--alt-accent-clay);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.ar-dropcap {
  float: left;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 4px;
  color: var(--alt-accent-clay);
  font-weight: 700;
}

.ar-expert-bio-paragraph {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.ar-expert-image-right {
  flex: 0.8;
  min-height: 500px;
  background-image: url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  border: 3px solid var(--alt-border-dark);
  box-shadow: var(--shadow-raised);
}

.ar-expert-stats-row {
  max-width: 1300px;
  margin: 6rem auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.ar-expert-stat-item {
  flex: 1;
  min-width: 250px;
  border-left: 5px solid var(--alt-accent-clay);
  padding-left: 2rem;
}

.ar-expert-stat-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--alt-accent-forest);
  margin-bottom: 0.5rem;
}

.ar-expert-stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--alt-text-dark);
  letter-spacing: 0.05em;
}

/* --- RESERVE PAGE (PRESET H: TYPOGRAPHIC FORM) --- */
.ar-reserve-flex-layout {
  max-width: 1300px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: flex;
  gap: 6rem;
  flex-wrap: wrap;
}

.ar-reserve-info-side {
  flex: 1;
  min-width: 320px;
}

.ar-reserve-info-side h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--alt-accent-forest);
}

.ar-reserve-card-item {
  margin-bottom: 3rem;
}

.ar-reserve-card-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--alt-accent-clay);
}

.ar-reserve-card-item p {
  font-weight: 300;
  margin-bottom: 1rem;
}

.ar-reserve-checklist {
  list-style: none;
}

.ar-reserve-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 400;
}

.ar-reserve-bullet-dot {
  width: 12px;
  height: 12px;
  background-color: var(--alt-accent-forest);
  border-radius: 50%;
  display: inline-block;
}

.ar-reserve-form-side {
  flex: 1.2;
  min-width: 350px;
  background-color: var(--alt-surface);
  padding: 4rem 3rem;
  border: 2px solid var(--alt-border-dark);
  box-shadow: var(--shadow-raised);
}

.ar-reserve-form-side h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: var(--alt-text-dark);
}

.ar-form-underline-group {
  margin-bottom: 2.5rem;
  position: relative;
}

.ar-form-underline-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--alt-border-dark);
  padding: 0.75rem 0;
  font-size: 1.1rem;
  font-family: var(--font-body);
  color: var(--alt-text-dark);
  outline: none;
  transition: border-color 0.3s ease;
}

.ar-form-underline-field:focus {
  border-bottom-color: var(--alt-accent-clay);
}

.ar-form-label-floating {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--alt-accent-forest);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.ar-form-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 3rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 300;
}

.ar-form-checkbox-container input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--alt-accent-clay);
}

.ar-reserve-mailto-link {
  display: block;
  margin-top: 2rem;
  font-weight: 600;
  color: var(--alt-accent-clay);
  text-decoration: underline;
}

/* --- FAQ ACCORDION (CSS ONLY) --- */
.ar-faq-section-container {
  max-width: 1300px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.ar-faq-section-container h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--alt-accent-forest);
}

.ar-faq-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ar-faq-item {
  border-bottom: 2px solid var(--alt-border-dark);
  padding-bottom: 1.5rem;
}

.ar-faq-question-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--alt-text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 0;
}

.ar-faq-question-label::after {
  content: '+';
  font-size: 1.8rem;
  color: var(--alt-accent-clay);
  transition: transform 0.3s ease;
}

.ar-faq-input-trigger {
  display: none;
}

.ar-faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  font-weight: 300;
  font-size: 1.05rem;
  color: #333;
}

/* Open states */
.ar-faq-input-trigger:checked ~ .ar-faq-question-label::after {
  transform: rotate(45deg);
}

.ar-faq-input-trigger:checked ~ .ar-faq-answer-content {
  max-height: 500px;
  padding-top: 1rem;
}

/* --- LEGAL AND STATIC PAGES --- */
.ar-legal-markdown-container {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
  min-height: 80vh;
}

.ar-legal-markdown-container h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--alt-accent-clay);
  padding-bottom: 1rem;
}

.ar-legal-markdown-container h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--alt-accent-forest);
}

.ar-legal-markdown-container p {
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.ar-legal-markdown-container ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.ar-legal-markdown-container li {
  font-weight: 300;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* --- THANK YOU PAGE --- */
.ar-thank-hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(23, 30, 26, 0.85), rgba(23, 30, 26, 0.85)), url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  color: var(--alt-text-light);
  padding: 4rem 2rem;
  text-align: center;
}

.ar-thank-content-wrap {
  max-width: 700px;
}

.ar-thank-content-wrap h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--alt-accent-clay);
}

.ar-thank-content-wrap p {
  font-size: 1.35rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

/* --- COOKIE BANNER --- */
.ar-cookie-banner-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--alt-text-dark);
  color: var(--alt-text-light);
  border-top: 3px solid var(--alt-accent-clay);
  z-index: 99999;
  padding: 1.5rem 2rem;
  display: none;
}

.ar-cookie-banner-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ar-cookie-banner-inner p {
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 800px;
}

.ar-cookie-actions {
  display: flex;
  gap: 1rem;
}

.ar-cookie-btn {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ar-cookie-btn-accept {
  background-color: var(--alt-accent-clay);
  color: var(--alt-text-light);
}

.ar-cookie-btn-accept:hover {
  background-color: var(--alt-accent-clay-hover);
}

.ar-cookie-btn-decline {
  background-color: transparent;
  border-color: var(--alt-text-light);
  color: var(--alt-text-light);
}

.ar-cookie-btn-decline:hover {
  background-color: var(--alt-text-light);
  color: var(--alt-text-dark);
}

/* --- FOOTER --- */
.ar-footer-asym {
  background-color: var(--alt-text-dark);
  color: var(--alt-text-light);
  border-top: 3px solid var(--alt-border-dark);
  padding: 5rem 2rem 2rem 2rem;
}

.ar-footer-grid-top {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4rem;
  border-bottom: 1px solid rgba(250, 248, 245, 0.15);
  padding-bottom: 4rem;
}

.ar-footer-left-brand {
  max-width: 400px;
}

.ar-footer-logo-wrap {
  margin-bottom: 1.5rem;
}

.ar-footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.ar-footer-nav-link {
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.ar-footer-nav-link:hover {
  color: var(--alt-accent-clay);
}

.ar-footer-bottom-meta {
  max-width: 1300px;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ar-footer-disclaimer {
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.7;
  line-height: 1.5;
  border-left: 2px solid var(--alt-accent-clay);
  padding-left: 1rem;
}

.ar-footer-copyright-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.5;
}

/* --- ASYMMETRIC SCROLL ANIMATIONS (CSS-driven for viewports) --- */
.ar-asym-reveal-block {
  animation: ar-slide-up-asym linear both;
  animation-timeline: view();
  animation-range: entry 5% cover 30%;
}

@keyframes ar-slide-up-asym {
  from {
    opacity: 0;
    transform: translateY(40px) rotate(-1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .ar-masonry-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .ar-expert-split-container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .ar-expert-image-right {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  --space-scale: 8dvh;
  
  .ar-burger-btn {
    display: flex;
  }

  .ar-nav-list {
    position: fixed;
    top: 79px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 79px);
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: left 0.3s ease;
    border-top: 2px solid var(--alt-border-dark);
  }

  .ar-burger-toggle:checked ~ .ar-nav-list {
    left: 0;
  }

  .ar-burger-toggle:checked ~ .ar-burger-btn span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .ar-burger-toggle:checked ~ .ar-burger-btn span:nth-child(2) {
    opacity: 0;
  }

  .ar-burger-toggle:checked ~ .ar-burger-btn span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .ar-hero-word-item {
    font-size: 3rem;
  }
  
  .ar-hero-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .ar-steps-rotated-flex {
    flex-direction: column;
    gap: 3rem;
  }
  
  .ar-step-card-rotated {
    transform: none !important;
    margin-top: 0 !important;
  }
  
  .ar-manifesto-row {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  
  .ar-manifesto-num {
    min-width: auto;
  }
  
  .ar-reserve-flex-layout {
    flex-direction: column;
    gap: 4rem;
  }
  
  .ar-cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}