/* ==========================================================================
   Photosaaga — Main Stylesheet
   Production CSS for photosaaga.com
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --color-primary: #0F5B54;
  --color-primary-dark: #0a4a44;
  --color-warm-beige: #CEC7BF;
  --color-periwinkle: #AAB4FE;
  --color-pastel-yellow: #F8E888;
  --color-light-green: #CEF0B0;
  --color-rust-brown: #7D3828;
  --color-soft-lavender: #F8E3FD;
  --color-gold: #D4AF77;

  /* Neutrals */
  --color-cream: #F9F5F0;
  --color-cream-dark: #F0EBE3;
  --color-cream-light: #FFFBF5;
  --color-white: #FFFFFF;
  --color-text: #1A1A1A;
  --color-text-light: #555555;
  --color-text-muted: #888888;
  --color-border: #E8E3DC;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-2xl: 80px;
  --space-3xl: 100px;
  --section-padding: var(--space-3xl) 0;
  --container-width: 1200px;
  --container-padding: 0 var(--space-lg);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  --transition-reveal: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-medium: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-hover: 0 12px 36px rgba(0,0,0,0.14);
  --shadow-polaroid: 0 4px 15px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);

  /* Z-indexes */
  --z-header: 1000;
  --z-mobile-menu: 999;
  --z-whatsapp: 998;
  --z-overlay: 997;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.container--wide {
  max-width: 1400px;
}

/* ---------- Section Label ---------- */
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label--right {
  justify-content: flex-end;
}

.section-label--center {
  justify-content: center;
}

/* ---------- Section Heading ---------- */
.section-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.5px;
}

.section-heading--xl {
  font-size: clamp(36px, 4.5vw, 56px);
}

.section-heading--lg {
  font-size: clamp(30px, 3.5vw, 44px);
}

.section-heading--md {
  font-size: clamp(26px, 3vw, 36px);
}

/* Highlighted text within headings */
.highlight--yellow {
  background: linear-gradient(180deg, transparent 50%, var(--color-pastel-yellow) 50%);
  padding: 0 4px;
}

.highlight--green {
  background: linear-gradient(180deg, transparent 50%, var(--color-light-green) 50%);
  padding: 0 4px;
}

.highlight--teal {
  color: var(--color-primary);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(15, 91, 84, 0.35);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(15, 91, 84, 0.2);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.btn--outline:hover {
  background-color: var(--color-text);
  color: var(--color-white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn--outline:active {
  transform: translateY(0) scale(0.98);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-white);
}

.btn--white:hover {
  background-color: transparent;
  color: var(--color-white);
  transform: translateY(-2px) scale(1.02);
}

.btn--white:active {
  transform: translateY(0) scale(0.98);
}

.btn--whatsapp {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--whatsapp:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(15, 91, 84, 0.3);
}

.btn--whatsapp:active {
  transform: translateY(0) scale(0.98);
}

.btn__icon {
  width: 18px;
  height: 18px;
}

/* Focus visible for accessibility */
.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* ========================================================================
   HEADER
   ======================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background: rgba(249, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition-base);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border-bottom-color: var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo__icon {
  width: 36px;
  height: 36px;
}

.header-logo__text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  letter-spacing: 0.5px;
}

.header-logo__text span {
  font-weight: 400;
  color: var(--color-text-muted);
}

/* Desktop Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.header-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.header-nav__link:hover,
.header-nav__link.active {
  color: var(--color-primary);
}

.header-nav__link:hover::after,
.header-nav__link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-nav__link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  font-size: 13px;
  padding: 10px 22px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.header-phone:hover {
  color: var(--color-primary);
}

.header-phone svg {
  width: 16px;
  height: 16px;
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-mobile-menu) + 2);
  padding: 0;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.hamburger__line + .hamburger__line {
  margin-top: 6px;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(249, 245, 240, 0.98);
  backdrop-filter: blur(20px);
  z-index: var(--z-mobile-menu);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover {
  color: var(--color-primary);
}

.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.mobile-nav__actions .btn {
  font-size: 8px;
  padding: 7px 14px;
}

.mobile-nav__actions .btn svg {
  width: 12px;
  height: 12px;
}

/* ========================================================================
   HERO SECTION — Premium Editorial Photography
   ======================================================================== */

/* --- Hero Entrance Animations --- */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDividerGrow {
  from { width: 0; }
  to { width: 48px; }
}

@keyframes heroPhotoReveal {
  from {
    opacity: 0;
    transform: translateY(40px) rotate(var(--photo-rotate, 0deg));
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--photo-rotate, 0deg));
  }
}

@keyframes heroScrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

@keyframes heroStampSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes heroFloatSubtle {
  0%, 100% { transform: translateY(0) rotate(var(--photo-rotate, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--photo-rotate, 0deg)); }
}

.hero {
  padding: 140px 0 60px;
  background-color: #FDFAF6;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__bg-texture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(15, 91, 84, 0.02) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(212, 175, 119, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* --- Hero Grid Layout --- */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  max-width: 1280px;
}

/* --- Hero Content (Left) --- */
.hero__content {
  max-width: 560px;
  padding-right: 20px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-text);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero__headline-accent {
  color: var(--color-primary);
  font-style: italic;
  font-weight: 700;
}

.hero__divider {
  width: 48px;
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 380px;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.95s forwards;
}

/* --- Tags/Categories --- */
.hero__tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.hero__tag-divider {
  display: inline-block;
  width: 3px;
  height: 20px;
  background-color: var(--color-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero__tag {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

.hero__tag-sep {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-light);
  font-weight: 500;
}

.hero__tag-dot {
  font-size: 10px;
  color: var(--color-text-muted);
}

/* --- Stats --- */
.hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.25s forwards;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__stat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 91, 84, 0.06);
  border-radius: 8px;
  flex-shrink: 0;
}

.hero__stat-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.hero__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.hero__stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__stat-stars {
  display: block;
  font-size: 11px;
  color: var(--color-gold);
  letter-spacing: 2px;
  margin-top: 1px;
}

