/* ============================================
       CSS CUSTOM PROPERTIES
       ============================================ */
    :root {
      --color-primary:    #d781b2;
      --color-secondary:  #d3529c;
      --color-accent:     #98d9a5;
      --color-bg:         #f9f6f8;
      --color-surface:    #f1e9ee;
      --color-text:       #2a1d25;
      --color-text-muted: #8c697d;

      --font-heading: 'Playfair Display', serif;
      --font-body:    'Nunito', sans-serif;

      --radius-sm:  6px;
      --radius-md:  16px;
      --radius-lg:  28px;
      --radius-xl:  48px;
      --radius-blob: 30% 70% 70% 30% / 30% 30% 70% 70%;

      --shadow-sm:  0 2px 8px rgba(215,129,178,.12), 0 1px 3px rgba(0,0,0,.06);
      --shadow-md:  0 8px 32px rgba(215,129,178,.18);
      --shadow-lg:  0 24px 64px rgba(215,129,178,.22);

      --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      --max-width: 1200px;
    }

    /* ============================================
       RESET & BASE
       ============================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      background-color: var(--color-bg);
      color: var(--color-text);
      line-height: 1.7;
      overflow-x: hidden;
    }
    img, video { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      line-height: 1.2;
      font-weight: 800;
    }

    /* ============================================
       SCROLL ANIMATION ENGINE
       ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
    }
    .reveal.from-left  { transform: translateX(-50px); }
    .reveal.from-right { transform: translateX(50px); }
    .reveal.scale-in   { transform: scale(0.92); }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0) translateX(0) scale(1);
    }

    /* ============================================
       LAYOUT UTILITIES
       ============================================ */
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 28px;
    }
    .section { padding: 100px 0; position: relative; }
    .section-label {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: 14px;
      background: color-mix(in srgb, var(--color-accent) 12%, transparent);
      padding: 5px 14px;
      border-radius: var(--radius-xl);
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 20px;
      color: var(--color-text);
    }
    .section-subtitle {
      font-size: 1.1rem;
      color: var(--color-text-muted);
      max-width: 580px;
      line-height: 1.8;
    }

    /* ============================================
       ORGANIC BLOBS & DECORATIONS
       ============================================ */
    .blob {
      position: absolute;
      border-radius: var(--radius-blob);
      pointer-events: none;
      z-index: 0;
    }
    .blob-primary { background: color-mix(in srgb, var(--color-primary) 10%, transparent); }
    .blob-accent  { background: color-mix(in srgb, var(--color-accent) 12%, transparent); }

    .dots-pattern {
      position: absolute;
      width: 200px;
      height: 200px;
      background-image: radial-gradient(circle, var(--color-primary) 1.5px, transparent 1.5px);
      background-size: 20px 20px;
      opacity: 0.25;
      pointer-events: none;
    }

    /* ============================================
       WAVE DIVIDER
       ============================================ */
    .wave-bottom {
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
      z-index: 1;
    }
    .wave-top {
      position: absolute;
      top: -2px;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
      z-index: 1;
    }

    /* ============================================
       BUTTONS
       ============================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: var(--radius-xl);
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    }
    .btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .btn:active { transform: translateY(0); }
    .btn-primary { background: var(--color-primary); color: #fff; }
    .btn-primary:hover { background: var(--color-secondary); }
    .btn-outline {
      background: transparent;
      border: 2px solid var(--color-primary);
      color: var(--color-primary);
    }
    .btn-outline:hover { background: var(--color-primary); color: #fff; }

    /* ============================================
       NAVBAR
       ============================================ */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 20px 0;
      transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
    }
    .navbar.scrolled {
      background: color-mix(in srgb, var(--color-bg) 92%, transparent);
      backdrop-filter: blur(20px);
      box-shadow: 0 2px 20px rgba(215,129,178,.1);
      padding: 12px 0;
    }
    .navbar .container { display: flex; align-items: center; justify-content: space-between; }
    .navbar-logo {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--color-primary);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .navbar-logo span { font-size: 1.2rem; }
    .navbar-links { display: flex; gap: 36px; }
    .navbar-links a {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--color-text-muted);
      transition: color 0.2s;
      position: relative;
    }
    .navbar-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0; right: 0;
      height: 2px;
      background: var(--color-primary);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform 0.25s;
    }
    .navbar-links a:hover { color: var(--color-primary); }
    .navbar-links a:hover::after { transform: scaleX(1); }
    .navbar-toggle {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 4px;
    }
    .navbar-toggle span {
      display: block; width: 24px; height: 2px;
      background: var(--color-text); border-radius: 2px; transition: all 0.3s;
    }

    /* ============================================
       HERO
       ============================================ */
    .hero {
      min-height: 100vh;
      padding-bottom: 160px;
      display: flex;
      align-items: center;
      padding-top: 90px;
      position: relative;
      overflow: hidden;
      background: var(--color-bg);
    }
    .hero-blob-1 {
      width: 520px; height: 480px;
      top: -80px; right: -100px;
      background: color-mix(in srgb, var(--color-primary) 12%, transparent);
      border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
      animation: blobFloat 9s ease-in-out infinite;
      overflow: hidden;
    }
    .hero-blob-2 {
      width: 300px; height: 280px;
      bottom: 10%; left: -60px;
      background: color-mix(in srgb, var(--color-accent) 14%, transparent);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      animation: blobFloat 12s ease-in-out infinite reverse;
    }
    .hero-blob-3 {
      width: 180px; height: 180px;
      top: 20%; left: 40%;
      background: color-mix(in srgb, var(--color-secondary) 8%, transparent);
      border-radius: 50%;
      animation: blobFloat 7s ease-in-out infinite 2s;
      overflow: hidden;
    }
    @keyframes blobFloat {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      33% { transform: translate(12px, -18px) rotate(6deg); }
      66% { transform: translate(-8px, 12px) rotate(-4deg); }
    }

    .hero .container { position: relative; z-index: 2; }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: var(--radius-xl);
      background: color-mix(in srgb, var(--color-primary) 12%, transparent);
      color: var(--color-primary);
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 24px;
    }
    .hero-title {
      font-size: clamp(2.6rem, 5.5vw, 4.2rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .hero-title .highlight {
      background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-description {
      font-size: 1.15rem;
      color: var(--color-text-muted);
      margin-bottom: 40px;
      line-height: 1.8;
      max-width: 500px;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 56px;
      padding-top: 40px;
      border-top: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
      flex-wrap: wrap;
    }
    .hero-stat-value {
      font-family: var(--font-heading);
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--color-primary);
      display: block;
    }
    .hero-stat-label {
      font-size: 0.85rem;
      color: var(--color-text-muted);
      margin-top: 2px;
    }

    /* Hero visual side */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-medallion-display {
      width: 380px;
      height: 380px;
      border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
      background: linear-gradient(135deg, var(--color-surface) 0%, color-mix(in srgb, var(--color-primary) 15%, white) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg), inset 0 2px 16px rgba(255,255,255,.5);
      position: relative;
      animation: morphBlob 8s ease-in-out infinite;
    }
    @keyframes morphBlob {
      0%, 100% { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; }
      50% { border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%; }
    }
    .hero-medallion-emoji {
      font-size: 5rem;
      margin-bottom: 12px;
      filter: drop-shadow(0 4px 12px rgba(215,129,178,.4));
      animation: floatBadge 3s ease-in-out infinite;
    }
    @keyframes floatBadge {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .hero-medallion-text {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      color: var(--color-primary);
      font-weight: 600;
    }
    .hero-medallion-sub {
      font-size: 0.85rem;
      color: var(--color-text-muted);
      margin-top: 4px;
    }
    .hero-badge-float {
      position: absolute;
      background: white;
      border-radius: var(--radius-md);
      padding: 12px 16px;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      font-weight: 600;
    }
    .hero-badge-float.badge-1 {
      top: 10%;
      right: -10%;
      color: var(--color-text);
      animation: floatBadge 4s ease-in-out infinite 0.5s;
    }
    .hero-badge-float.badge-2 {
      bottom: 15%;
      left: -10%;
      color: var(--color-text);
      animation: floatBadge 4s ease-in-out infinite 1.5s;
    }
    .hero-badge-float .badge-icon { font-size: 1.4rem; }

    /* Hero wave */
    .hero-wave {
      position: absolute;
      bottom: -2px; left: 0; width: 100%;
      overflow: hidden; line-height: 0; z-index: 1;
    }

    /* ============================================
       CATEGORIES / SAISONS SECTION
       ============================================ */
    .categories {
      background: var(--color-surface);
      padding: 100px 0 120px;
      position: relative;
      overflow: hidden;
    }
    .categories-blob {
      width: 350px; height: 320px;
      top: -80px; right: -80px;
      background: color-mix(in srgb, var(--color-accent) 10%, transparent);
      border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
    }
    .categories-header { text-align: center; margin-bottom: 64px; }
    .categories-header .section-subtitle { margin: 0 auto; }

    .seasons-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative; z-index: 1;
      align-items: start;
    }
    .season-card {
      background: white;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .season-card:hover {
      transform: translateY(-10px) rotate(0.6deg);
      box-shadow: var(--shadow-lg);
    }
    .season-card:nth-child(even):hover {
      transform: translateY(-10px) rotate(-0.6deg);
    }
    /* Organic stagger */
    .seasons-grid .season-card:nth-child(2) { margin-top: 28px; }
    .seasons-grid .season-card:nth-child(4) { margin-top: 28px; }

    .season-cover {
      position: relative;
      overflow: hidden;
    }
    .img-slot.season-img-slot {
      position: relative;
      inset: unset;
      width: 100%;
      aspect-ratio: 3/2;
      border-radius: 0;
      border: none;
      border-bottom: 2px dashed color-mix(in srgb, var(--color-primary) 25%, transparent);
    }
    .season-badge {
      position: absolute;
      bottom: 10px; left: 12px;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(8px);
      border-radius: var(--radius-xl);
      padding: 5px 13px;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--color-text);
      box-shadow: var(--shadow-sm);
    }
    /* Season accent top bar */
    .season-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 3px; z-index: 1;
    }
    .season-card.hiver::before  { background: linear-gradient(90deg, #93c5fd, #bfdbfe); }
    .season-card.printemps::before { background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); }
    .season-card.ete::before    { background: linear-gradient(90deg, #fbbf24, #fde68a); }
    .season-card.automne::before { background: linear-gradient(90deg, #f97316, #fbbf24); }

    .season-info { padding: 18px 20px 22px; }
    .season-info h3 {
      font-size: 1.1rem;
      margin-bottom: 8px;
      color: var(--color-text);
    }
    .season-info p {
      font-size: 0.88rem;
      color: var(--color-text-muted);
      line-height: 1.65;
      margin-bottom: 14px;
    }
    .season-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--color-primary);
      transition: color 0.2s, gap 0.2s;
    }
    .season-link:hover { color: var(--color-secondary); gap: 10px; }

    /* ============================================
       ABOUT SECTION
       ============================================ */
    .about {
      background: var(--color-bg);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    .about-dots {
      top: 40px; right: 60px;
    }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-visual {
      position: relative;
    }
    .about-photo-frame {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
      background: linear-gradient(145deg,
        color-mix(in srgb, var(--color-primary) 20%, white),
        color-mix(in srgb, var(--color-accent) 20%, white)
      );
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }
    .about-photo-inner {
      font-size: 5rem;
      filter: drop-shadow(0 4px 16px rgba(215,129,178,.3));
    }
    .about-photo-deco {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 100px;
      height: 100px;
      background: color-mix(in srgb, var(--color-accent) 30%, white);
      border-radius: 50%;
    }
    .about-badge-count {
      position: absolute;
      top: -20px;
      left: -20px;
      background: white;
      border-radius: var(--radius-md);
      padding: 16px 20px;
      box-shadow: var(--shadow-md);
      text-align: center;
    }
    .about-badge-count strong {
      font-family: var(--font-heading);
      font-size: 2rem;
      color: var(--color-primary);
      display: block;
    }
    .about-badge-count span {
      font-size: 0.8rem;
      color: var(--color-text-muted);
    }
    .about-content h2 { margin-bottom: 20px; }
    .about-content p {
      color: var(--color-text-muted);
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .about-values {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin: 32px 0;
    }
    .about-value-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px;
      background: var(--color-surface);
      border-radius: var(--radius-md);
    }
    .about-value-icon {
      font-size: 1.5rem;
      flex-shrink: 0;
    }
    .about-value-text h4 {
      font-size: 1rem;
      font-family: var(--font-body);
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 4px;
    }
    .about-value-text p {
      font-size: 0.9rem;
      color: var(--color-text-muted);
      margin: 0;
    }

    /* ============================================
       PROCESS SECTION
       ============================================ */
    .process {
      background: var(--color-surface);
      padding: 100px 0 120px;
      position: relative;
      overflow: hidden;
    }
    .process-header { text-align: center; margin-bottom: 64px; }
    .process-header .section-subtitle { margin: 0 auto; }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      position: relative;
      z-index: 1;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 52px; left: 16.6%; right: 16.6%;
      height: 2px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
      z-index: 0;
    }
    .process-step {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .process-step-number {
      width: 100px;
      height: 100px;
      border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
      background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      box-shadow: var(--shadow-md);
      animation: morphBlob 7s ease-in-out infinite;
    }
    .process-step:nth-child(2) .process-step-number { animation-delay: 2s; }
    .process-step:nth-child(3) .process-step-number { animation-delay: 4s; }
    .process-step-icon { font-size: 2.2rem; }
    .process-step h3 {
      font-size: 1.2rem;
      margin-bottom: 12px;
      color: var(--color-text);
    }
    .process-step p {
      font-size: 0.95rem;
      color: var(--color-text-muted);
      line-height: 1.7;
    }
    .process-step-label {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--color-primary);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: block;
    }

    /* ============================================
       TESTIMONIALS SECTION
       ============================================ */
    .testimonials {
      background: var(--color-bg);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    .testimonials-header { text-align: center; margin-bottom: 64px; }
    .testimonials-header .section-subtitle { margin: 0 auto; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
      align-items: stretch;
    }
    .testimonial-card {
      display: flex;
      flex-direction: column;
      background: white;
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative;
    }
    .testimonial-card:hover {
      transform: translateY(-6px) rotate(0.5deg);
      box-shadow: var(--shadow-lg);
    }
    .testimonial-card:nth-child(2):hover {
      transform: translateY(-6px) rotate(-0.5deg);
    }
    .testimonial-quote {
      font-size: 3rem;
      color: var(--color-primary);
      opacity: 0.3;
      line-height: 1;
      margin-bottom: 12px;
      font-family: var(--font-heading);
    }
    .testimonial-text {
      font-size: 1rem;
      color: var(--color-text);
      line-height: 1.8;
      margin-bottom: 24px;
      font-style: italic;
    }
    .testimonial-stars {
      font-size: 1rem;
      margin-bottom: 16px;
      color: #f5a623;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .testimonial-avatar {
      width: 50px; height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .testimonial-name {
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--color-text);
    }
    .testimonial-role {
      font-size: 0.82rem;
      color: var(--color-text-muted);
    }
    .testimonial-text { flex: 1; }

    /* ============================================
       PORTFOLIO SECTION
       ============================================ */
    .portfolio {
      background: var(--color-surface);
      padding: 100px 0 120px;
      position: relative;
      overflow: hidden;
    }
    .portfolio-header { text-align: center; margin-bottom: 64px; }
    .portfolio-header .section-subtitle { margin: 0 auto; }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative; z-index: 1;
      align-items: stretch;
    }
    .portfolio-item {
      display: flex;
      flex-direction: column;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: white;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
      cursor: pointer;
    }
    .portfolio-item:hover {
      transform: translateY(-8px) rotate(0.8deg);
      box-shadow: var(--shadow-lg);
    }
    .portfolio-item:nth-child(even):hover {
      transform: translateY(-8px) rotate(-0.8deg);
    }
    .portfolio-thumb {
      aspect-ratio: 4/3;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      position: relative;
      overflow: hidden;
    }
    .portfolio-thumb-1 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
    .portfolio-thumb-2 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
    .portfolio-thumb-3 { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
    .portfolio-thumb-4 { background: linear-gradient(135deg, #fff8e1, #ffecb3); }
    .portfolio-thumb-5 { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
    .portfolio-thumb-6 { background: linear-gradient(135deg, #fbe9e7, #ffccbc); }
    .portfolio-info { padding: 20px; flex: 1; }
    .portfolio-info h3 {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      color: var(--color-text);
      margin-bottom: 6px;
    }
    .portfolio-info p {
      font-size: 0.88rem;
      color: var(--color-text-muted);
    }
    .portfolio-tag {
      display: inline-block;
      margin-top: 8px;
      font-size: 0.76rem;
      font-weight: 700;
      color: var(--color-primary);
      background: color-mix(in srgb, var(--color-primary) 10%, transparent);
      padding: 3px 10px;
      border-radius: var(--radius-xl);
    }

    .portfolio-cta {
      text-align: center;
      margin-top: 48px;
    }

    /* ============================================
       PRICING SECTION
       ============================================ */
    .pricing {
      background: var(--color-bg);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    .pricing-blob {
      width: 400px; height: 380px;
      bottom: -100px; left: -80px;
      background: color-mix(in srgb, var(--color-accent) 10%, transparent);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    .pricing-header { text-align: center; margin-bottom: 64px; }
    .pricing-header .section-subtitle { margin: 0 auto; }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      align-items: start;
      position: relative; z-index: 1;
    }
    .pricing-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative;
    }
    .pricing-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }
    .pricing-card.featured {
      background: linear-gradient(145deg, var(--color-primary), var(--color-secondary));
      color: white;
      transform: scale(1.05);
      box-shadow: var(--shadow-lg);
    }
    .pricing-card.featured:hover { transform: scale(1.05) translateY(-8px); }
    .pricing-badge {
      position: absolute;
      top: -14px;
      left: 50%; transform: translateX(-50%);
      background: var(--color-accent);
      color: var(--color-text);
      font-size: 0.76rem;
      font-weight: 700;
      padding: 5px 16px;
      border-radius: var(--radius-xl);
      white-space: nowrap;
    }
    .pricing-name {
      font-family: var(--font-heading);
      font-size: 1.3rem;
      margin-bottom: 8px;
    }
    .pricing-card.featured .pricing-name { color: white; }
    .pricing-desc {
      font-size: 0.9rem;
      opacity: 0.8;
      margin-bottom: 24px;
      line-height: 1.6;
    }
    .pricing-price {
      font-family: var(--font-heading);
      font-size: 3rem;
      font-weight: 800;
      color: var(--color-primary);
      margin-bottom: 4px;
    }
    .pricing-card.featured .pricing-price { color: white; }
    .pricing-price span { font-size: 1.2rem; vertical-align: super; font-size: 1.4rem; }
    .pricing-unit {
      font-size: 0.85rem;
      color: var(--color-text-muted);
      margin-bottom: 32px;
    }
    .pricing-card.featured .pricing-unit { color: rgba(255,255,255,.7); }
    .pricing-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }
    .pricing-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.92rem;
    }
    .pricing-feature::before {
      content: '✓';
      width: 22px; height: 22px;
      border-radius: 50%;
      background: color-mix(in srgb, var(--color-accent) 20%, transparent);
      color: var(--color-accent);
      font-weight: 700;
      font-size: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .pricing-card.featured .pricing-feature::before {
      background: rgba(255,255,255,.2);
      color: white;
    }
    .pricing-card .btn-primary { width: 100%; justify-content: center; }
    .pricing-card.featured .btn-primary {
      background: white;
      color: var(--color-primary);
    }
    .pricing-card.featured .btn-primary:hover {
      background: var(--color-accent);
      color: var(--color-text);
    }

    /* ============================================
       FAQ SECTION
       ============================================ */
    .faq {
      background: var(--color-surface);
      padding: 100px 0 120px;
      position: relative;
      overflow: hidden;
    }
    .faq-header { text-align: center; margin-bottom: 64px; }
    .faq-header .section-subtitle { margin: 0 auto; }
    .faq-list {
      max-width: 780px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .faq-item {
      background: white;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-text);
      transition: color 0.2s;
      gap: 16px;
    }
    .faq-question:hover { color: var(--color-primary); }
    .faq-icon {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: color-mix(in srgb, var(--color-primary) 12%, transparent);
      color: var(--color-primary);
      font-size: 1.2rem;
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s, background 0.2s;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--color-primary);
      color: white;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
      padding: 0 28px;
    }
    .faq-item.open .faq-answer {
      max-height: 300px;
      padding: 0 28px 22px;
    }
    .faq-answer p {
      font-size: 0.95rem;
      color: var(--color-text-muted);
      line-height: 1.8;
    }

    /* ============================================
       CONTACT CTA BANNER
       ============================================ */
    .contact-banner {
      background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .contact-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .contact-banner .container { position: relative; z-index: 1; }
    .contact-banner h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      color: white;
      margin-bottom: 16px;
    }
    .contact-banner p {
      font-size: 1.15rem;
      color: rgba(255,255,255,.85);
      margin-bottom: 36px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }
    .contact-banner .btn {
      background: white;
      color: var(--color-primary);
      font-weight: 700;
    }
    .contact-banner .btn:hover {
      background: var(--color-accent);
      color: var(--color-text);
    }

    /* ============================================
       FOOTER
       ============================================ */
    .footer {
      background: #1e1219;
      color: rgba(255,255,255,.7);
      padding: 72px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }
    .footer-brand-name {
      font-family: var(--font-heading);
      font-size: 1.4rem;
      font-weight: 800;
      color: white;
      margin-bottom: 14px;
    }
    .footer-brand-desc {
      font-size: 0.9rem;
      line-height: 1.7;
      max-width: 280px;
      margin-bottom: 24px;
    }
    .footer-social {
      display: flex;
      gap: 12px;
    }
    .footer-social a {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: background 0.2s, transform 0.2s;
    }
    .footer-social a:hover {
      background: var(--color-primary);
      transform: translateY(-2px);
    }
    .footer-col-title {
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: white;
      margin-bottom: 20px;
    }
    .footer-col a {
      display: block;
      font-size: 0.9rem;
      margin-bottom: 10px;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--color-accent); }
    .footer-bottom {
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 0.85rem;
    }
    .footer-bottom a { transition: color 0.2s; }
    .footer-bottom a:hover { color: var(--color-accent); }

    /* ============================================
       IMAGE PLACEHOLDERS
       ============================================ */
    .img-slot {
      background: color-mix(in srgb, var(--color-primary) 6%, white);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }
    .img-slot-icon {
      font-size: 1.2rem;
      opacity: 0.55;
      pointer-events: none;
    }
    .img-slot-label {
      font-family: var(--font-body);
      font-size: 0.66rem;
      font-weight: 700;
      color: var(--color-primary);
      opacity: 0.75;
      text-align: center;
      line-height: 1.4;
      pointer-events: none;
    }
    /* When img has a real src, hide the placeholder content and show the image */
    .img-slot > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border: none;
    }

    /* Hide image placeholder when no src provided */
    .img-slot > img[src=""],
    .hero-medallion-img-slot > img[src=""] { display: none; }

    
    .img-slot > img[src]:not([src=""]) ~ .img-slot-icon,
    .img-slot > img[src]:not([src=""]) ~ .img-slot-label {
      display: none;
    }

    /* Logo slot */
    .logo-slot {
      border-radius: 10px;
    }
    .logo-fallback-text {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--color-primary);
    }

    /* Hero medallion: image fills the whole morphing blob */
    .hero-medallion-display {
      overflow: hidden;
    }
    .hero-medallion-img-slot {
      position: absolute;
      inset: 0;
      background: var(--color-surface);
      border: 2px dashed var(--color-primary);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-medallion-img-slot::after {
      content: '\1F4F7';
      font-size: 2.5rem;
      opacity: 0.4;
      pointer-events: none;
    }
    .hero-medallion-img-slot:has(> img:not([src=""]))::after { display: none; }
    .hero-medallion-img-slot > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    
    .hero-medallion-img-slot > img[src]:not([src=""]) ~ .img-slot-icon,
    .hero-medallion-img-slot > img[src]:not([src=""]) ~ .img-slot-label { display: none; }

    /* Badge image slot (small round) */
    .badge-img-slot {
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 32px; }
      .hero-visual { display: none; }
      .hero-content { text-align: center; }
      .hero-actions { justify-content: center; }
      .hero-description { margin: 0 auto 32px; }
      .about-inner { grid-template-columns: 1fr; gap: 40px; }
      .about-visual { display: none; }
      .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
      .pricing-card.featured { transform: scale(1); }
      .pricing-card.featured:hover { transform: translateY(-8px); }
      .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .process-steps { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
      .process-steps::before { display: none; }
      .seasons-grid { grid-template-columns: repeat(2, 1fr); }
      .seasons-grid .season-card:nth-child(2),
      .seasons-grid .season-card:nth-child(4) { margin-top: 0; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .section { padding: 64px 0; }
      .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
      .navbar-links { display: none; }
      .navbar-links.open {
        display: flex; flex-direction: column; position: fixed;
        top: 64px; left: 0; right: 0; background: var(--color-bg);
        padding: 24px; gap: 24px; box-shadow: var(--shadow-lg); z-index: 999;
      }
      .navbar-toggle { display: flex; }
      .hero { padding-bottom: 80px; padding-top: 90px; min-height: auto; }
      .hero-blob-1, .hero-blob-2, .hero-blob-3 { display: none; }
      .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
      .hero-tag { margin-bottom: 16px; }
      .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
      .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
      .portfolio-grid { grid-template-columns: 1fr; }
      .seasons-grid { grid-template-columns: 1fr; }
      .seasons-grid .season-card:nth-child(2),
      .seasons-grid .season-card:nth-child(4) { margin-top: 0; }
      .faq-question { font-size: 0.95rem; padding: 18px 20px; }
      .faq-item.open .faq-answer { padding: 0 20px 18px; }
      .season-img-slot { aspect-ratio: 2/1; height: auto; }
      .portfolio-thumb { aspect-ratio: 16/9; height: auto; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-social { justify-content: center; }
      .btn { padding: 13px 24px; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .section { padding: 48px 0; }
      .hero-title { font-size: clamp(1.8rem, 10vw, 2.4rem); }
      .hero-description { font-size: 1rem; }
      .seasons-grid, .portfolio-grid, .testimonials-grid { grid-template-columns: 1fr; }
      .section-label { font-size: 0.7rem; }
    }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .hero-blob-1, .hero-blob-2, .hero-blob-3,
      .hero-medallion-display, .hero-medallion-emoji,
      .process-step-number { animation: none; }
    }

/* ============================================
   SECONDARY PAGES — PAGE HERO
   ============================================ */
/* PAGE HERO */
    .page-hero {
      background: var(--color-surface);
      padding: 160px 0 100px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .page-hero-blob-1 {
      width: 450px; height: 400px;
      top: -100px; right: -100px;
      background: color-mix(in srgb, var(--color-primary) 10%, transparent);
      border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
    }
    .page-hero-blob-2 {
      width: 280px; height: 250px;
      bottom: -60px; left: -60px;
      background: color-mix(in srgb, var(--color-accent) 12%, transparent);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    .page-hero .container { position: relative; z-index: 1; }
    .page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; }
    .page-hero p { font-size: 1.2rem; color: var(--color-text-muted); max-width: 580px; margin: 0 auto; line-height: 1.8; }

    /* STORY SECTION */
    .story { background: var(--color-bg); overflow: hidden; }
    .story-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .story-visual { position: relative; }
    .story-photo {
      width: 100%; aspect-ratio: 1;
      border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
      background: linear-gradient(145deg,
        color-mix(in srgb, var(--color-primary) 20%, white),
        color-mix(in srgb, var(--color-accent) 20%, white)
      );
      display: flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow-lg); font-size: 6rem;
      animation: morphBlob 9s ease-in-out infinite;
      position: relative; overflow: hidden;
    }

    /* Image placeholder system */
    /* .img-slot base defined above */
    .img-slot > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
    
    .img-slot:has(> img[src]:not([src=""])) .img-slot-icon,
    .img-slot:has(> img[src]:not([src=""])) .img-slot-label { display: none; }
    .img-slot-icon { font-size: 2.5rem; }
    .img-slot-label { font-size: 0.72rem; font-family: var(--font-body); color: var(--color-text-muted); opacity: .7; text-align: center; padding: 0 12px; }
    @keyframes morphBlob {
      0%, 100% { border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%; }
      50%       { border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%; }
    }
    .story-badge {
      position: absolute; top: -16px; right: -16px;
      background: white; border-radius: var(--radius-md);
      padding: 16px 20px; box-shadow: var(--shadow-md); text-align: center;
    }
    .story-badge strong { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-primary); display: block; }
    .story-badge span { font-size: 0.8rem; color: var(--color-text-muted); }
    .story-deco {
      position: absolute; bottom: -24px; left: -24px;
      width: 120px; height: 120px;
      background: color-mix(in srgb, var(--color-accent) 20%, white);
      border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
    }
    .story-content p { color: var(--color-text-muted); line-height: 1.9; margin-bottom: 20px; font-size: 1.05rem; }
    .story-content h2 { margin-bottom: 20px; }

    /* VALUES */
    .values { background: var(--color-surface); overflow: hidden; }
    .values-header { text-align: center; margin-bottom: 64px; }
    .values-header .section-subtitle { margin: 0 auto; }
    .values-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
      position: relative; z-index: 1; align-items: stretch;
    }
    .value-card {
      display: flex; flex-direction: column;
      background: white; border-radius: var(--radius-lg); padding: 40px 28px;
      box-shadow: var(--shadow-sm); text-align: center;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .value-card:hover { transform: translateY(-8px) rotate(0.5deg); box-shadow: var(--shadow-lg); }
    .value-card:nth-child(even):hover { transform: translateY(-8px) rotate(-0.5deg); }
    .value-icon {
      font-size: 3.5rem; margin-bottom: 20px; display: block;
      filter: drop-shadow(0 2px 8px rgba(215,129,178,.3));
    }
    .value-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
    .value-card p { font-size: 0.93rem; color: var(--color-text-muted); line-height: 1.7; flex: 1; }

    /* ATELIER */
    .atelier { background: var(--color-bg); overflow: hidden; }
    .atelier-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .atelier-content h2 { margin-bottom: 20px; }
    .atelier-content p { color: var(--color-text-muted); line-height: 1.9; margin-bottom: 20px; }
    .atelier-materials {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0;
    }
    .material-chip {
      display: flex; align-items: center; gap: 10px;
      background: var(--color-surface); border-radius: var(--radius-md);
      padding: 12px 16px; font-size: 0.9rem; font-weight: 600;
    }
    .material-chip span { font-size: 1.4rem; }
    .atelier-visual { position: relative; }
    .atelier-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    }
    .atelier-grid-item {
      border-radius: var(--radius-md);
      display: flex; flex-direction: column; align-items: center;
      justify-content: center; text-align: center; gap: 8px;
      font-size: 2.5rem; aspect-ratio: 1;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition);
      position: relative; overflow: hidden;
    }
    .atelier-grid-item:hover { transform: translateY(-4px) rotate(1deg); }
    .atelier-grid-item:nth-child(even):hover { transform: translateY(-4px) rotate(-1deg); }
    .atelier-grid-item > span.label { font-size: 0.82rem; font-weight: 700; color: var(--color-text-muted); }
    .atelier-grid-item > span.emoji { }
    .atelier-grid-item .img-slot { border-radius: 0; border: none; background: transparent; }
    .atelier-grid-item .img-slot .img-slot-icon,
    .atelier-grid-item .img-slot .img-slot-label { display: none; }
    .agi-1 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
    .agi-2 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
    .agi-3 { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
    .agi-4 { background: linear-gradient(135deg, #fff8e1, #ffecb3); }

    /* ENGAGEMENT */
    .engagement {
      background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      padding: 80px 0; text-align: center; position: relative; overflow: hidden;
    }
    .engagement::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .engagement .container { position: relative; z-index: 1; }
    .engagement-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
      margin-bottom: 48px;
    }
    .engagement-item { color: white; }
    .engagement-value {
      font-family: var(--font-heading); font-size: 3rem; font-weight: 800;
      display: block; margin-bottom: 8px;
    }
    .engagement-label { font-size: 1rem; opacity: 0.85; }
    .engagement h2 { color: white; margin-bottom: 16px; }
    .engagement p { color: rgba(255,255,255,.85); margin-bottom: 36px; font-size: 1.1rem; max-width: 480px; margin-left: auto; margin-right: auto; }
    .engagement .btn { background: white; color: var(--color-primary); font-weight: 700; }
    .engagement .btn:hover { background: var(--color-accent); color: var(--color-text); }

    /* FOOTER */
    .footer { background: #1e1219; color: rgba(255,255,255,.7); padding: 72px 0 32px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
    .footer-brand-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 14px; }
    .footer-brand-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
    .footer-social { display: flex; gap: 12px; }
    .footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: background 0.2s, transform 0.2s; }
    .footer-social a:hover { background: var(--color-primary); transform: translateY(-2px); }
    .footer-col-title { font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: white; margin-bottom: 20px; }
    .footer-col a { display: block; font-size: 0.9rem; margin-bottom: 10px; transition: color 0.2s; }
    .footer-col a:hover { color: var(--color-accent); }
    .footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; }
    .footer-bottom a:hover { color: var(--color-accent); }

    @media (max-width: 900px) {
      .story-inner, .atelier-inner { grid-template-columns: 1fr; gap: 40px; }
      .story-visual { display: none; }
      .values-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
      .engagement-grid { grid-template-columns: 1fr; gap: 24px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .section { padding: 56px 0; }
      .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
      .navbar-links { display: none; }
      .navbar-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--color-bg); padding: 24px; gap: 24px; box-shadow: var(--shadow-lg); z-index: 999; }
      .navbar-toggle { display: flex; }
      .atelier-materials { grid-template-columns: 1fr; }
      .atelier-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-social { justify-content: center; }
      .story-content p { font-size: 1rem; }
      .btn { padding: 13px 24px; }
      .values-grid { grid-template-columns: 1fr; max-width: 100%; }
      .value-card { padding: 28px 20px; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .section { padding: 40px 0; }
      .atelier-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .story-photo { animation: none; }
    }

/* PAGE HERO — Portfolio variant */
/* PAGE HERO */
    .page-hero {
      background: var(--color-surface); padding: 160px 0 100px;
      position: relative; overflow: hidden; text-align: center;
    }
    .page-hero-blob {
      position: absolute; border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
      pointer-events: none;
    }
    .page-hero-blob-1 {
      width: 500px; height: 450px; top: -120px; right: -100px;
      background: color-mix(in srgb, var(--color-primary) 10%, transparent);
    }
    .page-hero-blob-2 {
      width: 300px; height: 260px; bottom: -60px; left: -60px;
      background: color-mix(in srgb, var(--color-accent) 12%, transparent);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    .page-hero .container { position: relative; z-index: 1; }
    .page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; }
    .page-hero p { font-size: 1.2rem; color: var(--color-text-muted); max-width: 580px; margin: 0 auto; line-height: 1.8; }

    

/* PAGE HERO — Contact variant */
/* PAGE HERO */
    .page-hero {
      background: var(--color-surface); padding: 160px 0 100px;
      position: relative; overflow: hidden; text-align: center;
    }
    .page-hero-blob {
      position: absolute; pointer-events: none;
    }
    .page-hero-blob-1 {
      width: 500px; height: 450px; top: -120px; right: -100px;
      background: color-mix(in srgb, var(--color-primary) 10%, transparent);
      border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
    }
    .page-hero-blob-2 {
      width: 280px; height: 240px; bottom: -50px; left: -50px;
      background: color-mix(in srgb, var(--color-accent) 12%, transparent);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    .page-hero .container { position: relative; z-index: 1; }
    .page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; }
    .page-hero p { font-size: 1.2rem; color: var(--color-text-muted); max-width: 560px; margin: 0 auto; line-height: 1.8; }

    

/* ============================================
   PORTFOLIO PAGE — SPECIFIC
   ============================================ */
/* FILTER TABS */
    .filter-tabs {
      display: flex; gap: 12px; justify-content: center;
      flex-wrap: wrap; margin-top: 40px;
    }
    .filter-tab {
      padding: 10px 22px; border-radius: var(--radius-xl);
      font-family: var(--font-body); font-size: 0.88rem; font-weight: 700;
      cursor: pointer; border: 2px solid transparent;
      background: white; color: var(--color-text-muted);
      box-shadow: var(--shadow-sm);
      transition: all 0.25s;
    }
    .filter-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
    .filter-tab.active { background: var(--color-primary); color: white; border-color: var(--color-primary); }

    /* PORTFOLIO GRID */
    .portfolio-section { background: var(--color-bg); }
    .portfolio-masonry {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .portfolio-card {
      background: white; border-radius: var(--radius-lg);
      overflow: hidden; box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
      cursor: pointer;
    }
    .portfolio-card:hover {
      transform: translateY(-10px) rotate(0.6deg);
      box-shadow: var(--shadow-lg);
    }
    .portfolio-card:nth-child(even):hover {
      transform: translateY(-10px) rotate(-0.6deg);
    }
    .portfolio-card { display: flex; flex-direction: column; }
    .portfolio-thumb {
      display: flex; align-items: center; justify-content: center;
      font-size: 4.5rem; position: relative; overflow: hidden;
      aspect-ratio: 4/3; flex-shrink: 0;
    }
    .portfolio-info { flex: 1; }

    /* Image placeholder system */
    /* .img-slot base defined above */
    .img-slot > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
    
    .img-slot:has(> img[src]:not([src=""])) .img-slot-icon,
    .img-slot:has(> img[src]:not([src=""])) .img-slot-label { display: none; }
    .img-slot-icon { font-size: 3rem; }
    .img-slot-label { font-size: 0.72rem; font-family: var(--font-body); color: var(--color-text-muted); opacity: .7; text-align: center; padding: 0 12px; }

    .portfolio-masonry { align-items: stretch; }
    .portfolio-info { flex: 1; }

    .pt-floral  { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
    .pt-nature  { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
    .pt-violet  { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
    .pt-gold    { background: linear-gradient(135deg, #fff8e1, #ffecb3); }
    .pt-blue    { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
    .pt-coral   { background: linear-gradient(135deg, #fbe9e7, #ffccbc); }
    .pt-mint    { background: linear-gradient(135deg, #e0f2f1, #b2dfdb); }
    .pt-rose    { background: linear-gradient(135deg, #fce4ec, #f48fb1); }
    .pt-lavande { background: linear-gradient(135deg, #ede7f6, #ce93d8); }

    .portfolio-info { padding: 20px 22px 24px; }
    .portfolio-info h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--color-text); }
    .portfolio-info p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 10px; }
    .portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; }
    .portfolio-tag {
      font-size: 0.76rem; font-weight: 700;
      color: var(--color-primary);
      background: color-mix(in srgb, var(--color-primary) 10%, transparent);
      padding: 3px 10px; border-radius: var(--radius-xl);
    }
    .portfolio-tag.accent {
      color: color-mix(in srgb, var(--color-accent) 70%, var(--color-text));
      background: color-mix(in srgb, var(--color-accent) 15%, transparent);
    }

    /* PROCESS CTA */
    .process-cta {
      background: var(--color-surface); padding: 80px 0;
      text-align: center; position: relative; overflow: hidden;
    }
    .process-cta-blob {
      position: absolute; border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
      pointer-events: none; background: color-mix(in srgb, var(--color-primary) 8%, transparent);
      width: 350px; height: 320px; top: -80px; left: -80px;
    }
    .process-cta .container { position: relative; z-index: 1; }
    .process-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
    .process-cta p { font-size: 1.1rem; color: var(--color-text-muted); max-width: 520px; margin: 0 auto 36px; line-height: 1.8; }
    .process-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* CUSTOM ORDER */
    .custom-order { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); padding: 80px 0; position: relative; overflow: hidden; }
    .custom-order::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .custom-order .container { position: relative; z-index: 1; text-align: center; }
    .custom-order h2 { color: white; margin-bottom: 16px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
    .custom-order p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 520px; margin: 0 auto 36px; line-height: 1.8; }
    .custom-order .btn { background: white; color: var(--color-primary); font-weight: 700; }
    .custom-order .btn:hover { background: var(--color-accent); color: var(--color-text); }

    /* FOOTER */
    .footer { background: #1e1219; color: rgba(255,255,255,.7); padding: 72px 0 32px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
    .footer-brand-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 14px; }
    .footer-brand-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
    .footer-social { display: flex; gap: 12px; }
    .footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: background 0.2s, transform 0.2s; }
    .footer-social a:hover { background: var(--color-primary); transform: translateY(-2px); }
    .footer-col-title { font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: white; margin-bottom: 20px; }
    .footer-col a { display: block; font-size: 0.9rem; margin-bottom: 10px; transition: color 0.2s; }
    .footer-col a:hover { color: var(--color-accent); }
    .footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; }
    .footer-bottom a:hover { color: var(--color-accent); }

    @media (max-width: 900px) {
      .portfolio-masonry { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .section { padding: 56px 0; }
      .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
      .navbar-links { display: none; }
      .navbar-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--color-bg); padding: 24px; gap: 24px; box-shadow: var(--shadow-lg); z-index: 999; }
      .navbar-toggle { display: flex; }
      .portfolio-masonry { grid-template-columns: 1fr; }
      .portfolio-thumb { aspect-ratio: 16/9; }
      .filter-tabs { gap: 8px; }
      .filter-tab { font-size: 0.82rem; padding: 7px 14px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-social { justify-content: center; }
      .process-cta-actions { flex-direction: column; align-items: center; gap: 12px; }
      .process-cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .portfolio-masonry { gap: 16px; }
      .portfolio-info { padding: 16px 18px 20px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }

/* ============================================
   CONTACT PAGE — SPECIFIC
   ============================================ */
/* MAIN CONTACT SECTION */
    .contact-main { background: var(--color-bg); }
    .contact-inner {
      display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start;
    }

    /* INFO SIDE */
    .contact-info h2 { margin-bottom: 16px; }
    .contact-info > p { color: var(--color-text-muted); line-height: 1.8; margin-bottom: 36px; }

    .contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
    .contact-card {
      display: flex; align-items: flex-start; gap: 16px;
      background: var(--color-surface); border-radius: var(--radius-md);
      padding: 20px;
    }
    .contact-card-icon {
      font-size: 1.8rem; flex-shrink: 0;
      width: 52px; height: 52px;
      background: white; border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow-sm);
    }
    .contact-card-text h4 { font-family: var(--font-body); font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); margin-bottom: 4px; }
    .contact-card-text p { font-size: 0.95rem; color: var(--color-text); font-weight: 600; }
    .contact-card-text span { font-size: 0.85rem; color: var(--color-text-muted); }

    .contact-promise {
      background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      border-radius: var(--radius-lg); padding: 28px;
      color: white;
    }
    .contact-promise h3 { font-size: 1.15rem; margin-bottom: 14px; color: white; }
    .contact-promise ul { display: flex; flex-direction: column; gap: 10px; }
    .contact-promise li {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.92rem; opacity: 0.92;
    }
    .contact-promise li::before {
      content: '✓'; width: 20px; height: 20px;
      border-radius: 50%; background: rgba(255,255,255,.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
    }

    /* FORM SIDE */
    .contact-form-wrap {
      background: white; border-radius: var(--radius-lg);
      padding: 48px 40px; box-shadow: var(--shadow-md);
      position: relative; overflow: hidden;
    }
    .contact-form-wrap::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 5px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    }
    .contact-form-wrap h2 { font-size: 1.6rem; margin-bottom: 8px; }
    .contact-form-wrap > p { font-size: 0.95rem; color: var(--color-text-muted); margin-bottom: 36px; }

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

    .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
    .form-group label {
      font-size: 0.88rem; font-weight: 700; color: var(--color-text);
    }
    .form-group label .required { color: var(--color-primary); margin-left: 2px; }

    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--color-text);
      background: var(--color-bg);
      border: 2px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
      border-radius: var(--radius-md);
      padding: 13px 18px;
      width: 100%;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      -webkit-appearance: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--color-text-muted); opacity: 0.7; }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--color-primary);
      box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-primary) 12%, transparent);
    }
    .form-group textarea { resize: vertical; min-height: 130px; }

    .form-select-wrap { position: relative; }
    .form-select-wrap::after {
      content: '▾'; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
      color: var(--color-primary); font-size: 1rem; pointer-events: none;
    }
    .form-select-wrap select { padding-right: 40px; cursor: pointer; }

    .form-hint { font-size: 0.82rem; color: var(--color-text-muted); margin-top: 4px; }

    .form-submit {
      margin-top: 8px;
      display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    }
    .form-submit .btn { flex-shrink: 0; padding: 16px 40px; font-size: 1rem; }
    .form-submit-note { font-size: 0.85rem; color: var(--color-text-muted); }

    /* SUCCESS STATE */
    .form-success {
      display: none;
      text-align: center;
      padding: 40px 20px;
    }
    .form-success-icon { font-size: 4rem; margin-bottom: 20px; display: block; }
    .form-success h3 { font-size: 1.6rem; margin-bottom: 12px; color: var(--color-text); }
    .form-success p { color: var(--color-text-muted); line-height: 1.7; max-width: 400px; margin: 0 auto; }

    /* REASSURANCE */
    .reassurance { background: var(--color-surface); }
    .reassurance-header { text-align: center; margin-bottom: 56px; }
    .reassurance-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    }
    .reassurance-item {
      text-align: center; padding: 28px 20px;
      background: white; border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .reassurance-item:hover { transform: translateY(-6px) rotate(0.5deg); box-shadow: var(--shadow-md); }
    .reassurance-item:nth-child(even):hover { transform: translateY(-6px) rotate(-0.5deg); }
    .reassurance-icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }
    .reassurance-item h3 { font-size: 1rem; margin-bottom: 8px; }
    .reassurance-item p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; }
    .reassurance-grid .reassurance-item:nth-child(2) { margin-top: 20px; }
    .reassurance-grid .reassurance-item:nth-child(4) { margin-top: 20px; }

    /* FOOTER */
    .footer { background: #1e1219; color: rgba(255,255,255,.7); padding: 72px 0 32px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
    .footer-brand-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 14px; }
    .footer-brand-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
    .footer-social { display: flex; gap: 12px; }
    .footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: background 0.2s, transform 0.2s; }
    .footer-social a:hover { background: var(--color-primary); transform: translateY(-2px); }
    .footer-col-title { font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: white; margin-bottom: 20px; }
    .footer-col a { display: block; font-size: 0.9rem; margin-bottom: 10px; transition: color 0.2s; }
    .footer-col a:hover { color: var(--color-accent); }
    .footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; }
    .footer-bottom a:hover { color: var(--color-accent); }

    @media (max-width: 1000px) {
      .contact-inner { grid-template-columns: 1fr; gap: 48px; }
      .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
      .reassurance-grid .reassurance-item:nth-child(2),
      .reassurance-grid .reassurance-item:nth-child(4) { margin-top: 0; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .section { padding: 56px 0; }
      .navbar-links { display: none; }
      .navbar-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--color-bg); padding: 24px; gap: 24px; box-shadow: var(--shadow-lg); z-index: 999; }
      .navbar-toggle { display: flex; }
      .contact-form-wrap { padding: 28px 20px; }
      .form-row { grid-template-columns: 1fr; }
      .form-group input, .form-group select, .form-group textarea { font-size: 1rem; }
      .reassurance-grid { grid-template-columns: 1fr; }
      .contact-info-card { padding: 20px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-social { justify-content: center; }
      .btn { padding: 13px 24px; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .contact-form-wrap { padding: 24px 16px; }
      .form-group { margin-bottom: 16px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }