:root {
  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing Grid */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  /* Ice Cream Color Palette */
  --color-primary: #F2F9FF;
  --color-primary-dark: #E6F2FF;
  --color-accent: #FFCCE1;
  --color-accent-dark: #E195AB;
  --color-warm: #FFF5D7;
  
  /* Neutrals */
  --color-neutral-50: #FAFAFA;
  --color-neutral-100: #F5F5F5;
  --color-neutral-200: #E5E5E5;
  --color-neutral-300: #D4D4D4;
  --color-neutral-400: #A3A3A3;
  --color-neutral-500: #737373;
  --color-neutral-600: #525252;
  --color-neutral-700: #404040;
  --color-neutral-800: #262626;
  --color-neutral-900: #171717;

  /* Surface & Text */
  --color-surface: #FFFFFF;
  --color-text: #171717;
  --color-text-muted: #525252;
  --color-bg: #F2F9FF;

  /* Component Tokens */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

h1 {
  font-size: var(--text-6xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-2xl);
}

p {
  margin-bottom: var(--space-3);
  color: var(--color-text-muted);
  font-weight: 300;
}

a {
  color: var(--color-accent-dark);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-accent);
}

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

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 204, 225, 0.2);
  z-index: 100;
  transition: all var(--transition-base);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo a {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-6);
  align-items: center;
}

.nav-menu a {
  font-size: var(--text-base);
  font-weight: 500;
  transition: color var(--transition-base);
}

.nav-menu a:hover {
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
  margin-top: 70px;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242, 249, 255, 0.9), rgba(255, 204, 225, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: var(--space-4);
}

.hero-headline {
  font-size: var(--text-6xl);
  color: var(--color-accent-dark);
  margin-bottom: var(--space-3);
}

.hero-sub {
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: white;
  border-radius: var(--radius-full);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: var(--text-base);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-accent-dark);
  outline-offset: 2px;
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-secondary {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  background: transparent;
  color: var(--color-accent-dark);
  border: 2px solid var(--color-accent-dark);
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

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

/* Section Styling */
.section {
  padding: var(--space-12) 0;
}

.section-alt {
  background: rgba(255, 204, 225, 0.1);
}

.section-gradient {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: white;
  text-align: center;
  padding: var(--space-12) 0;
}

.section-gradient h2 {
  color: white;
}

.section-gradient p {
  color: rgba(255, 255, 255, 0.9);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-2);
}

.section-header p {
  font-size: var(--text-xl);
  max-width: 500px;
  margin: 0 auto;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.grid-2.reverse {
  direction: rtl;
}

.grid-2.reverse > * {
  direction: ltr;
}

.image-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.content-block h2 {
  color: var(--color-text);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
}

.link-arrow::after {
  content: '→';
  transition: transform var(--transition-base);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* Cards */
.card {
  background: var(--color-surface);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 204, 225, 0.3);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

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

.card h3 {
  color: var(--color-text);
  margin-top: var(--space-3);
}

.card-icon {
  font-size: var(--text-3xl);
  color: var(--color-accent);
}

.result-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  cursor: pointer;
}

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

.result-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.result-card h3,
.result-card p {
  padding: var(--space-4);
}

.result-card h3 {
  margin-bottom: var(--space-2);
}

/* Page Header */
.page-header {
  margin-top: 70px;
  padding: var(--space-12) 0;
  background: linear-gradient(135deg, var(--color-primary), rgba(255, 204, 225, 0.2));
  text-align: center;
}

.page-header h1 {
  color: var(--color-accent-dark);
}

.page-header p {
  font-size: var(--text-xl);
}

/* Service Items */
.service-item {
  margin-bottom: var(--space-12);
}

.service-list {
  list-style: none;
  margin: var(--space-4) 0;
}

.service-list li {
  padding: var(--space-2) 0;
  padding-left: var(--space-4);
  position: relative;
  color: var(--color-text);
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-icon {
  font-size: 2.5rem;
  color: white;
}

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

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: var(--text-2xl);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lightbox-close {
  top: var(--space-4);
  right: var(--space-4);
}

.lightbox-prev {
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-title {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: var(--text-lg);
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--text-base);
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 204, 225, 0.1);
}

.form-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
}

.success-message {
  display: none;
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: white;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  z-index: 150;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  animation: slideDown 0.5s ease;
}

