/* ============================================
   Inlyth Website — Design System & Styles
   ============================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  --color-bg: #FBF7F4;
  --color-bg-alt: #F5EDE6;
  --color-bg-warm: #EDE0D4;
  --color-text: #3D2B1F;
  --color-text-secondary: #6B5446;
  --color-accent: #D4A882;
  --color-accent-light: #E8C9B0;
  --color-accent-dark: #8B6F5E;
  --color-brown: #4A3428;
  --color-white: #FFFFFF;
  --color-border: #E0D3C8;

  --font-heading: 'DM Serif Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1200px;
  --container-narrow: 800px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(61, 43, 31, 0.06);
  --shadow-md: 0 4px 24px rgba(61, 43, 31, 0.08);
  --shadow-lg: 0 8px 40px rgba(61, 43, 31, 0.12);
  --shadow-screenshot: 0 20px 60px rgba(61, 43, 31, 0.15);

  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-brown);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-dark);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-brown);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--color-text-secondary);
  max-width: 60ch;
}

.text-accent {
  font-style: italic;
  color: var(--color-accent-dark);
}

.sparkle::after {
  content: ' ✦';
  color: var(--color-accent);
  font-style: normal;
}

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

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--section-padding-mobile) 0;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-brown);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-text);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--color-brown);
  border: 1.5px solid var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--color-brown);
  transform: translateY(-2px);
}

.btn--small {
  padding: 12px 24px;
  font-size: 0.875rem;
}

.btn svg, .btn img {
  width: 20px;
  height: 20px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 247, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo img {
  height: 28px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

.nav__link:hover {
  color: var(--color-brown);
}

.nav__cta {
  margin-left: 8px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-brown);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    background: var(--color-bg);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 16px;
  }
}

/* --- Mobile Menu Overlay --- */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(61, 43, 31, 0.3);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav__overlay.active {
  display: block;
  opacity: 1;
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
  position: relative;
  margin-top: 72px;
  overflow: hidden;
  background: var(--color-brown);
}

.hero-banner__img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 280px;
  object-fit: cover;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(
    180deg,
    rgba(74, 52, 40, 0.15) 0%,
    rgba(74, 52, 40, 0.55) 100%
  );
}

.hero-banner__title {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.hero-banner__subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

.hero-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-banner__actions .btn--primary {
  background: var(--color-white);
  color: var(--color-brown);
}

.hero-banner__actions .btn--primary:hover {
  background: var(--color-bg);
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.hero-banner__avail {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

/* ============================================
   SCREENSHOT CAROUSEL — Side-by-side showcase
   ============================================ */
.carousel-section {
  padding: 0;
  overflow: hidden;
}

.carousel {
  position: relative;
}

.carousel__track-wrapper {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* --- Individual slide --- */
.carousel__slide {
  flex: 0 0 100%;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* Warm gradients that rotate per slide */
.carousel__slide:nth-child(odd) {
  background: linear-gradient(135deg, #F5EDE6 0%, #EDE0D4 50%, #E8C9B0 100%);
}

.carousel__slide:nth-child(even) {
  background: linear-gradient(135deg, #EDE0D4 0%, #F5EDE6 50%, #FBF7F4 100%);
}

.carousel__slide-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 60px 60px;
}

.carousel__slide-image img {
  max-height: 540px;
  width: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-screenshot);
}

.carousel__slide-content {
  padding: 60px 60px 60px 40px;
}

.carousel__slide-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 16px;
}

.carousel__slide-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--color-brown);
  line-height: 1.18;
  margin-bottom: 16px;
}

.carousel__slide-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 28px;
}

.carousel__slide-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 400px;
}

.carousel__slide-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

.carousel__slide-bullet-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

/* --- Arrow buttons --- */
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brown);
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  z-index: 10;
  cursor: pointer;
}

.carousel__arrow:hover {
  background: var(--color-brown);
  color: var(--color-white);
  border-color: var(--color-brown);
  transform: translateY(-50%) scale(1.06);
}

.carousel__arrow--prev {
  left: 20px;
}

.carousel__arrow--next {
  right: 20px;
}

/* --- Dots & progress --- */
.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 0 36px;
  background: var(--color-bg);
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel__dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
  position: relative;
}

.carousel__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all var(--transition);
}

.carousel__dot.active::after {
  background: var(--color-brown);
  transform: translate(-50%, -50%) scale(1.3);
}

.carousel__dot:hover::after {
  background: var(--color-accent);
}

.carousel__progress {
  width: 80px;
  height: 3px;
  border-radius: 3px;
  background: var(--color-border);
  overflow: hidden;
}

