/* ═══════════════════════════════════════════════════════════════════════════
  styles.css — Diana Obermeyer Photography
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --ivory:    #F8F5F0;
  --charcoal: #2C2C2C;
  --gold:     #B8976A;
  --gold-dark:#9e7d54;
  --rose:     #C9A99A;
  --stone:    #6F655F;
  --mist:     #EBE8E4;
  --cream:    #FAF7F4;
  --dark-bg:  #1a1410;
  --footer-bg: #1a1410;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-script:  'Dancing Script', cursive;

  --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

  --nav-height: 80px;
  --border-color: rgba(44, 44, 44, 0.12);
  --text-main: #2C2C2C;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-main);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  background-color: var(--ivory);
  color: var(--text-main);
  overflow-x: hidden;
}

button,
input,
textarea,
select,
a,
p,
span,
li,
label {
  color: inherit;
}

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

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

/* Custom scrollbar */
::-webkit-scrollbar        { width: 6px; }
::-webkit-scrollbar-track  { background: var(--ivory); }
::-webkit-scrollbar-thumb  { background: var(--stone); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

::selection { background: var(--gold); color: var(--ivory); }


/* ══════════════════════════════════════════════════════════════════════════════
   SHARED UTILITIES
   ══════════════════════════════════════════════════════════════════════════════ */

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.section-title em {
  font-style: italic;
  color: var(--charcoal);
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.section-body {
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.9;
  max-width: 560px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: white;
  padding: 15px 40px;
  transition: background 0.4s var(--ease-luxury);
  border: 1px solid var(--charcoal);
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--charcoal);
  padding: 15px 40px;
  border: 1px solid var(--charcoal);
  transition: all 0.4s var(--ease-luxury);
  cursor: pointer;
}
.btn-outline:hover { background: var(--charcoal); color: white; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s;
  margin-top: 2.5rem;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost .arrow { transition: transform 0.3s; }
.btn-ghost:hover .arrow { transform: translateX(5px); }

.form-message {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.form-message.success { color: var(--gold); }
.form-message.error { color: #c0392b; }

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--ease-luxury), transform 0.85s var(--ease-luxury);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }


/* ══════════════════════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════════════════════ */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  background: rgba(248, 245, 240, 0.98);
  box-shadow: 0 1px 15px rgba(44, 44, 44, 0.08);
  transition: background 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
}

#navbar.scrolled {
  background: rgba(248, 245, 240, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.2rem 3rem;
  box-shadow: 0 1px 15px rgba(44, 44, 44, 0.08);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  transition: color 0.4s;
}
.nav-logo-sub {
  font-family: var(--font-script);
  font-size: 1rem;
  font-weight: 500;
  color: var(--stone);
  transition: color 0.4s;
}
#navbar.scrolled .nav-logo-main { color: var(--charcoal); }
#navbar.scrolled .nav-logo-sub  { color: var(--gold); }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-luxury);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
#navbar.scrolled .nav-links a { color: var(--charcoal); }
#navbar.scrolled .nav-links a:hover { color: var(--charcoal); }

/* CTA pill */
.nav-cta {
  border: 1px solid var(--charcoal) !important;
  padding: 11px 26px;
  color: var(--charcoal) !important;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.4s, color 0.4s, border-color 0.4s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: white !important; color: var(--charcoal) !important; }
#navbar.scrolled .nav-cta { border-color: var(--charcoal) !important; color: var(--charcoal) !important; }
#navbar.scrolled .nav-cta:hover { background: var(--charcoal) !important; color: white !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--charcoal);
  transition: all 0.4s var(--ease-luxury);
  transform-origin: center;
}
#navbar.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--charcoal); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--charcoal); }


/* ── Mobile Menu ────────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxury);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background: var(--ivory);
}

/* Decorative circles */
.mobile-menu-bg::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--mist);
  border-radius: 50%;
  opacity: 0.6;
}
.mobile-menu-bg::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(201,169,154,0.12);
  border-radius: 50%;
}

