:root {
  --gold: #b8975a;
  --dark: #1a1a1a;
  --light-bg: #f9f7f4;
  --text-muted-custom: #7a7a7a;
  --border-color: #e0d9d0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--dark);
  background: var(--light-bg);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cormorant Garamond', serif;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 28px;
  font-style: italic;
}

/* ── Preloader ── */
#creative-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0b0f19;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-content {
  text-align: center;
}

.brand-logo {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 6px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInLogo 0.3s ease forwards 0.2s;
}

.brand-logo span {
  color: var(--gold);
}

.progress-container {
  width: 200px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--light-bg), var(--gold));
  box-shadow: 0 0 10px #dfab00;
  animation: fillBar 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Loading Text */
.loading-text {
  color: #a0aec0;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 12px;
  font-family: sans-serif;
  opacity: 0.7;
  animation: pulseText 1.5s infinite ease-in-out;
}

/* Animations */
@keyframes fadeInLogo {
  to {
    opacity: 1;
    transform: translateY(0);
  }

  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes fillBar {
  to {
    width: 100%;
  }
}

@keyframes pulseText {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.9;
  }
}

.preloader-fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
}

.social-media-link {
  color: var(--gold);
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-media-link:hover {
  transform: scale(1.5);
}

/* ----------------------------------------
             Landing Page
   ---------------------------------------- */

/* ── NAVBAR ── */
.navbar {
  background: rgba(0, 0, 0, 0.082);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 20px 40px;
  transition: background 0.4s, padding 0.4s !important;
}

.navbar.scrolled {
  background: #fffffff7;
  padding: 12px 40px;
  box-shadow: 0 2px 20px #00000014;
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 0.64rem !important;
    white-space: nowrap;
  }

  .navbar .container-fluid {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .navbar-toggler-icon {
    width: 20px;
  }
}

.navbar-brand:hover {
  color: #d19b37 !important;
  transform: scale(1.01);
}

.navbar.scrolled .navbar-brand {
  color: var(--dark) !important;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 16px !important;
  transition: all 0.3s;
}

.navbar.scrolled .nav-link {
  color: var(--dark) !important;
}

.navbar-nav .nav-link:hover {
  color: #ffa600 !important;
  transform: scale(1.1);
}

.navbar-brand.scrolled:hover {
  color: #ffa600 !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .navbar-toggler {
  border-color: var(--dark);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.navbar.scrolled .navbar-toggler-icon {
  filter: none;
}

/* ── HERO SLIDER ── */
#heroSlider {
  height: 100vh;
  min-height: 600px;
}

.carousel-item {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.carousel-item:nth-child(1) {
  background-image: url(../img/hero-img-1.jpg);
}

.carousel-item:nth-child(2) {
  background-image: url(../img/hero-img-2.jpg);
}

.carousel-item:nth-child(3) {
  background-image: url(../img/hero-img-3.jpg);
}

.hero-caption {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 560px;
}

.hero-caption .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero-caption h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 10px;
  font-style: italic;
}

.hero-caption .subtitle {
  font-size: 0.8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.hero-caption p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  font-weight: 300;
}

.btn-outline-light-custom {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 32px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-outline-light-custom:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

@media (max-width: 576px) {
  .btn-outline-light-custom {
    font-size: 0.5rem;
  }
}

.carousel-indicators [data-bs-target] {
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 0;
}

.carousel-indicators .active {
  background: #fff;
}

/* ── ABOUT SECTION ── */
#about {
  padding: 100px 0;
  background: #fff;
}

#about-full-content h2 {
  font-weight: 400;
  border: 1px solid var(--gold);
  padding: 10px;
}

#about-title {
  text-align: center;
}

#photographer-img {
  width: 80%;
  height: auto;
  padding: 3px;
  background-color: var(--gold);
  position: relative;
}

#photographer-img img {
  width: 100%;
  display: block;
}

