/* ========================================
   BUNTY STUDIO - LUXURY MINIMAL DESIGN
   A Premium Photography Portfolio
   ======================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Neutral Palette */
  --bg: #FAFAFA;
  --bg-alt: #F5F3F0;
  --surface: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --muted: #8A8A8A;
  --border: rgba(0, 0, 0, 0.06);
  --border-dark: rgba(0, 0, 0, 0.12);

  /* Accent - Champagne Gold */
  --accent: #C9A962;
  --accent-light: #E8D5A3;
  --accent-dark: #9A7B3C;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 60px rgba(201, 169, 98, 0.15);

  /* Layout */
  --header-h: 88px;
  --container-max: 1400px;
  --container-narrow: 900px;
  --section-gap: 160px;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.4s var(--ease-out);
  --transition-slow: 0.8s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  padding-top: var(--header-h);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: var(--ink-soft);
  max-width: 65ch;
}

.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }

/* Elegant Divider */
.divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 1.5rem auto;
}

/* ==================== LAYOUT ==================== */
.container {
  width: min(var(--container-max), 92vw);
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  width: min(var(--container-narrow), 92vw);
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: var(--section-gap) 0;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-head h2 {
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--muted);
  margin: 0 auto;
  font-size: 1.1rem;
}

.section-head .overline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--ink);
  color: var(--surface);
  border: 1px solid var(--ink);
}

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

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

.btn-outline:hover {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: none;
  padding: 0.5rem 0;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.btn-ghost:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border: 1px solid transparent;
}

.btn-light:hover {
  background: var(--surface);
  transform: translateY(-2px);
}

/* Legacy button compatibility */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--surface);
  border: 1px solid var(--ink);
  text-decoration: none !important;
}

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

.btn.light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border: 1px solid transparent;
}

.btn.light:hover {
  background: var(--surface);
}

.btn.outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn.outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: none;
  padding: 0.5rem 0;
}

a, .btn, .btn * { text-decoration: none !important; }

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--accent);
}

.brand-logo {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-nav a {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: var(--transition-fast);
  position: relative;
}

.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.main-nav a:not(.btn):hover {
  color: var(--ink);
}

.main-nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

.main-nav .btn {
  margin-left: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  color: var(--ink);
}

.main-nav .menu-close {
  display: none;
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 1001;
  }

  .site-header.open .main-nav {
    opacity: 1;
    visibility: visible;
  }

  .main-nav .menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }

  .main-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    padding: 1rem 2rem;
    width: 100%;
    max-width: 300px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .btn {
    margin: 1rem 0 0;
    background: var(--accent);
    border-color: var(--accent);
    color: var(--ink);
  }
}

/* ==================== HERO MINIMAL ==================== */
.hero-minimal {
  position: relative;
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-minimal .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-minimal .hero-bg .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: heroFade 24s ease-in-out infinite;
}

.hero-minimal .hero-bg .bg:nth-child(1) { animation-delay: 0s; }
.hero-minimal .hero-bg .bg:nth-child(2) { animation-delay: 6s; }
.hero-minimal .hero-bg .bg:nth-child(3) { animation-delay: 12s; }
.hero-minimal .hero-bg .bg:nth-child(4) { animation-delay: 18s; }

@keyframes heroFade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  25% { opacity: 1; }
  29% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-minimal .hero-bg .shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-minimal .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
}

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

.hero-minimal h1 {
  color: #fff;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-minimal p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 1rem 0 2.5rem;
}

.hero-minimal .btn.light {
  background: #fff;
  color: var(--ink);
  border: none;
  padding: 1rem 3rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.hero-minimal .btn.light:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 768px) {
  .hero-minimal {
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
  }

  .hero-minimal h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-minimal p {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
  }

  .hero-minimal .btn.light {
    padding: 0.9rem 2.5rem;
  }
}

/* ==================== INTRO BLOCK ==================== */
.intro-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-block h2 {
  margin-bottom: 1.5rem;
}

.intro-block p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--ink-soft);
  margin: 0 auto;
}

/* ==================== PORTFOLIO SHOWCASE ==================== */
.portfolio-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  border-radius: 4px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.portfolio-overlay span {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .portfolio-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .portfolio-item {
    aspect-ratio: 1;
  }

  .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 40%);
  }
}

