/* ============================================
   iArtist Studios — Wedding Photography
   Custom-Built Motion Design
   ============================================ */

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:root {
  --color-olive: #6b7c3f;
  --color-olive-light: #8b9a6b;
  --color-olive-dark: #4a5a2b;
  --color-terracotta: #c4956a;
  --color-terracotta-dark: #a67c52;
  --color-warm-brown: #7a5c3e;
  --color-cream: #faf6f0;
  --color-ivory: #f5f0e8;
  --color-sand: #e8ddd0;
  --color-charcoal: #2c2c2c;

  --color-bg: #faf6f0;
  --color-bg-alt: #f5f0e8;
  --color-text: #2c2c2c;
  --color-text-light: #6b6458;
  --color-text-muted: #9a9084;
  --color-accent: #6b7c3f;
  --color-accent-hover: #4a5a2b;
  --color-highlight: #c4956a;
  --color-border: rgba(107, 100, 88, 0.12);

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --header-height: 70px;
  --section-padding: 120px;
  --max-width: 1400px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-pill: 30px;

  --ease-out: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-expo: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-spring: cubic-bezier(0.23, 1, 0.32, 1);

  --overlay-hero: linear-gradient(to bottom, rgba(44,44,44,0.25) 0%, rgba(44,44,44,0.55) 100%);
  --header-bg: rgba(250, 246, 240, 0.95);
  --shadow-soft: rgba(44, 44, 44, 0.06);
  --shadow-medium: rgba(44, 44, 44, 0.08);
  --shadow-strong: rgba(44, 44, 44, 0.2);
}

/* ============================================
   DARK MODE
   ============================================ */
[data-theme="dark"] {
  --color-cream: #1a1917;
  --color-ivory: #21201d;
  --color-sand: #332f2a;

  --color-bg: #1a1917;
  --color-bg-alt: #21201d;
  --color-text: #ede8e0;
  --color-text-light: #b0a898;
  --color-text-muted: #736b60;
  --color-accent: #8b9a6b;
  --color-accent-hover: #6b7c3f;
  --color-highlight: #c4956a;
  --color-border: rgba(220, 210, 195, 0.10);
  --color-olive-light: #a0ad85;
  --color-warm-brown: #b89878;

  --overlay-hero: linear-gradient(to bottom, rgba(20,19,17,0.35) 0%, rgba(20,19,17,0.65) 100%);
  --header-bg: rgba(26, 25, 23, 0.95);
  --shadow-soft: rgba(0, 0, 0, 0.2);
  --shadow-medium: rgba(0, 0, 0, 0.25);
  --shadow-strong: rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .service-card-extras {
  background: rgba(139, 154, 107, 0.1);
}

[data-theme="dark"] .service-card--selected {
  background: rgba(139, 154, 107, 0.08);
}

[data-theme="dark"] .extra-card--selected {
  background: rgba(139, 154, 107, 0.08);
}

[data-theme="dark"] .services-summary {
  background: rgba(30, 30, 28, 0.92);
  border-top-color: rgba(139, 154, 107, 0.2);
}

/* Section title gradient needs lighter colors on dark bg */
[data-theme="dark"] .section-header.visible .section-title {
  background: linear-gradient(
    90deg,
    var(--color-text) 0%,
    var(--color-olive-light) 25%,
    var(--color-terracotta) 50%,
    var(--color-warm-brown) 75%,
    var(--color-text) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s, color 0.3s;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); }

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--color-terracotta);
  z-index: 999;
  width: 0%;
  will-change: width;
  pointer-events: none;
}

