/* ==========================================================================
   LEIMIA THEME STYLESHEET
   Replicating https://www.theparisphotographer.com/ EXACT layout & typography
   ========================================================================== */

:root {
  --leimia-primary: #111111;
  --leimia-secondary: #222222;
  --leimia-accent: #b59868;
  --leimia-bg-gray: #f8f8f8;
  --leimia-text-dark: #333333;
  --leimia-text-muted: #666666;
  --leimia-text-light: #ffffff;
  
  --leimia-font-display: 'Oswald', 'Montserrat', sans-serif;
  --leimia-font-title: 'Oswald', 'Playfair Display', sans-serif;
  --leimia-font-body: 'Titillium Web', 'PT Serif', sans-serif;
  --leimia-font-script: 'Alex Brush', cursive;
  
  --leimia-transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--leimia-font-body);
  color: #3a3a3a;
  background-color: #ffffff;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.3px;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.display-1 {
  font-family: var(--leimia-font-display);
  color: #111111;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0 0 15px;
}

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

a:hover {
  color: var(--leimia-accent);
}

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

.bg-gray,
.bg-light {
  background-color: var(--leimia-bg-gray);
}

.divider-border {
  width: 90px;
  height: 2px;
  background-color: #000000;
  margin: 25px auto;
}

.divider-border-left {
  width: 90px;
  height: 2px;
  background-color: #000000;
  margin: 25px 0;
}