/* ==================== SERVICES ALT ==================== */
.services-alt {
  background: var(--bg-alt);
}

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

.service-item {
  background: var(--surface);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: var(--transition-base);
  text-align: center;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.service-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 auto;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: var(--ink);
  padding: 100px 0;
}

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

.cta-content h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-content p {
  color: rgba(255,255,255,0.7);
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-content .btn.light {
  background: #fff;
  color: var(--ink);
  border: none;
}

.cta-content .btn.light:hover {
  background: var(--accent);
  color: #fff;
}

/* ==================== PROCESS STEPS ==================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1;
}

.process-step h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 auto;
  max-width: 280px;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==================== SERVICES ==================== */
.services {
  background: var(--bg-alt);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--surface);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: var(--transition-base);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
}

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

.service-card:hover::before {
  width: 100%;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card.image {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

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

/* ==================== GALLERY / MASONRY ==================== */
.masonry {
  column-count: 3;
  column-gap: 1.5rem;
}

.masonry img {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  width: 100%;
  cursor: pointer;
  transition: var(--transition-base);
  filter: grayscale(20%);
}

.masonry img:hover {
  filter: grayscale(0%);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ==================== PRICING ==================== */
.pricing {
  background: var(--bg-alt);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.price-card {
  background: var(--surface);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: var(--transition-base);
}

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

.price-card.highlight {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.ribbon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.price-card .price span {
  font-size: 1.5rem;
  color: var(--muted);
  margin-right: 0.25rem;
}

.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.price-card ul li {
  padding: 0.75rem 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.price-card ul li:last-child {
  border-bottom: none;
}

.price-card .btn {
  width: 100%;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  background: var(--ink);
  color: #fff;
}

.testimonials .section-head h2 {
  color: #fff;
}

.testimonials .section-head p {
  color: rgba(255, 255, 255, 0.6);
}

.testimonials .section-head .overline {
  color: var(--accent);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-base);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card .avatar {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.testimonial-card cite {
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ==================== PROCESS ==================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  counter-reset: process;
}

.process-step {
  text-align: center;
  counter-increment: process;
  position: relative;
}

.process-step::before {
  content: counter(process);
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 60px;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.process-step h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.process-step p {
  color: var(--muted);
  margin: 0 auto;
}

/* ==================== FAQ ==================== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq summary {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform var(--transition-fast);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  margin-top: 1rem;
  padding-right: 2rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ==================== CONTACT ==================== */
.contact {
  background: var(--ink);
  color: #fff;
  padding: 3rem;
}

.contact h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact .form-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact input,
.contact textarea,
.contact select {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: var(--transition-fast);
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact input:focus,
.contact textarea:focus,
.contact select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.contact textarea {
  min-height: 120px;
  resize: vertical;
}

.contact select {
  appearance: none;
  cursor: pointer;
}

.contact .btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  font-weight: 600;
}

.contact .btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.success {
  color: #4CAF50;
  margin-top: 0.5rem;
}

.error {
  color: #f44336;
  margin-top: 0.5rem;
}

/* ==================== CTA BANNER ==================== */
.cta-wide {
  background: var(--ink);
  color: #fff;
  padding: 4rem;
  text-align: center;
}

.cta-wide h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-wide p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 2rem;
}

.cta-wide .btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.cta-wide .btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

/* ==================== FOOTER ==================== */
.footer {
  background: #0D0D0D;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
}

.foot-brand .logo {
  color: #fff;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.foot-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.foot-contact a {
  color: var(--accent);
}

.foot-contact a:hover {
  text-decoration: underline;
}

.foot-col h4,
.foot-cta h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.foot-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.5rem 0;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.foot-col a:hover {
  color: #fff;
}

.foot-cta .btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  width: 100%;
}

.foot-cta .btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  margin-top: 4rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==================== PAGE HERO ==================== */
.page-hero {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ==================== LOADING SCREEN ==================== */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 40px;
  height: 40px;
  position: relative;
}

.loader::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==================== BACK TO TOP ==================== */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 100;
}

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

#back-to-top:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-4px);
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.lightbox-close {
  top: 2rem;
  right: 2rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.prev { left: 2rem; }
.lightbox-nav.next { right: 2rem; }

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ==================== SCROLL PROGRESS ==================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  z-index: 10001;
  transition: width 0.1s ease;
}

/* ==================== REVEAL ANIMATIONS ==================== */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ==================== METRICS ==================== */
.metrics {
  background: var(--surface);
  padding: 2rem;
  border: 1px solid var(--border);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.metric .num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.metric .label {
  color: var(--muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  :root {
    --section-gap: 120px;
  }
}

@media (max-width: 1000px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .polaroids {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .service-grid,
  .price-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry {
    column-count: 2;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
    --header-h: 72px;
  }

  .section-head {
    margin-bottom: 3rem;
  }

  .polaroids {
    height: 320px;
  }

  .polaroids img {
    width: 50%;
  }

  .service-grid,
  .price-grid,
  .testimonial-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .masonry {
    column-count: 1;
  }

  .contact {
    padding: 2rem 1.5rem;
  }

  #quoteForm > div {
    grid-template-columns: 1fr !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .foot-text {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-wide {
    padding: 2.5rem 1.5rem;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .metric .num {
    font-size: 2.25rem;
  }

  .portfolio-tabs .tabs {
    flex-wrap: wrap;
  }

  .portfolio-tabs .tab {
    flex: 1;
    min-width: 100px;
    padding: 0.625rem 1rem;
  }

  .faq summary {
    font-size: 1.1rem;
  }

  .btn {
    padding: 0.875rem 2rem;
    width: 100%;
  }

  #back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .polaroids {
    height: 280px;
  }

  .price-card {
    padding: 2rem 1.5rem;
  }

  .price-card .price {
    font-size: 2.75rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-card blockquote {
    font-size: 1.1rem;
  }

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

  .process-step::before {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    line-height: 50px;
  }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-minimal .hero-bg .bg {
    opacity: 1;
    animation: none;
  }

  .hero-minimal .hero-bg .bg:not(:first-child) {
    opacity: 0;
  }
}

/* ==================== GALLERY PAGE STYLES ==================== */
.testimonial-grid.full-page {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .testimonial-grid.full-page {
    grid-template-columns: 1fr;
  }
}

/* ==================== CUSTOM SCROLLBAR ==================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

/* ==================== SELECTION ==================== */
::selection {
  background: var(--accent);
  color: var(--ink);
}

/* ==================== FOCUS STYLES ==================== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ==================== LAZY LOADING ==================== */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
  opacity: 1;
}

/* Placeholder while loading */
.img-placeholder {
  background: linear-gradient(90deg, var(--bg-alt) 25%, var(--bg) 50%, var(--bg-alt) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ==================== FAQ PAGE ==================== */
.faq-page {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-page details {
  margin-bottom: 1rem;
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

/* ==================== TESTIMONIAL SLIDER ==================== */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slider .slides {
  display: flex;
  transition: transform 0.5s var(--ease-out);
}

.testimonial-slider .slide {
  flex: 0 0 100%;
  padding: 0 1rem;
}

.testimonial-slider .dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-slider .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-dark);
  cursor: pointer;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.testimonial-slider .dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.testimonial-slider .dot:hover {
  background: var(--accent-light);
}

/* ==================== ADMIN LEAD STATUS ==================== */
.lead-status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lead-status.new {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.lead-status.contacted {
  background: rgba(234, 179, 8, 0.15);
  color: #ca8a04;
}

.lead-status.booked {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}

.lead-status.closed {
  background: rgba(107, 114, 128, 0.15);
  color: #6b7280;
}

/* ==================== PRINT STYLES ==================== */
@media print {
  header, footer, .whatsapp-float, #back-to-top, #scroll-progress {
    display: none !important;
  }

  body {
    padding-top: 0;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* ==================== PREMIUM HOMEPAGE ==================== */

/* Hero Full Screen */
.hero-full {
  position: relative;
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-full .hero-bg {
  position: absolute;
  inset: 0;
}

.hero-full .hero-bg .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: heroFade 24s ease-in-out infinite;
}

.hero-full .hero-bg .bg:nth-child(1) { animation-delay: 0s; }
.hero-full .hero-bg .bg:nth-child(2) { animation-delay: 6s; }
.hero-full .hero-bg .bg:nth-child(3) { animation-delay: 12s; }
.hero-full .hero-bg .bg:nth-child(4) { animation-delay: 18s; }

.hero-full .hero-bg .bg.active {
  opacity: 1;
  animation: none;
}

.hero-full .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 169, 98, 0.4);
  background: rgba(201, 169, 98, 0.1);
}

.hero-full h1 {
  color: #fff;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-full p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0 0 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: #fff;
  color: var(--ink);
  transition: var(--transition-base);
}

.btn-hero:hover {
  background: var(--accent);
  color: #fff;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition-base);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@media (max-width: 768px) {
  .hero-full {
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
  }

  .hero-full h1 {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .hero-full p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    padding: 0 1rem;
  }

  .btn-hero, .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .scroll-hint {
    display: none;
  }
}

/* Statement Section */
.statement-section {
  padding: 120px 0;
  background: var(--bg);
}

.statement {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.statement .label,
.section-label span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.statement h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.statement p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0 auto;
}

/* Section Label */
.section-label {
  margin-bottom: 3rem;
}

.section-label h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--ink);
}

/* Featured Section */
.featured-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.featured-large {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.featured-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  transition: transform 0.8s var(--ease-out);
}

.featured-large:hover img {
  transform: scale(1.03);
}

.featured-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.featured-caption span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,0,0,0.5);
  padding: 0.5rem 1rem;
  backdrop-filter: blur(8px);
}

.featured-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.featured-item {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
}

.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.featured-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-large img {
    min-height: 400px;
  }

  .featured-stack {
    flex-direction: row;
  }

  .featured-item {
    aspect-ratio: 1;
  }
}

@media (max-width: 600px) {
  .featured-stack {
    flex-direction: column;
  }

  .featured-item {
    aspect-ratio: 16/9;
  }
}

/* Services Strip */
.services-strip {
  padding: 100px 0;
  background: var(--bg);
}

.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.service-col {
  text-align: center;
  padding: 2rem;
}

.service-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.service-col h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.service-col p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 280px;
}

@media (max-width: 768px) {
  .services-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-col {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .service-col:last-child {
    border-bottom: none;
  }

  .service-num {
    font-size: 2.5rem;
  }
}

/* Image Break */
.image-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.image-break-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.image-break-content blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  max-width: 800px;
  line-height: 1.5;
  margin: 0;
}

.image-break-content cite {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
}

/* Experience Section */
.experience-section {
  padding: 120px 0;
  background: var(--bg-alt);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.experience-text .label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.experience-text h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.experience-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.exp-step {
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
}

.exp-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.exp-step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.experience-images {
  position: relative;
  height: 500px;
}

.exp-img-1 {
  position: absolute;
  width: 70%;
  height: 75%;
  object-fit: cover;
  top: 0;
  left: 0;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.exp-img-2 {
  position: absolute;
  width: 55%;
  height: 55%;
  object-fit: cover;
  bottom: 0;
  right: 0;
  border-radius: 4px;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--surface);
}

@media (max-width: 900px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .experience-images {
    height: 400px;
    order: -1;
  }
}

@media (max-width: 600px) {
  .experience-images {
    height: 300px;
  }

  .exp-img-1 {
    width: 75%;
    height: 70%;
  }

  .exp-img-2 {
    width: 50%;
    height: 50%;
  }
}

/* Investment Section */
.investment-section {
  padding: 100px 0;
  background: var(--bg);
}

/* Reviews Section */
.reviews-section {
  padding: 100px 0;
  background: var(--ink);
}

.reviews-section .section-label span {
  color: var(--accent);
}

.reviews-section .section-label h2 {
  color: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  transition: var(--transition-base);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.review-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.review-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  max-width: none;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 2rem;
  }
}

/* Final CTA */
.final-cta {
  padding: 120px 0;
  background: var(--bg-alt);
}

.cta-box {
  background: var(--surface);
  padding: 5rem 3rem;
  text-align: center;
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 auto 2rem;
  max-width: 500px;
}

.cta-box .btn-hero {
  background: var(--ink);
  color: #fff;
}

.cta-box .btn-hero:hover {
  background: var(--accent);
}

@media (max-width: 768px) {
  .cta-box {
    padding: 3rem 2rem;
  }
}