.about-text {
  font-size: 0.92rem;
  line-height: 1.9;
  color: #555;
  font-weight: 300;
}

.btn-read-more {
  display: inline-block;
  margin-top: 36px;
  padding: 13px 36px;
  border: 1px solid var(--gold);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(141, 120, 0);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-read-more:hover {
  background: var(--gold);
  text-shadow: 2px 0px 1px #000000cc;
  color: #fff;
}

@media (max-width: 576px) {
  .btn-read-more {
    font-size: 0.5rem;
  }
}

/* ── COUNTERS ── */
#counters {
  background: var(--dark);
  padding: 80px 0;
  color: #fff;
}

.counter-item {
  text-align: center;
}

.counter-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.counter-label {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
  font-weight: 600;
}

/* ── PORTFOLIO ── */
#portfolio {
  padding: 100px 0;
  background: var(--light-bg);
}

#portfolio .section-title {
  text-align: center;
}

#portfolio .section-label {
  text-align: center;
}

#portfolio .lead-text {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  max-width: 500px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #fff;
  font-style: italic;
  letter-spacing: 1px;
}

.portfolio-overlay-icon {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── CTA BAND ── */
#cta-band {
  background: var(--gold);
  padding: 60px 0;
  text-align: center;
}

#cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 28px;
}

.btn-cta {
  display: inline-block;
  padding: 13px 40px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: #fff;
  color: var(--gold);
}

@media (max-width: 576px) {
  .btn-cta {
    font-size: 0.5rem;
  }
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 100px 0;
  background: #fff;
}

#testimonials h5 {
  color: var(--gold);
}

.testimonial-card {
  padding: 40px;
  border: 1px solid var(--border-color);
  position: relative;
  height: 100%;
  transition: all 0.3s;
}

.testimonial-card:hover {
  background: #fafcff;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #b8975ab7;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #c0a403);
  transform: scaleX(0);
  transform-origin: top;
  transition: transform .35s;
}

.testimonial-card:hover::after {
  transform: scaleX(1);
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0;
  color: var(--gold);
  position: absolute;
  top: 48px;
  left: 30px;
  opacity: 0.35;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: #666;
  font-style: italic;
  margin-bottom: 28px;
  padding-top: 16px;
}

.testimonial-author {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-dot {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
}

/* ── BLOG ── */
#blog {
  padding: 100px 0;
  background: var(--light-bg);
}

.blog-card {
  background: #fff;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #c0a403);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.blog-card:hover::after {
  transform: scaleX(1);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.08);
}

.blog-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.06);
}

.blog-body {
  padding: 26px 28px 30px;
}

.blog-meta {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted-custom);
  margin-bottom: 12px;
}

.blog-meta .cat {
  color: var(--gold);
  margin-left: 10px;
}

.blog-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 14px;
}

.blog-card h3 a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card h3 a:hover {
  color: var(--gold);
}

.blog-excerpt {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 18px;
}

.read-more {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s;
}

.read-more:hover {
  color: var(--gold);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 60px 0 30px;
  color: #ffffff80;
}

footer .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}

footer h3 {
  color: white;
}

footer a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

footer a:hover {
  text-decoration: underline;
}

.qlinks a {
  color: #ffffff80;
}

.qlinks a:hover {
  transform: scale(1.1);
  color: #cccccc;
}

footer .copyright {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
}

.accordion-button::after {
  filter: invert(1);
}

#footer-contact i {
  color: var(--gold);
}

/* ----------------------------------------
             About Page
   ---------------------------------------- */

/* ── About hero section ── */
#about-hero {
  height: 60vh;
  min-height: 420px;
  background-image: url('../img/about-hero.jpg');
  background-size: cover;
  background-position: center 30%;
  position: relative;
  display: flex;
  align-items: center;
}

#about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .25) 70%, transparent 100%);
}

.about-hero-caption {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-left: 8%;
}