.mobile-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--charcoal);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s, opacity 0.5s var(--ease-luxury), transform 0.5s var(--ease-luxury);
}
.mobile-menu.open .mobile-nav a { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav a:nth-child(2) { transition-delay: 0.17s; }
.mobile-menu.open .mobile-nav a:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.open .mobile-nav a:nth-child(4) { transition-delay: 0.31s; }
.mobile-menu.open .mobile-nav a:nth-child(5) { transition-delay: 0.38s; }
.mobile-nav a:hover { color: var(--gold); }

.mobile-menu-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  text-align: center;
}
.mobile-menu-footer a:first-child {
  font-size: 0.75rem;
  color: var(--charcoal);
  letter-spacing: 0.1em;
}
.mobile-social {
  display: flex;
  gap: 2rem;
}
.mobile-social a {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s;
}
.mobile-social a:hover { color: var(--gold); }


/* ══════════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}
.hero-img-tag {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.investment-page .hero-img-tag {
  object-position: 72% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 14, 10, 0.75) 0%,
    rgba(20, 14, 10, 0.25) 50%,
    rgba(20, 14, 10, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 5.5rem;
  max-width: 820px;
}

.hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-luxury) forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease-luxury) forwards;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.8);
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.96);
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease-luxury) forwards;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s var(--ease-luxury) forwards;
}

.btn-hero-primary {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: white;
  padding: 15px 38px;
  font-weight: 400;
  transition: background 0.4s var(--ease-luxury);
}
.btn-hero-primary:hover { background: var(--gold-dark); }

.btn-hero-ghost {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
  text-shadow: 0 2px 10px rgba(0,0,0,0.28);
}
.btn-hero-ghost:hover { color: white; }
.btn-hero-ghost .arrow { transition: transform 0.3s; }
.btn-hero-ghost:hover .arrow { transform: translateX(5px); }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.3s ease forwards;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s 1.5s infinite;
}
.hero-scroll-indicator span {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}


/* ══════════════════════════════════════════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════════════════════════════════════════ */

.stats-strip {
  background: var(--charcoal);
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}


/* ══════════════════════════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════════════════════════ */

.services {
  background: var(--cream);
  padding: 7rem 4rem;
}

.services-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4.5rem;
}
.services-header .section-divider {
  margin: 1.5rem auto;
}
.services-header .section-body {
  margin: 0 auto;
  text-align: center;
}

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

.service-card {
  background: var(--mist);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease-luxury);
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-luxury);
}
.service-card:hover { background: var(--ivory); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.service-card .service-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.9rem;
}

.service-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.service-price {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* Homepage services slideshow */
.services-slideshow {
  display: block;
  max-width: 560px;
}

.services-slideshow .service-card {
  display: none;
  min-height: 300px;
}

.services-slideshow .service-card.active {
  display: block;
}

.services-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem auto 0;
}

.services-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.services-arrow:hover {
  background: var(--charcoal);
  color: white;
}

.services-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.services-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(44, 44, 44, 0.25);
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}

.services-dots button.active {
  width: 24px;
  border-radius: 8px;
  background: var(--gold);
}


/* ══════════════════════════════════════════════════════════════════════════════
   PORTFOLIO PREVIEW
   ══════════════════════════════════════════════════════════════════════════════ */

.portfolio-section {
  padding: 7rem 0;
  background: var(--ivory);
}

.portfolio-header {
  padding: 0 4rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.view-all-link {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
  padding-bottom: 4px;
}
.view-all-link:hover { color: var(--gold); }
.view-all-link span { transition: transform 0.3s; }
.view-all-link:hover span { transform: translateX(4px); }

/* Mosaic grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 10px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--mist);
}
.portfolio-item.large {
  grid-row: 1 / 3;
}

.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--mist);
  transition: transform 0.75s var(--ease-luxury);
}
.portfolio-item:hover img { transform: none; }

.investment-page .portfolio-item img {
  object-position: center center;
}

.investment-page .portfolio-item.large img {
  object-position: center center;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,10,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-luxury);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-label {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
  font-weight: 600;
}


/* ══════════════════════════════════════════════════════════════════════════════
   ABOUT SPLIT
   ══════════════════════════════════════════════════════════════════════════════ */

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

.about-image {
  position: relative;
  height: 620px;
  overflow: hidden;
}

#story .about-image {
  margin-top: 3rem;
}

#story .about-image img {
  object-position: center center;
}

.about-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--mist);
  filter: saturate(0.92) contrast(0.97);
  transition: transform 0.8s var(--ease-luxury);
}
.about:hover .about-image img { transform: none; }

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,14,10,0.58) 0%,
    rgba(20,14,10,0.04) 62%
  );
}

