/* ========================================
   FONT IMPORTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@300;400;500&display=swap');

/* ========================================
   GEIST FONTS
   ======================================== */
@font-face {
  font-family: 'Geist Pixel Line';
  src: url('../../fonts/geist/GeistPixel/webfonts/GeistPixel-Line.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Pixel Square';
  src: url('../../fonts/geist/GeistPixel/webfonts/GeistPixel-Square.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Sans';
  src: url('../../fonts/geist/Geist/webfonts/Geist-Thin.woff2') format('woff2');
  font-weight: thin;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Sans Bold';
  src: url('../../fonts/geist/Geist/webfonts/Geist-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   ROOT VARIABLES
   ======================================== */
:root {
  /* Refined Color Palette */
  --primary-color: #B8935A;
  --primary-dark: #9A7A4A;
  --primary-light: #D4B382;
  --accent-color: #B8935A;
  /* Can swap to #CFFF04 for lime */

  --secondary-color: #2C2C2C;
  --text-dark: #1A1A1A;
  --text-muted: #6B6B6B;
  --text-light: #999999;

  --white: #FAFAF9;
  --pure-white: #FFFFFF;
  --black: #0A0A0A;
  --bg-light: #FAFAF9;
  --bg-dark: #0A0A0A;
  --border-light: #E5E5E5;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Geist Sans', 'Playfair Display', Georgia, serif;
  --font-h1: 'Geist Pixel Line', 'Playfair Display', Georgia, serif;
  --font-h2: 'Geist Pixel Square', 'Playfair Display', Georgia, serif;
  --font-h3: 'Geist Pixel Square', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-smooth: all 0.4s ease;
  --transition-slow: all 0.6s ease;

  /* Shadows - Subtle */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 680px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: var(--font-h2);
  font-size: 45px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.1;
  position: relative;
  display: inline-block;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.section-subtitle {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.section-description {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   BUTTONS - MINIMAL ELEGANT DESIGN
   ======================================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 0;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid var(--text-dark);
  background: transparent;
  color: var(--text-dark);
  text-transform: uppercase;
}

.btn:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-primary {
  background: transparent;
  color: #D4B382;
  border: 1px solid #D4B382;
}

.btn-primary:hover {
  background: #D4B382;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--text-dark);
}

.btn-accent {
  background: var(--accent-color);
  color: var(--text-dark);
  border: 1px solid var(--accent-color);
}

.btn-accent:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: scale(1.02);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
  display: block;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: transparent;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 20px 0;
  background: rgba(26, 26, 26, 1);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}

.site-logo {
  max-width: 333px;
  height: auto;
}

.logo i {
  font-size: 28px;
  color: var(--primary-color);
}

/* Desktop Navigation Menu */
.nav-menu-desktop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Mobile Menu - Hidden on Desktop */
.nav-menu {
  display: none;
}

.nav-list {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

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

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

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

/* CTA Button */
.nav-cta-desktop {
  margin-left: auto;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10003;
  position: fixed;
  top: 30px;
  right: 20px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 3px;
}

/* ========================================
   HERO SECTION - DRAMATIC FULL VIEWPORT
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 200px 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2C2C2C 100%);
  z-index: 1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-bg, url('https://images.pexels.com/photos/1181406/pexels-photo-1181406.jpeg?auto=compress&cs=tinysrgb&w=1920')) center/cover;
  opacity: 0.25;
  animation: kenBurns 20s ease infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-text {
  animation: fadeInUp 1s ease;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 81px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
  animation: slideInRight 1s ease;
}

.hero-title-line:nth-child(2) {
  font-style: italic;
  font-size: 72px;
  color: var(--primary-light);
  animation-delay: 0.2s;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-description {
  font-size: 20px;
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto 60px;
  color: rgba(250, 250, 249, 0.85);
  line-height: 1.7;
  animation: fadeIn 1s ease 0.4s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.scroll-down span {
  width: 2px;
  height: 15px;
  background: var(--white);
  animation: scrollAnimation 2s ease infinite;
}

.scroll-down span:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-down span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes scrollAnimation {

  0%,
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }

  50% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio {
  padding: 160px 0;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.portfolio .section-header .section-title,
.portfolio .section-header .section-subtitle,
.portfolio .section-header .section-description {
  color: var(--black);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-weight: 400;
  font-size: 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: none;
  letter-spacing: 0;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.portfolio-item {
  transition: var(--transition);
  cursor: pointer;
}

.portfolio-item.hide {
  display: none;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 400px;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-subtle);
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  color: var(--white);
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
  opacity: 0;
}

.portfolio-card:hover .portfolio-info {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-title {
  font-family: var(--font-h2);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--white);
  line-height: 1.2;
}

.portfolio-description {
  font-size: 16px;
  margin-bottom: 16px;
  opacity: 0.85;
  color: var(--white);
  line-height: 1.5;
}

.portfolio-category {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-color);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-dark);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 160px 0;
  background: var(--bg-light);
}

.about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-top-section {
  display: grid;
  grid-template-columns: 40% 55%;
  gap: 5%;
  align-items: flex-start;
  margin-bottom: 80px;
}

.about-column-left {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-subtle);
}

.about-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-light);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.5;
}

.about-column-right .section-title {
  text-align: left;
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 24px;
  margin-top: 80px;
}

.about-column-right .section-title::after {
  left: 0;
  transform: none;
}

.section-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.5;
}

.about-text {
  font-size: 18px;
  /* Requested size 16-18px */
  line-height: 1.8;
  color: var(--text-light);
}

.about-text p {
  margin-bottom: 24px;
  /* White space between paragraphs */
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-h2);
  font-size: 38px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* Services Grid */
.about-services {
  width: 100%;
}

.services-title {
  font-family: var(--font-h2);
  font-size: 48px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: -0.01em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  padding: 48px;
  border-radius: 8px;
  box-shadow: none;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-light);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-subtle);
  border-color: var(--primary-color);
}

.service-name {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-family: var(--font-h2);
}

.service-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 968px) {
  .about-top-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-column-left {
    order: 1;
  }

  .about-column-right {
    order: 2;
  }

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

/* ========================================
   STORIES SECTION
   ======================================== */
.stories {
  padding: 160px 0;
  background: var(--white);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.story-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.story-category {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 15px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-content {
  padding: 25px;
}

.story-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-lighter);
}

.story-meta i {
  margin-right: 5px;
}

.story-title {
  font-family: var(--font-h2);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-dark);
  transition: var(--transition);
}

.story-card:hover .story-title {
  color: var(--primary-color);
}

.story-excerpt {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: static;
  z-index: 2;
}

.story-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  z-index: 1;
}

.story-link i {
  transition: var(--transition);
}

.story-link:hover i {
  transform: translateX(5px);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  padding: 160px 0;
  background: var(--bg-light);
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.contact-.details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-form-wrapper {
  max-width: none;
  width: 644px;
}

.contact-details {
  align-self: center;
  text-align: left;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: -5px;
  color: var(--text-dark);
}

.contact-text p,
.contact-text a {
  font-size: 16px;
  color: var(--text-light);
}

.contact-text a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex !important;
  justify-content: center;
  align-items: center;
  min-height: 55px;
  width: 100%;
  margin: 10px 0;
}


.footer-content {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  /* Center everything */
  gap: 20px;
  /* Space between items */
  padding: 40px 0;
  height: auto !important;
  /* Allow it to grow with content */
}

.social-link {
  width: 55px;
  height: 55px;
  background: var(--black);
  color: #fff !important;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 48px;
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 24px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition-smooth);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(184, 147, 90, 0.1);
}

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