.success-message.show {
  display: block;
}

.success-message a {
  color: white;
  text-decoration: underline;
}

/* Contact Info */
.contact-info {
  padding: var(--space-4) 0;
}

.info-block {
  margin-bottom: var(--space-6);
}

.info-block h3 {
  color: var(--color-accent-dark);
  margin-bottom: var(--space-2);
}

.contact-link {
  font-weight: 600;
  font-size: var(--text-lg);
}

.specialty-list {
  list-style: none;
  padding: 0;
}

.specialty-list li {
  padding: var(--space-2) 0;
  color: var(--color-text);
}

.specialty-list li::before {
  content: '•';
  color: var(--color-accent);
  margin-right: var(--space-2);
  font-weight: bold;
}

/* Process Cards */
.process-card {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 204, 225, 0.3);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

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

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: white;
  border-radius: 50%;
  font-size: var(--text-2xl);
  font-weight: 700;
  margin: 0 auto var(--space-3);
}

/* Credential Cards */
.credential-card {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 204, 225, 0.3);
  box-shadow: var(--shadow-sm);
}

.credential-card h3 {
  color: var(--color-accent-dark);
}

/* Philosophy List */
.philosophy-list {
  list-style: none;
  margin: var(--space-4) 0;
}

.philosophy-list li {
  padding: var(--space-3) 0;
  padding-left: var(--space-4);
  position: relative;
  color: var(--color-text);
}

.philosophy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* FAQ */
.faq-container {
  display: grid;
  gap: var(--space-4);
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  color: var(--color-accent-dark);
  cursor: pointer;
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
}

.faq-answer {
  color: var(--color-text-muted);
  margin: 0;
}

/* Footer */
.footer {
  background: var(--color-neutral-900);
  color: white;
  padding: var(--space-8) 0 var(--space-4);
  margin-top: var(--space-12);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-links {
  display: flex;
  gap: var(--space-4);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: white;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: var(--space-4);
  right: var(--space-4);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: white;
  border: none;
  border-radius: 50%;
  font-size: var(--text-2xl);
  cursor: pointer;
  transition: all var(--transition-base);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}

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

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-4);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
  }

  .nav-menu.active {
    max-height: 500px;
  }

  .nav-menu a {
    display: block;
    padding: var(--space-2) 0;
  }

  .hero-headline {
    font-size: var(--text-4xl);
  }

  .hero-sub {
    font-size: var(--text-base);
  }

  h1 {
    font-size: var(--text-5xl);
  }

  h2 {
    font-size: var(--text-3xl);
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .grid-2.reverse {
    direction: ltr;
  }

  .contact-form-wrapper {
    padding: var(--space-4);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--space-3);
  }
}

@media (max-width: 480px) {
  :root {
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
  }

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

  .container {
    padding: 0 var(--space-3);
  }

  h1 {
    font-size: var(--text-4xl);
  }

  h2 {
    font-size: var(--text-2xl);
  }

  h3 {
    font-size: var(--text-xl);
  }

  .hero-headline {
    font-size: var(--text-3xl);
  }

  .hero {
    min-height: 70vh;
  }

  .btn-primary {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
  }

  .btn-large {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
  }

  .card {
    padding: var(--space-4);
  }

  .page-header {
    padding: var(--space-6) 0;
  }

  .page-header h1 {
    font-size: var(--text-3xl);
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: var(--text-xl);
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--space-2);
  }
}

/* ============================================================
   Scrollytell Hero (canvas frame-sequence pinned to viewport)
   ============================================================ */
.scrollytell {
  position: relative;
  height: 550vh;
  background: #0a0a0a;
  padding: 0;
  margin: 0;
}

.scrollytell-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
}

.scrollytell-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.scrollytell-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0) 28%,
      rgba(0, 0, 0, 0) 72%,
      rgba(0, 0, 0, 0.65) 100%);
}

.scrollytell-captions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 0 var(--space-4);
}

.scrollytell-caption {
  position: absolute;
  max-width: 820px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  pointer-events: none;
  padding: 0 var(--space-3);
}

.scrollytell-caption h1,
.scrollytell-caption h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
  margin: 0 0 var(--space-3);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.scrollytell-caption h1 {
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
}

.scrollytell-caption h2 {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
}

