/*!
Theme Name: danial
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: danial
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

danial is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-black: #0a0a0a;
  --primary-white: #fafafa;
  --soft-gray: #f5f5f5;
  --text-gray: #555555;
  --border-gray: #d8d8d8;
  --gold-accent: #c9a961;
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--primary-black);
  background-color: var(--primary-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    transparent 0%,
    rgba(0, 0, 0, 0.02) 100%
  );
  pointer-events: none;
  z-index: 9999;
}

body.page-loaded {
  animation: pageReveal 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

a:hover {
  color: var(--gold-accent);
  transform: translateY(-2px);
}

/* ===================================
   LANDING PAGE
   =================================== */
.landing-page {
  overflow: hidden;
}

.landing-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--primary-black);
}

/* Photo Grid Background */
.landing-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0;
  opacity: 0;
  animation: fadeIn 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.grid-item {
  overflow: hidden;
  position: relative;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: grayscale(20%);
}

.grid-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Dark Overlay */
.landing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.landing-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="transparent"/><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.landing-content {
  text-align: center;
  color: var(--primary-white);
  z-index: 2;
  position: relative;
}

.landing-content .logo h1 {
  font-size: 5.5rem;
  font-weight: 300;
  letter-spacing: 18px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  font-family: "Cormorant Garamond", serif;
  line-height: 1.2;
}

.landing-content .tagline {
  font-size: 1.1rem;
  letter-spacing: 6px;
  font-weight: 300;
  margin-bottom: 4rem;
  animation: fadeInUp 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.9;
  font-family: "Helvetica Neue", sans-serif;
  text-transform: uppercase;
}

.enter-btn {
  display: inline-block;
  padding: 18px 65px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--primary-white);
  font-size: 0.875rem;
  letter-spacing: 4px;
  font-weight: 300;
  font-family: "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: fadeIn 2s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.05);
}

.enter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.enter-btn:hover::before {
  left: 100%;
}

.enter-btn:hover {
  background-color: var(--primary-white);
  color: var(--primary-black);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===================================
   MAIN HEADER & NAVIGATION
   =================================== */
.main-header {
  position: sticky;
  top: 0;
  background-color: rgba(250, 250, 250, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(216, 216, 216, 0.3);
  z-index: 1002;
  padding: 25px 0;
  box-shadow: 0 2px 20px var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-header:hover {
  box-shadow: 0 4px 30px var(--shadow-medium);
}

.main-nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-small a {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 3px;
  font-family: "Cormorant Garamond", serif;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo-small a:hover {
  letter-spacing: 4px;
  color: var(--gold-accent);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 400;
  padding: 8px 0;
  position: relative;
  font-family: "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-accent),
    transparent
  );
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(-50%);
}

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

.nav-menu li a.active {
  color: var(--gold-accent);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1003;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-black);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===================================
   HERO VIDEO SECTION
   =================================== */
.hero-video-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--primary-white);
  z-index: 3;
  width: 90%;
  max-width: 900px;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 25px;
  line-height: 1.2;
  animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s both;
}

.hero-subtitle {
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 50px;
  opacity: 0.95;
  font-weight: 300;
  animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.7s both;
}

.hero-cta {
  display: inline-block;
  padding: 20px 70px;
  border: 2px solid var(--primary-white);
  color: var(--primary-white);
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: transparent;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.9s both;
}

.hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-white);
  transition: left 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.hero-cta:hover::before {
  left: 0;
}

.hero-cta:hover {
  color: var(--primary-black);
  border-color: var(--gold-accent);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--primary-white);
  z-index: 3;
  animation: fadeIn 2s ease 1.5s both;
}

.scroll-indicator span {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  opacity: 0.8;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--primary-white);
  border-bottom: 2px solid var(--primary-white);
  transform: rotate(45deg);
  margin: 0 auto;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-10px) rotate(45deg);
  }
  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

/* ===================================
   PHILOSOPHY SECTION
   =================================== */
.philosophy-section {
  padding: 150px 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.section-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 60px;
  color: var(--primary-black);
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-accent),
    transparent
  );
}

.philosophy-text {
  text-align: left;
  margin-bottom: 60px;
}

.philosophy-text p {
  font-size: 1.15rem;
  line-height: 2;
  margin-bottom: 30px;
  color: var(--text-gray);
}

.highlight-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem !important;
  font-style: italic;
  color: var(--primary-black) !important;
  text-align: center !important;
  margin-top: 50px !important;
  font-weight: 500;
}

.philosophy-signature {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-gray);
}

.signature-tagline {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 15px;
  color: var(--primary-black);
}