/* ============================================
   REUSABLE SECTION HEADER
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-header.visible .section-label {
  animation: labelExpand 0.8s var(--ease-spring) forwards;
}

@keyframes labelExpand {
  0% { letter-spacing: 0.12em; opacity: 0.5; }
  100% { letter-spacing: 0.2em; opacity: 1; }
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2;
}

/* Animated gradient title — continuously cycles colors */
.section-header.visible .section-title {
  background: linear-gradient(
    90deg,
    var(--color-charcoal) 0%,
    var(--color-olive) 25%,
    var(--color-terracotta) 50%,
    var(--color-warm-brown) 75%,
    var(--color-charcoal) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleColorCycle 8s ease-in-out infinite;
}

@keyframes titleColorCycle {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease, background 0.3s;
}

.header--scrolled {
  box-shadow: 0 1px 12px var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 32px;
  max-width: 1600px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-toggle {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: none;
  border: 1.5px solid var(--color-text);
  color: var(--color-text);
  padding: 5px 14px;
  border-radius: var(--border-radius-pill);
  cursor: pointer;
  transition: background 0.3s var(--ease-expo), color 0.3s;
}

.lang-toggle:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.theme-toggle {
  font-size: 16px;
  line-height: 1;
  background: none;
  border: 1.5px solid var(--color-text);
  color: var(--color-text);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s var(--ease-expo), color 0.3s, border-color 0.3s;
}

.theme-toggle:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

/* Hamburger → X morph */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.menu-icon span {
  display: block;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-expo), width 0.3s ease;
  transform-origin: center;
}

.menu-icon span:first-child { width: 24px; }
.menu-icon span:last-child { width: 16px; align-self: flex-end; }

.menu-toggle.active .menu-icon span:first-child {
  transform: rotate(45deg) translate(2.3px, 2.3px);
}

.menu-toggle.active .menu-icon span:last-child {
  width: 24px;
  transform: rotate(-45deg) translate(2.3px, -2.3px);
}

/* ============================================
   SPLIT-SCREEN MENU
   ============================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.menu-overlay.active {
  pointer-events: auto;
  visibility: visible;
}

.menu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

/* Left: Preview image */
.menu-preview {
  position: relative;
  overflow: hidden;
  background: var(--color-charcoal);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.7s var(--ease-expo);
}

.menu-overlay.active .menu-preview {
  clip-path: inset(0 0% 0 0);
}

.menu-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 0.6s var(--ease-out), opacity 0.3s ease;
}

.menu-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.25);
}

/* Right: Navigation */
.menu-nav {
  background: var(--color-charcoal);
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  padding: 60px 48px;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-expo) 0.1s;
}

.menu-nav::-webkit-scrollbar {
  width: 4px;
}

.menu-nav::-webkit-scrollbar-track {
  background: transparent;
}

.menu-nav::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}

.menu-nav::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.3);
}

.menu-overlay.active .menu-nav {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  transition: color 0.2s, transform 0.4s var(--ease-spring);
}

.menu-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.menu-links {
  display: flex;
  flex-direction: column;
}

.menu-link {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
  transition: color 0.3s;
}

.menu-link:hover {
  color: #ffffff;
}

/* Sliding underline */
.menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
}

.menu-link:hover::after {
  transform: scaleX(1);
}

/* Staggered entrance */
.menu-link {
  opacity: 0;
  transform: translateY(40px);
}

.menu-overlay.active .menu-link {
  opacity: 1;
  transform: translateY(0);
}

/* Menu footer */
.menu-footer {
  margin-top: auto;
  padding-top: 40px;
}

.menu-social {
  display: flex;
  gap: 24px;
}

.menu-social a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.menu-social a:hover {
  color: var(--color-terracotta);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 180vh;
}

/* Film grain overlay (on the sticky bg wrapper) */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

.hero-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
}

.hero-content {
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  will-change: transform, opacity;
  /* Pull up so it overlaps the sticky bg */
  margin-top: -50vh;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  overflow: hidden;
}

/* Word-by-word blur reveal */
.hero-word {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(8px) scale(0.95);
  transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s var(--ease-spring);
  transition-delay: calc(var(--i) * 0.25s);
}

.hero-title.revealed .hero-word {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0) scale(1);
}

/* Subtitle + CTA reveal */
.hero-reveal-target {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-spring);
}

.hero-reveal-target.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

/* CTA with fill-from-bottom */
.hero-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  padding: 14px 32px;
  border-radius: var(--border-radius-pill);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s, border-color 0.4s;
}

.hero-cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-expo);
  z-index: -1;
  border-radius: inherit;
}