/* ========================================
   FOOTER - MINIMAL CENTERED DESIGN
   ======================================== */
.footer {
  padding: 80px 0 60px;
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-logo-image {
  max-width: 333px;
  height: auto;
}

.footer-logo i {
  color: var(--primary-light);
}

.footer-text {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
}

.footer-credit {
  color: rgba(107, 107, 107, 0.7);
  font-size: 13px;
}

.footer-credit i {
  color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* Hide back-to-top when mobile menu is active */
body.modal-open .back-to-top {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

/* AOS Animation Library */
/* AOS Animation Library moved to head */

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* Hide desktop navigation on mobile */
  .nav-menu-desktop,
  .nav-cta-desktop {
    display: none;
  }

  /* Show and position mobile menu */
  .nav-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    right: auto;
    width: 100%;
    height: 100vh;
    background: #9A7A4A;
    padding: 120px 40px 100px;
    transition: left 0.3s ease;
    z-index: 10000;
    overflow-y: auto;
    transform: none;
  }

  .nav-menu.active {
    left: 0;
    z-index: 10001;
  }

  .nav-list {
    flex-direction: column;
    gap: 25px;
  }

  /* Mobile menu CTA button */
  .nav-menu .nav-cta {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 300px;
  }

  .nav-menu .nav-cta .btn {
    width: 100%;
    text-align: center;
    border-color: #ffffff;
    color: #ffffff;
    text-transform: uppercase;
  }

  .nav-menu .nav-link {
    color: #ffffff;
    text-transform: uppercase;
  }

  .mobile-toggle {
    display: flex;
  }

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

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

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Lower navbar z-index so menu overlay covers it */
  .navbar {
    z-index: 9999;
  }

  /* Hero */
  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Sections */
  .section-title {
    font-size: 36px;
  }

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

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

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-wrapper {
    max-width: 100%;
    width: auto;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 25px;
  }
}

/* ========================================
   MODAL GALLERY
   ======================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.5s;
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 900px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  padding: 15px 25px;
  background: var(--bg-light);
  border-bottom: 1px solid #eee;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--text-dark);
}

.modal-body {
  position: relative;
}

.modal-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #aaa;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
  color: var(--text-dark);
}

.prev-btn,
.next-btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: var(--white);
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  background: rgba(0, 0, 0, 0.5);
  user-select: none;
}

.next-btn {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-footer {
  padding: 20px 25px;
  background: var(--bg-light);
}

.modal-meta {
  font-size: 14px;
  color: var(--text-light);
}

.modal-meta p {
  margin-bottom: 8px;
}

.modal-meta strong {
  color: var(--text-dark);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* ========================================
   BLOG POST PAGES
   ======================================== */
.blog-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.blog-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease infinite alternate;
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

.blog-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 60px 0 40px;
}