.signature-name {
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--gold-accent);
  text-transform: uppercase;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
  padding: 100px 40px;
  background: linear-gradient(
    180deg,
    var(--soft-gray) 0%,
    var(--primary-white) 100%
  );
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: var(--border-gray);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold-accent);
  margin-bottom: 15px;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray);
}

/* ===================================
   FEATURED IN SECTION
   =================================== */
.featured-in-section {
  padding: 100px 40px;
  text-align: center;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 50px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.press-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--text-gray);
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-style: italic;
}

.press-logo:hover {
  opacity: 1;
  color: var(--gold-accent);
  transform: translateY(-5px);
}

/* ===================================
   HERO GALLERY
   =================================== */
.hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 120px;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s forwards;
}

.hero-image {
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  cursor: pointer;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.hero-image:hover::before {
  opacity: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: grayscale(0%) brightness(100%);
}

.hero-image:hover img {
  transform: scale(1.08);
  filter: grayscale(10%) brightness(95%);
}

.hero-image:nth-child(1) {
  animation-delay: 0.4s;
}

.hero-image:nth-child(2) {
  animation-delay: 0.5s;
}

.hero-image:nth-child(3) {
  animation-delay: 0.6s;
}

/* ===================================
   QUOTE SECTION
   =================================== */
.quote-section {
  max-width: 1000px;
  margin: 0 auto 150px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  opacity: 0;
  animation: fadeIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s forwards;
}

.quote-section::before,
.quote-section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-accent),
    transparent
  );
}

.quote-section::before {
  top: 0;
}

.quote-section::after {
  bottom: 0;
}

.main-quote {
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 6px;
  margin-bottom: 3rem;
  line-height: 1.5;
  font-family: "Cormorant Garamond", serif;
  color: var(--primary-black);
  position: relative;
  padding: 0 20px;
}

.main-quote::before {
  content: '"';
  position: absolute;
  left: -20px;
  top: -30px;
  font-size: 6rem;
  color: var(--gold-accent);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.sub-quote {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-gray);
  margin-bottom: 1.8rem;
  font-weight: 300;
  font-family: "Helvetica Neue", sans-serif;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-top: 4rem;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  color: var(--text-gray);
}

/* ===================================
   FEATURED GALLERIES GRID
   =================================== */
.featured-galleries {
  max-width: 1500px;
  margin: 0 auto 150px;
  padding: 0 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}
.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}
.gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}
.gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}

.gallery-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--soft-gray);
  box-shadow: 0 4px 20px var(--shadow-light);
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(201, 169, 97, 0.3) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.gallery-item:hover .gallery-image {
  box-shadow: 0 12px 40px var(--shadow-medium);
}

.gallery-item:hover .gallery-image::after {
  opacity: 1;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: grayscale(5%);
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.12);
  filter: grayscale(0%) brightness(90%) contrast(105%);
}

/* ===================================
   STORIES SECTION
   =================================== */
.stories-section {
  max-width: 1500px;
  /* margin: 0 auto 150px; */
  padding: 50px 60px;
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--soft-gray) 0%,
    var(--primary-white) 100%
  );
  position: relative;
}

.stories-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-accent),
    transparent
  );
}

.section-heading {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 6px;
  margin-bottom: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  opacity: 0;
  animation: fadeInDown 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}

.section-subheading {
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 4rem;
  font-family: "Cormorant Garamond", serif;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s forwards;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.story-item {
  text-align: center;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.story-item:nth-child(1) {
  animation-delay: 0.5s;
}
.story-item:nth-child(2) {
  animation-delay: 0.6s;
}
.story-item:nth-child(3) {
  animation-delay: 0.7s;
}

.story-item a {
  display: block;
}

.story-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 1.5rem;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 6px 25px var(--shadow-light);
  filter: grayscale(10%);
}

.story-item:hover img {
  transform: scale(1.06) translateY(-5px);
  box-shadow: 0 15px 45px var(--shadow-medium);
  filter: grayscale(0%) brightness(95%);
}

.story-title {
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 400;
  margin-top: 1.5rem;
  font-family: "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.story-item:hover .story-title {
  color: var(--gold-accent);
}

/* ===================================
   GALLERIES LIST PAGE
   =================================== */
.galleries-list {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 60px;
}

.gallery-entry {
  margin-bottom: 120px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(216, 216, 216, 0.4);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.gallery-entry:nth-child(1) {
  animation-delay: 0.1s;
}
.gallery-entry:nth-child(2) {
  animation-delay: 0.3s;
}
.gallery-entry:nth-child(3) {
  animation-delay: 0.5s;
}
.gallery-entry:nth-child(4) {
  animation-delay: 0.7s;
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 0.8rem;
  font-family: "Cormorant Garamond", serif;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-title a {
  position: relative;
  display: inline-block;
}

.gallery-title a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-accent), transparent);
  transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-title a:hover::after {
  width: 100%;
}

.gallery-date {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  font-family: "Helvetica Neue", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.gallery-description {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-gray);
  margin-bottom: 3rem;
  font-family: "Cormorant Garamond", serif;
}

.gallery-description p {
  margin-bottom: 1.5rem;
}

.gallery-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 2.5rem;
}

