/*
Theme Name: Privessa Noir Theme
Theme URI: https://privessanoir.com
Author: Antigravity Developer
Author URI: https://privessanoir.com
Description: Tema premium y minimalista para Privessa Noir, optimizado para cPanel y alto rendimiento.
Version: 1.0.0
Text Domain: privessa-noir
*/

/* ==========================================================================
   Privessa Brand Design System & Stylesheet (Mobile-First)
   ========================================================================== */

/* 1. FONT DEFINITIONS */
@font-face {
  font-family: 'Revans';
  src: url('assets/fonts/Revans-Medium.ttf') format('truetype'),
       url('assets/fonts/Revans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* 2. DESIGN TOKENS & SYSTEM VARIABLES */
:root {
  /* Typography Stack */
  --font-title: 'Revans', 'Helvetica Neue', system-ui, sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  
  /* Color Palette */
  --color-bg-main: #ffffff;
  --color-bg-dark: #0a0a0a;
  --color-bg-card-light: #e8e8e8; /* Soft light neutral from mockup */
  --color-bg-card-dark: #0e0e0e;  /* Off-black for bento grid */
  
  --color-gold: #c5a880;          /* Brand primary gold */
  --color-gold-dark: #bba078;
  --color-gold-hover: #b09068;
  --color-gold-light: #f7f4ee;
  --color-gold-band: #c7ad85;     /* Featured product band color */
  
  --color-text-dark: #121212;
  --color-text-light: #ffffff;
  --color-text-muted: #6b6b6b;
  --color-text-muted-light: #cbcbcb;
  
  /* Borders & Shadows */
  --border-radius-xl: 32px;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* 3. GLOBAL BASE STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Base size */
  background-color: var(--color-bg-main);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Selection color */
::selection {
  background-color: var(--color-gold);
  color: var(--color-text-light);
}

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

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

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

/* Main Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-spacing {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .section-spacing {
    padding: 80px 0;
  }
  html {
    font-size: 18px;
  }
}

/* 4. BUTTONS & UI ACTIONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-text-dark);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.35);
}

.btn-black {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  font-weight: 600;
}

.btn-black:hover {
  background-color: #222222;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* 5. HEADER & NAVIGATION */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(224, 224, 224, 0.4);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.logo-link {
  display: flex;
  align-items: center;
}

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

.nav-links {
  display: none; /* Mobile hidden by default */
}

/* Navigation Links Style */
.nav-link {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  color: var(--color-text-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

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

.nav-link:hover {
  color: var(--color-gold-dark);
}

/* Mobile Menu Button (Hamburger) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Mobile Menu Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg-main);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transition: var(--transition-smooth);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer .nav-link {
  font-size: 1.5rem;
}

/* Hamburger animations when open */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
  }
}

/* 6. HERO SECTION */
.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-premium);
  background-color: var(--color-bg-card-light);
}

.hero-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.hero-card {
  width: 100%;
  flex-shrink: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
}

.hero-text h1 {
  font-size: 2.2rem;
  color: var(--color-text-dark);
}

.hero-text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 480px;
}

/* Custom premium bullets for Slide 2 */
.hero-text ul.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 480px;
}

.hero-text ul.hero-bullets li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
  font-weight: 400;
}

.hero-text ul.hero-bullets li::before {
  content: "•";
  color: var(--color-gold);
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 1.3rem;
  line-height: 1;
}

/* Dots navigation indicators */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 32px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  background: rgba(0, 0, 0, 0.15);
  border: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
  width: 24px;
  border-radius: 4px;
}

.hero-image-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0c0c0d;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .hero-card {
    flex-direction: row;
    padding: 64px;
    gap: 48px;
    height: 500px; /* Altura fija para mantener proporciones exactas */
    align-items: center;
  }
  .hero-text h1 {
    font-size: 3.5rem;
  }
  .hero-text, .hero-image-wrapper {
    flex: 1;
    height: 100%;
    min-height: auto;
  }
  .slider-dots {
    bottom: 30px;
    left: 64px;
  }
}