.about-hero-caption .eyebrow {
  font-size: .7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.about-hero-caption h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  font-style: italic;
  margin-bottom: 10px;
}

.about-hero-caption .subtitle {
  font-size: .8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}

/* ── ABOUT INTRO ── */
#about-intro {
  padding: 100px 0;
  background: #fff;
}

.about-intro-img-wrap {
  position: relative;
}

.about-intro-img-wrap img {
  width: 85%;
  display: block;
  padding: 4px;
  background: var(--gold);
}

.about-intro-img-wrap::after {
  content: '';
  position: absolute;
  width: 85%;
  height: 100%;
  border: 1px solid var(--gold);
  top: 18px;
  left: 18px;
  z-index: 0;
}

.about-intro-img-wrap img {
  position: relative;
  z-index: 1;
}

.about-text {
  font-size: .92rem;
  line-height: 1.9;
  color: #555;
  font-weight: 300;
}

.btn-about-book {
  display: inline-block;
  margin-top: 36px;
  padding: 13px 36px;
  border: 1px solid var(--gold);
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(141, 120, 0);
  text-decoration: none;
  font-weight: 700;
  transition: all .3s;
}

.btn-about-book:hover {
  background: var(--gold);
  text-shadow: 2px 0px 1px #000000cc;
  color: #fff;
}

@media (max-width: 576px) {
  .btn-about-book {
    font-size: 0.6rem;
  }
}

/* ── PHILOSOPHY ── */
#philosophy {
  padding: 100px 0;
  background: var(--light-bg);
}

.philosophy-card {
  padding: 40px 30px;
  background: #fff;
  border: 1px solid var(--border-color);
  transition: all .3s;
  height: 100%;
  position: relative;
}

.philosophy-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #c0a403);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.philosophy-card:hover::after {
  transform: scaleX(1);
}

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 20px rgba(0, 0, 0, .08);
}

.philosophy-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.philosophy-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 14px;
  font-style: italic;
}

.philosophy-card p {
  font-size: .88rem;
  line-height: 1.85;
  color: #666;
}

/* ── JOURNEY TIMELINE ── */
#journey {
  padding: 100px 0;
  background: #fff;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -47px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-size: .65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.timeline-item h4 {
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: .88rem;
  line-height: 1.85;
  color: #666;
}

/* ── GEAR / SERVICES ── */
#services {
  padding: 100px 0;
  background: var(--light-bg);
}

.service-row {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  transition: all .3s;
}

.service-row:last-child {
  border-bottom: 1px solid var(--border-color);
}

.service-row:hover {
  padding-left: 10px;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  margin-right: 30px;
  flex-shrink: 0;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 6px;
}

.service-desc {
  font-size: .85rem;
  color: #777;
  line-height: 1.7;
}

.service-icon {
  font-size: 1.6rem;
  color: var(--gold);
  opacity: .6;
  margin-left: auto;
  flex-shrink: 0;
}

/* ── GALLERY STRIP ── */
#about-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.gallery-strip-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: grayscale(20%);
}

.gallery-strip-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

@media(max-width:768px) {
  #about-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-strip-item:nth-child(n+4) {
    display: none;
  }
}

/* ----------------------------------------
             portfiolio page 
   ---------------------------------------- */
/* Hero */
#portfolio-hero {
  height: 60vh;
  min-height: 420px;
  background-image: url('../img/travel-2.jpg');
  background-size: cover;
  background-position: center 40%;
  position: relative;
  display: flex;
  align-items: center;
}

#portfolio-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .3) 70%, transparent 100%);
}

.portfolio-hero-caption {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-left: 8%;
}

.portfolio-hero-caption .eyebrow {
  font-size: .7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.portfolio-hero-caption h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  font-style: italic;
  margin-bottom: 10px;
}

.portfolio-hero-caption .subtitle {
  font-size: .8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}

/* ─── Filter Tabs ─── */
#portfolio-main {
  padding: 80px 0 100px;
  background: var(--light-bg);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 60px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--dark);
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.filter-btn:hover::after,
.filter-btn.active::after {
  width: 100%;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.filter-btn.active::after {
  background: #fff;
}

/* ─── Masonry-style Portfolio Grid ─── */
.portfolio-masonry {
  columns: 4;
  column-gap: 4px;
}

.pm-item {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  margin-bottom: 4px;
  cursor: pointer;
  display: block;
}

.pm-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(10%);
}

.pm-item:hover img {
  transform: scale(1.07);
  filter: grayscale(0%);
}

/* Overlay */
.pm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
}

.pm-item:hover .pm-overlay {
  opacity: 1;
}

.pm-overlay-cat {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.05s;
}

.pm-overlay-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #fff;
  font-weight: 300;
  line-height: 1.2;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.1s;
}

.pm-overlay-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transform: scale(0.6);
  opacity: 0;
  transition: all 0.3s ease 0.05s;
}

.pm-item:hover .pm-overlay-cat,
.pm-item:hover .pm-overlay-title {
  transform: translateY(0);
}

.pm-item:hover .pm-overlay-icon {
  transform: scale(1);
  opacity: 1;
}

/* Hidden state for filtering */
.pm-item.hidden {
  display: none;
}

/* Tall items */
.pm-tall img {
  aspect-ratio: 3/4;
  object-fit: cover;
}

.pm-square img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.pm-wide img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.pm-portrait img {
  aspect-ratio: 2/3;
  object-fit: cover;
}

@media (max-width: 991px) {
  .portfolio-masonry {
    columns: 3;
  }
}

@media (max-width: 767px) {
  .portfolio-masonry {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .portfolio-masonry {
    columns: 2;
  }

  .filter-btn {
    font-size: 0.55rem;
    padding: 8px 14px;
  }
}

/* ─── Category Title Band ─── */
.category-intro {
  text-align: center;
  margin-bottom: 50px;
}

.category-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 10px;
}

.category-intro p {
  font-size: 0.88rem;
  color: #777;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── Load More ─── */
.load-more-wrap {
  text-align: center;
  margin-top: 60px;
}

.btn-load-more {
  display: inline-block;
  padding: 14px 48px;
  border: 1px solid var(--gold);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  font-family: 'Raleway', sans-serif;
  transition: all 0.3s;
}

.btn-load-more:hover {
  background: var(--gold);
  color: #fff;
}

/* ─── Lightbox ─── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  z-index: 99998;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#lightbox.open {
  display: flex;
}

#lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
}

#lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 99999;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
}

#lightbox-close:hover {
  opacity: 1;
}

#lightbox-caption {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
}

/* ----------------------------------------
             contact page 
   ---------------------------------------- */
/* ── Contact Hero ── */
#contact-hero {
  height: 60vh;
  min-height: 420px;
  background-image: url('../img/contact-image.jpg');
  background-size: cover;
  background-position: center 30%;
  position: relative;
  display: flex;
  align-items: center;
}

#contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .70) 0%, rgba(0, 0, 0, .35) 70%, transparent 100%);
}

.contact-hero-caption {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-left: 8%;
}

.contact-hero-caption .eyebrow {
  font-size: .7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.contact-hero-caption h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  font-style: italic;
  margin-bottom: 10px;
}

.contact-hero-caption .subtitle {
  font-size: .8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}

/* ── Contact Section ── */
#contact-main {
  padding: 100px 0;
  background: var(--light-bg);
}

/* Info Cards */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
}

.contact-info-card:hover {
  box-shadow: 0 12px 40px rgba(184, 151, 90, 0.13);
  transform: translateY(-4px);
}

.contact-info-card .ci-icon {
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 1.3rem;
  transition: all 0.3s;
}

.contact-info-card:hover .ci-icon {
  background: var(--gold);
  color: #fff;
}

.contact-info-card h5 {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: 'Raleway', sans-serif;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
  text-decoration: none;
  font-weight: 300;
  display: block;
}

.contact-info-card a:hover {
  color: var(--gold);
}

/* ── Form & Map wrapper ── */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 52px 48px;
}

@media (max-width: 768px) {
  .contact-form-wrap {
    padding: 36px 24px;
  }
}

.contact-form-wrap .section-label {
  margin-bottom: 6px;
}

.contact-form-wrap h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.2;
}

.contact-form-wrap .lead-text {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 36px;
}

/* Form inputs */
.form-label {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-control,
.form-select {
  border: 1px solid var(--border-color);
  border-radius: 0;
  background: var(--light-bg);
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: var(--dark);
  padding: 13px 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 151, 90, 0.12);
  background: #fff;
}

.form-control::placeholder {
  color: #bbb;
  font-weight: 300;
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.btn-contact-submit {
  display: inline-block;
  padding: 14px 48px;
  background: var(--dark);
  border: 1px solid var(--dark);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
}

.btn-contact-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* Success message */
#form-success {
  display: none;
  background: #f0f9f0;
  border: 1px solid #b8e0b8;
  padding: 18px 24px;
  font-size: 0.88rem;
  color: #3a7a3a;
  letter-spacing: 1px;
  margin-top: 20px;
}

/* ── Map wrapper ── */
.map-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 100%;
  min-height: 420px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

/* ── Social strip ── */
#contact-social {
  background: var(--dark);
  padding: 70px 0;
}

.social-strip-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  margin-bottom: 6px;
}

.social-strip-sub {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 40px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 28px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  margin: 6px;
}

.social-pill i {
  font-size: 1.1rem;
}

.social-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ── Divider ── */
.gold-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}

/* ----------------------------------------
              Pricing Page 
   ---------------------------------------- */
/* ═══════════════════ PRICING HERO ═══════════════════ */
#pricing-hero {
  height: 60vh;
  min-height: 420px;
  background-image: url('../img/kiss-1.jpg');
  background-size: cover;
  background-position: center 40%;
  position: relative;
  display: flex;
  align-items: center;
}

#pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .38) 65%, transparent 100%);
}

.pricing-hero-caption {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-left: 8%;
}

.pricing-hero-caption .eyebrow {
  font-size: .7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.pricing-hero-caption h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  font-style: italic;
  margin-bottom: 10px;
}

.pricing-hero-caption .subtitle {
  font-size: .8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}

/* ═══════════════════ PRICING INTRO ═══════════════════ */
#pricing-intro {
  padding: 80px 0 60px;
  background: #fff;
  text-align: center;
}

#pricing-intro p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #666;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════ PRICING CARDS ═══════════════════ */
#pricing-packages {
  padding: 40px 0 100px;
  background: #fff;
}

.pricing-card {
  border: 1px solid var(--border-color);
  background: var(--light-bg);
  padding: 48px 38px 42px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(184, 151, 90, 0.15);
}

.pricing-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #c0a403);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.pricing-card:hover::after {
  transform: scaleX(1);
}

/* Featured / Most Popular card */
.pricing-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-12px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.25);
}

.pricing-card.featured:hover {
  transform: translateY(-18px);
}

.pricing-card.featured::after {
  background: linear-gradient(90deg, var(--gold), #f0c040);
}

.pricing-card.featured:hover::after {
  transform: scaleX(1);
}

.pricing-badge {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--gold);
  color: #fff;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.pricing-card-label {
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 6px;
  color: var(--dark);
}

.pricing-card.featured .pricing-card-title {
  color: #fff;
}

.pricing-card-sub {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 28px;
  font-weight: 300;
}

.pricing-card.featured .pricing-card-sub {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card.featured .pricing-price {
  color: var(--gold);
}

.pricing-price sup {
  font-size: 1rem;
  vertical-align: super;
  font-family: 'Raleway', sans-serif;
}

.pricing-price-note {
  font-size: 0.72rem;
  color: #aaa;
  letter-spacing: 1px;
  margin-bottom: 30px;
  font-weight: 300;
}

.pricing-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.84rem;
  color: #555;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
  line-height: 1.5;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pricing-features li i {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 14px 28px;
  text-align: center;
  border: 1px solid var(--dark);
  background: transparent;
  color: var(--dark);
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-pricing:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.pricing-card.featured .btn-pricing {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.pricing-card.featured .btn-pricing:hover {
  background: #c9a45e;
  border-color: #c9a45e;
}

/* ═══════════════════ PROCESS ═══════════════════ */
#pricing-process {
  padding: 100px 0;
  background: var(--light-bg);
}

#pricing-process .section-title,
#pricing-process .section-label {
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  z-index: 0;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.process-icon-wrap {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background: #fff;
  color: var(--gold);
  font-size: 1.4rem;
  transition: all 0.3s;
}

.process-step:hover .process-icon-wrap {
  background: var(--gold);
  color: #fff;
}

.process-step-num {
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 10px;
  color: var(--dark);
}

.process-step p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.8;
  font-weight: 300;
}

/* ═══════════════════ TESTIMONIALS SLIDER ═══════════════════ */
#pricing-testimonials {
  padding: 100px 0;
  background: #fff;
}

#pricing-testimonials .section-title,
#pricing-testimonials .section-label {
  text-align: center;
}

.testi-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 56px;
}

.testi-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-slide {
  min-width: 100%;
  padding: 0 15px;
}

.testi-card-inner {
  border: 1px solid var(--border-color);
  padding: 50px 48px 42px;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  transition: all 0.3s;
}

.testi-card-inner:hover{
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #b8975ab7;
}
.testi-card-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #c0a403);
  transform: scaleX(0);
  transform-origin: top;
  transition: transform .35s;
}

.testi-card-inner:hover::after {
  transform: scaleX(1);
}

.testi-card-inner::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  line-height: 0;
  color: var(--gold);
  position: absolute;
  top: 56px;
  left: 36px;
  opacity: 0.2;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 22px;
}

.testi-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #666;
  font-style: italic;
  margin-bottom: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
}

.testi-author {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark);
}

.testi-author span {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 2px;
  display: block;
  margin-top: 4px;
  font-size: 0.6rem;
}

.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--dark);
  font-size: 1rem;
}

.testi-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 28px;
  height: 2px;
  background: var(--border-color);
  transition: background 0.3s;
  cursor: pointer;
}

.testi-dot.active {
  background: var(--gold);
}

/* ═══════════════════ FAQ STRIP ═══════════════════ */
#pricing-faq {
  padding: 80px 0 100px;
  background: var(--light-bg);
}

#pricing-faq .section-label,
#pricing-faq .section-title {
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 28px 32px;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  transform: scaleZ(1.1);
  box-shadow: 0 8px 30px rgba(184, 151, 90, 0.377);
}

.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-q i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.faq-a {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.85;
  font-weight: 300;
  padding-left: 26px;
}

/* ═══════════════════ PRICING CTA BAND ═══════════════════ */
#pricing-cta {
  background: var(--gold);
  padding: 70px 0;
  text-align: center;
}

#pricing-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 10px;
}

#pricing-cta p {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

@media (max-width: 768px) {
  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
}

/* ----------------------------------------
             All animation 
   ---------------------------------------- */
.delay-100 {
  transition-delay: 0.1s !important;
}

.delay-200 {
  transition-delay: 0.2s !important;
}

.delay-300 {
  transition-delay: 0.3s !important;
}

.delay-400 {
  transition-delay: 0.4s !important;
}

.delay-500 {
  transition-delay: 0.5s !important;
}

.delay-600 {
  transition-delay: 0.6s !important;
}

.delay-1s {
  transition-delay: 1s !important;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