.gallery-images-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px var(--shadow-light);
  cursor: pointer;
}

.gallery-images-grid img:hover {
  transform: scale(1.04) translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-medium);
}

.gallery-stats {
  display: flex;
  gap: 25px;
  font-size: 0.875rem;
  color: var(--text-gray);
  font-family: "Helvetica Neue", sans-serif;
}

.gallery-stats span {
  opacity: 0.8;
}

.gallery-stats a {
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-stats a:hover {
  border-bottom-color: var(--gold-accent);
  color: var(--gold-accent);
  opacity: 1;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-section {
  max-width: 1100px;
  margin: 80px auto 150px;
  padding: 0 60px;
}

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

.about-title {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 10px;
  margin-bottom: 4rem;
  font-family: "Cormorant Garamond", serif;
  opacity: 0;
  animation: fadeInDown 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
  position: relative;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-accent),
    transparent
  );
}

.about-content {
  text-align: left;
  margin-bottom: 5rem;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s forwards;
}

.about-intro {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 3rem;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-accent);
}

.about-content p {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.about-tagline {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-top: 3rem;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  color: var(--primary-black);
}

.about-image {
  max-width: 600px;
  margin: 5rem auto;
  opacity: 0;
  animation: fadeIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s forwards;
}

.about-image img {
  width: 100%;
  filter: grayscale(20%) sepia(10%);
  box-shadow: 0 10px 40px var(--shadow-medium);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image:hover img {
  filter: grayscale(0%) sepia(0%);
  transform: scale(1.02);
  box-shadow: 0 15px 50px var(--shadow-dark);
}

.awards-section,
.featured-section {
  margin: 5rem 0;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s forwards;
}

.awards-section h2,
.featured-section h2,
.contact-info h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 3rem;
  font-family: "Cormorant Garamond", serif;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  text-align: left;
}

.award-item p {
  padding: 20px 25px;
  border: 1px solid rgba(216, 216, 216, 0.6);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  font-family: "Helvetica Neue", sans-serif;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: var(--soft-gray);
}

.award-item p:hover {
  border-color: var(--gold-accent);
  background: var(--primary-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-light);
}

.featured-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 3rem;
}

.logo-item {
  padding: 25px;
  border: 1px solid rgba(216, 216, 216, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft-gray);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo-item:hover {
  border-color: var(--gold-accent);
  background: var(--primary-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-light);
}

.logo-item p {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  font-weight: 400;
  font-family: "Helvetica Neue", sans-serif;
  text-transform: uppercase;
}

.contact-info {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid rgba(216, 216, 216, 0.4);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 1s forwards;
}

.contact-info p {
  margin-bottom: 1rem;
  color: var(--text-gray);
  font-size: 1.05rem;
  font-family: "Cormorant Garamond", serif;
}

.contact-info a {
  color: var(--primary-black);
  border-bottom: 1px solid var(--primary-black);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-info a:hover {
  color: var(--gold-accent);
  border-bottom-color: var(--gold-accent);
}

/* ===================================
   FOOTER
   =================================== */
.main-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  color: rgba(250, 250, 250, 0.9);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  margin-top: 100px;
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-accent),
    transparent
  );
}