/* --- Hero Visual (Right) — Photo Collage --- */
.hero__visual {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shared photo frame styling */
.hero__photo {
  position: absolute;
  background: var(--color-white);
  overflow: hidden;
  /* Resting shadow */
  box-shadow:
    0 0 0 0px #ffffff,
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  /* Spring transition — frame, shadow and transform all animate together */
  transition:
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
  cursor: pointer;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Inner image gently zooms in sync with the card pop */
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover & touch-active: pop up with clean white frame ring */
.hero__photo:hover,
.hero__photo:active {
  /* Layer order (inside → out):
     1. White frame ring  — 8px solid white band
     2. Close shadow      — tight dark shadow for depth
     3. Ambient shadow    — large soft halo                */
  box-shadow:
    0 0 0 8px #ffffff,
    0 6px 20px rgba(0, 0, 0, 0.18),
    0 28px 70px rgba(0, 0, 0, 0.22);
  z-index: 20;
}

/* Inner image gently zooms in sync with the card pop */
.hero__photo:hover img,
.hero__photo:active img {
  transform: scale(1.06);
}

/* Main large photo — center-left of visual area */
.hero__photo--main {
  --photo-rotate: -2deg;
  width: 280px;
  height: 360px;
  left: 2%;
  top: 50%;
  transform: translateY(-50%) rotate(-2deg);
  z-index: 3;
  padding: 8px;
  border-radius: 3px;
  opacity: 0;
  animation: heroPhotoReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero__photo--main:hover,
.hero__photo--main:active {
  transform: translateY(-57%) rotate(0deg) scale(1.09);
}

/* Top-right photo — overlapping */
.hero__photo--top {
  --photo-rotate: 4deg;
  width: 200px;
  height: 250px;
  right: 8%;
  top: 2%;
  transform: rotate(4deg);
  z-index: 5;
  padding: 8px;
  border-radius: 3px;
  opacity: 0;
  animation: heroPhotoReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}

.hero__photo--top:hover,
.hero__photo--top:active {
  transform: translateY(-12px) rotate(0deg) scale(1.11);
}

/* Bottom-right photo — overlapping */
.hero__photo--bottom {
  --photo-rotate: -3deg;
  width: 180px;
  height: 220px;
  right: 0%;
  bottom: 0%;
  transform: rotate(-3deg);
  z-index: 6;
  padding: 8px;
  border-radius: 3px;
  opacity: 0;
  animation: heroPhotoReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.hero__photo--bottom:hover,
.hero__photo--bottom:active {
  transform: translateY(-12px) rotate(0deg) scale(1.11);
}



/* Float animation for photos after initial reveal */
.hero__photo--main {
  animation: heroPhotoReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero__photo--top,
.hero__photo--bottom {
  /* Subtle float will be applied after load via JS or delayed animation */
}

/* --- Decorative Stamp --- */
.hero__stamp {
  position: absolute;
  bottom: 30%;
  left: 2%;
  width: 100px;
  height: 100px;
  z-index: 6;
  color: var(--color-primary);
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}

.hero__stamp-svg {
  width: 100%;
  height: 100%;
  animation: heroStampSpin 40s linear infinite;
}

/* --- Botanical Decoration --- */
.hero__botanical {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 200px;
  opacity: 0.06;
  background: linear-gradient(135deg, var(--color-primary) 0%, transparent 70%);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 180'%3E%3Cpath d='M50 180 Q45 120 20 80 Q5 55 30 30 Q50 10 50 0 Q50 10 70 30 Q95 55 80 80 Q55 120 50 180Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 180'%3E%3Cpath d='M50 180 Q45 120 20 80 Q5 55 30 30 Q50 10 50 0 Q50 10 70 30 Q95 55 80 80 Q55 120 50 180Z' fill='black'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  pointer-events: none;
}

/* --- Scroll Indicator --- */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
}

.hero__scroll-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 28px;
  background: var(--color-text-muted);
  opacity: 0.4;
  animation: heroScrollPulse 2s ease-in-out infinite 2s;
}

/* --- Polaroid Frame — shared component --- */
.polaroid-frame {
  background: var(--color-white);
  padding: 10px 10px 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: rotate(var(--rotation, 0deg));
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
  border-radius: 3px;
  position: relative;
}

.polaroid-frame:hover {
  transform: rotate(0deg) scale(1.04) translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18), 0 6px 16px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.polaroid-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1px;
}

.polaroid-frame__label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-top: 8px;
  color: var(--color-text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ========================================================================
   ABOUT SECTION
   ======================================================================== */
.about {
  padding: var(--section-padding);
  background-color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.about .container {
  text-align: center;
  position: relative;
}

.about__label {
  margin-bottom: 30px;
  justify-content: center;
}

.about__heading {
  max-width: 600px;
  margin: 0 auto 30px;
}

.about__text {
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* About Photo Collage */
.about__photos {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.about__photo {
  position: absolute;
  pointer-events: auto;
  transition: transform var(--transition-slow);
}

.about__photo:hover {
  transform: scale(1.04) rotate(0deg) !important;
}

.about__photo--1 {
  top: 10%;
  left: 2%;
  width: 200px;
  height: 260px;
  transform: rotate(-5deg);
}

.about__photo--2 {
  bottom: 15%;
  left: 5%;
  width: 160px;
  height: 200px;
  transform: rotate(3deg);
}

.about__photo--3 {
  top: 15%;
  right: 3%;
  width: 180px;
  height: 240px;
  transform: rotate(4deg);
}

.about__photo--4 {
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 190px;
  transform: rotate(-3deg);
}

.about__photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Video Play Button */
.about__video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow-medium);
  margin: 0 auto 30px;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about__video-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(15, 91, 84, 0.2);
}

.about__video-btn svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  margin-left: 3px;
}

/* ========================================================================
   SERVICES SECTION
   ======================================================================== */
.services {
  padding: var(--section-padding);
  background-color: var(--color-cream-light);
}

.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.services__heading {
  text-align: right;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

/* The first card is a tall/large featured image */
.services__grid .service-card:first-child {
  grid-row: span 2;
}

.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
}

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

.service-card__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-card:first-child .service-card__image {
  height: 100%;
}

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

.service-card:hover .service-card__image img {
  transform: scale(1.04);
}

.service-card__number {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.9;
  line-height: 1;
}

.service-card__content {
  padding: 16px;
}

.service-card__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-bottom: 6px;
}

.service-card__desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.services__cta {
  text-align: center;
  margin-top: 50px;
}

/* ========================================================================
   GALLERY SECTION
   ======================================================================== */
.gallery {
  padding: var(--section-padding);
  background-color: var(--color-cream);
  overflow: hidden;
}

.gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.gallery__heading {
  max-width: 300px;
}

.gallery__dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.gallery__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-warm-beige);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.gallery__dot.active {
  background-color: var(--color-primary);
}

/* Gallery Collage — CSS Grid layout for stability */
.gallery__collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.gallery__item {
  transition: transform var(--transition-slow);
}

.gallery__item:hover {
  z-index: 10;
}

.gallery__item:hover .polaroid-frame {
  transform: rotate(0deg) scale(1.04);
}

.gallery__item--1 {
  grid-column: 1 / 3;
}

.gallery__item--2 {
  grid-column: 3 / 4;
  margin-top: -10px;
}

.gallery__item--3 {
  grid-column: 4 / 5;
  margin-top: 15px;
}

.gallery__item--4 {
  grid-column: 5 / 6;
  margin-top: -5px;
}

.gallery__item--5 {
  grid-column: 6 / 7;
  margin-top: 20px;
}

.gallery__item--text {
  grid-column: 5 / 7;
}

.gallery__text-card {
  background: var(--color-white);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-polaroid);
  transform: rotate(2deg);
  border-radius: 3px;
  transition: transform var(--transition-base);
}

