/* ---- STORY PAGES ---- */

.story-hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  margin-top: 72px;
}

.story-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(44, 20, 44, 0.45);
  color: var(--white);
  padding: 24px;
}

.story-hero-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.8;
}

.story-hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.4;
}

.story-hero-desc {
  margin-top: 24px;
  font-size: 13px;
  line-height: 2;
  opacity: 0.85;
}

/* Section */
.story-section {
  padding: 80px 0;
}

.story-section + .story-section {
  border-top: 1px solid var(--cream-dark);
}

/* Two column */
.story-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-two-col.reverse { direction: rtl; }
.story-two-col.reverse > * { direction: ltr; }

@media (max-width: 760px) {
  .story-two-col { grid-template-columns: 1fr; gap: 32px; }
  .story-two-col.reverse { direction: ltr; }
}

.story-col-text { }

.story-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
  display: block;
}
.story-label.center { text-align: center; }

.story-col-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 20px;
}

.story-col-text p {
  font-size: 14px;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 12px;
}

.story-col-img img {
  width: 100%;
  display: block;
}

/* Full width image */
.story-full-img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

/* Quote / words */
.story-words {
  padding: 80px 0;
  background: var(--violet-dark);
  text-align: center;
}

.story-words blockquote {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.story-words .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: rgba(255,255,255,0.2);
  line-height: 0.5;
  display: block;
  margin-bottom: 24px;
}

.story-words h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 16px;
}

.story-words p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 2;
}

/* Craftsmanship grid */
.craftsmanship {
  padding: 80px 0;
  background: var(--cream-dark);
}

.craftsmanship h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  text-align: center;
  margin-bottom: 48px;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.craft-card {
  display: block;
  background: var(--white);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s, box-shadow 0.25s;
}
.craft-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(74,21,53,0.1); }

.craft-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.craft-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.craft-card:hover .craft-img img { transform: scale(1.04); }

.craft-info { padding: 20px; }

.craft-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 6px;
}

.craft-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 6px;
}

.craft-info p {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Bird story */
.bird-story {
  padding: 80px 0;
  text-align: center;
  background: var(--cream);
}

.bird-text {
  max-width: 560px;
  margin: 24px auto 0;
}

.bird-text p {
  font-size: 13px;
  line-height: 2.2;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Sub-page hero (smaller) */
.subpage-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  margin-top: 72px;
}

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

.subpage-hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 48px 24px;
  background: linear-gradient(to top, rgba(44,20,44,0.6) 0%, transparent 60%);
  color: var(--white);
  text-align: center;
}

.subpage-hero-text .category {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 10px;
}

.subpage-hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--violet);
  padding: 24px 0 0;
  text-decoration: none;
}
.back-link:hover { opacity: 0.7; }

/* nav active */
nav .active { color: var(--violet) !important; }

/* Three image grid */
.img-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.img-trio img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }

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