.main-footer p {
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  font-family: "Cormorant Garamond", serif;
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(250, 250, 250, 0.7);
  font-family: "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold-accent);
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes zoomIn {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes pageReveal {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ===================================
   ENHANCED HOVER EFFECTS
   =================================== */
/* Smooth selection colors */
::selection {
  background-color: var(--gold-accent);
  color: var(--primary-white);
}

::-moz-selection {
  background-color: var(--gold-accent);
  color: var(--primary-white);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (min-width: 769px) {
  .mobile-menu-toggle,
  .mobile-overlay {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .landing-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }

  .hero-gallery,
  .gallery-grid,
  .stories-grid,
  .gallery-images-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-content .logo h1 {
    font-size: 3rem;
  }

  .main-quote {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 15px 0;
  }

  .main-nav {
    padding: 0 20px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-white);
    flex-direction: column;
    gap: 0;
    padding: 80px 30px 40px;
    box-shadow: -5px 0 20px var(--shadow-dark);
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-gray);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu li a {
    display: block;
    padding: 18px 0;
    font-size: 0.875rem;
    letter-spacing: 3px;
    transition: all 0.3s ease;
  }

  .nav-menu li a:hover {
    padding-left: 10px;
    color: var(--gold-accent);
  }

  .nav-menu li a::after {
    display: none;
  }

  .nav-menu li a.active {
    border-left: 3px solid var(--gold-accent);
    padding-left: 15px;
    color: var(--gold-accent);
  }

  /* Mobile overlay */
  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 998;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-gallery,
  .gallery-grid,
  .stories-grid,
  .gallery-images-grid,
  .awards-grid,
  .featured-logos {
    grid-template-columns: 1fr;
  }

  .landing-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }

  .hero-gallery {
    gap: 10px;
    margin-bottom: 60px;
    padding: 0 10px;
  }

  .gallery-grid,
  .stories-grid {
    margin-bottom: 60px;
  }

  .landing-content .logo h1 {
    font-size: 2rem;
    letter-spacing: 4px;
  }

  .landing-content .tagline {
    font-size: 0.875rem;
    letter-spacing: 2px;
  }

  .main-quote {
    font-size: 1.5rem;
    padding: 60px 20px;
  }

  .about-title {
    font-size: 2rem;
    letter-spacing: 4px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .featured-galleries,
  .stories-section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .landing-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }

  .main-header {
    padding: 12px 0;
  }

  .main-nav,
  .quote-section,
  .featured-galleries,
  .stories-section,
  .galleries-list,
  .about-section {
    padding: 0 15px;
  }

  .logo-small a {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  .mobile-menu-toggle {
    width: 35px;
    height: 35px;
  }

  .mobile-menu-toggle span {
    width: 22px;
  }

  .nav-menu {
    width: 260px;
    padding: 70px 25px 30px;
  }

  .nav-menu li a {
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    padding: 16px 0;
  }

  .hero-gallery {
    gap: 8px;
    margin-bottom: 40px;
    padding: 0 5px;
  }

  .landing-content .logo h1 {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }

  .enter-btn {
    padding: 12px 40px;
    font-size: 0.875rem;
    letter-spacing: 2px;
  }

  .main-quote {
    font-size: 1.25rem;
    letter-spacing: 2px;
    padding: 40px 15px;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .featured-galleries,
  .stories-section {
    padding: 40px 15px;
  }
}

/* ===================================
   TESTIMONIALS PAGE STYLES
   =================================== */
.testimonials-page {
  padding-top: 80px;
}

.page-hero {
  text-align: center;
  padding: 100px 40px 80px;
  background: linear-gradient(
    180deg,
    var(--soft-gray) 0%,
    var(--primary-white) 100%
  );
}

.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: var(--primary-black);
  position: relative;
  display: inline-block;
  animation: fadeInDown 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.page-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--gold-accent);
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  letter-spacing: 1px;
  font-weight: 300;
  animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s both;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 50px;
}

.testimonial-card {
  background: var(--primary-white);
  border: 1px solid var(--border-gray);
  padding: 50px;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-card:nth-child(1) {
  animation-delay: 0s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.1s;
}
.testimonial-card:nth-child(3) {
  animation-delay: 0.2s;
}
.testimonial-card:nth-child(4) {
  animation-delay: 0.3s;
}
.testimonial-card:nth-child(5) {
  animation-delay: 0.4s;
}
.testimonial-card:nth-child(6) {
  animation-delay: 0.5s;
}

.testimonial-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(
    135deg,
    var(--soft-gray) 0%,
    var(--primary-white) 100%
  );
  border: 2px solid var(--gold-accent);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px var(--shadow-medium);
  border-color: var(--gold-accent);
}

.quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  color: var(--gold-accent);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--primary-black);
  margin-bottom: 40px;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-accent);
  transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-author img {
  transform: scale(1.1);
  box-shadow: 0 5px 20px var(--shadow-medium);
}

.author-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--primary-black);
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-gray);
  letter-spacing: 1px;
}

.testimonials-cta,
.stories-cta {
  text-align: center;
  padding: 100px 40px;
  background: linear-gradient(
    180deg,
    var(--primary-white) 0%,
    var(--soft-gray) 100%
  );
}

.testimonials-cta h2,
.stories-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-black);
}

.testimonials-cta p,
.stories-cta p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.cta-button {
  display: inline-block;
  padding: 18px 60px;
  border: 2px solid var(--primary-black);
  background: transparent;
  color: var(--primary-black);
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-black);
  transition: left 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover {
  color: var(--primary-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-dark);
  border-color: var(--gold-accent);
}

/* ===================================
   STORIES PAGE STYLES
   =================================== */
.stories-page {
  padding-top: 80px;
}

.stories-list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
}

.story-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 120px;
  align-items: center;
  animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.story-feature.reverse {
  direction: rtl;
}