.gallery__text-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.gallery__text-card p {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================================================
   FEATURED SHOOTS SECTION
   ======================================================================== */
.featured {
  padding: var(--section-padding);
  background-color: var(--color-cream-light);
  text-align: center;
}

.featured__label {
  margin-bottom: 16px;
}

.featured__heading {
  margin-bottom: 50px;
}

.featured__grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform var(--transition-base);
  cursor: pointer;
  width: 160px;
}

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

.story-card__image {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition-base);
}

.story-card:hover .story-card__image {
  box-shadow: var(--shadow-medium);
}

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

.story-card:hover .story-card__image img {
  transform: scale(1.04);
}

.story-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.story-card__play svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  margin-left: 2px;
}

.story-card__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
}

/* ========================================================================
   TESTIMONIALS SECTION
   ======================================================================== */
.testimonials {
  padding: var(--section-padding);
  background-color: var(--color-cream);
}

.testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.testimonials__slider {
  position: relative;
}

.testimonials__track {
  display: flex;
  gap: 28px;
  overflow: hidden;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  background: var(--color-white);
  border-radius: 16px;
  padding: 36px 28px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-border);
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 64px;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 0.5;
  margin-bottom: 10px;
}

.testimonial-card__text {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-card__author {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.testimonial-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-warm-beige);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.testimonials__dot.active {
  background-color: var(--color-primary);
}

/* ========================================================================
   SERVICE AREAS SECTION
   ======================================================================== */
.areas {
  padding: var(--section-padding);
  background-color: var(--color-cream-light);
  overflow: hidden;
}

.areas .container {
  position: relative;
}

.areas__label {
  margin-bottom: 16px;
}

.areas__heading {
  margin-bottom: 50px;
}

.areas__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.areas__cities {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.area-card__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: sepia(0.3) hue-rotate(-10deg);
}

.area-card__name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
}

.areas__text {
  margin-top: 30px;
  font-size: 14px;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.7;
}

.areas__illustration {
  flex: 0 0 280px;
  max-width: 300px;
}

.areas__illustration img {
  width: 100%;
  height: auto;
  opacity: 0.85;
}

/* ========================================================================
   CONTACT SECTION
   ======================================================================== */
.contact {
  padding: 80px 0;
  background-color: #0D4F49;
  background-image: linear-gradient(135deg, #0F5B54 0%, #0a4540 50%, #0D4F49 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.contact .container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.contact__content {
  flex: 1;
}

.contact__heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 36px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.contact__info-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold);
}

.contact__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact__visual {
  flex: 0 0 400px;
  position: relative;
}

.contact__map {
  width: 260px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-left: auto;
}

.contact__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__photos {
  position: relative;
  margin-top: -40px;
}

.contact__photo {
  box-shadow: var(--shadow-polaroid);
  border-radius: 4px;
  overflow: hidden;
}

.contact__service-areas {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.contact__service-areas svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.site-footer {
  background-color: var(--color-cream);
  padding: 80px 0 0;
  border-top: 1px solid var(--color-border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-brand__logo-icon {
  width: 32px;
  height: 32px;
}

.footer-brand__logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
}

.footer-brand__logo-text span {
  font-weight: 400;
  color: var(--color-text-muted);
}

.footer-brand__tagline {
  font-size: 13px;
  color: var(--color-text-light);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.footer-social__link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.footer-social__link:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer-social__link:hover svg {
  color: var(--color-white);
}

.footer-social__link svg {
  width: 16px;
  height: 16px;
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}

.footer-col__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
}

/* Footer Wordmark */
.footer-wordmark {
  text-align: center;
  padding: 40px 0 20px;
  overflow: hidden;
}

.footer-wordmark__text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(48px, 10vw, 120px);
  color: var(--color-warm-beige);
  letter-spacing: 8px;
  text-transform: uppercase;
  opacity: 0.5;
  line-height: 1;
  white-space: nowrap;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ========================================================================
   WHATSAPP FLOATING BUTTON
   ======================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-whatsapp);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
}

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

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ========================================================================
   CONTACT FORM (contact.php)
   ======================================================================== */
.contact-form {
  max-width: 600px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 91, 84, 0.1);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L2 6h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-message {
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 24px;
}

.form-message--success {
  background-color: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}

.form-message--error {
  background-color: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
}

/* ========================================================================
   PAGE HERO (inner pages)
   ======================================================================== */
.page-hero {
  padding: 140px 0 60px;
  background-color: var(--color-cream-light);
  text-align: center;
}

.page-hero__label {
  margin-bottom: 16px;
  justify-content: center;
}