/* 7. TRANSITION BLOCK */
.transition-block {
  text-align: center;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gota-icon {
  width: 96px;
  height: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.gota-icon:hover {
  transform: scale(1.05);
}

.transition-text {
  font-family: var(--font-title);
  color: var(--color-gold);
  font-size: 1.4rem;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* 8. WHAT MAKES US DIFFERENT (DARK BENTO) */
.different-card {
  background-color: var(--color-bg-card-dark);
  border-radius: var(--border-radius-xl);
  padding: 32px;
  color: var(--color-text-light);
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-shadow: var(--shadow-dark);
}

/* Collage Area */
.collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.collage-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.collage-item:hover img {
  transform: scale(1.05);
}

.collage-top {
  grid-column: span 2;
  height: 200px;
}

.collage-bottom-left, .collage-bottom-right {
  height: 150px;
}

/* Content Area */
.different-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.different-content h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
}

.different-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.different-list li {
  position: relative;
  padding-left: 20px;
}

.different-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
}

.list-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.list-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
  margin-top: 2px;
}

@media (min-width: 768px) {
  .different-card {
    flex-direction: row;
    padding: 64px;
    gap: 60px;
  }
  .different-content, .collage-grid {
    flex: 1;
  }
  .collage-top {
    height: 280px;
  }
  .collage-bottom-left, .collage-bottom-right {
    height: 200px;
  }
  .different-content h2 {
    font-size: 2.8rem;
  }
  .different-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 30px;
  }
}

/* 9. JOIN THE LIST (SUBSCRIBE) */
.subscribe-section {
  text-align: center;
  padding: 64px 0;
}

.subscribe-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.subscribe-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px; /* tight vertical spacing exactly like mockup */
  text-align: center;
}

.subscribe-container h2 {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.subscribe-offer {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--color-text-dark);
  margin: 0;
  text-align: center;
}

.highlight-gold {
  color: var(--color-gold);
}

.subscribe-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Subscription Form */
.subscribe-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  margin-top: 10px;
}

.subscribe-input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid #dcdcdc;
  font-size: 0.9rem;
  text-align: center;
  outline: none;
  transition: var(--transition-fast);
}

.subscribe-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

.subscribe-form button {
  width: 100%;
}

@media (min-width: 576px) {
  .subscribe-form {
    flex-direction: row;
    background-color: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 50px;
    padding: 6px;
    gap: 0;
  }
  .subscribe-input {
    border: none;
    text-align: left;
    padding: 12px 24px;
  }
  .subscribe-input:focus {
    box-shadow: none;
  }
  .subscribe-form button {
    width: auto;
  }
}

@media (min-width: 768px) {
  .subscribe-container h2 {
    font-size: 2.2rem;
  }
}

/* 10. FEATURED PRODUCT (GOLD BAND) */
.featured-band {
  background-color: var(--color-gold-band);
  padding: 64px 0;
  color: #ffffff;
  position: relative;
  overflow: visible;
  margin-top: 60px; /* space for the top circle overlap */
}

.featured-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.featured-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.featured-text h3 {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
}

.featured-text h2 {
  font-size: 1.8rem;
  color: #ffffff;
}

.featured-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto;
  opacity: 0.95;
}

.featured-text .btn {
  margin-top: 12px;
  align-self: center;
}

/* Center circle icon */
.featured-icon-circle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--color-gold-band);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: none;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.03);
}

.featured-icon-img {
  width: 84px;
  height: auto;
  object-fit: contain;
}