.story-feature.reverse .story-content {
  direction: ltr;
}

.story-image {
  position: relative;
  overflow: hidden;
  height: 600px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.story-feature:hover .story-image img {
  transform: scale(1.08);
}

.story-content {
  padding: 40px;
}

.story-date {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--gold-accent);
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 500;
}

.story-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--primary-black);
  letter-spacing: 1px;
}

.story-couple {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.story-excerpt {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--primary-black);
  margin-bottom: 30px;
}

.story-link {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--primary-black);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
}

.story-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* ===================================
   INVESTMENT PAGE STYLES
   =================================== */
.investment-page {
  padding-top: 80px;
}

.investment-philosophy {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 40px;
  text-align: center;
}

.philosophy-container h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  margin-bottom: 30px;
  color: var(--primary-black);
}

.lead-text {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 25px;
  color: var(--primary-black);
  font-weight: 400;
}

.philosophy-container p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-gray);
}

/* Packages Grid */
.packages-section {
  padding: 100px 40px;
  background: linear-gradient(
    180deg,
    var(--soft-gray) 0%,
    var(--primary-white) 100%
  );
}

.packages-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.package-card {
  background: var(--primary-white);
  border: 1px solid var(--border-gray);
  padding: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border: 2px solid var(--gold-accent);
  transform: scale(1.05);
  box-shadow: 0 20px 60px var(--shadow-medium);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px var(--shadow-dark);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-accent);
  color: var(--primary-white);
  padding: 8px 30px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.package-header {
  padding: 50px 40px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border-gray);
}

.package-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--primary-black);
  font-weight: 400;
}

.package-tagline {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 30px;
  font-style: italic;
}

.package-price {
  margin-top: 30px;
}

.currency {
  font-size: 1.5rem;
  color: var(--gold-accent);
  vertical-align: top;
}

.amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: var(--primary-black);
  font-weight: 300;
  line-height: 1;
}

.package-content {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-features {
  list-style: none;
  margin-bottom: 40px;
  flex: 1;
}

.package-features li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(216, 216, 216, 0.3);
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features strong {
  color: var(--primary-black);
  font-weight: 500;
}

.package-cta {
  display: block;
  text-align: center;
  padding: 18px 0;
  border: 2px solid var(--primary-black);
  color: var(--primary-black);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: transparent;
}

.package-cta:hover {
  background: var(--primary-black);
  color: var(--primary-white);
  border-color: var(--gold-accent);
  transform: translateY(0);
}

.package-card.featured .package-cta {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.package-card.featured .package-cta:hover {
  background: var(--gold-accent);
  color: var(--primary-white);
}

/* Add-ons Section */
.add-ons-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  text-align: center;
}

.add-ons-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-black);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 60px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.addon-item {
  padding: 40px 30px;
  border: 1px solid var(--border-gray);
  background: var(--primary-white);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.addon-item:hover {
  border-color: var(--gold-accent);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-light);
}

.addon-item h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-black);
}

.addon-price {
  font-size: 1.2rem;
  color: var(--gold-accent);
  margin-bottom: 15px;
  font-weight: 500;
}

.addon-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Booking Info Section */
.booking-info-section {
  background: var(--soft-gray);
  padding: 100px 40px;
}

.booking-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.booking-column h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--primary-black);
}

.process-list {
  list-style: none;
  counter-reset: step-counter;
}

.process-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

.process-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--gold-accent);
  background: var(--primary-white);
}

.process-list strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-black);
}

.process-list p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.info-block {
  margin-bottom: 35px;
}

.info-block h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-black);
}

.info-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-gray);
}

/* Investment CTA */
.investment-cta {
  text-align: center;
  padding: 120px 40px;
  background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
  color: var(--primary-white);
}

.investment-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: var(--primary-white);
}

.investment-cta > p {
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.cta-button-large {
  display: inline-block;
  padding: 22px 80px;
  border: 2px solid var(--gold-accent);
  background: var(--gold-accent);
  color: var(--primary-black);
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-button-large:hover {
  background: transparent;
  color: var(--gold-accent);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(201, 169, 97, 0.3);
}

.cta-note {
  margin-top: 30px;
  font-size: 0.85rem;
  opacity: 0.7;
  letter-spacing: 1px;
}

/* ===================================
   FAQ PAGE STYLES
   =================================== */
.faq-page {
  padding-top: 80px;
}

/* FAQ Hero */
.faq-hero {
  padding: 140px 20px 100px;
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--soft-gray) 0%,
    var(--primary-white) 100%
  );
  border-bottom: 1px solid var(--border-gray);
}