.hero-cta:hover::before {
  transform: scaleY(1);
}

.hero-cta:hover {
  color: var(--color-text);
  border-color: #ffffff;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
  padding: var(--section-padding) 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 8px 20px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius-pill);
  background: transparent;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

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

/* Gallery cards: clip-path reveal */
.gallery-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 5;
  background: var(--color-sand);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s var(--ease-expo);
}

.gallery-card.visible {
  clip-path: inset(0% 0 0 0);
}

/* Directional clip-path variations */
.gallery-card.reveal-col-0 { clip-path: inset(0 100% 0 0); }
.gallery-card.reveal-col-0.visible { clip-path: inset(0 0% 0 0); }

.gallery-card.reveal-col-1 { clip-path: inset(100% 0 0 0); }
.gallery-card.reveal-col-1.visible { clip-path: inset(0% 0 0 0); }

.gallery-card.reveal-col-2 { clip-path: inset(0 0 0 100%); }
.gallery-card.reveal-col-2.visible { clip-path: inset(0 0 0 0%); }

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 1.2s var(--ease-out);
}

.gallery-card.visible .gallery-card-img {
  transform: scale(1.0);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.08) !important;
  transition: transform 0.6s var(--ease-out) !important;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.5), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-category {
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-padding) 32px;
  background: var(--color-bg-alt);
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* About image: clip-path wipe from left */
.about-image {
  overflow: hidden;
  border-radius: var(--border-radius);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s var(--ease-expo);
}

.about-image.visible {
  clip-path: inset(0 0% 0 0);
}

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

/* About text: slide from right */
.about-text-block.animate-on-scroll {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s var(--ease-spring) 0.2s;
}

.about-text-block.animate-on-scroll.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-text-block .section-label { text-align: left; }
.about-text-block .section-title { text-align: left; margin-bottom: 24px; }

.about-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.about-cta {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-accent);
  border-bottom: 1.5px solid var(--color-accent);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.about-cta:hover { opacity: 0.7; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-padding) 32px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Instructional hint */
.services-hint {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  margin-bottom: -32px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-spring);
}

.services-hint--hidden {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.services-packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--color-bg-alt);
  border-radius: var(--border-radius);
  padding: 48px 36px;
  text-align: center;
  border: 1.5px solid transparent;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.7s var(--ease-spring),
              box-shadow 0.4s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  box-shadow: 0 16px 48px var(--shadow-medium);
  transform: translateY(-4px);
}

.service-card--selected {
  border-color: var(--color-accent);
  box-shadow: 0 20px 60px var(--shadow-medium), 0 0 0 1px var(--color-accent);
  background: rgba(107, 124, 63, 0.03);
}

.service-card--selected:hover {
  transform: translateY(-4px);
}

.service-card-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease-spring);
  opacity: 0.4;
}

.service-card-check svg {
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.35s var(--ease-spring);
  color: white;
}

.service-card--selected .service-card-check {
  background: var(--color-accent);
  border-color: var(--color-accent);
  opacity: 1;
}

.service-card--selected .service-card-check svg {
  opacity: 1;
  transform: scale(1);
  animation: checkPop 0.4s var(--ease-spring);
}

@keyframes checkPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.service-card--highlighted {
  border-color: var(--color-accent);
}

.service-card--highlighted::before {
  content: '\2605';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.service-card-name {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-card-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.service-card-divider {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.4;
  margin: 0 auto 20px;
}

.service-card-desc {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

.service-card-closing {
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-card-extras {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(107, 124, 63, 0.06);
  border-radius: 8px;
  width: 100%;
}

.service-card-extras li {
  font-size: 13px;
  color: var(--color-text-light);
  padding: 4px 0;
}

.service-card-extras li::before {
  content: '\2727';
  margin-right: 8px;
  color: var(--color-accent);
}

.service-card-price {
  font-size: 13px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: auto;
  padding-top: 24px;
}

.service-card-price strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-accent);
  margin-top: 6px;
  letter-spacing: -0.02em;
}

.service-card-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  width: 100%;
}

.service-card-features li {
  font-size: 14px;
  color: var(--color-text-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.service-card-features li::before {
  content: '\2713';
  margin-right: 10px;
  color: var(--color-accent);
  font-weight: 600;
}

/* Service CTA with fill effect */
.service-card-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  padding: 10px 28px;
  border-radius: var(--border-radius-pill);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s;
}

.service-card-cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-expo);
  z-index: -1;
  border-radius: inherit;
}

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

