/* =========================================================
   Elli's Desserts — shared stylesheet
   Design system: dusty rose #C4728A · slate #4A5F72
   Playfair Display (display) · DM Sans (body)
   ========================================================= */

:root {
      --rose:        #C4728A;
      --rose-light:  #F0D5DC;
      --rose-pale:   #FAF0F3;
      --slate:       #4A5F72;
      --slate-dark:  #2E3D4A;
      --slate-light: #E8EEF3;
      --cream:       #FDF8F5;
      --blush:       #F5E8ED;
      --white:       #FFFFFF;
      --text-dark:   #2E3D4A;
      --text-mid:    #6B7A87;
      --text-light:  #9AAAB5;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 88px;
      background: rgba(253, 248, 245, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--rose-light);
      transition: box-shadow 0.3s;
    }

    nav.scrolled { box-shadow: 0 4px 32px rgba(196, 114, 138, 0.12); }

    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo img { height: 78px; width: auto; }

    .nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }

    .nav-links a {
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--slate);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--rose); }

    .nav-cta {
      background: var(--rose) !important;
      color: white !important;
      padding: 10px 22px;
      border-radius: 100px;
      transition: background 0.2s, transform 0.2s !important;
    }

    .nav-cta:hover { background: var(--slate) !important; transform: translateY(-1px); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding-top: 88px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-circle {
      position: absolute;
      top: -120px; right: -120px;
      width: 680px; height: 680px;
      background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }

    .hero-bg-dots {
      position: absolute;
      bottom: 60px; left: 40px;
      width: 180px; height: 180px;
      background-image: radial-gradient(var(--rose-light) 1.5px, transparent 1.5px);
      background-size: 18px 18px;
      opacity: 0.6;
      z-index: 0;
    }

    .hero-content { padding: 80px 64px 80px 80px; z-index: 1; animation: fadeUp 0.9s ease both; }

    .hero-eyebrow {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 20px;
      display: flex; align-items: center; gap: 12px;
    }

    .hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--rose); }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 5vw, 4.8rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--slate-dark);
      margin-bottom: 24px;
    }

    .hero h1 em { font-style: italic; color: var(--rose); }

    .hero-desc {
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--text-mid);
      max-width: 440px;
      margin-bottom: 40px;
      font-weight: 300;
    }

    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

    .btn-primary {
      background: var(--rose);
      color: white;
      padding: 14px 32px;
      border-radius: 100px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
      box-shadow: 0 4px 20px rgba(196, 114, 138, 0.35);
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--slate);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(74, 95, 114, 0.3);
    }

    .btn-secondary {
      color: var(--slate);
      padding: 14px 32px;
      border-radius: 100px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      border: 1.5px solid var(--slate-light);
      transition: border-color 0.25s, color 0.25s, transform 0.2s;
      display: inline-block;
    }

    .btn-secondary:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }

    .hero-image {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 80px 80px 40px;
      animation: fadeUp 0.9s 0.2s ease both;
    }

    .hero-photo-frame {
      width: 100%;
      max-width: 560px;
      position: relative;
    }

    .hero-photo-frame .hero-img-clip {
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(196, 114, 138, 0.28);
    }

    .hero-photo-frame img { width: 100%; height: auto; display: block; }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--slate-dark);
      padding: 18px 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex; align-items: center; gap: 10px;
      color: var(--rose-light);
      font-size: 0.82rem;
      letter-spacing: 0.05em;
    }

    .trust-item span:first-child { font-size: 1.1rem; }
    .trust-divider { width: 1px; height: 20px; background: rgba(240, 213, 220, 0.25); }

    /* ── SECTION COMMON ── */
    section { padding: 100px 80px; position: relative; }

    .menu-grid, .platters-inner, .order-grid, .email-band,
    .centered-header, .cakes-footer, .order-header { position: relative; z-index: 1; }

    /* ── FLOATING BAKES (parallax) ── */
    .float-wrap {
      position: absolute;
      z-index: 0;
      pointer-events: none;
      will-change: transform;
    }

    .float-wrap img {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 16px 26px rgba(74, 95, 114, 0.2));
      animation: bob 6s ease-in-out infinite;
    }

    @keyframes bob {
      0%, 100% { transform: translateY(0) rotate(-2.5deg); }
      50%      { transform: translateY(-14px) rotate(2.5deg); }
    }

    @media (prefers-reduced-motion: reduce) {
      .float-wrap img { animation: none; }
      .float-wrap { transform: none !important; }
    }

    @media (max-width: 900px) {
      .float-wrap { display: none; }
    }

    .menu-note {
      max-width: 640px;
      margin: 14px auto 0;
      font-size: 0.88rem;
      color: var(--slate);
      line-height: 1.6;
      font-weight: 400;
    }

    .menu-note strong { font-weight: 500; }

    .menu-card-price {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--rose);
      letter-spacing: 0.03em;
      margin-bottom: 10px;
    }

    .menu-card-note {
      margin-top: 12px;
      font-size: 0.76rem;
      font-style: italic;
      color: var(--text-mid);
    }

    /* ── ORDER FORM LOADER ── */
    #formLoader {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: var(--slate);
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
    }

    #formLoader.active { display: flex; }

    .loader-cookie { position: relative; width: 200px; height: 200px; }
    .loader-cookie img { position: absolute; inset: 0; width: 100%; height: 100%; }
    .loader-cookie-under { opacity: 0.22; }

    .loader-text {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.15rem;
      color: var(--rose-light);
      letter-spacing: 0.02em;
    }

    @media (max-width: 480px) {
      .loader-cookie { width: 150px; height: 150px; }
      .loader-text { font-size: 1rem; }
    }

    .section-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 14px;
      display: flex; align-items: center; gap: 10px;
    }

    .section-label::after { content: ''; display: block; width: 28px; height: 1px; background: var(--rose); }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 700;
      color: var(--slate-dark);
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.7;
      font-weight: 300;
      max-width: 560px;
    }

    .centered-header { text-align: center; margin-bottom: 56px; }
    .centered-header .section-label { justify-content: center; }
    .centered-header .section-label::after { display: none; }
    .centered-header .section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--rose); }
    .centered-header .section-subtitle { margin: 0 auto; }

    /* ── MENU ── */
    #menu { background: var(--white); }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1120px;
      margin: 0 auto;
    }

    .menu-card {
      background: var(--cream);
      border-radius: 24px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .menu-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(196, 114, 138, 0.18); }

    .menu-card-image {
      width: 100%;
      aspect-ratio: 4/3;
      position: relative;
      overflow: hidden;
      background: var(--blush);
    }

    .menu-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .menu-card:hover .menu-card-image img { transform: scale(1.05); }

    .menu-card-badge {
      position: absolute;
      top: 14px; right: 14px;
      background: var(--rose);
      color: white;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
    }

    .menu-card-body { padding: 24px; }

    .menu-card-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--slate-dark);
      margin-bottom: 8px;
    }

    .menu-card-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; font-weight: 300; }

    .menu-card-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }

    .tag {
      background: var(--rose-pale);
      color: var(--rose);
      font-size: 0.7rem;
      font-weight: 500;
      padding: 3px 10px;
      border-radius: 100px;
      letter-spacing: 0.04em;
    }

    /* ── CUSTOM CAKES CAROUSEL ── */
    #cakes { background: var(--rose-pale); overflow: hidden; padding-left: 0; padding-right: 0; }

    #cakes .centered-header { padding: 0 80px; }

    .carousel-wrap { position: relative; margin-bottom: 44px; }

    .carousel-track {
      display: flex;
      gap: 22px;
      width: max-content;
      animation: scrollCarousel 70s linear infinite;
    }

    .carousel-wrap:hover .carousel-track { animation-play-state: paused; }

    @keyframes scrollCarousel {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .carousel-item {
      width: 300px;
      flex-shrink: 0;
      border-radius: 22px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 10px 34px rgba(196, 114, 138, 0.18);
      background: var(--white);
    }

    .carousel-item img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

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


    .cakes-footer { text-align: center; padding: 0 80px; }

    .cakes-footer p {
      max-width: 620px;
      margin: 0 auto 28px;
      color: var(--text-mid);
      font-size: 0.95rem;
      line-height: 1.75;
      font-weight: 300;
    }

    /* ── PLATTERS ── */
    #platters { background: var(--white); }

    .platters-inner {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 72px;
      align-items: center;
      max-width: 1160px;
      margin: 0 auto;
    }

    .platters-photos {
      display: grid;
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .platters-photos .ph {
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(196, 114, 138, 0.16);
    }

    .platters-photos .ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
    .platters-photos .ph:hover img { transform: scale(1.04); }

    .platters-photos .ph img { aspect-ratio: 4/3; }

    .platter-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

    .platter-feature { display: flex; gap: 16px; align-items: flex-start; }

    .platter-feature-icon {
      width: 44px; height: 44px;
      background: var(--rose-pale);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .platter-feature-text strong { display: block; font-size: 0.95rem; font-weight: 500; color: var(--slate-dark); margin-bottom: 4px; }
    .platter-feature-text span { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

    /* ── HOLIDAY SPECIALS ── */
    #specials { background: var(--slate-dark); position: relative; overflow: hidden; }

    #specials::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(196,114,138,0.15) 0%, transparent 65%);
      border-radius: 50%;
    }

    #specials .centered-header .section-label { color: var(--rose-light); }
    #specials .centered-header .section-label::before { background: var(--rose-light); }
    #specials .centered-header .section-title { color: var(--white); }
    #specials .centered-header .section-subtitle { color: rgba(240,213,220,0.75); }

    .specials-groups {
      max-width: 1180px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 44px;
    }

    .holiday-group {
      display: grid;
      grid-template-columns: 190px 1fr;
      gap: 32px;
      align-items: start;
      border-top: 1px solid rgba(240,213,220,0.14);
      padding-top: 40px;
    }

    .holiday-group:first-child { border-top: none; padding-top: 0; }

    .holiday-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      font-weight: 600;
      color: var(--rose-light);
      line-height: 1.25;
      padding-top: 6px;
    }

    .holiday-items { display: flex; flex-wrap: wrap; gap: 22px; }
    .holiday-items .special-card { width: 300px; }

    .special-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(240,213,220,0.15);
      border-radius: 22px;
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s, background 0.3s;
    }

    .special-card:hover {
      transform: translateY(-6px);
      border-color: rgba(196,114,138,0.45);
      background: rgba(196,114,138,0.1);
    }

    .special-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

    .special-card-body { padding: 20px 22px 24px; }

    .special-card-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
    }

    .special-card-body p { font-size: 0.83rem; color: rgba(240,213,220,0.65); line-height: 1.6; }

    .specials-cta { text-align: center; margin-top: 44px; position: relative; z-index: 1; }

    .specials-follow {
      color: rgba(240,213,220,0.85);
      font-size: 1rem;
      margin-bottom: 22px;
    }

    .specials-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    #specials .btn-secondary { color: var(--rose-light); border-color: rgba(240,213,220,0.4); }
    #specials .btn-secondary:hover { color: var(--white); border-color: var(--rose); }

    .specials-note {
      color: rgba(240,213,220,0.55);
      font-size: 0.85rem;
      margin-top: 22px;
    }

    .specials-note a { color: var(--rose-light); text-decoration: none; border-bottom: 1px solid rgba(240,213,220,0.4); }

    /* ── ORDER ── */
    #order { background: var(--cream); }

    .order-header { max-width: 1160px; margin: 0 auto 48px; }

    .order-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 1160px;
      margin: 0 auto;
    }

    .order-card {
      background: var(--white);
      border: 1px solid var(--rose-light);
      border-radius: 28px;
      padding: 36px;
      display: flex;
      flex-direction: column;
    }

    .order-card .order-icon {
      width: 52px; height: 52px;
      background: var(--blush);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 18px;
    }

    .order-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem;
      color: var(--slate-dark);
      margin-bottom: 8px;
    }

    .order-card > p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 22px; }

    .order-card .order-actions { margin-top: auto; }

    /* ── EMAIL LIST ── */
    #email-list { background: var(--rose-pale); padding: 72px 80px; }

    .email-band {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr auto;
      gap: 48px;
      align-items: center;
    }

    .email-band .section-subtitle { max-width: 520px; }
    .email-band-action { text-align: center; }
    .email-band-note { margin-top: 14px; font-size: 0.8rem; color: var(--text-mid); }

    /* ── FOOTER ── */
    footer { background: var(--slate-dark); padding: 60px 80px 36px; color: rgba(240,213,220,0.7); }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 48px;
    }

    .footer-brand img { height: 72px; margin-bottom: 16px; background: var(--cream); padding: 8px 12px; border-radius: 16px; }

    .footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(240,213,220,0.6); max-width: 300px; }

    .footer-social { display: flex; gap: 12px; margin-top: 20px; }

    .social-btn {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.08);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      text-decoration: none;
      transition: background 0.2s;
    }

    .social-btn:hover { background: var(--rose); }

    .footer-col h4 {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
    }

    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

    .footer-col ul li a {
      font-size: 0.88rem;
      color: rgba(240,213,220,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover { color: var(--rose-light); }

    .footer-bottom {
      border-top: 1px solid rgba(240,213,220,0.1);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: rgba(240,213,220,0.35);
      flex-wrap: wrap;
      gap: 10px;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── MOBILE ── */
    .hamburger { display: none; }

    @media (max-width: 1080px) {
      .holiday-items .special-card { width: 280px; }
    }

    @media (max-width: 900px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }

      .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 4px;
      }

      .hamburger span { display: block; width: 24px; height: 2px; background: var(--slate); border-radius: 2px; }

      .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
      .hero-content { padding: 52px 28px 20px; }
      .hero-image { padding: 12px 40px 56px; }

      section { padding: 64px 24px; }
      #cakes .centered-header { padding: 0 24px; }
      .cakes-footer { padding: 0 24px; }

      .menu-grid { grid-template-columns: 1fr 1fr; gap: 18px; }

      .platters-inner { grid-template-columns: 1fr; gap: 40px; }
      .holiday-group { grid-template-columns: 1fr; gap: 18px; padding-top: 32px; }
      .order-grid { grid-template-columns: 1fr; }
      #email-list { padding: 56px 24px; }
      .email-band { grid-template-columns: 1fr; gap: 24px; }
      .email-band-action { text-align: left; }

      .trust-bar { padding: 18px 24px; gap: 18px; }
      .trust-divider { display: none; }

      .footer-inner { grid-template-columns: 1fr; gap: 40px; }
      footer { padding: 48px 28px 28px; }

      .carousel-item { width: 230px; }
      .carousel-item img { height: 280px; }
    }

    @media (max-width: 560px) {
      .menu-grid { grid-template-columns: 1fr; }
      .holiday-items .special-card { width: 100%; }
    }

    /* ---------- Nav: current page indicator ---------- */
    .nav-links a.active { color: var(--rose); }

    /* ---------- Footer links ---------- */
    .footer-bottom a { color: rgba(240,213,220,0.6); text-decoration: none; }
    .footer-bottom a:hover { color: var(--rose-light); }

    /* =========================================================
       ABOUT PAGE
       ========================================================= */
    .about-page {
      min-height: 100vh;
      padding: 150px 80px 100px;
      position: relative;
      overflow: hidden;
    }

    .about-bg-circle {
      position: absolute;
      top: -140px; right: -140px;
      width: 640px; height: 640px;
      background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }

    .about-bg-dots {
      position: absolute;
      bottom: 80px; left: 40px;
      width: 180px; height: 180px;
      background-image: radial-gradient(var(--rose-light) 1.5px, transparent 1.5px);
      background-size: 18px 18px;
      opacity: 0.6;
      z-index: 0;
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 80px;
      align-items: center;
      max-width: 1160px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .about-photo { position: relative; animation: fadeUp 0.9s ease both; }

    .about-photo-main {
      width: 100%;
      border-radius: 40px 40px 40px 0;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(196,114,138,0.22);
    }

    .about-photo-main img { width: 100%; display: block; }

    .about-content { animation: fadeUp 0.9s 0.15s ease both; }

    .section-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 14px;
      display: flex; align-items: center; gap: 10px;
    }

    .section-label::after { content: ''; display: block; width: 28px; height: 1px; background: var(--rose); }

    .about-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      font-weight: 700;
      color: var(--slate-dark);
      line-height: 1.12;
      margin-bottom: 20px;
    }

    .about-content h1 em { font-style: italic; color: var(--rose); }

    .about-content blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-style: italic;
      color: var(--rose);
      line-height: 1.5;
      margin: 26px 0;
      padding-left: 24px;
      border-left: 3px solid var(--rose-light);
    }

    .about-content p {
      font-size: 0.97rem;
      color: var(--text-mid);
      line-height: 1.85;
      font-weight: 300;
      margin-bottom: 16px;
    }

    .about-actions { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }

    /* ── VALUES STRIP ── */
    .values {
      background: var(--white);
      padding: 90px 80px;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .value-card {
      background: var(--cream);
      border-radius: 24px;
      padding: 34px 30px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(196, 114, 138, 0.16); }

    .value-card .icon {
      width: 52px; height: 52px;
      background: var(--blush);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 18px;
    }

    .value-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--slate-dark);
      margin-bottom: 10px;
    }

    .value-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

    /* ── CTA ── */
    .about-cta {
      background: var(--slate-dark);
      padding: 90px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .about-cta::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(196,114,138,0.15) 0%, transparent 65%);
      border-radius: 50%;
    }

    .about-cta h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--white);
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }

    .about-cta p {
      color: rgba(240,213,220,0.7);
      font-size: 0.98rem;
      max-width: 480px;
      margin: 0 auto 32px;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .about-cta .btn-primary { position: relative; z-index: 1; }

    /* ── FOOTER ── */

    @media (max-width: 900px) {
      .about-page { padding: 110px 24px 64px; }
      .about-inner { grid-template-columns: 1fr; gap: 48px; }
      .values { padding: 64px 24px; }
      .values-grid { grid-template-columns: 1fr; }
      .about-cta { padding: 64px 24px; }
    }

    /* =========================================================
       SUBPAGE HERO BAND
       ========================================================= */
    .page-hero {
      position: relative;
      padding: 150px 7% 64px;
      text-align: center;
      background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      width: 460px; height: 460px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196,114,138,0.10) 0%, transparent 68%);
      top: -180px; right: -120px;
      pointer-events: none;
    }
    .page-hero .section-label { justify-content: center; }
    .page-hero .section-label::before {
      content: ''; width: 36px; height: 1px; background: var(--rose);
    }
    .page-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 4.5vw, 3.4rem);
      font-weight: 600;
      color: var(--slate-dark);
      margin: 14px 0 16px;
      line-height: 1.12;
    }
    .page-hero h1 em { color: var(--rose); font-style: italic; }
    .page-hero .section-subtitle {
      max-width: 640px;
      margin: 0 auto;
    }
    .page-hero .menu-note { margin-top: 14px; }

    /* =========================================================
       HOMEPAGE TEASERS
       ========================================================= */
    #explore { padding-top: 40px; }
    .teaser {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: clamp(40px, 6vw, 90px);
      max-width: 1120px;
      margin: 0 auto;
      padding: 56px 7%;
    }
    .teaser + .teaser { border-top: 1px solid rgba(196,114,138,0.14); }
    .teaser-photo {
      position: relative;
    }
    .teaser-photo .ph {
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 22px 48px rgba(74,95,114,0.16);
      transform: rotate(-2deg);
      transition: transform 0.4s ease;
      background: var(--white);
      border: 6px solid var(--white);
    }
    .teaser:nth-child(even) .teaser-photo .ph { transform: rotate(2deg); }
    .teaser-photo .ph:hover { transform: rotate(0deg) scale(1.015); }
    .teaser-photo img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
    }
    .teaser:nth-child(even) .teaser-photo { order: 2; }
    .teaser-body .section-title { margin-bottom: 14px; }
    .teaser-body p {
      color: var(--text-mid);
      font-size: 1.02rem;
      line-height: 1.75;
      font-weight: 300;
      margin-bottom: 26px;
    }
    .teaser-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    @media (max-width: 900px) {
      .teaser { grid-template-columns: 1fr; gap: 28px; padding: 44px 7%; }
      .teaser:nth-child(even) .teaser-photo { order: 0; }
    }

    /* =========================================================
       SLIM ORDER CTA BAND (subpages)
       ========================================================= */
    .order-band {
      margin: 30px 7% 90px;
      background: linear-gradient(120deg, var(--slate) 0%, var(--slate-dark) 100%);
      border-radius: 28px;
      padding: 56px clamp(28px, 5vw, 72px);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      max-width: 1120px;
      margin-left: auto;
      margin-right: auto;
    }
    .order-band h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 2.6vw, 2rem);
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
    }
    .order-band p {
      color: var(--slate-light);
      font-weight: 300;
      font-size: 0.98rem;
      max-width: 480px;
    }
    .order-band-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }
    .order-band .btn-secondary {
      border-color: rgba(255,255,255,0.45);
      color: var(--white);
    }
    .order-band .btn-secondary:hover {
      background: rgba(255,255,255,0.12);
      border-color: var(--white);
    }
    @media (max-width: 560px) {
      .order-band { padding: 40px 26px; margin-bottom: 70px; }
    }
