/* =====================================================
   DHRUV LIMBACHIYA PHOTOGRAPHY
   Full Production CSS — Warm Cream + Antique Gold
===================================================== */

/* =====================================================
   CSS VARIABLES
===================================================== */
:root {
  --cream:        #f5f0e8;
  --cream-light:  #faf7f2;
  --cream-dark:   #ece5d8;
  --gold:         #c6a16e;
  --gold-light:   #d8b56a;
  --gold-dark:    #8b6b2e;
  --gold-gradient: linear-gradient(120deg, #8b6b2e, #d8b56a, #8b6b2e);
  --dark:         #1c1a17;
  --dark-mid:     #2d2a25;
  --muted:        #7a7268;
  --white:        #ffffff;
  --shadow-soft:  0 20px 60px rgba(28,26,23,0.08);
  --shadow-med:   0 30px 80px rgba(28,26,23,0.12);
  --transition:   all 0.45s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
}
/* ——— LOADER ——— */
.loader {
  position: fixed;
  inset: 0;
  background: #0f0d0b;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 2;
}

/* Camera SVG */
.loader-camera {
  width: 90px;
  height: 90px;
  opacity: 0;
  transform: scale(0.8);
  animation: camAppear 0.6s 0.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

.loader-camera svg {
  width: 100%;
  height: 100%;
}

@keyframes camAppear {
  to { opacity: 1; transform: scale(1); }
}

/* Shutter blades — radial lines around lens */
.loader-shutter-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.loader-shutter-lines span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c6a16e);
  transform-origin: left center;
  opacity: 0;
  transition: opacity 0.1s ease;
}

.loader-shutter-lines span:nth-child(1) { transform: rotate(0deg); }
.loader-shutter-lines span:nth-child(2) { transform: rotate(60deg); }
.loader-shutter-lines span:nth-child(3) { transform: rotate(120deg); }
.loader-shutter-lines span:nth-child(4) { transform: rotate(180deg); }
.loader-shutter-lines span:nth-child(5) { transform: rotate(240deg); }
.loader-shutter-lines span:nth-child(6) { transform: rotate(300deg); }

.loader-shutter-lines.burst span {
  opacity: 1;
  animation: bladeBurst 0.25s ease forwards;
}

@keyframes bladeBurst {
  0%   { opacity: 1; transform: rotate(var(--r)) scaleX(0.4); }
  60%  { opacity: 1; transform: rotate(var(--r)) scaleX(1.2); }
  100% { opacity: 0; transform: rotate(var(--r)) scaleX(1.6); }
}

/* Camera click animation */
.loader-camera.click {
  animation: cameraClick 0.15s ease forwards;
}

@keyframes cameraClick {
  0%   { transform: scale(1); }
  40%  { transform: scale(0.88); }
  100% { transform: scale(1); }
}

/* Text */
.loader-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: linear-gradient(120deg, #8b6b2e, #d8b56a, #8b6b2e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 24px;
  opacity: 0;
  animation: camAppear 0.5s 0.5s ease forwards;
}

.loader-tag {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
  opacity: 0;
  animation: camAppear 0.5s 0.7s ease forwards;
}

/* Flash */
.loader-flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
}

.loader-flash.fire {
  animation: flashBurst 0.5s ease forwards;
}

@keyframes flashBurst {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Exit */
.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
body {
  font-family: 'Cormorant Garant', 'Playfair Display', serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 88%;
  max-width: 1340px;
  margin: 0 auto;
}

/* =====================================================
   NAVBAR
===================================================== */
.dl-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 900;
  transition: transform 0.45s ease, box-shadow 0.3s ease;
}

.dl-navbar.scrolled {
  box-shadow: 0 2px 30px rgba(28,26,23,0.08);
}

.dl-navbar.hide {
  transform: translateY(-100%);
}

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

/* Logo */
.dl-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dl-logo img {
  height: 42px;
  width: auto;
}

.dl-logo-text {
  display: flex;
  flex-direction: column;
}

.dl-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 21px;
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

.dl-tagline {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.45em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 1px;
}

/* Desktop Menu */
.dl-menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 44px;
}

.dl-menu a {
  /* font-family: 'Jost', 'Inter', sans-serif; */
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s ease;
  padding: 4px 0;
}