.carousel__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.carousel__progress-bar.paused {
  transition: none;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .carousel__slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .carousel__slide-image {
    padding: 48px 32px 24px;
    justify-content: center;
  }
  .carousel__slide-image img {
    max-height: 400px;
  }
  .carousel__slide-content {
    padding: 16px 32px 48px;
    text-align: center;
  }
  .carousel__slide-text {
    margin-left: auto;
    margin-right: auto;
  }
  .carousel__slide-bullets {
    justify-items: center;
    margin: 0 auto;
  }
  .carousel__arrow {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  .carousel__arrow--prev { left: 10px; }
  .carousel__arrow--next { right: 10px; }
}

@media (max-width: 480px) {
  .carousel__slide-image {
    padding: 36px 20px 16px;
  }
  .carousel__slide-image img {
    max-height: 340px;
  }
  .carousel__slide-content {
    padding: 12px 20px 40px;
  }
  .carousel__slide-bullets {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .carousel__arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .carousel__arrow--prev { left: 6px; }
  .carousel__arrow--next { right: 6px; }
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features {
  background: var(--color-bg-alt);
}

.features__header {
  text-align: center;
  margin-bottom: 56px;
}

.features__header p {
  margin: 12px auto 0;
  font-size: 1.05rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-brown);
  margin-bottom: 10px;
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    padding: 28px 24px;
  }
}

/* ============================================
   TRUST / PRIVACY
   ============================================ */
.trust {
  background: var(--color-brown);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.trust h2 {
  color: var(--color-white);
}

.trust p {
  color: rgba(255, 255, 255, 0.75);
}

.trust__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.trust__inner h2 {
  margin-bottom: 12px;
}

.trust__inner > p {
  margin: 0 auto 40px;
}

.trust__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust__pillar {
  padding: 28px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition);
}

.trust__pillar:hover {
  background: rgba(255, 255, 255, 0.12);
}

.trust__pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.trust__pillar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-white);
  margin-bottom: 6px;
}

.trust__pillar-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .trust__pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust__pillars {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DESCRIPTION / STORY SECTION
   ============================================ */
.story {
  background: var(--color-bg);
}

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

.story__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 16px;
}

.story__title {
  margin-bottom: 20px;
}

.story__text {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.story__text:last-of-type {
  margin-bottom: 32px;
}

.story__image {
  display: flex;
  justify-content: center;
}

.story__screenshot {
  max-width: 340px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-screenshot);
}

@media (max-width: 900px) {
  .story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .story__image {
    order: -1;
  }
  .story__screenshot {
    max-width: 280px;
  }
  .story__text {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.cta-banner h2 {
  margin-bottom: 12px;
}

.cta-banner p {
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--color-bg);
}

.faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq__header p {
  margin: 12px auto 0;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brown);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--color-accent-dark);
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-accent-dark);
  transition: transform var(--transition);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
}

.final-cta__tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 16px;
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p {
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.avail-note {
  font-size: 0.8rem;
  color: var(--color-accent-dark);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0 32px;
  background: var(--color-brown);
  color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__links {
  display: flex;
  gap: 28px;
}

.footer__link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 0.8rem;
}

.footer__contact {
  font-size: 0.8rem;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact a:hover {
  color: var(--color-white);
}

@media (max-width: 600px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   LEGAL PAGES (Privacy, Terms)
   ============================================ */
.legal {
  padding-top: 120px;
  padding-bottom: 80px;
}

.legal__header {
  margin-bottom: 48px;
}

.legal__header h1 {
  margin-bottom: 8px;
}

.legal__updated {
  font-size: 0.9rem;
  color: var(--color-accent-dark);
}

.legal__content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.legal__content p {
  margin-bottom: 16px;
  max-width: none;
}

.legal__content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal__content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact {
  padding-top: 120px;
  padding-bottom: 80px;
}

.contact__inner {
  max-width: 600px;
}

.contact h1 {
  margin-bottom: 12px;
}

.contact__intro {
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__method {
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}

.contact__method-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.contact__method h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin-bottom: 8px;
}

.contact__method p {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.contact__method a {
  font-weight: 600;
  color: var(--color-brown);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2px;
}

.contact__method a:hover {
  border-bottom-color: var(--color-brown);
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  padding-top: 140px;
  padding-bottom: 100px;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--color-accent-light);
  line-height: 1;
  margin-bottom: 16px;
}

.error-page h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.error-page p {
  margin: 0 auto 36px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .nav, .footer, .cta-banner, .final-cta, .carousel-section {
    display: none;
  }
  body {
    color: #000;
    background: #fff;
  }
}
