/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700;900&family=Poppins:wght@300;400;600;700&display=swap');

/* CUSTOM THEMATIC VARIABLES */
:root {
  --motion-bg: #fdfdfc;
  --motion-surface: #f5f3ef;
  --motion-ink: #111111;
  --motion-accent: #d45d34;
  --motion-accent-hover: #b84c27;
  --motion-muted: #5e5a54;
  --motion-border-color: #2c2a27;
  --motion-border-light: #e3ded8;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --site-spacing-normal: 10dvh;
  --site-radius-soft: 16px;
  --site-radius-pill: 999px;
  --site-shadow-raised: 0 10px 30px rgba(18, 18, 18, 0.08);
}

/* GENERAL RESET & BASE STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--motion-ink);
}

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

/* SCROLL PROGRESS BAR (CSS ONLY) */
@keyframes progress-grow {
  to { width: 100%; }
}
.motion-scroll-track {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--motion-accent);
  animation: progress-grow linear;
  animation-timeline: scroll(root);
}

/* HEADER STYLE (PRESET H - MINIMALIST DISPLAY) */
.motion-head-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(253, 253, 252, 0.95);
  border-bottom: 1px solid var(--motion-border-light);
  backdrop-filter: blur(8px);
}

.motion-head-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  position: relative;
}

.motion-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.motion-brand-logo {
  width: 38px;
  height: 38px;
  fill: var(--motion-accent);
}

.motion-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--motion-ink);
}

/* NAVIGATION LINKS - SMALL CAPS */
.motion-nav-list {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.motion-nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--motion-muted);
}

.motion-nav-link:hover, .motion-nav-link.active {
  color: var(--motion-accent);
}

/* CSS HAMBURGER FOR MOBILE */
.motion-menu-toggle {
  display: none;
}

.motion-hamburger-icon {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1010;
}

.motion-hamburger-icon span {
  width: 28px;
  height: 3px;
  background-color: var(--motion-ink);
  transition: all 0.3s ease;
}

/* HERO SECTION (PRESET H - WORD BY WORD ASYMMETRIC) */
.motion-hero-space {
  position: relative;
  min-height: 90dvh;
  display: flex;
  align-items: center;
  padding: var(--site-spacing-normal) 2rem;
  background-image: url('img/bg.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.motion-hero-space::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(253, 253, 252, 0.94); /* Extremely faint bg opacity look for Preset H */
  z-index: -1;
}

.motion-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.motion-word-headline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.motion-word-line {
  display: block;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.9;
}

.motion-word-line.offset-right {
  align-self: flex-end;
  text-align: right;
  color: var(--motion-accent);
}

.motion-word-line.offset-left {
  align-self: flex-start;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: var(--motion-accent);
}

.motion-hero-bio-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.motion-hero-desc {
  max-width: 500px;
  font-size: 1.15rem;
  color: var(--motion-muted);
}

/* BUTTONS (PILL STYLE) */
.motion-action-pill {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  background-color: var(--motion-accent);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--site-radius-pill);
  box-shadow: var(--site-shadow-raised);
  border: 2px solid var(--motion-accent);
}

.motion-action-pill:hover {
  background-color: var(--motion-accent-hover);
  border-color: var(--motion-accent-hover);
  transform: translateY(-2px);
}

.motion-action-ghost {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  background-color: transparent;
  color: var(--motion-ink);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--site-radius-pill);
  border: 2px solid var(--motion-ink);
}

.motion-action-ghost:hover {
  background-color: var(--motion-ink);
  color: var(--motion-bg);
}

/* MASONRY TEXT SECTION (PRESET H - 3 COL MASONRY) */
.motion-masonry-zone {
  padding: var(--site-spacing-normal) 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.motion-masonry-grid {
  columns: 3;
  column-gap: 4rem;
  column-rule: 1px solid var(--motion-border-light);
}

.motion-masonry-block {
  break-inside: avoid;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
}

.motion-masonry-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.motion-masonry-text {
  color: var(--motion-muted);
  margin-bottom: 1.5rem;
}

.motion-masonry-icon {
  width: 48px;
  height: 48px;
  fill: var(--motion-accent);
  margin-top: auto;
  align-self: flex-start;
}

/* FULLWIDTH BANNER BLOCK (PRESET H) */
.motion-bg2-banner {
  height: 50dvh;
  min-height: 400px;
  background-image: url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 4rem;
  margin-top: 4rem;
}

.motion-bg2-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.4) 100%);
}