.featured-image-wrapper {
  max-width: 380px;
  width: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.featured-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

@media (min-width: 768px) {
  .featured-band {
    padding: 80px 0;
  }
  .featured-container {
    flex-direction: row;
    justify-content: center;
    gap: 56px;
  }
  .featured-text {
    flex: none;
    text-align: left;
    align-items: flex-start;
    max-width: 400px;
  }
  .featured-text p {
    margin: 0;
    max-width: 380px;
  }
  .featured-icon-circle {
    width: 120px;
    height: 120px;
  }
  .featured-image-wrapper {
    flex: none;
    max-width: 480px;
    width: 100%;
  }
}

/* 11. PRIVESSA NOIR XL */
.xl-section {
  text-align: center;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.xl-section h2 {
  font-size: 2.2rem;
}

.xl-section p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 480px;
  line-height: 1.6;
  white-space: pre-line; /* respects line break in design */
}

.xl-section .btn {
  margin-top: 12px;
}

/* 12. THREE COLUMN ARTICLES (JOURNAL GRID) */
.journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.journal-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.journal-img-wrapper {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 280px;
  background-color: #f7f7f7;
}

.journal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.journal-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.journal-info h3 {
  font-size: 1.15rem;
  color: var(--color-text-dark);
}

.journal-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto;
}

.journal-link {
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
  text-transform: uppercase;
  margin-top: 6px;
  align-self: center;
  position: relative;
  font-weight: 600;
}

.journal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.journal-card:hover .journal-link {
  color: var(--color-gold-dark);
}

.journal-card:hover .journal-link::after {
  background-color: var(--color-gold-dark);
  width: 0;
  left: 50%;
}

@media (min-width: 768px) {
  .journal-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .journal-img-wrapper {
    height: 320px;
  }
}

/* 13. ELEVATED CARD SECTION (BOTTOM) */
.elevated-section {
  padding-bottom: 64px;
}

.elevated-card {
  background-color: var(--color-bg-card-light);
  border-radius: var(--border-radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.elevated-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.elevated-text h2 {
  font-size: 2rem;
  color: var(--color-text-dark);
}

.elevated-text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 320px;
}

.elevated-image-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 300px;
}

.elevated-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

@media (min-width: 768px) {
  .elevated-card {
    flex-direction: row;
    padding: 64px;
    gap: 48px;
  }
  .elevated-text h2 {
    font-size: 2.8rem;
  }
  .elevated-text, .elevated-image-wrapper {
    flex: 1;
    height: 380px;
  }
}

/* 14. SOCIAL MEDIA ICONS ROW */
.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 24px 0 48px 0;
}

.social-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(18, 18, 18, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icon-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  border-color: var(--color-gold);
  background-color: var(--color-gold-light);
  transform: translateY(-3px);
}

.social-icon-btn:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* 15. BLACK FOOTER */
.footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 64px 0 24px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 65px;
  width: auto;
  align-self: flex-start;
}

/* Footer Column Structures */
.footer-cols-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  opacity: 0.95;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
}

.footer-link:hover {
  color: var(--color-gold);
  padding-left: 2px;
}

.footer-info-text {
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
  line-height: 1.6;
}

.footer-info-text a {
  color: var(--color-gold);
}

.footer-info-text a:hover {
  text-decoration: underline;
}

/* Footer Bottom Area */
.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.copyright {
  font-size: 0.75rem;
  color: var(--color-text-muted-light);
  opacity: 0.6;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 180px 1fr;
    gap: 20px;
  }
  .footer-cols-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: center;
  }
}

/* 16. PAGE CONTENT STYLING (FOR SUBPAGES) */
.page-header {
  background-color: var(--color-bg-card-light);
  padding: 64px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--color-text-dark);
}

.page-content {
  padding: 64px 0;
}

.page-text-block {
  max-width: 720px;
  margin: 0 auto;
}

.page-text-block p {
  margin-bottom: 24px;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Contact Form Specifics */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--border-radius-sm);
  border: 1px solid #dcdcdc;
  font-size: 0.95rem;
  outline: none;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
  border-radius: var(--border-radius-md);
}

/* 17. SCROLL REVEAL UTILITY */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* 18. STORY PAGE STYLES */
.story-section-title {
  font-family: var(--font-title);
  color: var(--color-text-dark);
  font-size: 1.8rem;
  margin-top: 36px;
  margin-bottom: 16px;
}

.story-tagline {
  font-family: var(--font-title);
  font-style: italic;
  color: var(--color-gold-dark);
  font-size: 1.25rem;
  margin-top: 12px;
  margin-bottom: 24px;
}

.story-list {
  list-style: none;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 576px) {
  .story-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.story-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.story-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
}

