/* ============================================================
   J. CALDWELL & SONS — STYLE.CSS
   Common Styles + Top Page (index.html)
   ============================================================ */

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

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

body {
  font-family: var(--font-headline);
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

/* --- CUSTOM PROPERTIES --- */
:root {
  /* Base Colors (newspaper) */
  --color-cream:        #F5F0E8;
  --color-cream-dark:   #EDE6D8;
  --color-parchment:    #E8DFD0;
  --color-ink:          #1A1A18;
  --color-ink-light:    #3D3B36;
  --color-ink-faded:    #6B6760;
  --color-rule:         #B8B0A2;
  --color-rule-dark:    #8A8278;

  /* Accent Colors */
  --color-rust:         #8B4513;
  --color-rust-light:   #A0522D;
  --color-indigo:       #2C3E6B;
  --color-gold:         #B8860B;

  /* Semantic */
  --color-bg-primary:   var(--color-cream);
  --color-bg-secondary: var(--color-cream-dark);
  --color-bg-accent:    var(--color-parchment);
  --color-text-primary: var(--color-ink);
  --color-text-secondary: var(--color-ink-light);
  --color-text-muted:   var(--color-ink-faded);
  --color-border:       var(--color-rule);
  --color-border-strong: var(--color-rule-dark);

  /* Fonts */
  --font-headline: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-nav:      'Oswald', 'Arial Narrow', sans-serif;
  --font-masthead: 'Playfair Display', serif;
  --font-mono:     'Courier Prime', 'Courier New', monospace;

  /* Phase 3 JP placeholders */
  --font-headline-jp: 'Noto Serif JP', serif;
  --font-body-jp:     'Noto Serif JP', serif;
  --font-nav-jp:      'Noto Sans JP', sans-serif;
  --font-size-adjust-jp: 0.95;
  --line-height-adjust-jp: 1.9;
}

html[lang="ja"] {
  --font-headline: var(--font-headline-jp);
  --font-nav: var(--font-nav-jp);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 700;
}

.drop-cap::first-letter {
  font-family: var(--font-headline);
  font-size: 4.5em;
  float: left;
  line-height: 0.8;
  margin: 0.05em 0.12em 0 0;
  color: var(--color-indigo);
  font-weight: 700;
}


/* ============================================================
   LOADING SCREEN
   ============================================================ */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--color-cream);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.loading-screen.exit {
  transform: translateY(-100%);
}

.loading-screen .loading-masthead {
  font-family: var(--font-masthead);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-ink);
  overflow: hidden;
  border-right: 2px solid var(--color-ink);
  white-space: nowrap;
  width: 0;
  animation: typewriter 1.5s steps(20) 0.3s forwards, blink-caret 0.5s step-end 6;
}

.loading-screen .loading-year {
  font-family: var(--font-nav);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--color-ink-faded);
  margin-top: 12px;
  opacity: 0;
  animation: fadeInSimple 0.6s ease 1.6s forwards;
}

@keyframes typewriter {
  to { width: calc(20ch + 5em); }
}

@keyframes blink-caret {
  50% { border-color: transparent; }
}

@keyframes fadeInSimple {
  to { opacity: 1; }
}


/* ============================================================
   PAGE TRANSITION OVERLAY
   ============================================================ */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-ink);
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.page-transition-overlay.active {
  transform: translateY(0);
}

.page-transition-overlay.slide-out {
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}


/* ============================================================
   HEADER — THE CALDWELL GAZETTE
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.98);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  backdrop-filter: blur(8px);
  background: rgba(245, 240, 232, 0.95);
  box-shadow: 0 1px 8px rgba(26, 26, 24, 0.06);
}

.header-rule-top {
  height: 1px;
  background: var(--color-ink);
}

.header-date-line {
  padding: 8px 40px;
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-ink-faded);
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-rule);
  transition: all 0.3s ease;
}

.site-header.scrolled .header-date-line {
  height: 0;
  padding: 0 40px;
  overflow: hidden;
  opacity: 0;
  border-bottom: none;
}

.header-rule-heavy {
  height: 3px;
  background: var(--color-ink);
}

.site-header.scrolled .header-rule-heavy {
  height: 2px;
}

.header-masthead {
  padding: 14px 40px;
  text-align: center;
  border-bottom: 1px solid var(--color-ink);
  transition: all 0.3s ease;
}

.header-masthead-title {
  font-family: var(--font-masthead);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-ink);
  transition: font-size 0.3s ease;
}

.site-header.scrolled .header-masthead {
  padding: 8px 40px;
}

.site-header.scrolled .header-masthead-title {
  font-size: 18px;
}

.header-nav {
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  border-bottom: 2px solid var(--color-ink);
  transition: all 0.3s ease;
}

.nav-link {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 0;
  position: relative;
  color: var(--color-ink);
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-ink);
  transition: width 0.3s ease;
}

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

.nav-link.active {
  color: var(--color-ink);
}

/* Hamburger (SP) */
.hamburger {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 20px;
  z-index: 1010;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-ink);
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.open span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-cream);
  z-index: 1005;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  display: flex;
  opacity: 1;
}

