/* ============================================
   Corinne Pant — The Art of the Perfect Pair
   Stylesheet
   ============================================ */

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

:root {
  --dusty-rose: #C9929A;
  --charcoal: #2A2725;
  --cream: #F5EFE6;
  --sage: #8B9D7E;
  --gold: #B89968;
  --rose-light: #DDB3B8;
  --sage-light: #AEBBA5;
  --charcoal-soft: #4A4540;
  --cream-deep: #EDE4D6;
  --white: #ffffff;
  --max-width: 1280px;
  --reading-width: 720px;
  --font-display: 'Cormorant', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-soft: 0 2px 24px rgba(42, 39, 37, 0.06);
  --shadow-medium: 0 8px 40px rgba(42, 39, 37, 0.1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

p {
  margin-bottom: 1.5rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 146, 154, 0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal-soft);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--charcoal);
  position: absolute;
  left: 0;
  transition: all var(--transition);
}

.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 2px; }

.nav-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42, 39, 37, 0.55) 0%, rgba(201, 146, 154, 0.2) 60%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 2rem;
  margin: 0 auto;
  margin-left: 8%;
}

.hero-content .eyebrow {
  color: var(--rose-light);
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(245, 239, 230, 0.9);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1px solid var(--cream);
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition);
}

.hero-cta:hover {
  background: var(--cream);
  color: var(--charcoal);
}