.dl-menu a:hover,
.dl-menu a.active {
  color: var(--gold-dark);
}

.dl-underline {
  position: absolute;
  bottom: -6px;
  height: 1px;
  background: var(--gold-gradient);
  transition: all 0.4s ease;
  box-shadow: 0 0 8px rgba(200,160,80,0.3);
}

/* Hamburger */
.dl-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.dl-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: var(--transition);
}

.dl-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.dl-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.dl-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.dl-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.77,0,0.18,1);
  z-index: 1000;
}

.dl-mobile-menu.active {
  transform: translateY(0);
}

.dl-mobile-menu a {
  font-family: 'Cormorant Garant', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.05em;
  transition: color 0.3s ease, transform 0.3s ease;
}

.dl-mobile-menu a:hover {
  color: var(--gold);
  transform: translateX(8px);
}

.dl-mobile-close {
  position: absolute;
  top: 28px;
  right: 32px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}

/* =====================================================
   HERO — VIDEO
===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 28px;
  animation: fadeUp 1.2s ease both;
}

.hero-content h1 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  animation: fadeUp 1.2s 0.2s ease both;
}

.hero-content h1 em {
  font-style: italic;
  color: rgba(214,176,106,0.9);
}

.hero-tagline {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  opacity: 0.75;
  margin-bottom: 60px;
  animation: fadeUp 1.2s 0.4s ease both;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  animation: fadeUp 1.2s 0.6s ease both;
}

.btn-hero-primary {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-hero-gold {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--dark);
  transition: var(--transition);
}

.btn-hero-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1.2s 1s ease both;
}

.scroll-indicator span {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.5);
  animation: scrollPulse 2s infinite ease-in-out;
}

@keyframes scrollPulse {
  0%   { opacity: 0; transform: translateY(0); }
  50%  { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(16px); }
}

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

/* =====================================================
   DIVIDER
===================================================== */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 0 auto;
}

/* =====================================================
   PORTFOLIO SECTION
===================================================== */
.portfolio-section {
  padding: 140px 0;
  background: var(--cream-light);
}

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

.section-eyebrow {
  display: block;
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
}

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

.portfolio-item {
  position: relative;
  aspect-ratio: 4 / 4;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.portfolio-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,16,10,0.72) 0%,
    rgba(20,16,10,0.2) 35%,
    rgba(0,0,0,0) 55%
  );
  z-index: 2;
  transition: background 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
  background: linear-gradient(
    to top,
    rgba(20,16,10,0.82) 0%,
    rgba(20,16,10,0.3) 45%,
    rgba(0,0,0,0.05) 70%
  );
}

.portfolio-text {
  position: absolute;
  bottom: 36px;
  left: 36px;
  z-index: 3;
  color: var(--white);
}