.about-quote {
  position: absolute;
  bottom: 3.5rem;
  left: 3rem;
  right: 3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  letter-spacing: 0.02em;
  border: none;
}
.about-quote::before {
  content: '"';
  display: block;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 0.6;
  margin-bottom: 1rem;
  font-style: normal;
}

.about-content {
  padding: 6rem 5rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy-spacing {
  margin-top: 1rem;
}

.about-signoff {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--stone);
}


/* ══════════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════════════════ */

.testimonials {
  background: var(--charcoal);
  padding: 7rem 4rem 7.5rem;
  text-align: center;
}

.testimonials > .section-label,
.testimonials > .section-title,
.testimonials > .section-divider {
  margin-left: auto;
  margin-right: auto;
}

.testimonials > .section-title {
  max-width: 700px;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 4.5rem auto 0;
  text-align: left;
}

.testimonial-card {
  padding: 3rem 2.5rem;
  background: rgba(248,245,240,0.96);
  border: 1px solid rgba(44,44,44,0.08);
  box-shadow: 0 20px 50px rgba(16,12,10,0.05);
  text-align: center;
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
}
.testimonial-card:hover {
  background: white;
  transform: translateY(-4px);
  border-color: rgba(44,44,44,0.16);
}

.stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto 1.75rem;
}

.testimonial-author {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 600;
}

.testimonial-event {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(44,44,44,0.65);
  margin-top: 0.35rem;
}


/* ══════════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════════════════════════ */

.cta-section {
  position: relative;
  padding: 9rem 4rem;
  text-align: center;
  background: var(--ivory);
  overflow: hidden;
}

.cta-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 300;
  color: rgba(44,44,44,0.03);
  letter-spacing: 0.4em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

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

.cta-section .section-title { font-size: clamp(2.2rem, 5vw, 4.2rem); }
.cta-section .section-title em { font-style: italic; color: var(--gold); }

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Homepage portfolio slideshow */
.portfolio-section .portfolio-grid {
  display: none;
}

.portfolio-showcase {
  width: min(1100px, calc(100% - 8rem));
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-showcase-photo {
  display: block;
  width: 100%;
  overflow: hidden;
  background: transparent;
  line-height: 0;
}

.portfolio-showcase-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  object-position: center;
  background: transparent;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s ease, transform 0.7s ease;
}

.portfolio-showcase-photo.is-changing img {
  opacity: 0;
  transform: scale(0.985);
}

.portfolio-showcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(44, 44, 44, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--charcoal);
  font-size: 17px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

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

.portfolio-showcase-arrow:hover {
  background: var(--charcoal);
  color: white;
}

.portfolio-showcase-bottom {
  width: min(1100px, calc(100% - 8rem));
  margin: 1.4rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-showcase-category {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
}

.portfolio-showcase-progress {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--stone);
}

.portfolio-showcase-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 1.5rem;
}

.portfolio-showcase-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(44, 44, 44, 0.2);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.portfolio-showcase-dot.active {
  width: 25px;
  border-radius: 10px;
  background: var(--gold);
}


/* ══════════════════════════════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════════════════════════════ */

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s;
  z-index: 2002;
}
.lightbox-close:hover { color: var(--gold); }

.lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1rem;
  max-width: 100%;
}


/* ══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════════ */

footer {
  background: var(--dark-bg);
  padding: 5rem 4rem 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 1.25rem;
}
.footer-logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: white;
  letter-spacing: 0.08em;
}
.footer-logo-script {
  font-family: var(--font-script);
  font-size: 0.9rem;
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  max-width: 240px;
  margin-top: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.75rem;
}
.footer-social a {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }

.footer-nav {
  display: flex;
  gap: 5rem;
}
.footer-nav-col h4 {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.footer-nav-col a {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.footer-nav-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }
.footer-admin-link {
  display: inline-block;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(184,151,106,0.7);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.footer-admin-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark-bg);
}


/* ══════════════════════════════════════════════════════════════════════════════
   PORTFOLIO PAGE STYLING
   ══════════════════════════════════════════════════════════════════════════════ */

.portfolio-hero {
  padding: 10rem 4rem 6rem;
  background: var(--ivory);
  text-align: center;
  margin-top: 80px;
}

.animation-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-luxury) forwards;
}

.hero-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto;
}