.motion-banner-overlay-text {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 600px;
}

.motion-banner-overlay-text h2 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

/* FEATURES (PRESET H - INLINE MANIFESTO LINES) */
.motion-manifesto-zone {
  padding: var(--site-spacing-normal) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.motion-manifesto-section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.motion-manifesto-container {
  display: flex;
  flex-direction: column;
}

.motion-manifesto-row {
  display: flex;
  align-items: baseline;
  padding: 2.5rem 0;
  gap: 2.5rem;
  border-bottom: 1px solid var(--motion-border-light);
}

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

.motion-manifesto-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--motion-accent);
  width: 60px;
  flex-shrink: 0;
}

.motion-manifesto-row h3 {
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
  margin: 0;
}

.motion-manifesto-desc {
  color: var(--motion-muted);
  font-size: 1.1rem;
}

/* HOW IT WORKS (PRESET H - ROTATED STEP NUMBERS ASYMMETRICAL) */
.motion-steps-zone {
  padding: var(--site-spacing-normal) 2rem;
  background-color: var(--motion-surface);
}

.motion-steps-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.motion-steps-header {
  margin-bottom: 5rem;
  text-align: center;
}

.motion-steps-asym-flow {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
}

.motion-step-card {
  flex: 1;
  min-width: 300px;
  position: relative;
  padding-top: 3rem;
}

/* Asymmetric offsets for Preset H */
.motion-step-card:nth-child(2) {
  margin-top: 4rem;
}
.motion-step-card:nth-child(3) {
  margin-top: 2rem;
}

.motion-step-bg-num {
  position: absolute;
  top: -20px;
  left: 0;
  font-family: var(--font-display);
  font-size: 7.5rem;
  font-weight: 900;
  color: var(--motion-accent);
  opacity: 0.15;
  transform: rotate(-10deg);
  pointer-events: none;
  z-index: 1;
}

.motion-step-card-content {
  position: relative;
  z-index: 2;
}

.motion-step-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.motion-step-description {
  color: var(--motion-muted);
}

/* CTA STRIP (PRESET H - TYPOGRAPHIC BIG SLOGAN) */
.motion-accent-cta-bar {
  background-color: var(--motion-border-color);
  color: #ffffff;
  padding: 6rem 2rem;
}

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

.motion-cta-slogan {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 800px;
  color: #ffffff;
}

.motion-cta-slogan span {
  color: var(--motion-accent);
}

/* EXPERT PAGE STYLES (PRESET H - ASYMMETRICAL EDITORIAL) */
.motion-expert-hero {
  padding: 4rem 2rem;
  background-color: var(--motion-surface);
  text-align: center;
}

.motion-expert-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
}

.motion-editorial-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--site-spacing-normal) 2rem;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.motion-editorial-bio {
  flex: 1;
}

.motion-expert-dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 5.5rem;
  float: left;
  line-height: 0.8;
  padding-right: 12px;
  color: var(--motion-accent);
  font-weight: 900;
}

.motion-editorial-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.motion-editorial-image-box {
  flex: 1;
  position: relative;
}

.motion-editorial-image-box img {
  width: 100%;
  height: auto;
  border-radius: var(--site-radius-soft);
  box-shadow: var(--site-shadow-raised);
}

/* PLAIN TEXT STATS (PRESET H - NO BOXES) */
.motion-plain-stats-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  border-top: 1px solid var(--motion-border-light);
  border-bottom: 1px solid var(--motion-border-light);
}

.motion-plain-stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.motion-plain-stat-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--motion-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.motion-plain-stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--motion-muted);
  font-weight: 600;
}

/* RESERVE PAGE STYLES */
.motion-reserve-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--site-spacing-normal) 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.motion-info-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.motion-info-card {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--motion-border-light);
}

.motion-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.motion-info-bullet-list {
  list-style: none; /* custom styling */
  margin-top: 1rem;
}

.motion-info-bullet-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--motion-muted);
}

.motion-info-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: var(--motion-accent);
  border-radius: 50%;
}