.subtitle {
  font-family: var(--leimia-font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  color: #777777;
  margin: 0 0 12px;
  font-weight: 400;
}

.section-title,
.display-1 {
  font-family: var(--leimia-font-display);
  font-size: 21px;
  letter-spacing: 3px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.p-t-100 {
  padding-top: 100px;
}

/* Buttons — Exact match to reference site */
.btn,
.btn-circle,
.btn-megi,
.btn-leimia {
  font-family: var(--leimia-font-display);
  display: inline-block;
  padding: 1.125rem 1.75rem;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  transition: all 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  border-radius: 0;
  text-decoration: none;
}

.btn-circle {
  border-radius: 30px;
}

.btn-black,
.btn-megi--black,
.btn-leimia--black {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn-black:hover,
.btn-megi--black:hover,
.btn-leimia--black:hover {
  background-color: #333333;
  border-color: #333333;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-gray,
.btn-megi--white,
.btn-leimia--white {
  background-color: #f1f1f1;
  color: #333333;
  border-color: #f1f1f1;
}

.btn-gray:hover,
.btn-megi--white:hover,
.btn-leimia--white:hover {
  background-color: #2b2b2b;
  border-color: #2b2b2b;
  color: #ffffff;
}

.btn-outline,
.btn-megi--outline,
.btn-leimia--outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline:hover,
.btn-megi--outline:hover,
.btn-leimia--outline:hover {
  background-color: #ffffff;
  color: #000000;
}

/* White button — used on dark/image backgrounds */
.btn-white {
  background-color: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

.btn-white:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* Active nav link */
.nav-menu a.active {
  border-bottom: 1px solid currentColor;
}

.btn-serv {
  padding: 10px 24px;
  font-size: 10px;
}

/* Header Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, transform 0.35s ease;
  padding: 24px 0;
}

.site-header.header-transparent {
  background-color: transparent;
}

.site-header.header-scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.site-header.header-hidden {
  transform: translateY(-100%);
  transition: transform 0.35s ease, background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.header-scrolled .nav-menu a,
.site-header.header-scrolled .brand-text {
  color: #000000 !important;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-nav {
  flex: 1;
}

.header-nav--left .nav-menu {
  justify-content: flex-end;
}

.header-nav--right .nav-menu {
  justify-content: flex-start;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(16px, 2.2vw, 28px);
}

.nav-menu a {
  font-family: var(--leimia-font-display);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 4px 0;
  position: relative;
  white-space: nowrap;
}

.site-header.header-scrolled .nav-menu a {
  color: #111111;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

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

.header-brand {
  padding: 0 clamp(15px, 3vw, 40px);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  color: #ffffff;
  line-height: 1.1 !important;
  text-decoration: none !important;
}

.brand-the {
  display: block !important;
  font-family: var(--leimia-font-display);
  font-size: 9px !important;
  letter-spacing: 5px !important;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 2px !important;
  white-space: nowrap !important;
}

.brand-name {
  display: block !important;
  font-family: var(--leimia-font-display);
  font-size: clamp(20px, 2.5vw, 26px) !important;
  letter-spacing: 6px !important;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0 !important;
  white-space: nowrap !important;
}

.brand-tagline {
  display: block !important;
  font-family: var(--leimia-font-display);
  font-size: 7px !important;
  letter-spacing: 4px !important;
  text-transform: uppercase;
  margin-top: 3px !important;
  opacity: 0.9;
  white-space: nowrap !important;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1040;
}

.mobile-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: var(--leimia-transition);
}

.site-header.header-scrolled .mobile-toggle .bar {
  background-color: #000000;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  padding: 85px 24px 40px 24px;
  z-index: 1025;
  text-align: center;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .site-header {
  background-color: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

body.mobile-menu-open .site-header .header-brand {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

body.mobile-menu-open .mobile-toggle .bar {
  background-color: #000000 !important;
}

body.mobile-menu-open .mobile-toggle .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

body.mobile-menu-open .mobile-toggle .bar:nth-child(2) {
  opacity: 0;
}

body.mobile-menu-open .mobile-toggle .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-inner {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  align-items: center !important;
}

.mobile-nav-menu,
.mobile-menu .nav-menu {
  display: contents !important;
}

.mobile-nav-menu li,
.mobile-menu .nav-menu li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}

.mobile-nav-menu a,
.mobile-menu .nav-menu a {
  position: relative;
  font-family: var(--leimia-font-display) !important;
  font-size: 22px !important;
  letter-spacing: 4px !important;
  color: #111111 !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  display: inline-block !important;
  padding: 8px 0 !important;
  text-align: center !important;
  transition: color 0.4s ease, letter-spacing 0.4s ease !important;
}

.mobile-nav-menu a::after,
.mobile-menu .nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--leimia-accent);
  transition: width 0.4s ease, left 0.4s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a:focus,
.mobile-menu .nav-menu a:hover,
.mobile-menu .nav-menu a:focus {
  color: var(--leimia-accent) !important;
  letter-spacing: 8px !important;
}

.mobile-nav-menu a:hover::after,
.mobile-nav-menu a:focus::after,
.mobile-menu .nav-menu a:hover::after,
.mobile-menu .nav-menu a:focus::after {
  width: 100%;
  left: 0;
}

/* Premium Stagger Fade-in Animation for Mobile Menu */
@keyframes megiMobileFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.mobile-menu-open .mobile-nav-menu li,
body.mobile-menu-open .mobile-menu .nav-menu li {
  opacity: 0;
  animation: megiMobileFadeIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

body.mobile-menu-open .mobile-nav-menu:nth-of-type(1) li:nth-child(1) { animation-delay: 0.05s; }
body.mobile-menu-open .mobile-nav-menu:nth-of-type(1) li:nth-child(2) { animation-delay: 0.1s; }
body.mobile-menu-open .mobile-nav-menu:nth-of-type(1) li:nth-child(3) { animation-delay: 0.15s; }
body.mobile-menu-open .mobile-nav-menu:nth-of-type(1) li:nth-child(4) { animation-delay: 0.2s; }

body.mobile-menu-open .mobile-nav-menu:nth-of-type(2) li:nth-child(1) { animation-delay: 0.25s; }
body.mobile-menu-open .mobile-nav-menu:nth-of-type(2) li:nth-child(2) { animation-delay: 0.3s; }
body.mobile-menu-open .mobile-nav-menu:nth-of-type(2) li:nth-child(3) { animation-delay: 0.35s; }

body.mobile-menu-open .mobile-menu .nav-menu li:nth-child(1) { animation-delay: 0.05s; }
body.mobile-menu-open .mobile-menu .nav-menu li:nth-child(2) { animation-delay: 0.1s; }
body.mobile-menu-open .mobile-menu .nav-menu li:nth-child(3) { animation-delay: 0.15s; }
body.mobile-menu-open .mobile-menu .nav-menu li:nth-child(4) { animation-delay: 0.2s; }
body.mobile-menu-open .mobile-menu .nav-menu li:nth-child(5) { animation-delay: 0.25s; }
body.mobile-menu-open .mobile-menu .nav-menu li:nth-child(6) { animation-delay: 0.30s; }
body.mobile-menu-open .mobile-menu .nav-menu li:nth-child(7) { animation-delay: 0.35s; }

/* Hero Section */
.module-hero {
  position: relative;
  min-height: 100vh;
  background-image: url('../images/22.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 100px 0 60px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-family: var(--leimia-font-display);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 22px;
  opacity: 0.85;
  font-weight: 400;
}

.hero-title {
  font-family: var(--leimia-font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: clamp(4px, 1.5vw, 8px);
  margin-bottom: 22px;
  font-weight: 300;
  line-height: 1.05;
}

.hero-description {
  font-family: var(--leimia-font-body);
  font-size: 17px;
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto 38px auto;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Service Cards — Matching Target Site */
.service-card {
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
  transition: var(--leimia-transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-card-image {
  height: clamp(380px, 35vw, 480px);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: #ffffff;
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.75) 100%);
}

.service-card-header {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.service-title {
  font-family: var(--leimia-font-display);
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 4px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
}

.service-subtitle {
  font-family: var(--leimia-font-body);
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  opacity: 0.85;
  margin: 0;
}

.service-card-body {
  padding: 28px 25px;
  text-align: center;
}

.service-description {
  font-family: var(--leimia-font-body);
  font-size: 16px;
  font-weight: 300;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* About Section */
.hello-intro,
.about-greeting {
  font-family: var(--leimia-font-script);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: #222222;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.about-title {
  font-family: var(--leimia-font-display);
  font-size: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 15px;
}

.about-text p,
p.lead {
  font-family: var(--leimia-font-body);
  color: #3a3a3a;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
}

.about-image {
  border-radius: 2px;
  width: 100%;
  object-fit: cover;
  max-height: 560px;
}

/* Testimonial Slider */
.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-image {
  overflow: hidden;
  border-radius: 4px;
}

.testimonial-image img {
  width: 100%;
  height: clamp(380px, 35vw, 480px);
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.stars {
  color: #f5a623;
  letter-spacing: 3px;
  font-size: 1.1rem;
}

.testimonial-quote {
  font-family: 'PT Serif', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
  color: #111111;
  margin-bottom: 20px;
  font-weight: 400;
}

.testimonial-author {
  font-family: var(--leimia-font-script);
  font-size: 2rem;
  color: #111111;
  font-style: normal;
  display: block;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.slider-arrow {
  background: none;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: var(--leimia-transition);
}

.slider-arrow:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: var(--leimia-transition);
}

.slider-dots .dot.active {
  background: #000;
}

/* Portfolio Masonry & Cards */
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  height: clamp(380px, 35vw, 480px);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.portfolio-info {
  color: #ffffff;
}

.portfolio-category {
  font-family: var(--leimia-font-display);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-bottom: 4px;
}

.portfolio-item-title {
  font-family: var(--leimia-font-display);
  color: #ffffff;
  font-size: 1.35rem;
  margin: 0;
  font-weight: 300;
}

.portfolio-filter-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--leimia-font-display);
  background: none;
  border: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  padding: 8px 16px;
  cursor: pointer;
  color: var(--leimia-text-muted);
  transition: var(--leimia-transition);
  font-weight: 300;
  text-transform: uppercase;
}

.filter-btn.active,
.filter-btn:hover {
  color: #000000;
  border-bottom: 1px solid #000000;
}

/* Pricing Section */
.pricing-card {
  transition: var(--leimia-transition);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

/* ON THE BLOG / News Section — Exact match to reference site */
#news .subtitle {
  font-family: var(--leimia-font-display);
  font-size: 13px;
  letter-spacing: 3px;
  color: #777777;
  text-transform: uppercase;
}

#news .display-1 {
  font-family: var(--leimia-font-display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

#news .blog-post-title {
  font-family: var(--leimia-font-display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.3;
  color: #111111;
  margin-bottom: 20px;
}

#news p {
  font-family: var(--leimia-font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #3a3a3a;
}

.blog-read-more {
  font-family: var(--leimia-font-display);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000000;
  border-bottom: 1px solid #000000;
  padding-bottom: 4px;
  display: inline-block;
  margin-top: 25px;
  transition: var(--leimia-transition);
}

.blog-read-more:hover {
  color: var(--leimia-accent);
  border-color: var(--leimia-accent);
}

/* Blog Category & Editorial Row Styles */
.blog-category-nav .nav-link {
  font-family: var(--leimia-font-display);
  color: var(--leimia-text-dark);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 300;
  border-radius: 30px;
  padding: 8px 22px;
  transition: var(--leimia-transition);
}

.blog-category-nav .nav-link.active,
.blog-category-nav .nav-link:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}

.hover-zoom {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-row-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
}

.blog-row-image img {
  width: 100%;
  height: clamp(380px, 35vw, 480px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-row-image:hover .hover-zoom {
  transform: scale(1.04);
}

.hover-gold:hover {
  color: var(--leimia-accent) !important;
}

.read-more-link {
  font-family: var(--leimia-font-display);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000000;
  border-bottom: 1px solid #000000;
  padding-bottom: 4px;
  display: inline-block;
  font-weight: 400;
  transition: var(--leimia-transition);
}

.read-more-link:hover {
  color: var(--leimia-accent) !important;
  border-color: var(--leimia-accent);
}

.read-more-link:hover .arrow {
  display: inline-block;
  transform: translateY(3px);
  transition: transform 0.3s ease;
}

/* Page Header Banner */
.page-header-banner {
  padding: clamp(120px, 12vw, 160px) 0 clamp(40px, 6vw, 60px) 0;
  background-color: var(--leimia-bg-gray);
  border-bottom: 1px solid #eeeeee;
}

.page-title {
  font-family: var(--leimia-font-display);
  font-size: 42px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 20px;
}

/* Parallax CTA Banner */
.cta-banner {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  background-image: url('../images/3.jpg');
  color: #ffffff;
}

@media (min-width: 992px) {
  .cta-banner {
    background-attachment: fixed;
  }
}

.cta-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.65);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-family: var(--leimia-font-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.cta-text {
  font-family: "Shadows Into Light", cursive, sans-serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 400;
  line-height: 1.5em;
  max-width: 820px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Footer */
.site-footer {
  position: relative;
  background-image: url('../images/3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: #dddddd;
  font-size: 0.9rem;
}

@media (min-width: 992px) {
  .site-footer {
    background-attachment: fixed;
  }
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.footer-main {
  position: relative;
  z-index: 2;
  padding: clamp(70px, 8vw, 100px) 0;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-link {
  color: #dddddd;
  font-size: 13px;
  letter-spacing: 1px;
  font-family: var(--leimia-font-body);
  transition: color 0.3s ease;
}

.footer-social-link:hover {
  color: #ffffff;
}

.footer-col {
  padding-left: 20px;
  padding-right: 20px;
}

.footer-col--center {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 30px;
}

.footer-description {
  margin: 20px 0 25px 0;
  line-height: 1.85;
}

.footer-logo-text {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-logo-text .brand-the { font-family: var(--leimia-font-display); font-size: 9px; letter-spacing: 5px; }
.footer-logo-text .brand-name { font-family: var(--leimia-font-display); font-size: 24px; letter-spacing: 6px; font-weight: 300; }
.footer-logo-text .brand-tagline { font-family: var(--leimia-font-display); font-size: 7px; letter-spacing: 4px; }

.footer-heading {
  font-family: var(--leimia-font-display);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-weight: 300;
}

.footer-cta {
  margin-bottom: 40px;
}

.footer-cta-sub {
  font-family: var(--leimia-font-body);
  font-style: italic;
  margin-top: 15px;
  color: #bbbbbb;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icon {
  color: #ffffff;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  opacity: 1;
  color: var(--leimia-accent);
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  font-family: var(--leimia-font-display);
  color: #aaaaaa;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  background-color: #080808;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
  font-family: var(--leimia-font-body);
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.copyright a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-decoration: none;
}

.copyright a:hover {
  color: var(--leimia-accent);
}

/* Blockquote — reference site style */
blockquote {
  border: 0;
  color: #111111;
  font-family: 'PT Serif', serif;
  font-weight: 400;
  line-height: 1.45;
  font-size: 22px;
  padding: 20px 40px;
  transition: all 0.3s ease-in-out;
  margin: 20px 0;
  border-left: 0;
}

/* Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal="left"] {
  transform: translateX(-30px);
}

[data-reveal="right"] {
  transform: translateX(30px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .header-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .footer-col--center {
    border-left: none;
    border-right: none;
    margin: 30px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .section-title,
  .display-1 {
    font-size: 18px;
  }
  .about-title {
    font-size: 26px;
  }
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn-megi,
  .hero-buttons .btn-leimia,
  .hero-buttons .btn-circle {
    width: 100%;
  }
  .service-card-body {
    padding: 20px 15px;
  }
  .service-description {
    font-size: 0.85rem;
  }
  .pricing-card {
    padding: 30px 20px !important;
}

/* ----------------------------------------
   7. ABOUT PAGE SPECIFIC STYLES
   ---------------------------------------- */
.about-hero {
  min-height: 92vh;
  background-size: cover;
  background-position: center top;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.7) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
}
.about-intro-section {
  padding: 100px 0;
}
.pull-quote {
  font-family: 'PT Serif', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.5;
  color: #111111;
  font-weight: 400;
  border-left: 3px solid #000000;
  padding-left: 30px;
  margin: 50px 0;
}
.about-body-text {
  font-family: 'Titillium Web', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: #3a3a3a;
}
.about-body-text p {
  margin-bottom: 28px;
}
.services-list-section {
  background-color: #ffffff;
  padding: 100px 0;
  border-top: 1px solid #ececec;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border: 1px solid #e0e0e0;
}
.service-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.3s ease;
}
.service-item:hover {
  background: #f8f8f8;
}
.service-item-name {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  color: #111111;
  display: block;
}
.about-image-full {
  width: 100%;
  height: clamp(400px, 55vw, 700px);
  object-fit: cover;
  object-position: center;
  display: block;
}
.stat-block {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid #e8e8e8;
}
.stat-block:last-child { border-right: 0; }
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #111111;
  letter-spacing: 2px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #777777;
  font-weight: 400;
}
/* ----------------------------------------
   7. ABOUT PAGE STYLES (CLEAN & PERFECT)
   ---------------------------------------- */
.about-hero {
  min-height: 60vh !important;
  height: 60vh !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative !important;
  display: flex !important;
  align-items: flex-end !important;
  padding-bottom: 50px !important;
  padding-top: 120px !important;
  margin-bottom: 0 !important;
}

.about-hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.85) 100%) !important;
  z-index: 1 !important;
}

.about-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

.about-intro-section {
  padding: 80px 0 !important;
  background-color: #ffffff !important;
}

.pull-quote {
  font-family: 'PT Serif', Georgia, serif !important;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem) !important;
  font-style: italic !important;
  line-height: 1.6 !important;
  color: #111111 !important;
  font-weight: 400 !important;
  border-left: 4px solid #000000 !important;
  padding: 16px 0 16px 24px !important;
  margin: 36px 0 !important;
  background-color: #fafafa !important;
}

.about-body-text {
  font-family: 'Titillium Web', sans-serif !important;
  font-size: 16.5px !important;
  font-weight: 300 !important;
  line-height: 1.85 !important;
  color: #333333 !important;
}

.about-body-text p {
  margin-bottom: 24px !important;
}

.about-quote-banner {
  padding: 70px 0 !important;
  background-color: #f8f8f8 !important;
  border-top: 1px solid #eeeeee !important;
  border-bottom: 1px solid #eeeeee !important;
}

.services-list-section {
  background-color: #ffffff !important;
  padding: 80px 0 !important;
  border-top: 1px solid #ececec !important;
}

.services-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
  gap: 0 !important;
  border: 1px solid #e0e0e0 !important;
}

.service-item {
  padding: 28px 20px !important;
  text-align: center !important;
  border-right: 1px solid #e0e0e0 !important;
  border-bottom: 1px solid #e0e0e0 !important;
  transition: background 0.3s ease !important;
}

.service-item:hover {
  background: #f4f4f4 !important;
}

.service-item-name {
  font-family: 'Oswald', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  color: #111111 !important;
  display: block !important;
}

.stat-block {
  padding: 24px 15px !important;
  text-align: center !important;
  background-color: #fcfcfc !important;
  border-right: 1px solid #e8e8e8 !important;
}

.stat-block:last-child {
  border-right: none !important;
}

.stat-number {
  font-family: 'Oswald', sans-serif !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  font-weight: 300 !important;
  color: #111111 !important;
  letter-spacing: 2px !important;
  line-height: 1 !important;
  display: block !important;
  margin-bottom: 6px !important;
}

.stat-label {
  font-family: 'Oswald', sans-serif !important;
  font-size: 10px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: #777777 !important;
  font-weight: 400 !important;
}

.closing-cta-section {
  padding: 90px 0 !important;
  background-color: #f8f8f8 !important;
}

.closing-italic {
  font-family: 'PT Serif', serif !important;
  font-style: italic !important;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem) !important;
  line-height: 1.7 !important;
  color: #333333 !important;
}

/* ----------------------------------------
   SIDEBAR & SINGLE POST STYLES
   ---------------------------------------- */

/* Sidebar container */
.sidebar {
  background: #fafafa;
  border: 1px solid #ebebeb !important;
  border-radius: 4px;
  padding: 32px 28px !important;
  position: sticky;
  top: 100px;
}

/* Widget title */
.widget-title {
  font-family: var(--leimia-font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 12px;
}

/* Author widget */
.widget-author .rounded-circle {
  border: 3px solid #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.widget-author h5 {
  font-family: var(--leimia-font-display);
  font-size: 13px;
  letter-spacing: 2px;
  color: #111111;
}

.widget-author p.small {
  font-family: var(--leimia-font-body);
  font-size: 13.5px;
  line-height: 1.75;
  color: #666666;
}

/* Popular articles */
.widget-popular .popular-item {
  padding-bottom: 12px;
  margin-bottom: 12px !important;
  border-bottom: 1px solid #efefef;
}

.widget-popular .popular-item:last-child {
  border-bottom: none;
  margin-bottom: 0 !important;
  padding-bottom: 0;
}

.widget-popular .popular-item img {
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.widget-popular .popular-item img:hover {
  opacity: 0.85;
}

.widget-popular h6 a {
  font-family: var(--leimia-font-serif);
  font-size: 13px;
  line-height: 1.45;
  color: #222222;
  transition: color 0.2s ease;
}

.widget-popular h6 a:hover {
  color: #8a7240;
}

/* Categories widget */
.widget-categories ul li a {
  font-family: var(--leimia-font-body);
  font-size: 13px;
  color: #555555;
  transition: color 0.2s ease;
}

.widget-categories ul li a:hover {
  color: #111111;
}

.widget-categories ul li a span:last-child {
  color: #aaaaaa;
}

/* Single post content */
.single-post-content .post-entry-content {
  font-family: var(--leimia-font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: #3a3a3a;
}

.single-post-content .post-entry-content p {
  margin-bottom: 1.6rem;
}

.single-post-content .post-entry-content h2,
.single-post-content .post-entry-content h3,
.single-post-content .post-entry-content h4 {
  font-family: var(--leimia-font-serif);
  color: #111111;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.single-post-content .post-entry-content blockquote {
  border-left: 4px solid #111111;
  padding: 20px 24px;
  background: #f9f9f9;
  font-style: italic;
  font-family: var(--leimia-font-serif);
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333333;
  margin: 2rem 0;
}

.single-post-content .post-entry-content ul li,
.single-post-content .post-entry-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

/* Post featured image */
.post-featured-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* Page header banner (single post) */
.page-header-banner {
  padding: 70px 0 50px;
  background: #f8f8f8;
  border-bottom: 1px solid #ebebeb;
}

.page-header-banner .page-title {
  font-family: var(--leimia-font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.25;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-header-banner .subtitle {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999999;
  font-family: var(--leimia-font-display);
}

/* Post tags */
.post-tags .badge {
  font-family: var(--leimia-font-display);
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  text-transform: uppercase;
  background: #f2f2f2 !important;
  color: #555555 !important;
  border: 1px solid #ddd !important;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.post-tags .badge:hover {
  background: #111111 !important;
  color: #ffffff !important;
}

/* Book CTA box in single post */
.book-cta-box {
  border-radius: 4px;
  background: #111111 !important;
}

/* Btn-megi button styles (sidebar) */
.btn-megi {
  display: inline-block;
  font-family: var(--leimia-font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-megi--black {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.btn-megi--black:hover {
  background: transparent;
  color: #111111;
}

.btn-megi--sm {
  padding: 10px 18px;
  font-size: 10px;
}

/* Responsive: stack sidebar below content on mobile */
@media (max-width: 767px) {
  .sidebar {
    position: static;
    margin-top: 48px;
  }
  .page-header-banner {
    padding: 50px 0 35px;
  }
  .page-header-banner .page-title {
    font-size: 1.6rem;
  }
}