.scrollytell-caption p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  margin: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.scrollytell-caption-cta {
  pointer-events: auto;
}

.scrollytell-cta-buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.scrollytell-caption-cta .btn-secondary {
  color: white;
  border-color: white;
  background: transparent;
}

.scrollytell-caption-cta .btn-secondary:hover {
  background: white;
  color: var(--color-accent-dark);
}

.scrollytell-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-warm) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 600ms ease;
}

.scrollytell-loading.hide {
  opacity: 0;
  pointer-events: none;
}

.scrollytell-loading-bar {
  width: min(320px, 60vw);
  height: 3px;
  background: rgba(225, 149, 171, 0.2);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.scrollytell-loading-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: var(--radius-full);
  transition: width 200ms ease;
}

.scrollytell-loading-label {
  margin-top: var(--space-3);
  color: var(--color-accent-dark);
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.06em;
  font-size: var(--text-base);
  margin-bottom: 0;
}

.scrollytell-scrollhint {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: var(--text-xs);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 400ms ease;
}

.scrollytell-scrollhint::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  display: block;
  animation: scrollytell-bob 1.8s ease-in-out infinite;
}

.scrollytell-scrollhint.hide {
  opacity: 0;
}

@keyframes scrollytell-bob {
  0%, 100% { transform: translateY(-4px); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Scrollytell sits at top of page — no navbar offset needed for it */
.scrollytell + .section,
.scrollytell + section {
  margin-top: 0;
}

@media (max-width: 768px) {
  .scrollytell {
    height: 450vh;
  }
  .scrollytell-caption h1 { font-size: clamp(2.25rem, 9vw, 3.25rem); }
  .scrollytell-caption h2 { font-size: clamp(2rem, 8vw, 3rem); }
  .scrollytell-caption p { font-size: 0.95rem; }
  .scrollytell-cta-buttons { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  .scrollytell {
    height: auto;
  }
  .scrollytell-pin {
    position: relative;
    height: 70vh;
  }
  .scrollytell-scrollhint::after {
    animation: none;
  }
}

/* Services Preview Cards (Homepage) */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.service-preview-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 204, 225, 0.3);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

.service-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.service-preview-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

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

.service-preview-body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.service-preview-body h3 {
  color: var(--color-text);
  margin: 0;
  font-size: var(--text-xl);
}

.service-preview-body p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: var(--text-sm);
  flex: 1;
}

.service-preview-cta {
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-top: var(--space-2);
}

/* ============================================================
   Site Footer (rich footer used on all pages)
   ============================================================ */
.site-footer {
  background: var(--color-neutral-900);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-12) 0 var(--space-4);
  margin-top: var(--space-12);
  font-family: 'Inter', sans-serif;
}

.site-footer-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
}

@media (min-width: 900px) {
  .site-footer-grid {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-12);
  }
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 420px;
}

.site-footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  line-height: 1;
}

.site-footer-logo:hover {
  color: var(--color-accent);
  opacity: 0.85;
}

.site-footer-tagline {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--text-base);
  margin: 0;
  font-weight: 500;
}

.site-footer-description {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-sm);
  line-height: 1.65;
  margin: 0;
  max-width: 32rem;
}

.site-footer-socials {
  list-style: none;
  display: flex;
  gap: var(--space-2);
  margin: var(--space-2) 0 0;
  padding: 0;
}

.site-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition-base);
}

.site-footer-socials a:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-2px);
}

.site-footer-socials svg {
  display: block;
}

.site-footer-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  flex: 1;
  max-width: 640px;
}

@media (max-width: 640px) {
  .site-footer-sections {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 420px) {
  .site-footer-sections {
    grid-template-columns: 1fr;
  }
}

.site-footer-section h3 {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  font-weight: 700;
  color: white;
  margin: 0 0 var(--space-3);
  letter-spacing: 0.01em;
}

.site-footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.site-footer-section ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-base);
}

.site-footer-section ul a:hover {
  color: var(--color-accent);
}

.site-footer-meta {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--text-sm);
}

.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 700px) {
  .site-footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
  }
}

.site-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

@media (min-width: 480px) {
  .site-footer-legal {
    flex-direction: row;
    gap: var(--space-4);
  }
}

.site-footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  transition: color var(--transition-base);
}

.site-footer-legal a:hover {
  color: var(--color-accent);
}