.page-hero__heading {
  margin-bottom: 20px;
}

.page-hero__text {
  max-width: 540px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ========================================================================
   PORTFOLIO PAGE
   ======================================================================== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.portfolio-filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
  background: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

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

.portfolio-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.portfolio-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.portfolio-item--tall {
  grid-row: span 2;
}

.portfolio-item--tall img {
  height: 100%;
}

.portfolio-item--wide {
  grid-column: span 2;
}

/* ========================================================================
   STORIES PAGE
   ======================================================================== */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.story-article {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-base);
  cursor: pointer;
}

.story-article:hover {
  transform: translateY(-4px);
}

.story-article__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

.story-article:hover .story-article__image img {
  transform: scale(1.05);
}

.story-article__content {
  padding: 28px;
}

.story-article__category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.story-article__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.story-article__excerpt {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ========================================================================
   SCROLL REVEAL ANIMATIONS
   ======================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-reveal), transform var(--transition-reveal);
  will-change: opacity, transform;
}

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

/* Reveal variants */
.reveal--scale-in {
  opacity: 0;
  transform: scale(0.95);
}

.reveal--scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal--slide-left {
  opacity: 0;
  transform: translateX(-30px);
}

.reveal--slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--slide-right {
  opacity: 0;
  transform: translateX(30px);
}

.reveal--slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay classes */
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ========================================================================
   HERO — ANIMATION OVERRIDES (bg-texture only)
   ======================================================================== */

/* --- Easing & timing variables --- */
:root {
  --hero-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --hero-duration: 0.9s;
}

/* Background texture fades in gently */
.hero__bg-texture {
  opacity: 0;
  animation: heroBgFadeIn 1.5s ease 0.2s forwards;
}

@keyframes heroBgFadeIn {
  to { opacity: 1; }
}

/* ========================================================================
   RESPONSIVE — TABLET (768px – 1023px)
   ======================================================================== */