/* Portfolio page hero has light background, so title needs dark color */
.portfolio-hero .hero-title {
  color: var(--charcoal);
}

.portfolio-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Portfolio Folder Card Styling */
.portfolio-folder-card {
  background: var(--cream);
  border: 1px solid rgba(44, 44, 44, 0.06);
  padding: 0 0 2rem;
  min-width: 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.portfolio-folder-cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center center;
  background: var(--mist);
  margin-bottom: 1.5rem;
}

.portfolio-folder-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 151, 106, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-luxury);
}

.portfolio-folder-card:hover {
  background: white;
  border-color: rgba(184, 151, 106, 0.2);
  box-shadow: 0 20px 50px rgba(16, 12, 10, 0.05);
  transform: translateY(-6px);
}

.portfolio-folder-card:hover::before {
  opacity: 1;
}

.portfolio-folder-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
  font-weight: 400;
  color: var(--charcoal);
  padding: 0 2rem;
  min-height: 2.2em;
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}

.portfolio-folder-card p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--stone);
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
}

/* Dynamic Portfolio Grid Enhancement */
#dynamicPortfolioGrid {
  padding: 0 1.5rem !important;
  grid-template-rows: none;
  grid-auto-rows: auto;
  align-items: stretch;
}

.portfolio-item {
  border-radius: 2px;
  transition: all 0.5s var(--ease-luxury);
  box-shadow: 0 8px 24px rgba(16, 12, 10, 0.04);
}

.portfolio-item:hover {
  box-shadow: 0 20px 50px rgba(16, 12, 10, 0.12);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--mist);
  transition: transform 0.75s var(--ease-luxury);
}

#dynamicPortfolioGrid .portfolio-item {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

#dynamicPortfolioGrid .portfolio-item img {
  display: block;
}

.portfolio-item:hover img { transform: none; }

.portfolio-overlay {
  background: linear-gradient(to top, rgba(20, 14, 10, 0.92) 0%, rgba(20, 14, 10, 0.4) 60%, transparent 100%) !important;
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxury);
  display: flex;
  align-items: flex-end;
  padding: 2rem 1.5rem;
}

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

.portfolio-overlay {
  display: none !important;
}

.portfolio-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  display: block;
}

/* Services Section on Portfolio */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.services-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.services-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.services-desc {
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

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

.folder-back-row {
  display: none;
  margin: 0 auto 40px auto;
}

#folderDirectoryGrid,
#dynamicPortfolioGrid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-rows: auto;
  gap: 1.5rem;
  padding: 0 1.5rem;
}

#dynamicPortfolioGrid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.session-card {
  padding: 2.5rem 1rem;
  border: 1px solid var(--border-color);
  background: white;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
  border-radius: 16px;
}

.session-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0;
  color: var(--charcoal);
}

.session-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.session-card.selected {
  border-color: var(--gold);
  background: var(--cream);
  box-shadow: 0 4px 20px rgba(184, 151, 106, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.form-control {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: white;
  font-family: var(--font-body);
  color: var(--charcoal);
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 151, 106, 0.12);
}

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

.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  gap: 1rem;
}

.wizard-progress span {
  display: block;
  padding-bottom: 4px;
  transition: all 0.3s;
  color: var(--stone);
  opacity: 0.4;
}

