/* ============================================
   MODA FOCA — Sealed In Rebellion
   ============================================ */

/* --- Custom Properties --- */
:root {
  --color-bg: #0e0e0e;
  --color-bg-alt: #161616;
  --color-surface: #1c1c1c;
  --color-surface-elevated: #242424;
  --color-text: #f5f0eb;
  --color-text-muted: #9a9a9a;
  --color-accent: #e91e8c;
  --color-accent-dark: #b8166e;
  --color-accent-glow: rgba(233, 30, 140, 0.3);
  --color-accent-subtle: rgba(233, 30, 140, 0.08);
  --color-border: rgba(245, 240, 235, 0.08);
  --color-border-hover: rgba(233, 30, 140, 0.25);

  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-accent);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: background var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1001;
}

.nav__logo-seal {
  width: 32px;
  height: auto;
  transition: transform var(--transition-fast);
}

.nav__logo:hover .nav__logo-seal {
  transform: rotate(-15deg) scale(1.1);
}

.nav__links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}

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

.nav__link:hover::after {
  width: 100%;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  z-index: 999;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile .nav__link {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--space-2xl) var(--space-md);
}

/* Wave texture background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(233, 30, 140, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(233, 30, 140, 0.04) 0%, transparent 60%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  right: -10%;
  height: 60%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='rgba(233,30,140,0.03)' d='M0,160L48,170.7C96,181,192,203,288,192C384,181,480,139,576,128C672,117,768,139,864,160C960,181,1056,203,1152,192C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  animation: waveFloat 8s ease-in-out infinite alternate;
}

@keyframes waveFloat {
  0% { transform: translateY(0) scaleY(1); }
  100% { transform: translateY(-15px) scaleY(1.05); }
}

/* Noise grain overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 14rem);
  line-height: 0.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-text {
  display: block;
  transform: translateY(110%);
  animation: titleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__title-text:nth-child(2) {
  animation-delay: 0.15s;
}

@keyframes titleReveal {
  to { transform: translateY(0); }
}

.hero__seal {
  width: clamp(100px, 18vw, 200px);
  height: auto;
  margin: 0 auto var(--space-md);
  opacity: 0;
  transform: scale(0.7) rotate(-10deg);
  animation: sealReveal 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  filter: drop-shadow(0 0 40px var(--color-accent-glow));
}

@keyframes sealReveal {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.hero__tagline {
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeUp 0.8s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: var(--color-text);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--color-accent-glow);
}

.hero__cta:hover::before {
  transform: translateX(100%);
}

.hero__cta-arrow {
  transition: transform var(--transition-fast);
}

.hero__cta:hover .hero__cta-arrow {
  transform: translateX(4px);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   COLLECTION
   ============================================ */
.collection {
  padding: var(--space-2xl) 0;
  position: relative;
  background: var(--color-bg-alt);
}

/* Floating seal watermark */
.collection::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: var(--color-accent);
  opacity: 0.02;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-fast);
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: 0 0 60px var(--color-accent-subtle);
  transform: translateY(-4px);
}

.product-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-surface-elevated);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card__img {
  transform: scale(1.08);
}

/* Placeholder pattern for product images */
.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--color-surface) 25%, transparent 25%) -50px 0,
    linear-gradient(225deg, var(--color-surface) 25%, transparent 25%) -50px 0,
    linear-gradient(315deg, var(--color-surface) 25%, transparent 25%),
    linear-gradient(45deg, var(--color-surface) 25%, transparent 25%);
  background-size: 60px 60px;
  background-color: var(--color-surface-elevated);
  opacity: 0.5;
}

.product-card__placeholder-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: auto;
  opacity: 0.3;
}

.product-card__info {
  padding: var(--space-sm) calc(var(--space-sm) * 1.25);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__price {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 0.5rem;
  padding-bottom: var(--space-xs);
  transition: gap var(--transition-fast);
}

.product-card:hover .product-card__link {
  gap: 0.8rem;
}

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

@media (max-width: 768px) {
  .collection__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============================================
   ORIGIN STORY
   ============================================ */
.story {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.story__visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.story__visual-bg {
  width: 100%;
  height: 100%;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.story__visual-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--color-accent-subtle), transparent 60%);
}

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

.story__visual-seal {
  width: 60%;
  height: auto;
  opacity: 0.12;
  filter: blur(1px);
}

/* Pink accent bar */
.story__visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.story__content {
  padding: var(--space-md) 0;
}

.story__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.story__text strong {
  color: var(--color-text);
  font-weight: 500;
}

.story__accent-line {
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .story__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .story__visual {
    aspect-ratio: 16 / 10;
  }
}

/* ============================================
   COMMUNITY / GIVE BACK
   ============================================ */
.community {
  padding: var(--space-2xl) 0;
  position: relative;
  background: var(--color-bg-alt);
}

.community__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.community__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-surface);
  cursor: pointer;
}

.community__item-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter var(--transition-smooth);
  filter: grayscale(1) brightness(0.5);
}

.community__item:hover .community__item-bg {
  transform: scale(1.1);
  filter: grayscale(0.5) brightness(0.7);
}

/* Placeholder for community images */
.community__item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(245, 240, 235, 0.05);
  letter-spacing: 0.1em;
}

.community__item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.community__item:hover .community__item-overlay {
  opacity: 1;
}

.community__item-text {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.community__item-text span {
  color: var(--color-accent);
  font-weight: 500;
}

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

/* ============================================
   STORIES / EDITORIAL
   ============================================ */
.stories {
  padding: var(--space-2xl) 0;
  position: relative;
}

.stories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.story-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  cursor: pointer;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: var(--color-border-hover);
}

.story-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-surface-elevated);
  position: relative;
}

.story-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-card:hover .story-card__img {
  transform: scale(1.05);
}

.story-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.story-card__img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-surface-elevated), var(--color-surface));
}

.story-card__img-placeholder::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.08;
  filter: blur(15px);
}

.story-card__body {
  padding: calc(var(--space-sm) * 1.5);
}

.story-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  display: block;
}

.story-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.story-card__excerpt {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

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

@media (max-width: 600px) {
  .stories__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid var(--color-border);
  position: relative;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: var(--space-lg);
  align-items: start;
  margin-bottom: var(--space-xl);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer__logo-seal {
  width: 28px;
  height: auto;
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  max-width: 280px;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.footer__social-link:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-subtle);
}

.footer__social-link svg {
  width: 14px;
  height: 14px;
  fill: var(--color-text-muted);
  transition: fill var(--transition-fast);
}

.footer__social-link:hover svg {
  fill: var(--color-accent);
}

.footer__nav-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav-link {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  letter-spacing: 0.02em;
}

.footer__nav-link:hover {
  color: var(--color-accent);
}

.footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__newsletter-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer__newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.footer__newsletter-form:focus-within {
  border-color: var(--color-accent);
}

.footer__newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.8rem;
  outline: none;
}

.footer__newsletter-input::placeholder {
  color: var(--color-text-muted);
}

.footer__newsletter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: background var(--transition-fast);
}

.footer__newsletter-btn:hover {
  background: var(--color-accent-dark);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.footer__copy {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-sm);
}

.footer__bottom-link {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer__bottom-link:hover {
  color: var(--color-text);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* ============================================
   SEAL DIVIDER
   ============================================ */
.seal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) 0;
  opacity: 0.15;
}

.seal-divider__icon {
  width: 24px;
  height: auto;
}

.seal-divider__line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.3;
  margin: 0 var(--space-sm);
}
