/* ===== THORNWOVEN 2 — SECTIONS ===== */

/* ── Loader ── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

.loader-logo {
  width: 120px;
  height: auto;
  filter: invert(1) brightness(2);
  opacity: 0;
}

.loader-left,
.loader-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--text);
  z-index: 1;
}

.loader-left { left: 0; }
.loader-right { right: 0; }

.loader.done { pointer-events: none; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(155,58,58,0.06) 0%, transparent 70%),
    radial-gradient(ellipse at 70% 60%, rgba(184,160,122,0.08) 0%, transparent 70%);
  animation: heroGradient 20s ease-in-out infinite alternate;
}

@keyframes heroGradient {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.1); }
}

.hero-cross {
  position: absolute;
  width: 400px;
  height: 400px;
  opacity: 0.04;
  background: linear-gradient(135deg, var(--rose) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-title {
  font-family: var(--serif);
  font-size: var(--fs-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 5rem;
  color: var(--text);
}

.hero-title em {
  font-style: italic;
  color: var(--rose);
}

/* SplitType line wrapper */
.hero-title .line {
  overflow: visible;
  display: block;
}

.hero-title .word {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
}

.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ── Marquee ── */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--text);
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 2.5rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: var(--ls-medium);
  text-transform: uppercase;
  color: var(--sand-light);
  flex-shrink: 0;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Symbol Section ── */
.symbol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
}

.symbol-visual {
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.symbol-cross-img {
  max-height: 420px;
  width: auto;
  will-change: transform;
  clip-path: inset(50% 20% 50% 20%);
}

.symbol-cross-img.revealed {
  clip-path: inset(0% 0% 0% 0%);
}

.symbol-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.symbol-text h2 {
  font-size: var(--fs-h2);
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.symbol-text h2 em {
  font-style: italic;
  color: var(--rose);
}

.symbol-text p {
  font-size: var(--fs-body);
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

/* ── Drop / Products ── */
.drop {
  padding: var(--section-pad);
  max-width: 1300px;
  margin: 0 auto;
}

.drop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.drop-header .section-title {
  font-size: var(--fs-h2);
  color: var(--text);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.5s var(--ease-out-expo);
  transform-style: preserve-3d;
  perspective: 800px;
}

.product-img-bg {
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform 0.6s var(--ease-out-expo);
}

.product-mock {
  font-size: 4.5rem;
  opacity: 0.15;
  transition: opacity 0.5s;
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}

.product-card { transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease; }
.product-card:hover { transform: translateY(-8px); }
.product-card:hover .product-mock { opacity: 0.25; }

.product-tag {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: var(--ls-medium);
  text-transform: uppercase;
  background: var(--white);
  color: var(--text);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  z-index: 2;
}

.product-info { padding: 1rem 0.3rem; }

.product-name {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

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

.product-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 3D Tilt Shine */
.product-card .tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.15), transparent 60%);
  z-index: 3;
}

.product-card:hover .tilt-shine { opacity: 1; }

/* ── Pillars ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillar {
  padding: 4rem 3rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--dur-fast);
}

.pillar:last-child { border-right: none; }

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.pillar.revealed::before { transform: scaleX(1); }
.pillar:hover { background: var(--bg-warm); }

.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.5;
  color: var(--rose);
}

.pillar h3 {
  font-size: var(--fs-h3);
  color: var(--text);
  margin-bottom: 1rem;
}

.pillar p {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.pillar-verse {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* ── Mission ── */
.mission {
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15rem;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
}

.mission-eyebrow {
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 2rem;
}

.mission-text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
}

/* ── Lookbook (Horizontal Scroll) ── */
.lookbook-wrapper {
  position: relative;
  overflow: hidden;
}

.lookbook-header {
  padding: 4rem 3rem 2rem;
}

.lookbook-header .section-title {
  font-size: var(--fs-h2);
}

.lookbook-track {
  display: flex;
  gap: 2rem;
  padding: 0 3rem 4rem;
  will-change: transform;
}

.lookbook-item {
  flex-shrink: 0;
  width: 350px;
  height: 450px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.lookbook-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: var(--bg-warm);
  transition: transform 0.6s var(--ease-out-expo);
}

.lookbook-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
}

.lookbook-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5));
  pointer-events: none;
  z-index: 1;
}

.lookbook-item:hover .lookbook-bg { transform: scale(1.03); }
.lookbook-item:hover .lookbook-img { transform: scale(1.06); }

.lookbook-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--ls-medium);
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  z-index: 2;
}

/* ── Email Section ── */
.email-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.email-left {
  padding: 5rem 4rem;
}

.email-headline {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.email-sub {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--text-light);
}

.email-right {
  padding: 5rem 4rem;
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.email-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.email-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text);
  border-radius: 2px;
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.email-input:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(155,58,58,0.06);
}

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

.email-submit {
  width: 100%;
  padding: 1rem;
  background: var(--text);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: var(--ls-medium);
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background var(--dur-fast), transform 0.2s;
}

.email-submit:hover {
  background: var(--rose);
  transform: translateY(-1px);
}

.email-fine {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── Contact Section ── */
.contact-section {
  padding: var(--section-pad);
  background: var(--bg-warm);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-headline {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-sub {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: var(--text-light);
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--dur-fast);
}

.contact-detail a:hover { color: var(--rose); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 4px;
}

.contact-form-title {
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-field label {
  display: block;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text);
  border-radius: 2px;
  transition: border-color var(--dur-fast);
  outline: none;
}

.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--text); }

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  width: 100%;
  padding: 1rem;
  background: var(--text);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: var(--ls-medium);
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur-fast), transform 0.2s;
  border-radius: 2px;
  margin-top: 0.5rem;
}

.contact-submit:hover {
  background: var(--rose);
  transform: translateY(-1px);
}

/* ── Footer ── */
footer {
  padding: 5rem 3rem 0;
  background: var(--text);
  color: var(--white);
}

[data-theme="dark"] footer {
  background: #050404;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 4rem;
}

.footer-logo-img {
  height: 65px;
  width: auto;
  margin: -18px 0;
  filter: invert(1) brightness(2);
}

[data-theme="dark"] .footer-logo-img { filter: none; }

.footer-tagline {
  font-size: 0.82rem;
  color: var(--sand-light);
  line-height: 1.7;
  margin-top: 0.5rem;
  opacity: 0.7;
}

.footer-col-title {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--sand);
}

.footer-links li { margin-bottom: 0.7rem; }

.footer-links a {
  font-size: 0.82rem;
  color: var(--sand-light);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity var(--dur-fast), color var(--dur-fast);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.4s var(--ease-out-expo);
}

.footer-links a:hover { opacity: 1; color: var(--white); }
.footer-links a:hover::after { width: 100%; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--sand-light);
  opacity: 0.4;
}

.footer-faith {
  font-size: 0.72rem;
  color: var(--sand-light);
  opacity: 0.4;
  font-style: italic;
}