.faq-hero .hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.faq-hero .page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 400;
  margin: 25px 0 30px;
  color: var(--primary-black);
  letter-spacing: 2px;
}

.faq-hero .hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  line-height: 1.9;
}

.faq-hero .inline-link {
  color: var(--gold-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-accent);
  transition: all 0.3s ease;
}

.faq-hero .inline-link:hover {
  color: var(--primary-black);
  border-bottom-color: var(--primary-black);
}

/* FAQ Categories */
.faq-categories {
  background: var(--primary-white);
  padding: 50px 20px;
  border-bottom: 1px solid var(--border-gray);
  position: sticky;
  top: 80px;
  z-index: 99;
}

.category-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.category-btn {
  background: transparent;
  border: 1px solid var(--border-gray);
  padding: 12px 28px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--primary-black);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

/* FAQ Accordion */
.faq-accordion-section {
  padding: 100px 20px;
  background: var(--primary-white);
}

.faq-category-group {
  max-width: 900px;
  margin: 0 auto 60px;
}

.faq-item {
  margin-bottom: 25px;
  border: 1px solid var(--border-gray);
  background: var(--primary-white);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--gold-accent);
}

.faq-item.active {
  border-color: var(--gold-accent);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--primary-black);
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--gold-accent);
}

.faq-icon {
  font-size: 2rem;
  color: var(--gold-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer p {
  padding: 0 40px 25px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.faq-answer p:last-child {
  padding-bottom: 35px;
}

.faq-answer .inline-link {
  color: var(--gold-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.3s ease;
}

.faq-answer .inline-link:hover {
  border-bottom-color: var(--gold-accent);
}

.faq-list {
  list-style: none;
  padding: 0 40px 15px 70px;
  margin: 10px 0;
}

.faq-list li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1.02rem;
}

.faq-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-accent);
  font-size: 1.5rem;
  line-height: 1;
}

/* FAQ CTA */
.faq-cta {
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
  padding: 100px 20px;
  text-align: center;
  border-top: 1px solid var(--border-gray);
}

.faq-cta .cta-content {
  max-width: 750px;
  margin: 0 auto;
}

.faq-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: var(--primary-black);
  font-weight: 400;
}

.faq-cta p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-gray);
  margin-bottom: 45px;
  letter-spacing: 0.3px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold-accent);
  border: 2px solid var(--gold-accent);
  color: var(--primary-black);
  padding: 18px 50px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
  display: inline-block;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-black);
  color: var(--primary-black);
  padding: 18px 50px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--primary-black);
  color: var(--primary-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .faq-hero .page-title {
    font-size: 3rem;
  }

  .category-nav {
    gap: 12px;
  }

  .category-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
  }

  .faq-question {
    padding: 25px;
    font-size: 1.3rem;
  }

  .faq-icon {
    font-size: 1.5rem;
  }

  .faq-answer p {
    padding: 0 25px 20px;
    font-size: 1rem;
  }

  .faq-list {
    padding: 0 25px 15px 50px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 400px;
  }

  .faq-cta h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .faq-hero .page-title {
    font-size: 2.2rem;
  }

  .faq-question {
    padding: 20px;
    font-size: 1.15rem;
  }

  .faq-answer p {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  .faq-list {
    padding: 0 20px 10px 40px;
  }
}

/* ===================================
   EXPERIENCE PAGE STYLES
   =================================== */
.experience-page {
  padding-top: 80px;
}

/* Experience Hero */
.experience-hero {
  padding: 140px 20px 100px;
  text-align: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
  border-bottom: 1px solid var(--border-gray);
}

.experience-hero .hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.experience-hero .page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.8rem;
  font-weight: 400;
  margin: 25px 0 35px;
  color: var(--primary-black);
  letter-spacing: 2px;
  line-height: 1.2;
}

.experience-hero .hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  line-height: 1.9;
  max-width: 750px;
  margin: 0 auto;
}

/* Timeline Section */
.experience-timeline {
  padding: 120px 20px;
  background: var(--primary-white);
}

.timeline-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 100px;
}

.timeline-intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: var(--primary-black);
  font-weight: 400;
}

.timeline-intro p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-gray);
}

.timeline {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--gold-accent) 0%,
    rgba(201, 169, 97, 0.2) 100%
  );
}

.timeline-item {
  position: relative;
  padding-left: 180px;
  margin-bottom: 100px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}
.timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}
.timeline-item:nth-child(7) {
  animation-delay: 0.7s;
}
.timeline-item:nth-child(8) {
  animation-delay: 0.8s;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--gold-accent);
  background: var(--primary-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
  background: var(--gold-accent);
}

.timeline-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-accent);
  transition: color 0.3s ease;
}

.timeline-item:hover .timeline-number {
  color: var(--primary-white);
}