/* RESERVE FORM (UNDERLINE FIELDS ONLY - PRESET H) */
.motion-asym-form-side {
  background-color: var(--motion-surface);
  padding: 4rem 3rem;
  border-radius: var(--site-radius-soft);
  max-width: 640px;
  width: 100%;
  justify-self: center;
}

.motion-underline-form-group {
  margin-bottom: 2.5rem;
}

.motion-underline-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--motion-ink);
}

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

.motion-underline-input:focus {
  border-bottom-color: var(--motion-accent);
}

.motion-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.motion-checkbox-input {
  width: 20px;
  height: 20px;
  accent-color: var(--motion-accent);
  margin-top: 3px;
}

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

/* FAQ (ACCORDION STYLE - ALL OPEN AS PER PRESET RULES) */
.motion-faq-zone {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--site-spacing-normal) 2rem;
}

.motion-faq-item {
  margin-bottom: 2.5rem;
}

.motion-faq-question {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--motion-ink);
  margin-bottom: 0.5;
}

.motion-faq-answer {
  color: var(--motion-muted);
}

/* FOOTER */
.motion-foot-box {
  background-color: var(--motion-border-color);
  color: #eeeeee;
  padding: 5rem 2rem 2rem;
  border-top: 1px solid var(--motion-border-color);
}

.motion-foot-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.motion-foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.motion-foot-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.motion-foot-brand svg {
  fill: #ffffff;
  width: 32px;
  height: 32px;
}

.motion-foot-brand span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.motion-foot-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
}

.motion-foot-nav-link {
  font-size: 0.9rem;
  color: #cccccc;
}

.motion-foot-nav-link:hover {
  color: var(--motion-accent);
}

.motion-foot-bottom {
  padding-top: 3rem;
  text-align: center;
}

.motion-foot-disclaimer {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 0.85rem;
  color: #aaaaaa;
}

.motion-foot-copyright {
  font-size: 0.85rem;
  color: #888888;
}

/* COOKIE ALERTER */
.motion-cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--motion-border-color);
  color: #ffffff;
  z-index: 9999;
  padding: 1.5rem 2rem;
  border-top: 3px solid var(--motion-accent);
}

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

.motion-cookie-text {
  font-size: 0.95rem;
  max-width: 800px;
}

.motion-cookie-btn-group {
  display: flex;
  gap: 1rem;
}

.motion-cookie-accept {
  background-color: var(--motion-accent);
  border: none;
  color: #ffffff;
  padding: 0.75rem 1.75rem;
  border-radius: var(--site-radius-pill);
  font-weight: 700;
  cursor: pointer;
}

.motion-cookie-decline {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 0.75rem 1.75rem;
  border-radius: var(--site-radius-pill);
  font-weight: 700;
  cursor: pointer;
}

/* THANK YOU & GENERAL LEGAL PAGES STYLE */
.motion-legal-hero {
  padding: var(--site-spacing-normal) 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.motion-legal-hero h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--motion-accent);
  padding-bottom: 1rem;
}

.motion-legal-content {
  color: var(--motion-muted);
}

.motion-legal-content p {
  margin-bottom: 1.5rem;
}

.motion-legal-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

/* SCROLL ANIMATIONS */
@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: slide-up 0.6s linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 40%;
}

/* MOBILE ADAPTABILITY */
@media (max-width: 1024px) {
  .motion-masonry-grid {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .motion-hamburger-icon {
    display: flex;
  }

  .motion-nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(253, 253, 252, 0.98);
    border-bottom: 1px solid var(--motion-border-light);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
  }

  .motion-menu-toggle:checked ~ .motion-nav-list {
    display: flex;
  }

  .motion-menu-toggle:checked ~ .motion-hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .motion-menu-toggle:checked ~ .motion-hamburger-icon span:nth-child(2) {
    opacity: 0;
  }

  .motion-menu-toggle:checked ~ .motion-hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .motion-masonry-grid {
    columns: 1;
  }

  .motion-step-card:nth-child(2),
  .motion-step-card:nth-child(3) {
    margin-top: 0;
  }

  .motion-editorial-container,
  .motion-reserve-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 3rem;
  }

  .motion-editorial-image-box {
    order: -1;
  }

  .motion-manifesto-row {
    flex-direction: column;
    gap: 1rem;
  }

  .motion-manifesto-row h3 {
    white-space: normal;
  }

  .motion-cta-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}