.mobile-nav-link {
  font-family: var(--font-nav);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 0;
  color: var(--color-ink);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-nav-overlay.open .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-overlay.open .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav-overlay.open .mobile-nav-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav-overlay.open .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav-overlay.open .mobile-nav-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav-overlay.open .mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--color-ink);
  color: var(--color-cream);
  padding: 14px 36px;
  border: none;
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary:hover {
  background: var(--color-rust);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 26, 24, 0.15);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-ink);
  padding: 14px 36px;
  border: 1.5px solid var(--color-ink);
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-secondary:hover {
  background: var(--color-ink);
  color: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 26, 24, 0.15);
}

/* Text link with underline slide */
.text-link {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.text-link:hover::after {
  width: 100%;
}


/* ============================================================
   SECTION DIVIDERS
   ============================================================ */

/* Type A: double rule */
.divider-a {
  border: none;
  border-top: 3px solid var(--color-ink);
  border-bottom: 1px solid var(--color-ink);
  height: 6px;
  margin: 0;
}

/* Type B: ornament center + rules */
.divider-b {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 40px;
}

.divider-b::before,
.divider-b::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-rule-dark);
}

.divider-b-ornament {
  font-size: 16px;
  color: var(--color-ink-faded);
  letter-spacing: 0.3em;
}

/* Type C: section number + rule */
.divider-c {
  padding: 40px 40px 0;
  text-align: center;
}

.divider-c .section-label {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-ink-faded);
  display: inline-block;
  padding: 0 20px;
  position: relative;
}

.divider-c .section-label::before,
.divider-c .section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--color-rule-dark);
}

.divider-c .section-label::before {
  right: 100%;
}

.divider-c .section-label::after {
  left: 100%;
}


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

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }


/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.marquee--dark {
  background: var(--color-ink);
  color: var(--color-cream);
}

.marquee--light {
  background: var(--color-parchment);
  color: var(--color-ink);
  border-top: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 60s linear infinite;
}

.marquee-content {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 3em;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 0;
  background: var(--color-cream-dark);
  border-top: 3px double var(--color-ink);
}

.footer-end-edition {
  text-align: center;
  padding: 20px 40px;
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-ink-faded);
  border-bottom: 1px solid var(--color-rule);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0 30px;
  padding: 60px 40px 40px;
}

.footer-divider {
  background: var(--color-rule);
  width: 1px;
}

.footer-col-title {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-ink);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-rule);
}

.footer-brand-name {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-ink-light);
  margin-bottom: 16px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-link {
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink-light);
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-rust);
  transition: width 0.3s ease;
}

.footer-nav-link:hover {
  color: var(--color-rust);
}

.footer-nav-link:hover::after {
  width: 100%;
}

.footer-newsletter-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-ink-light);
  margin-bottom: 16px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
}

.footer-newsletter-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--color-rule);
  background: var(--color-cream);
  font-family: var(--font-headline);
  font-size: 14px;
  color: var(--color-ink);
  outline: none;
  transition: border-color 0.3s ease;
}

.footer-newsletter-input:focus {
  border-color: var(--color-ink);
}

.footer-newsletter-btn {
  padding: 10px 20px;
  background: var(--color-ink);
  color: var(--color-cream);
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--color-ink);
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter-btn:hover {
  background: var(--color-rust);
  border-color: var(--color-rust);
}

.footer-bottom {
  padding: 20px 40px;
  border-top: 1px solid var(--color-rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--color-ink-faded);
  letter-spacing: 0.05em;
}