.portfolio-sub {
  display: block;
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.portfolio-text h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 40px !important;
  font-weight: 400;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-sub {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item:hover h3 {
  transform: translateY(-4px);
}

/* Arrow */
.portfolio-item::after {
  content: "↗";
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
  z-index: 4;
}

.portfolio-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* View All */
.portfolio-footer {
  text-align: center;
  margin-top: 80px;
}
/* 
.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding-bottom: 6px;
}

.btn-text-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

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

.btn-text-link .arrow {
  transition: transform 0.4s ease;
}

.btn-text-link:hover .arrow {
  transform: translateX(6px);
} */

/* reels section   */

/* ====== REELS CAROUSEL ====== */
/* ====== REELS ====== */

/* ====== REELS ====== */


/* =====================================================
   REELS SECTION
===================================================== */
.reels-section {
  background: var(--cream-light);
  padding: 140px 0 100px;
  overflow: hidden;
}

/* Header row */
.reels-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}

.reels-header-text .section-eyebrow {
  color: var(--gold);
  margin-bottom: 10px;
}

.reels-header-text .section-title {
  color: var(--dark);
  margin-bottom: 16px;
}

.reels-subheading {
  /* font-family: 'Jost', 'Inter', sans-serif; */
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 480px;
}

/* Arrow buttons — in header */
.reels-header-arrows {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.reels-arrow {
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 1px solid rgba(28,26,23,0.12);
  color: var(--dark);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(28,26,23,0.06);
}

.reels-arrow:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

/* Scroll wrapper */
.reels-scroll-wrap {
  position: relative;
}

.reels-scroll-inner {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding: 12px 5% 20px;
}

.reels-scroll-inner::-webkit-scrollbar { display: none; }
.reels-scroll-inner.grabbing { cursor: grabbing; }

.reels-scroll-track {
  display: flex;
  gap: 18px;
  width: max-content;
}

/* Reel card */
.reel-card {
  position: relative;
  width: 260px;
  aspect-ratio: 9/16;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--cream-dark);
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(28,26,23,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.reel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(28,26,23,0.18);
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.reel-card:hover video {
  transform: scale(1.04);
}

/* Overlay */
.reel-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(18,14,10,0.25);
  transition: background 0.4s ease;
}

.reel-card:hover .reel-card-overlay {
  background: rgba(18,14,10,0.45);
}

/* Play circle */
.reel-play-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  padding-left: 4px;
  backdrop-filter: blur(4px);
  transition: all 0.4s ease;
  transform: scale(0.9);
  opacity: 0.7;
}

.reel-card:hover .reel-play-circle {
  transform: scale(1);
  opacity: 1;
  border-color: var(--gold-light);
  background: rgba(198,161,110,0.2);
  color: var(--gold-light);
}

/* Watch label */
.reel-watch-label {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}

.reel-card:hover .reel-watch-label {
  opacity: 1;
  transform: translateY(0);
}

/* Sound button on card */
.reel-sound-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(18,14,10,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.reel-card.playing .reel-sound-btn {
  opacity: 1;
  pointer-events: all;
}

/* Playing state */
.reel-card.playing {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.reel-card.playing .reel-card-overlay {
  background: rgba(18,14,10,0.05);
}

.reel-card.playing .reel-play-circle {
  opacity: 0;
}

.reel-card.playing .reel-watch-label {
  opacity: 0;
}

/* Edge fades */
.reels-fade-left,
.reels-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 4;
}

.reels-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--cream-light), transparent);
}

.reels-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--cream-light), transparent);
}

/* Footer row */
.reels-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-dark);
}

.reels-count {
  font-family: 'Cormorant Garant', serif;
  font-size: 16px;
  color: var(--dark);
}

.reels-hint {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =====================================================
   REEL LIGHTBOX
===================================================== */
.reel-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.97);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  animation: lbFadeIn 0.3s ease;
}

.reel-lightbox.active {
  display: flex;
}

.reel-lb-inner {
  position: relative;
  width: min(380px, 88vw);
  aspect-ratio: 9/16;
}

.reel-lb-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-lb-sound {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.reel-lb-sound:hover {
  background: rgba(198,161,110,0.35);
  border-color: var(--gold);
}

.reel-lb-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 26px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.3s ease;
  z-index: 10;
}

.reel-lb-close:hover { color: var(--white); }

/* Lightbox nav row */
.reel-lb-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.reel-lb-prev,
.reel-lb-next {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.reel-lb-prev:hover,
.reel-lb-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.reel-lb-hint {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* Mobile */
@media (max-width: 768px) {
  .reels-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .reels-header-arrows {
    align-self: flex-start;
  }

  .reel-card { width: 200px; }

  .reels-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .reel-lb-hint { display: none; }

  .reels-fade-left,
  .reels-fade-right { width: 40px; }
}

/* end of reels  */
.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 18px 52px;
  border: 1px solid #b8924a;
  border-radius: 8px;
  color: #1c1a17;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.45s ease;
  font-weight: 500;
}

.btn-text-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #8b6b2e, #d8b56a, #8b6b2e);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-text-link:hover::before {
  transform: translateX(0);
}

.btn-text-link:hover {
  color: #fff;
}

.btn-text-link span,
.btn-text-link .arrow {
  position: relative;
  z-index: 1;
}

.btn-text-link .arrow {
  transition: transform 0.4s ease;
}

.btn-text-link:hover .arrow {
  transform: translateX(6px);
}