.service-card-cta:hover {
  color: #ffffff;
}

/* Subsection titles */
.services-subsection-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
}

/* Extras grid */
.services-extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.extra-card {
  background: var(--color-bg-alt);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.7s var(--ease-spring),
              box-shadow 0.4s ease, border-color 0.35s ease, background 0.35s ease;
}

.extra-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.extra-card:hover {
  box-shadow: 0 16px 48px var(--shadow-medium);
  transform: translateY(-3px);
}

.extra-card--selected {
  border-color: var(--color-accent);
  background: rgba(107, 124, 63, 0.03);
}

.extra-card-checkbox {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease-spring);
  opacity: 0.4;
}

.extra-card-checkbox svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.35s var(--ease-spring);
  color: white;
}

.extra-card--selected .extra-card-checkbox {
  background: var(--color-accent);
  border-color: var(--color-accent);
  opacity: 1;
}

.extra-card--selected .extra-card-checkbox svg {
  opacity: 1;
  transform: scale(1);
  animation: checkPop 0.4s var(--ease-spring);
}

.extra-card-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.extra-card-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.extra-card-price {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-accent);
  margin-top: auto;
  padding-top: 8px;
  letter-spacing: -0.01em;
}

/* Discount banner */
.services-discounts {
  text-align: center;
  padding: 32px;
  background: var(--color-bg-alt);
  border-radius: var(--border-radius);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.7s var(--ease-spring);
}

.services-discounts.visible {
  opacity: 1;
  transform: translateY(0);
}

.services-discounts-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 16px;
}

.services-discounts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.services-discounts-list li {
  font-size: 14px;
  color: var(--color-text-light);
}

.services-discounts-list li::before {
  content: '\2728';
  margin-right: 8px;
}

.services-discounts-note {
  font-size: 12px;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Summary bar (sticky bottom) */
.services-summary {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(250, 246, 240, 0.94);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-top: 1px solid var(--color-border);
  padding: 20px 32px;
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-spring);
  box-shadow: 0 -12px 48px var(--shadow-soft);
}

.services-summary.visible {
  transform: translateY(0);
}

.services-summary-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.services-summary-close {
  position: absolute;
  top: -4px;
  right: -8px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.services-summary-close:hover {
  color: var(--color-text);
}

.services-summary-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 32px;
  flex: 1;
}

.summary-line {
  display: flex;
  gap: 8px;
  font-size: 13px;
  align-items: baseline;
}

.summary-label {
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 10px;
}

.summary-value {
  color: var(--color-text);
  font-weight: 500;
  font-size: 14px;
}

.summary-total .summary-value {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--color-accent);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.summary-discount .summary-value {
  color: var(--color-accent);
  font-weight: 600;
}

.services-summary-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: white;
  background: var(--color-accent);
  padding: 14px 36px;
  border-radius: var(--border-radius-pill);
  white-space: nowrap;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(107, 124, 63, 0.2);
}

.services-summary-cta:hover {
  background: var(--color-accent-hover);
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(107, 124, 63, 0.3);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding) 32px;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials-track::-webkit-scrollbar { height: 4px; }
.testimonials-track::-webkit-scrollbar-track { background: var(--color-sand); border-radius: 2px; }
.testimonials-track::-webkit-scrollbar-thumb { background: var(--color-olive-light); border-radius: 2px; }

/* Testimonials: slide from right */
.testimonial-card {
  min-width: 360px;
  max-width: 420px;
  flex-shrink: 0;
  scroll-snap-align: center;
  background: var(--color-bg);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  border: none;
  margin: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.7s var(--ease-spring);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 24px;
}