.footer-credit {
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-credit a {
  color: var(--color-rust);
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: var(--color-ink);
}


/* ============================================================
   TOP PAGE — HERO [A]
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.15) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26, 26, 24, 0.3), rgba(26, 26, 24, 0.6));
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-cream);
  width: 90%;
}

.hero-label {
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 240, 232, 0.5);
  display: inline-block;
  padding: 6px 20px;
  margin-bottom: 28px;
  color: var(--color-cream);
}

.hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-cream);
}

.hero h1 span {
  display: block;
  opacity: 0;
  animation: heroFadeInUp 0.6s ease forwards;
}

.hero h1 span:nth-child(2) { animation-delay: 0.15s; }
.hero h1 span:nth-child(3) { animation-delay: 0.3s; }
.hero h1 span:nth-child(4) { animation-delay: 0.45s; }

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

.hero-subtitle {
  font-family: var(--font-nav);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 32px;
  color: rgba(245, 240, 232, 0.85);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   TOP — ABOUT PREVIEW [G] + [D]
   ============================================================ */
.about-preview {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  padding: 100px 60px;
  align-items: center;
}

.about-preview-image-wrap {
  padding: 20px;
  border: 1px solid var(--color-rule);
  background: var(--color-cream);
}

.about-preview-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(0.1) contrast(1.02);
  transition: transform 0.5s ease;
}

.about-preview-image-wrap:hover img {
  transform: scale(1.06);
}

.about-preview-image-wrap {
  overflow: hidden;
}

.about-preview-text .section-num {
  font-family: var(--font-headline);
  font-size: 48px;
  color: var(--color-ink-faded);
  margin: 0 0 8px;
  line-height: 1;
}

.about-preview-text h2 {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 24px;
  line-height: 1.15;
}

.about-preview-text .body-text {
  border-left: 2px solid var(--color-rule);
  padding-left: 24px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-ink-light);
}

.about-preview-text .body-text p {
  margin-bottom: 16px;
}

.about-preview-text .text-link {
  margin-top: 20px;
  color: var(--color-rust);
}

.about-preview-rules {
  border-top: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
  padding: 40px 0;
}


/* ============================================================
   TOP — COLLECTION PREVIEW [F]
   ============================================================ */
.collection-preview {
  padding: 80px 40px;
  background: var(--color-bg-primary);
}

.collection-preview .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.collection-preview .section-num {
  font-family: var(--font-headline);
  font-size: 48px;
  color: var(--color-ink-faded);
  line-height: 1;
  margin-bottom: 8px;
}

.collection-preview .section-title {
  font-family: var(--font-headline);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.collection-grid {
  display: grid;
  grid-template-areas:
    "main main side1"
    "main main side2"
    "bottom1 bottom2 bottom3";
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 200px;
  gap: 8px;
  margin-bottom: 48px;
}

.collection-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-item:hover img {
  transform: scale(1.06);
}

.collection-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(26, 26, 24, 0.7));
  color: var(--color-cream);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.collection-item:hover .collection-caption {
  transform: translateY(0);
  opacity: 1;
}

.collection-caption h3 {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.collection-caption span {
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.8);
}

.collection-item--main   { grid-area: main; }
.collection-item--side1  { grid-area: side1; }
.collection-item--side2  { grid-area: side2; }
.collection-item--bottom1 { grid-area: bottom1; }
.collection-item--bottom2 { grid-area: bottom2; }
.collection-item--bottom3 { grid-area: bottom3; }

.collection-preview .cta-wrap {
  text-align: center;
}


/* ============================================================
   TOP — PARALLAX QUOTE [E]
   ============================================================ */
.parallax-quote {
  height: 50vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.parallax-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 24, 0.55);
}

.parallax-quote blockquote {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 40px;
  font-family: var(--font-headline);
  font-style: italic;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.5;
  color: var(--color-cream);
  text-align: center;
}

.parallax-quote cite {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  font-family: var(--font-nav);
  color: rgba(245, 240, 232, 0.8);
}


/* ============================================================
   TOP — LOOKBOOK PREVIEW [B]
   ============================================================ */
.lookbook-preview {
  padding: 80px 60px;
}

.lookbook-preview .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.lookbook-preview .section-num {
  font-family: var(--font-headline);
  font-size: 48px;
  color: var(--color-ink-faded);
  line-height: 1;
  margin-bottom: 8px;
}

.lookbook-preview .section-title {
  font-family: var(--font-headline);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
}

.lookbook-float-left {
  float: left;
  width: 280px;
  margin: 0 24px 16px 0;
  border: 1px solid var(--color-rule);
  padding: 8px;
  background: var(--color-cream);
}

.lookbook-float-left img {
  width: 100%;
  height: auto;
  display: block;
}

.lookbook-float-right {
  float: right;
  width: 320px;
  margin: 0 0 16px 24px;
}