.blog-header {
  color: var(--white);
  animation: fadeInUp 0.8s ease;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--white);
}

.blog-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.blog-date,
.blog-reading-time {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-category {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.blog-article {
  padding: 80px 0;
  background: var(--white);
}

.blog-content {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
}

.blog-content h2 {
  font-family: var(--font-h2);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 50px 0 25px;
  padding-top: 20px;
}

.blog-content h3 {
  font-family: var(--font-h3);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 40px 0 20px;
}

.blog-content p {
  margin-bottom: 25px;
  color: var(--text-light);
  line-height: 1.9;
}

.blog-content ul,
.blog-content ol {
  margin: 25px 0 25px 30px;
  color: var(--text-light);
}

.blog-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.blog-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.blog-content em {
  color: var(--primary-color);
  font-style: italic;
}

.blog-content a {
  color: var(--primary-color);
  font-weight: 500;
  border-bottom: 2px solid var(--primary-color);
  transition: var(--transition);
  padding-bottom: 2px;
}

.blog-content a:hover {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.blog-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 25px;
  margin: 40px 0;
  font-size: 20px;
  color: var(--primary-color);
  font-style: italic;
  font-family: var(--font-heading);
}

.blog-content code {
  background: var(--bg-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #d63384;
}

.blog-content pre {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 25px 0;
}

.blog-content pre code {
  background: none;
  padding: 0;
  color: var(--text-dark);
}

.blog-footer {
  max-width: 700px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 2px solid var(--bg-light);
  display: flex;
  gap: 25px;
  align-items: center;
}

.blog-author {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

.author-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--white);
  flex-shrink: 0;
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.author-info p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.author-social {
  display: flex;
  gap: 12px;
}

.author-social a {
  width: 36px;
  height: 36px;
  background: var(--bg-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  border-bottom: none;
  padding-bottom: 0;
}

.author-social a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Blog Navigation */
.blog-navigation {
  max-width: 700px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 2px solid var(--bg-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.blog-nav-item {
  flex: 1;
}

.blog-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: 8px;
  transition: var(--transition);
  border-bottom: none;
}

.blog-nav-link:hover {
  background: var(--primary-light);
  opacity: 0.9;
}

.blog-nav-link.next-link {
  flex-direction: row-reverse;
}

.nav-label {
  display: block;
  font-size: 12px;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 4px;
}

.nav-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.blog-nav-home {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  transition: var(--transition);
  border-bottom: none;
}

.blog-nav-home:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* Related Stories */
.related-stories {
  padding: 80px 0;
  background: var(--bg-light);
}

.related-stories .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.related-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.related-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.related-card:hover .related-image img {
  transform: scale(1.08);
}

.related-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.related-content {
  padding: 25px;
}

.related-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.related-content h3 a {
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: none;
  transition: var(--transition);
}

.related-content h3 a:hover {
  color: var(--primary-color);
}

.related-meta {
  font-size: 13px;
  color: var(--text-lighter);
  margin-bottom: 12px;
}

.related-excerpt {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.6;
}

.related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: none;
}

.related-link i {
  transition: var(--transition);
}

.related-link:hover i {
  transform: translateX(4px);
}

/* Blog CTA Section */
.blog-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary-color), var(--text-dark));
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Blog Pages */
@media (max-width: 768px) {
  .blog-title {
    font-size: 36px;
  }

  .blog-meta {
    gap: 15px;
    font-size: 13px;
  }

  .blog-content {
    font-size: 16px;
    padding: 0 20px;
  }

  .blog-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
  }

  .blog-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
  }

  .blog-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .blog-nav-link {
    flex-direction: row !important;
    gap: 12px;
    padding: 12px;
  }

  .nav-title {
    font-size: 14px;
  }

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

  .cta-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    height: 350px;
  }

  .blog-title {
    font-size: 28px;
  }

  .blog-meta {
    flex-direction: column;
    gap: 10px;
  }

  .blog-content {
    font-size: 15px;
    padding: 0 15px;
  }

  .blog-footer {
    gap: 15px;
  }

  .author-avatar {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

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

/* ========================================
   STORIES LIST PAGE
   ======================================== */
.stories-header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary-color), var(--text-dark));
  padding: 100px 0;
  overflow: hidden;
}