.testimonial-quote::before {
  content: '\201c';
  font-size: 48px;
  color: var(--color-olive-light);
  display: block;
  line-height: 0.5;
  margin-bottom: 12px;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-couple {
  font-weight: 600;
  font-style: normal;
  color: var(--color-accent);
  font-size: 15px;
}

.testimonial-meta {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: var(--section-padding) 32px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Process steps: scale up */
.process-step {
  text-align: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s ease, transform 0.6s var(--ease-spring);
}

.process-step.visible {
  opacity: 1;
  transform: scale(1);
}

.process-step-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 52px;
  color: var(--color-accent);
  opacity: 0.25;
  margin-bottom: 16px;
  line-height: 1;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--color-text);
}

.process-step-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   BOOKING BOT
   ============================================ */
.booking {
  padding: var(--section-padding) 32px;
  background: var(--color-bg-alt);
}

.booking-bot {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-bg);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow-soft);
}

.bot-messages {
  padding: 32px 24px;
  max-height: 450px;
  min-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bot-messages::-webkit-scrollbar { width: 4px; }
.bot-messages::-webkit-scrollbar-track { background: transparent; }
.bot-messages::-webkit-scrollbar-thumb { background: var(--color-sand); border-radius: 2px; }

.bot-bubble {
  display: flex;
  gap: 12px;
  max-width: 85%;
  animation: bubbleFadeIn 0.4s var(--ease-spring);
}

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

.bot-bubble--bot { align-self: flex-start; }
.bot-bubble--user { align-self: flex-end; flex-direction: row-reverse; }

.bot-bubble-text {
  background: var(--color-ivory);
  padding: 12px 18px;
  border-radius: 18px 18px 18px 4px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
}

.bot-bubble--user .bot-bubble-text {
  background: var(--color-accent);
  color: #ffffff;
  border-radius: 18px 18px 4px 18px;
}

.bot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.bot-bubble--typing .typing-dots {
  display: flex;
  gap: 5px;
  padding: 14px 20px;
  background: var(--color-ivory);
  border-radius: 18px;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-text-muted);
  animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.bot-input-area {
  display: flex;
  border-top: 1px solid var(--color-border);
  padding: 16px;
  gap: 12px;
}

.bot-input {
  flex: 1;
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius-pill);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 0.2s;
}

.bot-input:focus { border-color: var(--color-accent); }
.bot-input::placeholder { color: var(--color-text-muted); }

.bot-send {
  background: var(--color-accent);
  color: #ffffff;
  border: none;
  border-radius: var(--border-radius-pill);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.bot-send:hover { background: var(--color-accent-hover); }
.bot-send:disabled { opacity: 0.5; cursor: not-allowed; }

.bot-options {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 24px 24px;
  justify-content: center;
}

.bot-options.visible { display: flex; }

.bot-option-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--color-accent);
  border-radius: var(--border-radius-pill);
  background: transparent;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
}

.bot-option-btn:hover {
  background: var(--color-accent);
  color: #ffffff;
}

.bot-restart {
  display: block;
  margin: 16px auto;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}

.bot-restart:hover { color: var(--color-accent); }

.bot-bubble-schedule {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bot-schedule {
  display: inline-block;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--color-accent);
  border: none;
  border-radius: var(--border-radius-sm);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.bot-schedule:hover { opacity: 0.85; }

/* Inquiry Summary Panel */
.inquiry-summary {
  margin: 16px 24px 24px;
  padding: 24px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  animation: bubbleFadeIn 0.4s var(--ease-spring);
}

.inquiry-summary-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.inquiry-summary-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.inquiry-summary-logo-img {
  height: 36px;
  width: auto;
}

.inquiry-summary-row {
  display: flex;
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.5;
}

.inquiry-summary-label {
  flex: 0 0 120px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.inquiry-summary-value {
  flex: 1;
  color: var(--color-text);
}

.inquiry-summary-value--total {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 16px;
}

.inquiry-summary-print {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 24px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-bg);
  background: var(--color-text);
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: opacity 0.2s;
}

.inquiry-summary-print:hover { opacity: 0.85; }

.inquiry-summary-print svg { width: 16px; height: 16px; }

.inquiry-print-root { display: none; }
.inquiry-summary-date { display: none; }
.inquiry-summary-footer { display: none; }

/* Floating FAB */
.booking-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--color-accent);
  color: #ffffff;
  border: none;
  border-radius: var(--border-radius-pill);
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(107, 124, 63, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.3s, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}