.lookbook-float-right img {
  width: 100%;
  height: auto;
  display: block;
}

.lookbook-preview-text {
  column-count: 3;
  column-gap: 30px;
  column-rule: 1px solid var(--color-rule);
  font-size: 17px;
  line-height: 1.75;
  text-align: justify;
  color: var(--color-ink-light);
}

.lookbook-preview-text p {
  margin-bottom: 16px;
}

.lookbook-preview .cta-wrap {
  text-align: center;
  margin-top: 40px;
  clear: both;
}


/* ============================================================
   TOP — CONTACT CTA
   ============================================================ */
.contact-cta {
  padding: 80px 40px;
  text-align: center;
  background: var(--color-cream-dark);
  border-top: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
}

.contact-cta h2 {
  font-family: var(--font-nav);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-cta p {
  font-family: var(--font-headline);
  font-size: 17px;
  color: var(--color-ink-light);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


/* ============================================================
   RESPONSIVE — TABLET (769–1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {

  .about-preview {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 80px 40px;
  }

  .lookbook-preview-text {
    column-count: 2;
  }

  .footer-cols {
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 24px;
  }

  .footer-cols > :nth-child(4),
  .footer-cols > :nth-child(5) {
    grid-column: 1 / -1;
  }

  .footer-cols > :nth-child(4) {
    display: none;
  }

  .footer-cols > :nth-child(5) {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--color-rule);
  }
}


/* ============================================================
   RESPONSIVE — SP (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

  body {
    font-size: 16px;
  }

  /* Header SP */
  .header-date-line {
    display: none;
  }

  .header-rule-heavy {
    height: 2px;
  }

  .header-masthead {
    padding: 12px 20px;
    position: relative;
  }

  .header-masthead-title {
    font-size: 20px;
  }

  .site-header.scrolled .header-masthead-title {
    font-size: 16px;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  /* Hero SP */
  .hero {
    height: 90vh;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-label {
    font-size: 11px;
    padding: 5px 14px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  /* About Preview SP */
  .about-preview {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 20px;
  }

  .about-preview-text .section-num {
    font-size: 36px;
  }

  .about-preview-text h2 {
    font-size: clamp(22px, 5vw, 28px);
  }

  /* Collection Preview SP */
  .collection-preview {
    padding: 60px 16px;
  }

  .collection-grid {
    grid-template-areas: none;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 6px;
  }

  .collection-item--main,
  .collection-item--side1,
  .collection-item--side2,
  .collection-item--bottom1,
  .collection-item--bottom2,
  .collection-item--bottom3 {
    grid-area: auto;
  }

  .collection-item--main {
    grid-column: 1 / -1;
  }

  .collection-item img {
    aspect-ratio: 4/3;
  }

  .collection-caption {
    opacity: 1;
    transform: translateY(0);
  }

  /* Parallax Quote SP */
  .parallax-quote {
    height: 40vh;
    background-attachment: scroll;
  }

  .parallax-quote blockquote {
    font-size: 20px;
    padding: 0 20px;
  }

  /* Lookbook Preview SP */
  .lookbook-preview {
    padding: 60px 20px;
  }

  .lookbook-preview-text {
    column-count: 1;
  }

  .lookbook-float-left,
  .lookbook-float-right {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }

  /* Contact CTA SP */
  .contact-cta {
    padding: 60px 20px;
  }

  /* Footer SP */
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 20px;
  }

  .footer-divider {
    display: none;
  }

  .footer-col {
    padding: 24px 0;
    border-bottom: 1px solid var(--color-rule);
  }

  .footer-col:last-child {
    border-bottom: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 20px;
  }

  /* Dividers SP */
  .divider-b {
    padding: 16px 20px;
  }

  .divider-c {
    padding: 30px 20px 0;
  }

  /* Drop cap SP */
  .drop-cap::first-letter {
    font-size: 3.5em;
  }

  /* Buttons SP */
  .btn-primary,
  .btn-secondary {
    padding: 12px 28px;
    font-size: 13px;
  }
}


/* ============================================================
   RESPONSIVE — LARGE (1440px+)
   ============================================================ */
@media (min-width: 1440px) {

  .about-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 80px;
  }

  .collection-preview {
    max-width: 1400px;
    margin: 0 auto;
  }

  .lookbook-preview {
    max-width: 1400px;
    margin: 0 auto;
  }

  .footer-cols {
    max-width: 1400px;
    margin: 0 auto;
  }
}


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

/* Body lock for loading / mobile nav */
body.loading-active {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}