.wizard-progress span.active {
  color: var(--gold);
  opacity: 1;
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: grid;
  gap: 1.25rem;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.form-panel {
  background: var(--cream);
  padding: 2rem;
  border: 1px solid rgba(44, 44, 44, 0.06);
  border-radius: 18px;
}

.form-panel--success {
  text-align: center;
}

.form-panel--success[hidden] {
  display: none;
}

.success-headline {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.success-booking-title {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.success-body {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.section-divider--small {
  width: 40px;
  margin: 0 auto 2rem;
}

.text-italic {
  font-style: italic;
}

.form-panel--success strong {
  font-family: monospace;
  background: rgba(184, 151, 106, 0.1);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--charcoal);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  width: fit-content;
  padding: 15px 32px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
  background: var(--ivory);
  border-color: var(--gold);
  color: var(--charcoal);
}

.animation-scroll-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--ease-luxury), transform 0.85s var(--ease-luxury);
}

.animation-scroll-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════
   REVIEWS — LUXURY GRID
   ═══════════════════════════════════════════════════════════════════════ */

.reviews-section {
  padding: 8rem 2rem;
  background: var(--ivory, #faf9f7);
}

.reviews-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.reviews-intro {
  max-width: 560px;
  margin: 1.5rem auto 0;
  color: var(--stone, #8a8278);
  font-size: 1rem;
  line-height: 1.8;
}


/* ─────────────────────────────────────────────────────────────────────
   RATING SUMMARY
   ───────────────────────────────────────────────────────────────────── */

.reviews-summary {
  display: flex;
  justify-content: center;
  margin: 3rem auto 4rem;
}

.reviews-average {
  text-align: center;
  min-width: 180px;
}

#reviewsAverage {
  display: block;
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal, #2c2c2c);
}

.reviews-average-stars {
  margin: 0.7rem 0 0.35rem;
  color: var(--gold, #b8976a);
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
}

.reviews-count {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: var(--stone, #8a8278);
}


/* ─────────────────────────────────────────────────────────────────────
   REVIEW GRID
   ───────────────────────────────────────────────────────────────────── */

.reviews-grid {
  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 1.5rem;
}


/* ─────────────────────────────────────────────────────────────────────
   REVIEW CARD
   ───────────────────────────────────────────────────────────────────── */

.review-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 300px;

  padding: 2.5rem;

  background: #ffffff;

  border: 1px solid rgba(44, 44, 44, 0.07);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.review-card:hover {
  transform: translateY(-6px);

  border-color:
    rgba(184, 151, 106, 0.35);

  box-shadow:
    0 20px 50px rgba(44, 44, 44, 0.08);
}


/* QUOTE MARK */

.review-card::before {
  content: "“";

  position: absolute;

  top: 1rem;
  right: 1.5rem;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 5rem;
  line-height: 1;

  color: rgba(184, 151, 106, 0.15);
}


/* STARS */

.review-stars {
  color: var(--gold, #b8976a);

  font-size: 0.9rem;

  letter-spacing: 0.18rem;

  margin-bottom: 1.5rem;
}

.review-stars .empty {
  color: #ddd8d1;
}


/* REVIEW TEXT */

.review-message {
  flex: 1;

  margin: 0 0 2rem;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 1.35rem;

  line-height: 1.55;

  color: var(--charcoal, #2c2c2c);

  font-style: italic;
}


/* REVIEW FOOTER */

.review-card-footer {
  display: flex;
  align-items: center;

  gap: 0.9rem;

  padding-top: 1.25rem;

  border-top:
    1px solid rgba(44, 44, 44, 0.08);
}


/* INITIAL */

.review-avatar {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 42px;

  border-radius: 50%;

  background: #f3eee8;

  color: var(--gold, #b8976a);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 1.25rem;
}


/* NAME */

.review-author {
  display: block;

  margin: 0;

  font-size: 0.78rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.12rem;

  color: var(--charcoal, #2c2c2c);
}


/* SESSION */

.review-session {
  display: block;

  margin-top: 0.2rem;

  font-size: 0.7rem;

  color: var(--stone, #8a8278);

  text-transform: uppercase;

  letter-spacing: 0.08rem;
}


/* DATE */

.review-date {
  margin-left: auto;

  font-size: 0.68rem;

  color: #aaa29a;
}


/* ─────────────────────────────────────────────────────────────────────
   LOADING
   ───────────────────────────────────────────────────────────────────── */

.reviews-loading {
  grid-column: 1 / -1;

  display: flex;

  justify-content: center;
  align-items: center;

  gap: 0.7rem;

  padding: 4rem;

  color: var(--stone, #8a8278);

  font-size: 0.85rem;

  text-transform: uppercase;

  letter-spacing: 0.12rem;
}

.reviews-loading-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--gold, #b8976a);

  animation: reviewPulse 1.2s infinite ease-in-out;
}

@keyframes reviewPulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}


/* ─────────────────────────────────────────────────────────────────────
   NO REVIEWS
   ───────────────────────────────────────────────────────────────────── */

.reviews-empty {
  grid-column: 1 / -1;

  text-align: center;

  padding: 4rem 2rem;

  color: var(--stone, #8a8278);
}


/* ═══════════════════════════════════════════════════════════════════════
   REVIEW FORM
   ═══════════════════════════════════════════════════════════════════════ */

.review-submission {
  padding: 7rem 2rem;

  background:
    linear-gradient(
      180deg,
      #f3f0eb 0%,
      #faf9f7 100%
    );
}

.review-form-container {
  width: min(680px, 100%);

  margin: 0 auto;

  padding: 4rem;

  background: #ffffff;

  border: 1px solid rgba(44, 44, 44, 0.07);

  box-shadow:
    0 25px 70px rgba(44, 44, 44, 0.06);
}

.review-form-heading {
  text-align: center;

  margin-bottom: 3rem;
}

.review-form-heading h3 {
  margin: 0 0 1rem;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 2.8rem;

  font-weight: 300;

  color: var(--charcoal, #2c2c2c);
}

.review-form-heading p:last-child {
  max-width: 500px;

  margin: 0 auto;

  color: var(--stone, #8a8278);

  line-height: 1.7;
}


/* FIELDS */

.review-field {
  position: relative;

  margin-bottom: 1.8rem;
}

.review-field label {
  display: block;

  margin-bottom: 0.65rem;

  font-size: 0.72rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.12rem;

  color: var(--charcoal, #2c2c2c);
}

.review-field input,
.review-field textarea {
  width: 100%;

  box-sizing: border-box;

  padding: 1rem 1.1rem;

  border:
    1px solid rgba(44, 44, 44, 0.15);

  background: #fcfbf9;

  color: var(--charcoal, #2c2c2c);

  font-family:
    "DM Sans",
    sans-serif;

  font-size: 0.95rem;

  outline: none;

  border-radius: 0;

  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.review-field input:focus,
.review-field textarea:focus {
  border-color: var(--gold, #b8976a);

  background: #ffffff;
}

.review-field textarea {
  min-height: 150px;

  resize: vertical;

  line-height: 1.7;
}


/* ─────────────────────────────────────────────────────────────────────
   STAR PICKER
   ───────────────────────────────────────────────────────────────────── */

.star-rating {
  display: flex;

  align-items: center;

  gap: 0.15rem;

  margin-top: 0.2rem;
}

.star-button {
  appearance: none;

  border: none;

  background: transparent;

  padding: 0.15rem;

  cursor: pointer;

  color: #d9d4cd;

  font-size: 2rem;

  line-height: 1;

  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.star-button:hover {
  transform: translateY(-2px);

  color: var(--gold, #b8976a);
}

.star-button.active {
  color: var(--gold, #b8976a);
}

.star-button:focus-visible {
  outline:
    2px solid var(--gold, #b8976a);

  outline-offset: 3px;
}

.rating-label {
  display: block;

  margin-top: 0.6rem;

  color: var(--stone, #8a8278);

  font-size: 0.75rem;

  text-transform: uppercase;

  letter-spacing: 0.08rem;
}


/* CHARACTER COUNT */

.character-count {
  text-align: right;

  margin-top: 0.35rem;

  color: #aaa29a;

  font-size: 0.7rem;
}


/* SUBMIT BUTTON */

.review-submit-button {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 1rem;

  padding: 1.15rem 1.5rem;

  margin-top: 0.5rem;

  border: 1px solid var(--charcoal, #2c2c2c);

  background: var(--charcoal, #2c2c2c);

  color: #ffffff;

  font-family:
    "DM Sans",
    sans-serif;

  font-size: 0.75rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.15rem;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.review-submit-button:hover {
  background: var(--gold, #b8976a);

  border-color: var(--gold, #b8976a);
}

.review-submit-button:disabled {
  opacity: 0.55;

  cursor: wait;
}

.review-submit-arrow {
  font-size: 1.1rem;

  transition: transform 0.25s ease;
}

.review-submit-button:hover .review-submit-arrow {
  transform: translateX(4px);
}


/* SUCCESS */

.review-success {
  text-align: center;

  padding: 2rem 0;
}

.success-check {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 1.5rem;

  border-radius: 50%;

  background: rgba(184, 151, 106, 0.12);

  color: var(--gold, #b8976a);

  font-size: 1.5rem;
}

.review-success h4 {
  margin: 0 0 0.8rem;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 2.3rem;

  font-weight: 300;
}

.review-success p {
  max-width: 450px;

  margin: 0 auto;

  color: var(--stone, #8a8278);

  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 600px) {

  .reviews-section {
    padding: 5rem 1.25rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;

    gap: 1rem;
  }

  .review-card {
    min-height: 260px;

    padding: 2rem 1.5rem;
  }

  .review-message {
    font-size: 1.2rem;
  }

  .review-submission {
    padding: 5rem 1.25rem;
  }

  .review-form-container {
    padding: 2.2rem 1.4rem;
  }

  .review-form-heading h3 {
    font-size: 2.3rem;
  }

  .star-button {
    font-size: 1.8rem;
  }

}

.animation-delay-1 { transition-delay: 0.12s; }
.animation-delay-2 { transition-delay: 0.24s; }


/* ══════════════════════════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ══════════════════════════════════════════════════════════════════════════════ */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 0.75; transform: scaleY(1.15); }
}


/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
   ══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {

  #navbar { padding: 1.25rem 2.5rem; }
  #navbar.scrolled { padding: 0.9rem 2.5rem; }

  .hero-content { padding: 0 2.5rem 4.5rem; }
  .hero-scroll-indicator { right: 2.5rem; }

  .stats-strip { padding: 1.75rem 2.5rem; gap: 2rem; }

  .services { padding: 6rem 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; }

  .portfolio-header { padding: 0 2.5rem; }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
    gap: 8px;
  }
  .portfolio-item.large { grid-row: auto; grid-column: 1 / -1; }

  .portfolio-hero { padding: 8rem 2.5rem 5rem; }
  #folderDirectoryGrid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  #dynamicPortfolioGrid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important; }

  .about { grid-template-columns: 1fr; }
  .about-image { height: 480px; }
  .about-content { padding: 4rem 2.5rem; }

  .testimonials { padding: 6rem 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card:last-child { grid-column: 1 / -1; }

  .footer-inner { flex-direction: column; gap: 3rem; }
  .footer-nav { gap: 3rem; }
}


/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
   ══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Nav */
  #navbar { padding: 1.1rem 1.5rem; }
  #navbar.scrolled { padding: 0.85rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-content { padding: 0 1.5rem 4rem; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-sub { font-size: 0.85rem; max-width: 100%; }
  .investment-page .hero-img-tag { object-position: 78% center; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .hero-scroll-indicator { display: none; }

  /* Stats */
  .stats-strip {
    padding: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .stat-divider { display: none; }
  .stat-item { flex: 1; min-width: 80px; flex-direction: column; text-align: center; gap: 0.5rem; }

  /* Services */
  .services { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .services-slideshow { max-width: 100%; }

  .session-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Portfolio */
  .portfolio-section { padding: 5rem 0; }
  .portfolio-header { padding: 0 1.5rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .portfolio-showcase { width: calc(100% - 3rem); }
  .portfolio-showcase-bottom { width: calc(100% - 3rem); }
  .portfolio-showcase-arrow { width: 40px; height: 40px; font-size: 15px; }
  .portfolio-showcase-prev { left: -12px; }
  .portfolio-showcase-next { right: -12px; }
  .portfolio-showcase-photo img { max-height: 65vh; }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
    gap: 8px;
  }
  .portfolio-item.large { grid-column: 1 / -1; }
  .investment-page .portfolio-item img,
  .investment-page .portfolio-item.large img { object-position: center center; }
  .portfolio-hero { padding: 6rem 1.5rem 4rem; }
  #folderDirectoryGrid { grid-template-columns: 1fr !important; padding: 0 1.5rem !important; }
  #dynamicPortfolioGrid { grid-template-columns: 1fr !important; padding: 0 1.5rem !important; }

  /* About */
  .about-image { height: 360px; }
  #story .about-image { margin-top: 2rem; }
  #story .about-image img { object-position: center center; }
  .about-image img { object-position: center center; }
  .about-content { padding: 3.5rem 1.5rem; }
  .about-quote { font-size: 0.9rem; left: 1.5rem; right: 1.5rem; bottom: 2rem; }

  /* Testimonials */
  .testimonials { padding: 5rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:last-child { grid-column: auto; }

  /* CTA */
  .cta-section { padding: 6rem 1.5rem; }

  /* Footer */
  footer { padding: 4rem 1.5rem 0; }
  .footer-inner { flex-direction: column; gap: 2.5rem; }
  .footer-nav { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }


  /* Force dynamically loaded reviews to be visible */
#reviewsContainer .review-card {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  display: flex !important;
}



}