/* --- Featured Article --- */
.featured-article {
  padding: 6rem 0 5rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 2;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.featured-content .eyebrow {
  color: var(--sage);
}

.featured-content h2 {
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.featured-excerpt {
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  margin-bottom: 2rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: gap var(--transition);
}

.read-more:hover {
  gap: 0.9rem;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .eyebrow {
  color: var(--gold);
}

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

.section-header p {
  color: var(--charcoal-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Trend Spotlight --- */
.trend-spotlight {
  background: var(--charcoal);
  color: var(--cream);
  padding: 5rem 0;
}

.trend-spotlight .section-header h2 {
  color: var(--cream);
}

.trend-spotlight .section-header .eyebrow {
  color: var(--gold);
}

.trend-spotlight .section-header p {
  color: rgba(245, 239, 230, 0.7);
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.trend-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(184, 153, 104, 0.2);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

.trend-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.trend-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.trend-card h3 {
  color: var(--cream);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.trend-card p {
  color: rgba(245, 239, 230, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Fit Guide Preview --- */
.fit-guide-preview {
  padding: 5rem 0;
}

.fit-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.fit-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.fit-icon {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dusty-rose);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.fit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.fit-card p {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  margin: 0;
  line-height: 1.5;
}

/* --- Fabric Dictionary Teaser --- */
.fabric-teaser {
  background: var(--cream-deep);
  padding: 5rem 0;
}

.fabric-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.fabric-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fabric-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(42, 39, 37, 0.08);
}

.fabric-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fabric-letter {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--sage);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}

.fabric-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.fabric-info p {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  margin: 0;
  line-height: 1.6;
}

/* --- Latest Stories --- */
.latest-stories {
  padding: 5rem 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.story-card {
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

.story-card:hover {
  transform: translateY(-4px);
}

.story-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 2;
  margin-bottom: 1.25rem;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.story-category {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.story-card h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.story-card p {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  margin: 0;
  line-height: 1.6;
}

/* --- Newsletter Section --- */
.newsletter {
  background: var(--sage);
  padding: 4rem 0;
  text-align: center;
}

.newsletter h2 {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.newsletter p {
  color: rgba(245, 239, 230, 0.85);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

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

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(245, 239, 230, 0.3);
  background: rgba(245, 239, 230, 0.1);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(245, 239, 230, 0.6);
}

.newsletter-form input:focus {
  border-color: var(--cream);
}

.newsletter-form button {
  padding: 0.85rem 2rem;
  background: var(--cream);
  color: var(--charcoal);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: var(--gold);
  color: var(--cream);
}

/* --- Article Page Layout --- */
.article-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}

.article-hero .container {
  max-width: var(--reading-width);
}

.article-hero .eyebrow {
  color: var(--sage);
}

.article-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  margin-top: 1.25rem;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.article-meta .divider {
  width: 1px;
  height: 14px;
  background: rgba(42, 39, 37, 0.2);
}

.article-featured-image {
  max-width: 900px;
  margin: 2.5rem auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

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

.article-body {
  max-width: var(--reading-width);
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.article-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  float: left;
  line-height: 0.9;
  margin: 0.3rem 0.75rem 0 0;
  color: var(--dusty-rose);
  font-weight: 600;
}

.article-body h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.7rem;
}

.article-body h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
  color: var(--charcoal-soft);
}

.article-body a {
  color: var(--gold);
  border-bottom: 1px solid rgba(184, 153, 104, 0.3);
  transition: border-color var(--transition);
}

.article-body a:hover {
  border-color: var(--gold);
}

.article-body ul, .article-body ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.article-body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--dusty-rose);
  background: var(--cream-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal-soft);
  line-height: 1.5;
}

.article-body strong {
  font-weight: 500;
  color: var(--charcoal);
}

.article-body em {
  font-style: italic;
}

/* Article author box */
.article-author-box {
  max-width: var(--reading-width);
  margin: 0 auto 3rem;
  padding: 2rem;
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.article-author-box .author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dusty-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  flex-shrink: 0;
  font-style: italic;
}

.article-author-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.article-author-box p {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  margin: 0;
  line-height: 1.5;
}

/* Article navigation */
.article-nav {
  max-width: var(--reading-width);
  margin: 0 auto;
  padding: 2rem;
  border-top: 1px solid rgba(42, 39, 37, 0.1);
  border-bottom: 1px solid rgba(42, 39, 37, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.article-nav a {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.article-nav .nav-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-nav .nav-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--charcoal);
}

.article-nav .next {
  text-align: right;
}

/* --- Editorials / Blog Index --- */
.page-header {
  text-align: center;
  padding: 5rem 0 3rem;
  background: var(--cream-deep);
}

.page-header .eyebrow {
  color: var(--gold);
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--charcoal-soft);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

.editorials-list {
  padding: 4rem 0;
}

.editorials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2.5rem;
}

.editorial-card {
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

.editorial-card:hover {
  transform: translateY(-4px);
}

.editorial-card .story-image {
  margin-bottom: 1.5rem;
}

.editorial-card .story-category {
  margin-bottom: 0.5rem;
}

.editorial-card h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.editorial-card p {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.editorial-card .read-more {
  margin-top: auto;
}

/* --- Category Filter --- */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.category-filter button {
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid rgba(42, 39, 37, 0.15);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--charcoal-soft);
  cursor: pointer;
  transition: all var(--transition);
}

.category-filter button.active,
.category-filter button:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

/* --- About Page --- */
.about-hero {
  padding: 5rem 0 3rem;
  text-align: center;
}

.about-hero .container {
  max-width: 720px;
}

.about-portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--dusty-rose);
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--cream);
  font-style: italic;
}

.about-content {
  max-width: var(--reading-width);
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

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

.about-value h4 {
  font-size: 1.2rem;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.about-value p {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  margin: 0;
  line-height: 1.6;
}

/* --- Contact Page --- */
.contact-section {
  padding: 4rem 0;
}

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

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--charcoal-soft);
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.contact-detail p {
  font-size: 0.95rem;
  margin: 0;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--charcoal-soft);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(42, 39, 37, 0.12);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.form-submit:hover {
  background: var(--gold);
}

.form-note {
  font-size: 0.75rem;
  color: var(--charcoal-soft);
  text-align: center;
  margin-top: 1rem;
}

/* --- Fit Guide Hub --- */
.fit-guide-hub {
  padding: 4rem 0;
}

.fit-guide-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.fit-guide-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

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

.fit-guide-hero h2 {
  margin-bottom: 1rem;
}

.fit-guide-hero p {
  color: var(--charcoal-soft);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.fit-guide-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.fit-guide-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition);
}

.fit-guide-item:hover {
  transform: translateY(-3px);
}

.fit-guide-item .item-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--dusty-rose);
  line-height: 1;
  flex-shrink: 0;
}

.fit-guide-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.fit-guide-item p {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

.fit-guide-item .read-more {
  font-size: 0.7rem;
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-content h1 {
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.4rem;
}

.legal-content p, .legal-content li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-left: 1.5rem;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content .updated {
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  margin-bottom: 2rem;
}

/* --- Sitemap Page --- */
.sitemap-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.sitemap-section {
  margin-bottom: 2.5rem;
}

.sitemap-section h3 {
  font-size: 1.1rem;
  color: var(--sage);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(42, 39, 37, 0.08);
}

.sitemap-section ul {
  list-style: none;
  margin-left: 0;
}

.sitemap-section li {
  margin-bottom: 0.5rem;
}

.sitemap-section a {
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: color var(--transition);
}

.sitemap-section a:hover {
  color: var(--gold);
}

/* --- 404 Page --- */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.error-content h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  font-style: italic;
  color: var(--dusty-rose);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-content h2 {
  margin-bottom: 1rem;
}

.error-content p {
  color: var(--charcoal-soft);
  max-width: 440px;
  margin: 0 auto 2rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  color: var(--cream);
}

.footer-brand .logo-text span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.6);
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.7);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245, 239, 230, 0.5);
  margin: 0;
}

.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(245, 239, 230, 0.5);
}

.footer-bottom a:hover {
  color: var(--cream);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  font-size: 0.8rem;
  color: rgba(245, 239, 230, 0.5);
}

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

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- Responsive --- */
@media (max-width: 968px) {
  .featured-grid,
  .fabric-teaser-grid,
  .fit-guide-hero,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .fit-guide-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -8px 0 40px rgba(42, 39, 37, 0.1);
    z-index: 105;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    font-family: var(--font-display);
  }

  .nav-toggle {
    display: block;
  }

  .nav-wrap {
    padding: 1rem 1.5rem;
  }

  .hero {
    min-height: 75vh;
  }

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

  .hero-cta {
    margin: 0 auto;
  }

  .section {
    padding: 3.5rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .stories-grid,
  .editorials-grid,
  .fit-guide-list {
    grid-template-columns: 1fr;
  }

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

  .fit-guide-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .article-author-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .article-nav {
    flex-direction: column;
    gap: 1.5rem;
  }

  .article-nav .next {
    text-align: left;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .article-body p:first-of-type::first-letter {
    font-size: 2.8rem;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