.stories-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.pexels.com/photos/1181244/pexels-photo-1181244.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
  opacity: 0.15;
  z-index: 0;
}

.stories-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.stories-header-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
}

.stories-header-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.stories-list-section {
  padding: 80px 0;
  background: var(--white);
}

.stories-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.story-list-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 12px;
  transition: var(--transition);
}

.story-list-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(10px);
}

.story-list-card:nth-child(even) {
  grid-template-columns: 1fr 300px;
}

.story-list-card:nth-child(even) .story-list-image {
  order: 2;
}

.story-list-card:nth-child(even) .story-list-content {
  order: 1;
}

.story-list-image {
  position: relative;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
}

.story-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.story-list-category {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-list-content {
  padding: 10px;
}

.story-list-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--text-lighter);
}

.story-list-date,
.story-list-reading {
  display: flex;
  align-items: center;
  gap: 6px;
}

.story-list-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
  line-height: 1.3;
}

.story-list-title a {
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: none;
  transition: var(--transition);
}

.story-list-title a:hover {
  color: var(--primary-color);
}

.story-list-excerpt {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-list-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: none;
}

.story-list-link i {
  transition: var(--transition);
}

.story-list-link:hover i {
  transform: translateX(5px);
}

.no-stories {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-light);
  font-size: 18px;
}

/* Stories Subscribe CTA */
.stories-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
}

.stories-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.stories-cta-content h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
}

.stories-cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