@media (max-width: 1023px) {
  :root {
    --section-padding: 70px 0;
    --container-padding: 0 28px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .header-nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }

  .mobile-nav { display: flex; opacity: 0; pointer-events: none; }
  .mobile-nav.open { opacity: 1; pointer-events: all; }

  /* Hero */
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .hero__content {
    max-width: 100%;
    padding-right: 0;
  }

  .hero__visual {
    width: 100%;
    min-height: 420px;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero__photo--main {
    width: 240px;
    height: 300px;
    left: 5%;
  }

  .hero__photo--top {
    width: 160px;
    height: 200px;
    right: 10%;
  }

  .hero__photo--bottom {
    width: 150px;
    height: 180px;
    right: 5%;
  }



  .hero__stamp {
    width: 80px;
    height: 80px;
  }

  .hero__scroll { display: none; }

  /* About */
  .about__photo--1 { width: 140px; height: 180px; left: 0; }
  .about__photo--2 { width: 120px; height: 150px; }
  .about__photo--3 { width: 140px; height: 180px; right: 0; }
  .about__photo--4 { width: 120px; height: 150px; }

  /* Services */
  .services__header {
    flex-direction: column;
    gap: 16px;
  }

  .services__heading { text-align: left; }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services__grid .service-card:first-child {
    grid-row: span 1;
  }

  /* Gallery — 3-column grid on tablet */
  .gallery__collage {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__item--1 { grid-column: 1 / 2; }
  .gallery__item--2 { grid-column: 2 / 3; margin-top: 0; }
  .gallery__item--3 { grid-column: 3 / 4; margin-top: 0; }
  .gallery__item--4 { margin-top: 0; }
  .gallery__item--5 { margin-top: 0; }
  .gallery__item--text { grid-column: auto; }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 calc(50% - 14px);
  }

  /* Areas */
  .areas__content {
    flex-direction: column;
  }

  .areas__illustration {
    max-width: 250px;
    margin: 0 auto;
  }

  /* Contact */
  .contact .container {
    flex-direction: column;
  }

  .contact__visual {
    flex: none;
    width: 100%;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================
   RESPONSIVE — MOBILE (max-width: 767px)
   ======================================================================== */
@media (max-width: 767px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 20px;
  }

  /* Reduce all buttons by ~30% on mobile */
  .btn {
    font-size: 10px;
    padding: 10px 20px;
  }

  .header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .header-logo__icon { width: 30px; height: 30px; }
  .header-logo__text { font-size: 17px; }

  /* Hero */
  .hero {
    padding: 100px 0 40px;
    min-height: auto;
    align-items: flex-start;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero__headline {
    font-size: 32px;
    line-height: 1.12;
    margin-bottom: 20px;
    text-align: center;
  }

  .hero__eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-align: center;
  }

  .hero__divider {
    width: 36px;
    margin-bottom: 18px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 24px;
    text-align: center;
  }

  .hero__subtitle br { display: none; }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

  .hero__tags {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
  }

  .hero__stats {
    gap: 24px;
  }

  .hero__stat-number {
    font-size: 18px;
  }

  .hero__visual {
    min-height: 320px;
    max-width: 100%;
    margin-top: 16px;
  }

  .hero__photo--main {
    width: 200px;
    height: 250px;
    left: 2%;
  }

  .hero__photo--top {
    width: 120px;
    height: 150px;
    right: 5%;
    top: 5%;
  }

  .hero__photo--bottom {
    width: 110px;
    height: 130px;
    right: 2%;
    bottom: 5%;
  }



  .hero__stamp {
    width: 65px;
    height: 65px;
    bottom: 25%;
    left: 0;
  }

  .hero__botanical { display: none; }

  .hero__scroll { display: none; }

  /* Disable heavy animations on mobile for performance */
  .hero__photo--main,
  .hero__photo--top,
  .hero__photo--bottom {
    animation-duration: 0.6s;
  }

  .hero__stamp-svg {
    animation-duration: 60s;
  }

  /* About */
  .about__photo--1 {
    width: 100px;
    height: 130px;
    top: 5%;
    left: -5px;
  }

  .about__photo--2 { display: none; }

  .about__photo--3 {
    width: 100px;
    height: 130px;
    top: 5%;
    right: -5px;
  }

  .about__photo--4 { display: none; }

  .about__label {
    margin-top: 150px;
  }

  .about__heading {
    font-size: 14px !important; /* Reduced by up to 50% for mobile */
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 80px; /* Prevents text from overlapping the photos on the sides */
  }

  .about__text {
    font-size: 14px;
  }

  /* Services */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .service-card__image { height: 130px; }
  .service-card__number { font-size: 22px; }
  .service-card__title { font-size: 11px; }
  .service-card__desc { font-size: 11px; }

  /* Gallery — horizontal scroll on mobile */
  .gallery__header {
    flex-direction: column;
    gap: 10px;
  }

  .gallery__collage {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: none;
  }

  .gallery__item {
    flex: 0 0 180px;
    scroll-snap-align: start;
    margin-top: 0;
  }

  .gallery__item .polaroid-frame {
    transform: none;
  }

  /* Featured */
  .featured__grid {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 20px;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .story-card {
    flex: 0 0 110px;
    width: 110px;
    scroll-snap-align: start;
  }

  .story-card__image {
    width: 100px;
    height: 100px;
  }

  .story-card__title { font-size: 10px; }

  /* Testimonials */
  .testimonials__header {
    flex-direction: column;
    gap: 10px;
  }

  .testimonials__track {
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-card {
    flex: none;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .testimonial-card__photo {
    flex-shrink: 0;
    order: 2;
  }

  .testimonial-card__text-wrap {
    flex: 1;
  }

  /* Areas */
  .areas__cities {
    justify-content: center;
    gap: 24px;
  }

  .area-card__icon {
    width: 60px;
    height: 60px;
  }

  .areas__illustration {
    max-width: 220px;
  }

  /* Contact */
  .contact__heading {
    font-size: 30px;
  }

  .contact__ctas {
    flex-direction: column;
  }

  .contact__visual {
    flex: none;
    width: 100%;
  }

  .contact__map {
    width: 100%;
    margin-left: 0;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-wordmark__text {
    font-size: 48px;
    letter-spacing: 4px;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .portfolio-item img { height: 180px; }
  .portfolio-item--tall { grid-row: span 1; }
  .portfolio-item--wide { grid-column: span 1; }

  /* Stories */
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-article__image { height: 200px; }
  .story-article__content { padding: 20px; }
  .story-article__title { font-size: 18px; }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ========================================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ======================================================================== */
@media (max-width: 480px) {
  .hero__headline { font-size: 28px; }
  .about__heading { font-size: 14px !important; }
  .section-heading--lg { font-size: 26px; }

  .hero__visual {
    min-height: 260px;
  }

  .hero__photo--main {
    width: 160px;
    height: 200px;
  }

  .hero__photo--top {
    width: 100px;
    height: 120px;
  }

  .hero__photo--bottom {
    width: 90px;
    height: 110px;
  }



  .hero__stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero__stamp { display: none; }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-card__image { height: 110px; }

  .areas__cities { gap: 16px; }
  .area-card__icon { width: 50px; height: 50px; }
  .area-card__name { font-size: 11px; }

  .footer-wordmark__text {
    font-size: 36px;
    letter-spacing: 2px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__content,
  .hero__visual {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ========================================================================
   PRINT STYLES
   ======================================================================== */
@media print {
  .site-header,
  .whatsapp-float,
  .hamburger,
  .mobile-nav {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero { padding-top: 40px; min-height: auto; }
}

/* ========================================================================
   VIDEO MODAL
   ======================================================================== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 91, 84, 0.9);
  backdrop-filter: blur(12px);
}

.video-modal__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.is-visible .video-modal__content {
  transform: scale(1) translateY(0);
}

.video-modal__close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
}

.video-modal__close:hover {
  background: #fff;
  color: var(--color-primary);
  transform: scale(1.05);
}

.video-modal__close svg {
  width: 24px;
  height: 24px;
}

.video-modal__player-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background-color: #000;
  aspect-ratio: 16 / 9;
  max-height: 80vh;
  max-width: calc(80vh * 16 / 9);
  margin: 0 auto;
}

.video-modal__player-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.video-modal__controls {
  display: none !important; /* Replaced by native controls */
}

.video-modal__player-wrapper:hover .video-modal__controls,
.video-modal__player-wrapper.is-paused .video-modal__controls {
  opacity: 1;
}

.video-control-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-control-btn:hover {
  background: #fff;
  color: var(--color-primary);
  transform: scale(1.1);
}

.video-control-btn svg {
  width: 20px;
  height: 20px;
}

.video-modal__switcher {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.video-switcher-btn {
  background: transparent;
  border: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-switcher-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.video-switcher-btn.active {
  background: #fff;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .video-modal__close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
  .video-modal__controls {
    display: none !important;
  }
  .video-modal__player-wrapper {
    aspect-ratio: 9 / 16;
    max-height: 80vh;
    max-width: calc(80vh * 9 / 16);
  }
}

/* ========================================================================
   VIDEO GALLERY (PORTFOLIO)
   ======================================================================== */
.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  aspect-ratio: 9/16;
}

.video-card--horizontal {
  aspect-ratio: 16/9;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

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

@media (max-width: 1024px) {
  .video-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .video-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================
   PORTFOLIO LIGHTBOX
   ======================================================================== */
.portfolio-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
  cursor: zoom-out;
}

.portfolio-lightbox.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-radius: 4px;
}

/* ========================================================================
   SCROLL REVEAL ANIMATIONS
   ======================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

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

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========================================================================
   PRELOADER
   ======================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: pulse 2s infinite ease-in-out;
}

.preloader__text {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 2px;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* ========================================================================
   POPUP FORM
   ======================================================================== */
.popup-modal {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-modal.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.popup-modal__content {
  position: relative;
  background: var(--color-white);
  border-radius: 12px;
  width: 320px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 91, 84, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-cream-light);
}

.popup-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-modal__close svg {
  width: 18px;
  height: 18px;
}

.popup-modal__close:hover {
  background: var(--color-cream-light);
  color: var(--color-primary);
}

.popup-modal__heading {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 6px;
  text-align: left;
}

.popup-modal__text {
  text-align: left;
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.4;
}

/* Form overrides for small popup */
.popup-modal .form-group {
  margin-bottom: 12px;
}

.popup-modal .form-label {
  font-size: 11px;
  margin-bottom: 4px;
}

.popup-modal .form-input {
  padding: 8px 12px;
  font-size: 13px;
}

.popup-modal .btn {
  padding: 10px 24px;
  font-size: 13px;
  margin-top: 4px;
}

/* Select dropdown style override */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F5B54' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 32px;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .popup-modal {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 12px;
  }
  
  .popup-modal__content {
    width: 100%;
    max-width: none;
    border-radius: 16px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  }
}

/* ========================================================================
   HOME REELS CAROUSEL
   ======================================================================== */
.home-reels {
  padding: 40px 0 60px;
  background: var(--color-white);
  overflow: hidden;
}

.reels-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.reels-slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0 20px; /* Padding for box shadows */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.reels-slider-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.reel-card-compact {
  flex: 0 0 180px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 9/16;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.reel-card-compact:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.reel-card-compact video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Prevents cropping */
  display: block;
  pointer-events: none;
}

.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.reel-card-compact:hover .reel-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 0.4);
}

.reel-play-btn svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

/* ── Play Button Looping Ring Animation ─────────────────────────────────
   A conic-gradient arc rotates continuously around every play button.
   Applied via ::before pseudo-element — no HTML changes needed.
   Covers: .reel-play-btn, .story-card__play, .about__video-btn
   ──────────────────────────────────────────────────────────────────── */
@keyframes playBtnRingSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes playBtnRingPulse {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 0.9; }
}

/* Shared ring wrapper — injected via ::before on each button */
.reel-play-btn::before,
.story-card__play::before,
.about__video-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  /* Slightly larger than the button itself */
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  border-radius: 50%;
  /* Conic gradient: gold arc ~90° then transparent for the rest */
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 200deg,
    rgba(201, 174, 122, 0.9) 260deg,
    rgba(255, 255, 255, 0.7) 310deg,
    transparent 360deg
  );
  /* Spin continuously — 3.5s feels alive but never distracting */
  animation:
    playBtnRingSpin  3.5s linear infinite,
    playBtnRingPulse 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
  /* Mask so only the ring edge shows, not the interior */
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 2.5px),
    #000 calc(100% - 2.5px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 2.5px),
    #000 calc(100% - 2.5px)
  );
}

/* story-card__play needs position:relative so ::before stacks correctly */
.story-card__play {
  position: relative;
}

/* about__video-btn already has its own positioning; ensure z-index is right */
.about__video-btn {
  position: relative;
}

/* Respect reduced motion: disable the ring animation for sensitive users */
@media (prefers-reduced-motion: reduce) {
  .reel-play-btn::before,
  .story-card__play::before,
  .about__video-btn::before {
    display: none;
  }
}


.reels-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.reels-slider-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.05);
}

.reels-slider-btn svg {
  width: 20px;
  height: 20px;
}

.reels-slider-btn--prev {
  left: -20px;
}

.reels-slider-btn--next {
  right: -20px;
}

@media (max-width: 1024px) {
  .reels-slider-btn {
    display: none; /* Hide arrows on touch devices */
  }
}


/* --- Services Missing CSS (Focus Anim & Marquee) --- */

.service-card--focus {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111111;
  border-radius: 12px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

.focus-anim-wrapper {
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.focus-anim-svg {
  width: 100%;
  height: auto;
}

.focus-gold-arc {
  animation: focusScan 4s linear infinite;
  transform-origin: 100px 100px;
}

@keyframes focusScan {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.focus-center-dot {
  animation: focusPulse 2s ease-in-out infinite;
  transform-origin: 100px 100px;
}

@keyframes focusPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.focus-light-sweep {
  animation: sweepSpin 6s linear infinite;
  transform-origin: 100px 100px;
}

@keyframes sweepSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

.service-animation {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  grid-column: 1 / -1;
}

.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.marquee-row {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.marquee-row--reverse {
  animation-direction: reverse;
  color: var(--color-text-light);
  font-size: 14px;
}

.marquee-row span {
  padding-right: 20px;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .marquee-row {
    font-size: 14px;
  }
  .marquee-row--reverse {
    font-size: 12px;
  }
}

/* ========================================================================
   CONTACT PAGE — Two-column grid layout
   ======================================================================== */
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* On tablet and smaller: single column with clear gap between form and info */
@media (max-width: 900px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: 48px;   /* ← this is the gap in the red-marked area */
  }
}

/* ========================================================================
   BACKGROUND ANIMATED ARTWORK — COMPREHENSIVE SITE-WIDE PLACEMENT
   Uses all 4 SVGs: mandala · vine · lotus · camera
   Pure CSS ::before / ::after — zero HTML changes, zero layout impact
   pointer-events: none on all — never blocks clicks
   ======================================================================== */

/* ── 1. Shared base styles for ALL bg-art pseudo-elements ─────────────── */
.hero::after,
.hero__visual::before,
.page-hero::after,
.page-hero::before,
.about::before,
.about::after,
#about-detail::before,
#about-detail::after,
.services::before,
.services::after,
.gallery::before,
.gallery::after,
.featured::before,
.featured::after,
.home-reels::before,
.home-reels::after,
.testimonials::before,
.testimonials::after,
.areas::before,
.areas::after,
.contact::before,
.contact::after,
.site-footer::before,
.site-footer::after {
  content: '';
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
}

/* ── 2. Ensure all sections are positioned so art stays inside ─────────── */
.hero,
.page-hero,
.about,
#about-detail,
.services,
.gallery,
.featured,
.home-reels,
.testimonials,
.areas,
.contact,
.site-footer {
  position: relative;
  overflow: hidden;
}

/* ── 3. All inner containers float above bg-art ───────────────────────── */
.hero > .container,
.hero > div:not(.hero__bg-texture),
.page-hero > .container,
.page-hero > div,
.about > .container,
#about-detail > .container,
.services > .container,
.gallery > .container,
.featured > .container,
.home-reels > .container,
.testimonials > .container,
.areas > .container,
.contact > .container,
.site-footer > .container,
.site-footer > div {
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════════════════════════════════════════
   HOME PAGE
   ══════════════════════════════════════════════════════════════════════════ */

/* Hero — mobile: mandala top-right edge */
.hero::after {
  top: 2%;
  right: -8%;
  width: min(260px, 55vw);
  height: min(260px, 55vw);
  background-image: url('../images/bg-art-mandala.svg');
  opacity: 0.13;
}

/* Hero visual — desktop only: mandala centred behind photo collage (handled in desktop block) */
.hero__visual::before {
  display: none; /* enabled in desktop media query */
}

/* About section — vine left + lotus right */
.about::before {
  bottom: 0;
  left: -3%;
  width: min(190px, 32vw);
  height: min(380px, 65vw);
  background-image: url('../images/bg-art-vine.svg');
  opacity: 0.18;
}
.about::after {
  top: 8%;
  right: -2%;
  width: min(160px, 28vw);
  height: min(160px, 28vw);
  background-image: url('../images/bg-art-lotus.svg');
  opacity: 0.15;
}

/* Reels — camera bottom-left */
.home-reels::before {
  bottom: 5%;
  left: 3%;
  width: min(130px, 20vw);
  height: min(130px, 20vw);
  background-image: url('../images/bg-art-camera.svg');
  opacity: 0.13;
}
/* Reels — vine mirrored top-right */
.home-reels::after {
  top: -5%;
  right: -3%;
  width: min(160px, 25vw);
  height: min(320px, 52vw);
  background-image: url('../images/bg-art-vine.svg');
  transform: scaleX(-1);
  opacity: 0.15;
}

/* Services — lotus top-right + mandala bottom-left */
.services::before {
  top: 10%;
  right: 3%;
  width: min(170px, 26vw);
  height: min(170px, 26vw);
  background-image: url('../images/bg-art-lotus.svg');
  opacity: 0.16;
}
.services::after {
  bottom: 5%;
  left: -4%;
  width: min(220px, 35vw);
  height: min(220px, 35vw);
  background-image: url('../images/bg-art-mandala.svg');
  opacity: 0.12;
  transform: rotate(30deg);
}

/* Gallery — camera bottom-left + vine top-right */
.gallery::before {
  bottom: 8%;
  left: 4%;
  width: min(120px, 18vw);
  height: min(120px, 18vw);
  background-image: url('../images/bg-art-camera.svg');
  opacity: 0.13;
}
.gallery::after {
  top: 0%;
  right: -4%;
  width: min(170px, 28vw);
  height: min(340px, 56vw);
  background-image: url('../images/bg-art-vine.svg');
  transform: scaleX(-1);
  opacity: 0.16;
}

/* Featured Shoots — lotus left + mirrored vine right */
.featured::before {
  top: 10%;
  left: -3%;
  width: min(150px, 24vw);
  height: min(150px, 24vw);
  background-image: url('../images/bg-art-lotus.svg');
  opacity: 0.15;
  transform: rotate(-20deg);
}
.featured::after {
  top: -8%;
  right: -3%;
  width: min(160px, 26vw);
  height: min(320px, 52vw);
  background-image: url('../images/bg-art-vine.svg');
  transform: scaleX(-1);
  opacity: 0.18;
}

/* Testimonials — mandala top-left + lotus bottom-right */
.testimonials::before {
  top: -5%;
  left: -5%;
  width: min(230px, 38vw);
  height: min(230px, 38vw);
  background-image: url('../images/bg-art-mandala.svg');
  opacity: 0.11;
  transform: rotate(15deg);
}
.testimonials::after {
  bottom: 5%;
  right: 3%;
  width: min(160px, 25vw);
  height: min(160px, 25vw);
  background-image: url('../images/bg-art-lotus.svg');
  opacity: 0.15;
}

/* Areas — vine left + camera top-right */
.areas::before {
  top: 0%;
  right: 2%;
  width: min(170px, 28vw);
  height: min(340px, 56vw);
  background-image: url('../images/bg-art-vine.svg');
  transform: scaleX(-1);
  opacity: 0.17;
}
.areas::after {
  bottom: 10%;
  left: 3%;
  width: min(120px, 18vw);
  height: min(120px, 18vw);
  background-image: url('../images/bg-art-camera.svg');
  opacity: 0.13;
}

/* Contact — mandala top-left + lotus bottom-right */
.contact::before {
  top: -5%;
  left: -5%;
  width: min(240px, 38vw);
  height: min(240px, 38vw);
  background-image: url('../images/bg-art-mandala.svg');
  opacity: 0.18;
}
.contact::after {
  bottom: 5%;
  right: -2%;
  width: min(150px, 24vw);
  height: min(150px, 24vw);
  background-image: url('../images/bg-art-lotus.svg');
  opacity: 0.15;
}

/* Footer — subtle vine top-left + mandala bottom-right */
.site-footer::before {
  top: 5%;
  left: -3%;
  width: min(160px, 25vw);
  height: min(320px, 50vw);
  background-image: url('../images/bg-art-vine.svg');
  opacity: 0.1;
}
.site-footer::after {
  bottom: 15%;
  right: -5%;
  width: min(180px, 28vw);
  height: min(180px, 28vw);
  background-image: url('../images/bg-art-mandala.svg');
  opacity: 0.08;
  transform: rotate(45deg);
}

/* ══════════════════════════════════════════════════════════════════════════
   INNER PAGE HERO (.page-hero) — About / Services / Portfolio / Contact / Stories
   ══════════════════════════════════════════════════════════════════════════ */
.page-hero::after {
  top: 5%;
  right: -5%;
  width: min(280px, 45vw);
  height: min(280px, 45vw);
  background-image: url('../images/bg-art-mandala.svg');
  opacity: 0.14;
}
.page-hero::before {
  bottom: -5%;
  left: -3%;
  width: min(160px, 28vw);
  height: min(320px, 55vw);
  background-image: url('../images/bg-art-vine.svg');
  opacity: 0.15;
}

/* About detail page — extra lotus in values section */
#about-detail::before {
  bottom: 5%;
  left: -3%;
  width: min(180px, 30vw);
  height: min(360px, 60vw);
  background-image: url('../images/bg-art-vine.svg');
  opacity: 0.18;
}
#about-detail::after {
  top: 10%;
  right: -2%;
  width: min(170px, 28vw);
  height: min(170px, 28vw);
  background-image: url('../images/bg-art-lotus.svg');
  opacity: 0.14;
}

/* ══════════════════════════════════════════════════════════════════════════
   DESKTOP OPTIMIZATIONS ≥1024px
   Push art further to edges; enable hero visual mandala behind photo collage
   ══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {

  /* Hero: hide mobile position, use photo-collage-centred mandala */
  .hero::after { display: none; }
  .hero__visual::before {
    display: block;
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background-image: url('../images/bg-art-mandala.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.14;
  }

  /* About */
  .about::before  { left: 1%;  bottom: 8%; width: 200px; height: 400px; }
  .about::after   { right: 1%; top: 10%;   width: 180px; height: 180px; }

  /* About detail */
  #about-detail::before { left: 1%; bottom: 8%; width: 190px; height: 380px; }
  #about-detail::after  { right: 1%; top: 12%; width: 180px; height: 180px; }

  /* Page hero — push out to edges */
  .page-hero::after  { right: 1%;  top: 8%;   width: 300px; height: 300px; }
  .page-hero::before { left: 1%;  bottom: 0%; width: 170px; height: 340px; }

  /* Reels */
  .home-reels::before { left: 6%;   bottom: 8%;  width: 140px; height: 140px; }
  .home-reels::after  { right: 3%;  top: -5%;    width: 170px; height: 340px; }

  /* Services */
  .services::before { right: 6%; top: 10%; width: 180px; height: 180px; }
  .services::after  { left: 2%;  bottom: 5%; width: 230px; height: 230px; }

  /* Gallery */
  .gallery::before { left: 6%;  bottom: 10%; width: 130px; height: 130px; }
  .gallery::after  { right: 2%; top: 0%;     width: 180px; height: 360px; }

  /* Featured */
  .featured::before { left: 2%;  top: 10%;  width: 160px; height: 160px; }
  .featured::after  { right: 2%; top: -8%;  width: 170px; height: 340px; }

  /* Testimonials */
  .testimonials::before { left: 2%;  top: -5%;   width: 240px; height: 240px; }
  .testimonials::after  { right: 4%; bottom: 5%; width: 170px; height: 170px; }

  /* Areas */
  .areas::before { right: 3%; top: 0%;    width: 180px; height: 360px; }
  .areas::after  { left: 5%;  bottom: 8%; width: 130px; height: 130px; }

  /* Contact */
  .contact::before { left: 2%;  top: 0%;    width: 260px; height: 260px; }
  .contact::after  { right: 2%; bottom: 8%; width: 160px; height: 160px; }

  /* Footer */
  .site-footer::before { left: 2%;  top: 5%;    width: 170px; height: 340px; }
  .site-footer::after  { right: 2%; bottom: 15%; width: 190px; height: 190px; }
}

/* ========================================================================
   PRICING SECTION
   ======================================================================== */
.pricing-section {
  padding: var(--section-padding);
  background-color: var(--color-cream-light);
}

.pricing-section--alt {
  background-color: var(--color-cream);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card__price {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 25px;
}

.pricing-card__price span {
  font-size: 16px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-card__features li {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-card__features li::before {
  content: '✦';
  color: var(--color-gold);
  font-size: 12px;
  margin-top: 2px;
}

.pricing-addons {
  max-width: 800px;
  margin: 40px auto 0;
  background: var(--color-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.pricing-addons__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 20px;
  text-align: center;
}

.pricing-addons__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-addons__item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--color-border);
  padding-bottom: 8px;
  font-size: 15px;
  color: var(--color-text-light);
}

.pricing-addons__item:last-child {
  border-bottom: none;
}

.pricing-addons__note {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 15px;
  text-align: center;
  font-style: italic;
}

/* Accordion */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.accordion__btn:hover {
  color: var(--color-primary);
}

.accordion__icon {
  position: relative;
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition-base);
}

.accordion__icon::before {
  width: 14px;
  height: 2px;
}

.accordion__icon::after {
  width: 2px;
  height: 14px;
}

.accordion__btn.active .accordion__icon {
  transform: rotate(180deg);
}

.accordion__btn.active .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base) ease-out;
}

.accordion__inner {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ========================================================================
   CART DRAWER & ICON
   ======================================================================== */
.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text);
  transition: color var(--transition-fast);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.header-cart:hover {
  color: var(--color-primary);
}

.header-cart svg {
  width: 24px;
  height: 24px;
}

.header-cart__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
  pointer-events: none;
  transition: transform var(--transition-base);
}

.header-cart__badge.bump {
  transform: scale(1.3);
}

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--color-cream-light);
  z-index: 10001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-white);
}