.timeline-content {
  background: var(--soft-gray);
  padding: 50px;
  border: 1px solid var(--border-gray);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-item:hover .timeline-content {
  transform: translateX(10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-accent);
}

.timeline-timeframe {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 15px;
  font-weight: 500;
}

.timeline-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary-black);
  font-weight: 500;
}

.timeline-content > p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.timeline-details {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid var(--border-gray);
}

.detail-item {
  margin-bottom: 20px;
}

.detail-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--primary-black);
  letter-spacing: 0.5px;
}

.detail-item ul {
  list-style: none;
  padding: 0;
}

.detail-item li {
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.98rem;
}

.detail-item li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold-accent);
  font-weight: bold;
}

/* What Makes Us Different */
.experience-difference {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  padding: 120px 20px;
  border-top: 1px solid var(--border-gray);
}

.difference-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.difference-intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.8rem;
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--primary-black);
  font-weight: 400;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.difference-item {
  text-align: center;
  padding: 50px 30px;
  background: var(--primary-white);
  border: 1px solid var(--border-gray);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.difference-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--gold-accent);
}

.difference-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  transition: transform 0.3s ease;
}

.difference-item:hover .difference-icon {
  transform: scale(1.15);
}

.difference-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-black);
  font-weight: 500;
}

.difference-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-gray);
}

/* FAQ Preview */
.experience-faq-preview {
  padding: 120px 20px;
  background: var(--primary-white);
}

.experience-faq-preview h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 70px;
  color: var(--primary-black);
  font-weight: 400;
}

.faq-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.faq-preview-item {
  padding: 40px;
  background: var(--soft-gray);
  border: 1px solid var(--border-gray);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-preview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-accent);
}

.faq-preview-item h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--primary-black);
  font-weight: 500;
  line-height: 1.4;
}

.faq-preview-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-gray);
}

.faq-link-wrapper {
  text-align: center;
  margin-top: 60px;
}

/* Experience CTA */
.experience-cta {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 120px 20px;
  text-align: center;
}

.experience-cta .container {
  max-width: 700px;
  margin: 0 auto;
}

.experience-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: var(--primary-white);
  margin: 20px 0 25px;
  font-weight: 400;
}

.experience-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .timeline-item {
    padding-left: 150px;
  }

  .timeline-marker {
    width: 100px;
    height: 100px;
  }

  .timeline-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .experience-hero .page-title {
    font-size: 3rem;
  }

  .timeline::before {
    left: 40px;
  }

  .timeline-item {
    padding-left: 110px;
  }

  .timeline-marker {
    width: 80px;
    height: 80px;
  }

  .timeline-number {
    font-size: 1.6rem;
  }

  .timeline-content {
    padding: 35px;
  }

  .timeline-content h3 {
    font-size: 1.8rem;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-preview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .experience-cta h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .experience-hero .page-title {
    font-size: 2.2rem;
  }

  .timeline-item {
    padding-left: 0;
    padding-top: 100px;
  }

  .timeline::before {
    left: 40px;
  }

  .timeline-marker {
    left: 0;
    top: 0;
  }

  .timeline-content {
    padding: 25px;
  }
}

/* ===================================
   JOURNAL PAGE STYLES
   =================================== */
.journal-page {
  padding-top: 80px;
}

/* Journal Hero */
.journal-hero {
  padding: 120px 20px 80px;
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--soft-gray) 0%,
    var(--primary-white) 100%
  );
  border-bottom: 1px solid var(--border-gray);
}

.journal-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.journal-hero .page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 400;
  margin: 20px 0 30px;
  color: var(--primary-black);
  letter-spacing: 2px;
}

.journal-hero .hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  letter-spacing: 1px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Journal Filter */
.journal-filter {
  padding: 60px 20px;
  background: var(--primary-white);
  border-bottom: 1px solid var(--border-gray);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-gray);
  padding: 12px 30px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--primary-black);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

/* Journal Grid */
.journal-grid {
  padding: 100px 20px;
  background: var(--primary-white);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Article Card */
.journal-article {
  display: flex;
  flex-direction: column;
  background: var(--primary-white);
  border: 1px solid var(--border-gray);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
}

.journal-article.featured {
  grid-column: span 2;
  flex-direction: row;
  border: 2px solid var(--gold-accent);
}

.journal-article:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--gold-accent);
}

.article-image {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.journal-article.featured .article-image {
  width: 55%;
  height: auto;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.journal-article:hover .article-image img {
  transform: scale(1.08);
}

.article-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.article-category {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--primary-white);
  background: var(--gold-accent);
  padding: 8px 20px;
  text-transform: uppercase;
  font-weight: 500;
}

.article-content {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.journal-article.featured .article-content {
  padding: 60px 50px;
  width: 45%;
}

.article-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.article-date,
.article-reading-time {
  opacity: 0.7;
}

.article-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--primary-black);
  font-weight: 500;
  transition: color 0.3s ease;
}

