/* ============================================
   SEYMOUR MAISON - Luxury T-Shirts
   Est. 1993
   ============================================ */

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

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --text: #f5f0eb;
  --text-muted: #a09a92;
  --text-dim: #6b6560;
  --accent: #b8960c;
  --accent-light: #d4af37;
  --border: #1e1e1e;
  --border-card: #222222;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --max-width: 1400px;
  --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  max-width: 680px;
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 400;
  display: block;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
}

/* --- Fade-in Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.3s; }
.fade-in-delay-3 { transition-delay: 0.45s; }
.fade-in-delay-4 { transition-delay: 0.6s; }

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.header-logo img {
  height: 45px;
  width: auto;
  transition: height 0.4s ease;
}

.site-header.scrolled .header-logo img {
  height: 35px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  margin: 6px 0;
  transition: all 0.3s ease;
}

.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);
}

.main-nav {
  position: absolute;
  left: clamp(1.5rem, 4vw, 4rem);
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
}

.main-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
}

.btn-waitlist-nav {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-waitlist-nav:hover {
  background: var(--accent);
  color: var(--bg);
}

/* --- Hero --- */
.hero {
  height: 80vh;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184, 150, 12, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: clamp(180px, 25vw, 340px);
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  animation: fadeInUp 1.2s ease 0.3s forwards;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: fadeInUp 1.2s ease 0.6s forwards;
  opacity: 0;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

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

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* --- Sections --- */
section {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
}

/* --- Collection Grid --- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.product-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 2px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  border-color: rgba(184, 150, 12, 0.3);
  box-shadow: 0 4px 30px rgba(184, 150, 12, 0.06);
}

.product-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a1a1a;
}

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

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-info {
  padding: 1.2rem 1.2rem 1.4rem;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.product-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.product-badge {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(184, 150, 12, 0.3);
  padding: 0.35rem 0.8rem;
  display: inline-block;
}

/* --- Philosophy Blocks --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}

.philosophy-block h3 {
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: 1.3rem;
}

.philosophy-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Full-bleed Image Section --- */
.full-bleed {
  width: 100%;
  height: 50vh;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.full-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-bleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3), rgba(10,10,10,0.7));
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-bleed-text {
  text-align: center;
  padding: 2rem;
}

.full-bleed-text h2 {
  font-style: italic;
  font-weight: 300;
  color: var(--text);
}

/* --- Waitlist / CTA --- */
.waitlist-section {
  text-align: center;
  background: var(--bg-elevated);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.waitlist-section .section-label {
  margin-bottom: 0.8rem;
}

.waitlist-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 2rem auto 0;
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.3s ease;
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--text-dim);
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--accent);
}

.waitlist-form button {
  padding: 0.9rem 1.8rem;
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.waitlist-form button:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.waitlist-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 1rem;
  font-style: italic;
}

/* --- Standalone Waitlist Page --- */
.waitlist-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.waitlist-page-inner {
  text-align: center;
  max-width: 600px;
}

.waitlist-page-inner h1 {
  margin-bottom: 1.5rem;
}

.waitlist-page-inner > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

/* --- About Page --- */
.about-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
  text-align: center;
}

.about-hero p {
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-style: italic;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.about-section.reverse {
  direction: rtl;
}

.about-section.reverse > * {
  direction: ltr;
}

.about-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h3 {
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* --- Journal --- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.journal-card {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.journal-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.journal-card:hover .journal-card-image img {
  transform: scale(1.03);
}

.journal-card-date {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.journal-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}

.journal-card h3 a:hover {
  color: var(--accent);
}

.journal-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.journal-read-more {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.8rem;
  display: inline-block;
}

/* --- Journal Article --- */
.article-page {
  padding-top: 8rem;
  max-width: 760px;
  margin: 0 auto;
  padding-left: clamp(1.5rem, 4vw, 4rem);
  padding-right: clamp(1.5rem, 4vw, 4rem);
  padding-bottom: 4rem;
}

.article-meta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.article-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.article-page .article-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 100%;
}

.article-body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 100%;
  line-height: 1.85;
}

.article-body h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

/* --- Contact Page --- */
.contact-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
}

.contact-inner {
  max-width: 500px;
}

.contact-inner h1 {
  margin-bottom: 1.5rem;
}

.contact-email {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.contact-detail {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-links a {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.social-links a:hover {
  color: var(--accent);
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-logo {
  height: 26px;
  margin: 0 auto 1.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.footer-social a {
  color: var(--text-dim);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* --- Page Hero (generic) --- */
.page-hero {
  padding-top: 8rem;
  padding-bottom: 2.5rem;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.8rem;
}

.page-hero p {
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-section.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 999;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .main-nav a {
    font-size: 1rem;
    letter-spacing: 0.3em;
  }

  .header-actions {
    right: 4rem;
  }

  .btn-waitlist-nav {
    display: none;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form input[type="email"] {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .full-bleed {
    height: 35vh;
  }

  .hero {
    height: 80svh;
    max-height: 80svh;
  }
}

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

  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FOUNDER PAGE ===== */
.founder-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
}
.founder-hero-inner { max-width: 700px; }
.founder-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #f5f0eb;
    margin: 0 0 20px;
}
.founder-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.1em;
}
.founder-divider {
    width: 60px;
    height: 1px;
    background: #b8960c;
    margin: 20px auto;
}
.founder-story { padding: 60px 24px; }
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}
.founder-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(30%);
    border: 1px solid #222;
}
.founder-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #f5f0eb;
    margin-bottom: 24px;
}
.founder-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #999;
    margin-bottom: 16px;
}
.founder-philosophy {
    padding: 80px 24px;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}
.founder-quote-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.founder-quote-block blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-style: italic;
    font-weight: 300;
    color: #f5f0eb;
    line-height: 1.7;
    margin: 0 0 24px;
}
.founder-quote-block cite {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #b8960c;
    letter-spacing: 0.1em;
    font-style: normal;
}
.founder-ventures {
    padding: 80px 24px;
    text-align: center;
}
.founder-ventures h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #f5f0eb;
    margin-bottom: 16px;
}
.section-intro {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.ventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.venture-card {
    background: #141414;
    border: 1px solid #222;
    padding: 32px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.venture-card:hover {
    border-color: #b8960c;
    transform: translateY(-2px);
}
.venture-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #f5f0eb;
    margin-bottom: 12px;
}
.venture-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
}
.founder-cta {
    padding: 80px 24px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}
.founder-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #f5f0eb;
    margin-bottom: 12px;
}
.founder-cta p {
    font-family: 'Inter', sans-serif;
    color: #888;
    margin-bottom: 32px;
}
.btn-gold {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #b8960c;
    border: 1px solid #b8960c;
    padding: 14px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background: #b8960c;
    color: #0a0a0a;
}
@media (max-width: 768px) {
    .founder-grid { grid-template-columns: 1fr; gap: 32px; }
    .ventures-grid { grid-template-columns: 1fr; }
}