.booking-fab.visible { opacity: 1; pointer-events: auto; }
.booking-fab:hover { box-shadow: 0 12px 40px rgba(107, 124, 63, 0.4); }
.booking-fab svg { width: 18px; height: 18px; fill: currentColor; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-charcoal);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--shadow-strong);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s var(--ease-spring), background 0.2s;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 32px 40px;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline { font-size: 14px; color: var(--color-text-light); line-height: 1.6; }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: var(--color-text-light); transition: color 0.2s; }
.footer-nav a:hover { color: var(--color-accent); }

.footer-social { display: flex; flex-direction: column; gap: 10px; }
.footer-social a { font-size: 14px; color: var(--color-text-light); transition: color 0.2s; }
.footer-social a:hover { color: var(--color-accent); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

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

/* ============================================
   SECTION HEADER ANIMATION (scale)
   ============================================ */
.section-header.animate-on-scroll {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-spring);
}

.section-header.animate-on-scroll.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   RESPONSIVE — Tablet (900px)
   ============================================ */
@media (max-width: 900px) {
  :root { --section-padding: 80px; }

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

  /* Reset directional reveals to bottom-up on 2 columns */
  .gallery-card.reveal-col-0,
  .gallery-card.reveal-col-2 { clip-path: inset(100% 0 0 0); }
  .gallery-card.reveal-col-0.visible,
  .gallery-card.reveal-col-2.visible { clip-path: inset(0% 0 0 0); }

  .services-packs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .services-extras-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .services-summary-inner { flex-direction: column; gap: 14px; text-align: center; }
  .services-summary-details { justify-content: center; }
  .services-summary { padding: 16px 20px; }
  .services-hint { font-size: 14px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about { padding-bottom: var(--section-padding); }

  .about-text-block .section-label,
  .about-text-block .section-title { text-align: center; }
  .about-text { text-align: center; }
  .about-cta { display: block; text-align: center; }

  .about-text-block.animate-on-scroll {
    transform: translateY(30px);
  }
  .about-text-block.animate-on-scroll.visible {
    transform: translateY(0);
  }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  /* Menu mobile: stack */
  .menu-split {
    grid-template-columns: 1fr;
    grid-template-rows: 30vh 1fr;
  }

  .menu-preview {
    clip-path: inset(100% 0 0 0);
  }

  .menu-overlay.active .menu-preview {
    clip-path: inset(0% 0 0 0);
  }

  .menu-nav {
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.5s var(--ease-expo) 0.2s,
                opacity 0.5s ease 0.2s;
    padding: 32px 24px;
    justify-content: flex-start;
  }

  .menu-overlay.active .menu-nav {
    transform: translateY(0);
    opacity: 1;
  }

  .menu-link {
    font-size: clamp(28px, 8vw, 40px);
  }
}

/* ============================================
   RESPONSIVE — Mobile (600px)
   ============================================ */
@media (max-width: 600px) {
  :root {
    --section-padding: 64px;
    --header-height: 60px;
  }

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

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

  /* All gallery cards: bottom-up on mobile */
  .gallery-card,
  .gallery-card.reveal-col-0,
  .gallery-card.reveal-col-1,
  .gallery-card.reveal-col-2 {
    clip-path: inset(100% 0 0 0);
  }
  .gallery-card.visible,
  .gallery-card.reveal-col-0.visible,
  .gallery-card.reveal-col-1.visible,
  .gallery-card.reveal-col-2.visible {
    clip-path: inset(0% 0 0 0);
  }

  .gallery-card { aspect-ratio: 3 / 4; }

  .portfolio-filters { gap: 8px; }
  .filter-btn { font-size: 13px; padding: 6px 16px; }

  .process-steps { grid-template-columns: 1fr; gap: 32px; }

  .hero { min-height: 100vh; }
  .hero-bg { position: absolute; inset: 0; height: auto; }
  .hero-content { position: relative; top: auto; transform: none; margin-top: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; }
  .hero-scroll-indicator { position: absolute; bottom: 32px; margin-top: 0; }
  .hero-title { font-size: clamp(32px, 10vw, 52px); }
  .hero-subtitle { font-size: 16px; }

  .booking-bot { border-radius: var(--border-radius-sm); }
  .bot-messages { max-height: 350px; padding: 24px 16px; }
  .bot-input-area { padding: 12px; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .footer-nav, .footer-social { align-items: center; }

  .section-title { font-size: clamp(28px, 6vw, 40px); }

  .booking-fab { padding: 12px 20px; font-size: 13px; bottom: 16px; right: 16px; }
  .back-to-top { bottom: 16px; left: 16px; width: 40px; height: 40px; }

  .testimonials-track { padding-left: 16px; padding-right: 16px; }
  .testimonial-card { min-width: 280px; }

  .faq-list { padding: 0 16px; }
  .whatsapp-btn { bottom: 76px; right: 16px; width: 48px; height: 48px; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.3s var(--ease-spring), opacity 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 36px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s, transform 0.3s var(--ease-spring);
  z-index: 10;
}

.lightbox-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.8);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}

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

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-padding) 32px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.6s var(--ease-spring);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s var(--ease-expo);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-expo), opacity 0.3s;
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-expo), padding 0.3s;
}