.stories-subscribe {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.stories-subscribe input {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-family: inherit;
  background: var(--white);
  color: var(--text-dark);
}

.stories-subscribe input::placeholder {
  color: var(--text-lighter);
}

.stories-subscribe input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.stories-subscribe button {
  padding: 14px 32px;
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.stories-subscribe button:hover {
  background: var(--text-dark);
  transform: translateY(-2px);
}

/* Responsive Stories List */
@media (max-width: 768px) {
  .stories-header-title {
    font-size: 36px;
  }

  .story-list-card,
  .story-list-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .story-list-card:nth-child(even) .story-list-image {
    order: initial;
  }

  .story-list-card:nth-child(even) .story-list-content {
    order: initial;
  }

  .story-list-image {
    height: 220px;
  }

  .story-list-title {
    font-size: 22px;
  }

  .stories-subscribe {
    flex-direction: column;
  }

  .stories-subscribe input {
    min-width: 100%;
  }

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

  .stories-cta-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .stories-header {
    min-height: 300px;
    padding: 60px 0;
  }

  .stories-header-title {
    font-size: 28px;
  }

  .stories-header-subtitle {
    font-size: 16px;
  }

  .story-list-card {
    gap: 15px;
  }

  .story-list-image {
    height: 200px;
  }

  .story-list-title {
    font-size: 20px;
  }

  .story-list-excerpt {
    font-size: 14px;
  }
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .section-title {
    font-size: 48px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-title-line:nth-child(2) {
    font-size: 56px;
  }
}

@media (max-width: 768px) {

  /* Typography */
  .section-title {
    font-size: 40px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  /* Hero */
  .hero {
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-title-line:nth-child(2) {
    font-size: 42px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .btn {
    min-height: 48px;
    width: 100%;
  }

  /* Sections */
  .portfolio,
  .about,
  .stories,
  .contact {
    padding: 80px 0;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  /* About */
  .about-top-section {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .about-column-right .section-title {
    margin-top: 0;
    font-size: 40px;
  }

  .about-image img {
    height: 400px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-title {
    font-size: 36px;
  }

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  /* Typography */
  .section-title {
    font-size: 32px;
  }

  /* Hero */
  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-title-line:nth-child(2) {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  /* Sections */
  .portfolio,
  .about,
  .stories,
  .contact {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    height: 320px;
  }

  /* About */
  .about-image img {
    height: 320px;
  }

  .service-card {
    padding: 32px;
  }

  .services-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  /* Footer */
  .footer {
    padding: 60px 0 40px;
  }

  .footer-logo {
    font-size: 24px;
  }
}

/* ========================================
   BLOG POST PAGE STYLES
   ======================================== */

/* Blog Post Hero Section */
.blog-post-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.blog-post-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.blog-post-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.blog-post-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.blog-post-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

.blog-post-hero-title {
  font-family: var(--font-h2);
  font-size: 52px;
  font-weight: 400;
  color: #FFFFFF;
  max-width: 800px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.blog-post-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-post-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.blog-post-meta-item i {
  font-size: 14px;
}

.blog-post-category-pill {
  padding: 6px 16px;
  background: var(--accent-color);
  color: var(--text-dark);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Blog Post Content Area */
.blog-post-content-section {
  background: #FAFAF9;
  padding: 80px 0;
}

.blog-post-content-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-post-content h1,
.blog-post-content h2 {
  font-family: var(--font-h2);
  font-size: 38px;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 16px;
  line-height: 1.3;
}

.blog-post-content h3 {
  font-family: var(--font-h3);
  font-size: 24px;
  font-weight: 500;
  color: #1A1A1A;
  margin: 48px 0 24px;
}

.blog-post-content p {
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.8;
  margin-bottom: 24px;
}

.blog-post-content em {
  color: #D4A574;
  font-style: italic;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 24px 0;
  padding-left: 24px;
}

.blog-post-content li {
  font-size: 18px;
  color: #1A1A1A;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Author Bio Section */
.blog-author-bio {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 40px;
  margin: 60px auto 80px;
  max-width: 720px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.blog-author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-author-info {
  flex: 1;
}

.blog-author-name {
  font-size: 20px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.blog-author-description {
  font-size: 16px;
  color: #6B6B6B;
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.blog-author-social a {
  color: #6B6B6B;
  font-size: 20px;
  transition: color 0.3s ease;
}

.blog-author-social a:hover {
  color: var(--accent-color);
}

/* Pre-Footer CTA Section */
.blog-cta-section {
  background: #2A2A2A;
  padding: 100px 0;
  text-align: center;
}

.blog-cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-cta-title {
  font-family: var(--font-h2);
  font-size: 48px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.blog-cta-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
  .blog-post-hero {
    height: 50vh;
    min-height: 400px;
  }

  .blog-post-hero-content {
    padding: 0 32px;
  }

  .blog-post-hero-title {
    font-size: 36px;
  }

  .blog-post-content h1,
  .blog-post-content h2 {
    font-size: 32px;
  }

  .blog-author-bio {
    flex-direction: column;
    padding: 32px;
  }

  .blog-cta-title {
    font-size: 36px;
  }

  .contact-form-wrapper {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .blog-post-hero-content {
    padding: 0 20px;
  }

  .blog-post-hero-title {
    font-size: 32px;
  }

  .blog-post-content-section {
    padding: 60px 0;
  }

  .blog-post-content h1,
  .blog-post-content h2 {
    font-size: 28px;
  }

  .blog-cta-section {
    padding: 80px 0;
  }

  .blog-cta-title {
    font-size: 32px;
  }
}