.journal-article.featured .article-title {
  font-size: 2.8rem;
  margin-bottom: 30px;
}

.journal-article:hover .article-title {
  color: var(--gold-accent);
}

.article-excerpt {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 15px;
  flex: 1;
}

.read-more-link {
  color: var(--primary-black);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.read-more-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.read-more-link:hover {
  color: var(--gold-accent);
}

.read-more-link:hover::after {
  width: 80%;
}

/* Load More Section */
.load-more-section {
  text-align: center;
  margin-top: 80px;
}

.load-more-btn {
  padding: 18px 60px;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid var(--primary-black);
  color: var(--primary-black);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
}

.load-more-btn:hover {
  background: var(--primary-black);
  color: var(--primary-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Newsletter Section */
.journal-newsletter {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 120px 20px;
  text-align: center;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
}

.journal-newsletter .section-label {
  color: var(--gold-accent);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}

.journal-newsletter h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: var(--primary-white);
  margin-bottom: 25px;
  font-weight: 400;
  letter-spacing: 1px;
}

.journal-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 20px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-white);
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-accent);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form .btn-primary {
  padding: 20px 50px;
  background: var(--gold-accent);
  border: 2px solid var(--gold-accent);
  color: var(--primary-black);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
}

.newsletter-form .btn-primary:hover {
  background: transparent;
  color: var(--gold-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.newsletter-privacy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  margin-top: 15px;
}

/* Journal Responsive */
@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 50px;
  }

  .journal-article.featured {
    grid-column: span 1;
    flex-direction: column;
  }

  .journal-article.featured .article-image {
    width: 100%;
    height: 400px;
  }

  .journal-article.featured .article-content {
    width: 100%;
    padding: 40px;
  }

  .journal-article.featured .article-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .journal-hero .page-title {
    font-size: 3rem;
  }

  .filter-buttons {
    gap: 15px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-image {
    height: 280px;
  }

  .article-content {
    padding: 30px;
  }

  .article-title {
    font-size: 1.6rem;
  }

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

  .journal-newsletter h2 {
    font-size: 2.5rem;
  }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */
.contact-page {
  padding-top: 80px;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-block h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-black);
  position: relative;
  padding-bottom: 10px;
}

.info-block h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-accent);
}

.info-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-gray);
}

.info-block a {
  display: block;
  font-size: 1rem;
  color: var(--primary-black);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.info-block a:hover {
  color: var(--gold-accent);
  padding-left: 10px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--border-gray);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-links a:hover {
  border-color: var(--gold-accent);
  background: var(--gold-accent);
  color: var(--primary-white);
  transform: translateY(-3px);
  padding-left: 20px;
}

.contact-form-wrapper {
  background: var(--soft-gray);
  padding: 60px;
  border: 1px solid var(--border-gray);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

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

.form-group label {
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--primary-black);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 20px;
  border: 1px solid var(--border-gray);
  background: var(--primary-white);
  font-size: 1rem;
  font-family: "Helvetica Neue", sans-serif;
  color: var(--primary-black);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

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

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--gold-accent);
}

.submit-button {
  padding: 18px 60px;
  background: var(--primary-black);
  color: var(--primary-white);
  border: 2px solid var(--primary-black);
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-accent);
  transition: left 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 0;
}

.submit-button:hover::before {
  left: 0;
}

.submit-button:hover {
  border-color: var(--gold-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.submit-button span {
  position: relative;
  z-index: 1;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-top: -10px;
}

.contact-image {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin: 0 40px 80px;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-overlay h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--primary-white);
  text-align: center;
  font-weight: 300;
  padding: 0 40px;
}

/* ===================================
   RESPONSIVE - NEW PAGES
   =================================== */
@media (max-width: 1024px) {
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-feature.reverse {
    direction: ltr;
  }

  .story-image {
    height: 450px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .testimonials-container {
    padding: 60px 20px;
  }

  .testimonial-card {
    padding: 30px;
  }

  .quote-mark {
    font-size: 4rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .story-title {
    font-size: 2rem;
  }

  .story-content {
    padding: 20px;
  }

  .contact-form-wrapper {
    padding: 40px 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .image-overlay h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 80px 20px 60px;
  }

  .page-title {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 25px;
  }

  .story-image {
    height: 350px;
  }

  .story-title {
    font-size: 1.8rem;
  }

  .contact-container {
    padding: 60px 20px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .image-overlay h2 {
    font-size: 1.5rem;
  }
}