.faq-answer-text {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-light);
}

.faq-item.open .faq-answer {
  /* max-height set by JS based on content */
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

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

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.85);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-expo);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 14px;
  line-height: 1.5;
  max-width: 600px;
}

.cookie-accept {
  background: var(--color-accent);
  color: #ffffff;
  border: none;
  border-radius: var(--border-radius-pill);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.cookie-accept:hover {
  background: var(--color-accent-hover);
}

/* ============================================
   HERO SLIDESHOW & SCROLL INDICATOR
   ============================================ */
.hero-bg-img--next {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
  transform: scale(1.15);
}

.hero-bg-img--next.active {
  opacity: 1;
}

.hero-scroll-indicator {
  position: sticky;
  top: calc(100vh - 52px);
  z-index: 3;
  color: rgba(255, 255, 255, 0.6);
  animation: scrollBounce 2s ease-in-out infinite;
  width: fit-content;
  margin: 0 auto;
  margin-top: -40px;
  will-change: transform, opacity;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ============================================
   LIGHTBOX LOADING STATE
   ============================================ */
.lightbox-img.loading {
  opacity: 0.3;
  filter: blur(4px);
}

/* ============================================
   PORTFOLIO GRID FADE
   ============================================ */
.portfolio-grid.fading {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.portfolio-grid {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ============================================
   BOOKING BOT PROGRESS BAR
   ============================================ */
.bot-progress-bar {
  height: 3px;
  background: var(--color-sand);
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.bot-progress {
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  transition: width 0.4s var(--ease-expo);
  border-radius: 3px;
}

/* ============================================
   COOKIE BANNER BUTTONS
   ============================================ */
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-decline {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius-pill);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}

.cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* ============================================
   FOOTER CONTACT
   ============================================ */
.footer-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact-item {
  font-size: 14px;
  color: var(--color-text-light);
  transition: color 0.2s;
}

a.footer-contact-item:hover {
  color: var(--color-accent);
}

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

.lightbox :focus-visible {
  outline-color: rgba(255, 255, 255, 0.8);
}

.menu-overlay :focus-visible {
  outline-color: var(--color-terracotta);
}

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

.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.loader-logo-img {
  height: 60px;
  width: auto;
  animation: loaderFadeIn 0.6s ease forwards;
}

.loader-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: loaderPulse 1s ease-in-out infinite;
}

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

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

/* ============================================
   ABOUT COUNTERS
   ============================================ */
.about-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 64px auto 0;
  padding: 48px 32px;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1;
}

.counter-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

/* ============================================
   BOOKING URGENCY
   ============================================ */
.booking-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto 24px;
  padding: 14px 24px;
  background: rgba(107, 124, 63, 0.08);
  border: 1px solid rgba(107, 124, 63, 0.15);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-spring);
}

.booking-urgency.visible {
  opacity: 1;
  transform: translateY(0);
}

.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: urgencyPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(107, 124, 63, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(107, 124, 63, 0); }
}

/* ============================================
   CLICK HEART BURST
   ============================================ */
.click-heart {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  font-style: normal;
  animation: heartBurst 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
  user-select: none;
}

@keyframes heartBurst {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(0.3) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: translate(var(--hx), var(--hy)) scale(1) rotate(15deg);
  }
  100% {
    opacity: 0;
    transform: translate(var(--hx), calc(var(--hy) + 12px)) scale(0.5) rotate(30deg);
  }
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 900px) {
  .about-counters { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 40px 20px; margin-top: 48px; }
}

@media (max-width: 600px) {
  .about-counters { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 32px 16px; margin-top: 40px; }
  .counter-number { font-size: clamp(28px, 8vw, 40px); }
  .booking-urgency { font-size: 13px; padding: 12px 20px; }
}

/* ============================================
   SCROLL-DRIVEN PARALLAX — will-change hints
   ============================================ */
.hero-scroll-indicator { will-change: transform, opacity; }
.section-header,
.about-counters,
.services-packs-grid,
.services-extras,
.services-discounts,
.testimonials-track,
.process-steps,
.faq-list,
.booking-bot,
.booking-urgency {
  will-change: transform;
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-bg-img { transform: scale(1) !important; }
  .hero { min-height: 100vh !important; }
  .hero-content { transform: translateY(-50%) !important; opacity: 1 !important; }
  .hero-scroll-indicator { opacity: 1 !important; }
  .section-header,
  .about-counters,
    .services-packs-grid,
  .services-extras,
  .services-discounts,
  .testimonials-track,
  .process-steps,
  .faq-list,
  .booking-bot,
  .booking-urgency { transform: none !important; }
  .about { padding-bottom: var(--section-padding) !important; }
  .gallery-card { clip-path: none !important; }
  .about-image { clip-path: none !important; }
  .loading-screen { display: none; }
}

/* ============================================
   PRINT STYLES — Inquiry Summary (1 page)
   ============================================ */
@media print {
  /* Hide everything on the page */
  body > * { display: none !important; }

  /* Show only the print root (cloned summary) */
  body > .inquiry-print-root {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
  }

  .inquiry-print-root .inquiry-summary {
    display: block !important;
    margin: 0 auto;
    padding: 0;
    max-width: 520px;
    border: none;
    background: #fff;
    color: #000;
    box-shadow: none;
    animation: none;
  }

  .inquiry-print-root .inquiry-summary-logo {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
  }

  .inquiry-print-root .inquiry-summary-logo-img {
    height: 48px;
  }

  .inquiry-print-root .inquiry-summary-date {
    display: block;
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-bottom: 24px;
  }

  .inquiry-print-root .inquiry-summary-title {
    font-size: 15px;
    color: #000;
    border-bottom: 2px solid #222;
    padding-bottom: 6px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .inquiry-print-root .inquiry-summary-row {
    display: flex;
    padding: 7px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    line-height: 1.5;
    page-break-inside: avoid;
  }

  .inquiry-print-root .inquiry-summary-label {
    flex: 0 0 130px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .inquiry-print-root .inquiry-summary-value {
    flex: 1;
    color: #000;
    font-size: 13px;
  }

  .inquiry-print-root .inquiry-summary-value--total {
    color: #000;
    font-size: 17px;
    font-weight: 700;
  }

  .inquiry-print-root .inquiry-summary-footer {
    display: block;
    text-align: center;
    margin-top: 28px;
    padding-top: 12px;
    border-top: 2px solid #222;
    font-size: 10px;
    color: #999;
    letter-spacing: 0.3px;
  }

  .inquiry-summary-print { display: none !important; }

  @page { size: A4; margin: 24mm 20mm; }
}