/* Remove the old underline pseudo-element */
.btn-text-link::after {
  display: none;
}
/* =====================================================
   ABOUT SECTION (HOME)
===================================================== */
.about-section {
  background: var(--cream);
  padding: 160px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-overline {
  display: block;
  /* font-family: 'Jost', 'Inter', sans-serif; */
  font-size: 14px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.about-heading {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--dark);
}

.about-heading em {
  font-style: italic;
  color: var(--gold-dark);
}

.about-body {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 500px;
}

/* Stats */
.about-stats {
  display: flex;          /* ← add this */
  flex-direction: row;
  gap: 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 24px 0;
  margin: 36px 0;
}

.about-stats .stat {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border: solid; */
}

.about-stats .stat:last-child {
  border-right: none;
}

.about-stats .stat-num {
  font-size: 26px;
  line-height: 1;
}

.about-stats .stat-label {
  font-size: 8px;
  letter-spacing: 0.12em;
  margin-top: 6px;
}
/* About Image */
.about-image-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.about-img-accent {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-med);
}

.about-gold-bar {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  z-index: -1;
}

/* =====================================================
   SERVICES SECTION
===================================================== */
.services-section {
  background: var(--cream-dark);
  padding: 140px 0;
  text-align: center;
}

.services-section .section-header {
  margin-bottom: 24px;
}

.services-intro {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 80px;
}

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

.service-card {
  background: var(--cream-light);
  padding: 70px 30px 60px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: var(--shadow-med);
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 22px;
  margin-bottom: 24px;
  display: block;
  opacity: 0.5;
}

.service-card h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 14px;
}

.service-card p {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

.services-cta {
  display: inline-block;
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.services-cta:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* =====================================================
   TESTIMONIALS SECTION
===================================================== */
.testimonials-section {
  background: var(--dark);
  padding: 140px 0;
  overflow: hidden;
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-section .section-eyebrow {
  color: var(--gold);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 50px 40px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(198,161,110,0.3);
}

.testimonial-quote {
  font-size: 48px;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
  font-family: 'Cormorant Garant', serif;
}

.testimonial-text {
  font-family: 'Cormorant Garant', serif;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.3;
}

.testimonial-name {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
}

.testimonial-role {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* =====================================================
   CTA SECTION
===================================================== */
.cta-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.6s ease;
}

.cta-section:hover .cta-bg {
  transform: scale(1.02);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,14,10,0.82);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 0 30px;
  color: var(--white);
}

.cta-overline {
  display: block;
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}

.cta-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-body {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.75;
  max-width: 520px;
  margin: 0 auto 56px;
}

.btn-cta {
  display: inline-block;
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 20px 56px;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.btn-cta span {
  position: relative;
  z-index: 1;
}

.btn-cta:hover {
  border-color: var(--gold);
  color: var(--dark);
}

.btn-cta:hover::before {
  transform: translateX(0);
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: var(--dark-mid);
  color: rgba(255,255,255,0.6);
  padding: 100px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.9;
  max-width: 300px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

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

.footer-col ul li a {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col address {
  font-style: normal;
}

.footer-col address p {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,0.5);
}

.footer-col address a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.footer-col address a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.3);
}

/* =====================================================
   GALLERY PAGE
===================================================== */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  padding: 0 8% 70px;
  color: var(--white);
}

.page-hero-content .eyebrow {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 12px;
}

.page-hero-content h1 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.05;
}

/* Gallery Filter */
.gallery-filter {
  background: var(--cream-light);
  padding: 40px 0;
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0px;
  z-index: 101;
  transition: top 0.45s ease; 
}

.filter-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  /* font-family: 'Jost', 'Inter', sans-serif; */
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(28,26,23,0.15);
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

/* Masonry Gallery */
.photo-gallery {
  background: var(--cream-light);
  padding: 80px 5%;
}

.gallery-container {
  columns: 4;
  column-gap: 16px;
}

.gallery-container img {
  width: 100%;
  margin-bottom: 16px;
  display: block;
  cursor: pointer;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.gallery-container img:hover {
  transform: scale(1.02);
  opacity: 0.92;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18,14,10,0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  animation: lbFadeIn 0.3s ease;
}

@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 36px;
  font-size: 28px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.3s ease;
}

.lightbox-close:hover { color: var(--white); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px;
  transition: color 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* =====================================================
   ABOUT PAGE
===================================================== */
/* Hero */
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  padding: 0 8% 80px;
  color: var(--white);
}

.about-hero-content .eyebrow {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 14px;
}

.about-hero-content h1 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(50px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.0;
}

/* Intro */
.about-intro {
  padding: 120px 0;
  background: var(--cream-light);
}

.about-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-inner h2 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 32px;
}

.about-intro-inner p {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

/* Split */
.about-split {
  padding: 120px 0;
  background: var(--cream);
}

.about-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-split-text p {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 16px;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 24px;
}

.about-split-text blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 48px 0;
  font-family: 'Cormorant Garant', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--dark);
}

.about-split-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Philosophy */
.about-philosophy {
  background: var(--dark);
  padding: 140px 0;
  text-align: center;
}

.about-philosophy .section-title {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 60px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 80px;
}

.philosophy-item {
  background: var(--dark);
  padding: 60px 40px;
  text-align: left;
}

.philosophy-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 52px;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 24px;
}

.philosophy-item h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
}

.philosophy-item p {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
}

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-page {
  background: var(--cream);
}

.contact-hero {
  background: var(--dark-mid);
  padding: 200px 0 120px;
  text-align: center;
}

.contact-hero h1 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.contact-hero p {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}

/* Contact Layout */
.contact-body {
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}

/* Info */
.contact-info h2 {
  font-family: 'Cormorant Garant', serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--dark);
}

.contact-info p {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 48px;
}

.contact-detail {
  margin-bottom: 28px;
}

.contact-detail-label {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.contact-detail-value {
  font-family: 'Cormorant Garant', serif;
  font-size: 20px;
  color: var(--dark);
}

.contact-detail-value a {
  color: var(--dark);
  transition: color 0.3s ease;
}

.contact-detail-value a:hover {
  color: var(--gold-dark);
}

/* Form */
.contact-form {
  background: var(--cream-light);
  padding: 60px;
}

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

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

.form-group label {
  display: block;
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(28,26,23,0.1);
  padding: 16px 20px;
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.form-submit {
  display: block;
  width: 100%;
  padding: 20px;
  background: var(--dark);
  color: var(--white);
  border: none;
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold-dark);
}

.form-note {
  font-family: 'Jost', 'Inter', sans-serif;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 12px;
}

/* =====================================================
   FADE / REVEAL ANIMATIONS
===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =====================================================
   RESPONSIVE — TABLETS (≤ 1024px)
===================================================== */
@media (max-width: 1024px) {
  .dl-nav-inner { padding: 18px 32px; }

  .about-inner { grid-template-columns: 1fr; gap: 70px; }
  .about-img-accent { display: none; }
  .about-image-wrap { max-width: 560px; margin: 0 auto; }

  .testimonials-track { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-form { padding: 48px 40px; }

  .gallery-container { columns: 3; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =====================================================
   RESPONSIVE — MOBILE (≤ 768px)
===================================================== */
@media (max-width: 768px) {
  .dl-menu { display: none; }
  .dl-hamburger { display: flex; }
  .dl-nav-inner { padding: 18px 24px; }

  .hero-cta-group { flex-direction: column; align-items: center; gap: 12px; }
  .btn-hero-primary, .btn-hero-gold { width: 220px; text-align: center; }

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

  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  /* .about-stats { flex-direction: column; gap: 28px; } */
.about-stats { flex-direction: row; gap: 0; padding: 20px 0; margin: 30px 0; }
.about-stats .stat { flex: 1; text-align: center; padding: 0 8px; border-right: 1px solid var(--cream-dark); }
.about-stats .stat:last-child { border-right: none; }
.stat-num { font-size: 24px; line-height: 1; }
.stat-label { font-size: 8px; letter-spacing: 0.1em; margin-top: 5px; }

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

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

  .about-split-inner { grid-template-columns: 1fr; gap: 60px; }

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

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 36px 28px; }

  .gallery-container { columns: 2; }

  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .page-hero-content { padding: 0 6% 50px; }

  .about-hero-content { padding: 0 6% 60px; }
}

/* =====================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
===================================================== */
@media (max-width: 480px) {
  .gallery-container { columns: 1; }

  .dl-logo img { height: 34px; }
  .dl-name { font-size: 17px; }

  .about-intro-inner h2 { font-size: 24px; }

  .contact-hero { padding: 160px 0 80px; }
}