.cart-header h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-text);
  margin: 0;
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-text);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cart-close:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.cart-close svg {
  width: 18px;
  height: 18px;
}

.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty-message {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 15px;
  margin-top: 40px;
  font-style: italic;
}

.cart-item {
  background: var(--color-white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.cart-item__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
}

.cart-item__remove {
  color: var(--color-text-muted);
  font-size: 12px;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.cart-item__remove:hover {
  color: #d9534f;
}

.cart-item__price {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.cart-item__features {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-top: 5px;
}

.cart-footer {
  padding: 30px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-total span:first-child {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-light);
}

.cart-total span:last-child {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
}

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}

/* ══════════════════════════════════════════════════════════════════════════
   prefers-reduced-motion — hide all bg-art for accessibility
   ══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .hero__visual::before,
  .page-hero::after,
  .page-hero::before,
  .about::before,
  .about::after,
  #about-detail::before,
  #about-detail::after,
  .services::before,
  .services::after,
  .gallery::before,
  .gallery::after,
  .featured::before,
  .featured::after,
  .home-reels::before,
  .home-reels::after,
  .testimonials::before,
  .testimonials::after,
  .areas::before,
  .areas::after,
  .contact::before,
  .contact::after,
  .site-footer::before,
  .site-footer::after {
    display: none !important;
  }
}
