/* ============================================
   ANA MADE STUDIOS — style.css
   Luxe + Playful upgrade
   ============================================ */

   @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Caveat:wght@400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

   :root {
     --navy:       #1E2A6E;
     --blue:       #2D3FA6;
     --pink:       #F03E8E;
     --pink-lt:    #FADADF;
     --yellow-lt:  #FBF3C8;
     --brown-lt:   #E8D5BC;
     --cream:      #FAF5EC;
     --sand:       #F0E6D3;
     --tan:        #C8A882;
     --gold:       #C9A96E;
     --white:      #FFFFFF;
     --ink:        #1a1a2e;
   
     --font-display: 'Cormorant Garamond', serif;
     --font-hand:    'Caveat', cursive;
     --font-body:    'DM Sans', sans-serif;
   
     --radius-sm:   10px;
     --radius-md:   18px;
     --radius-lg:   28px;
     --radius-pill: 100px;
   
     --shadow-soft:  0 4px 30px rgba(30, 42, 110, 0.08);
     --shadow-card:  0 8px 48px rgba(30, 42, 110, 0.11);
     --shadow-hover: 0 20px 60px rgba(30, 42, 110, 0.18);
     --transition:   all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   }
   
   /* ===== RESET ===== */
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
   html { scroll-behavior: smooth; }
   body {
     font-family: var(--font-body);
     background-color: var(--cream);
     color: var(--ink);
     overflow-x: hidden;
     cursor: none;
   }
   img { max-width: 100%; display: block; }
   a { text-decoration: none; color: inherit; }
   ul { list-style: none; }
   
   /* ===== CUSTOM CURSOR ===== */
   .cursor {
     width: 10px; height: 10px;
     background: var(--pink);
     border-radius: 50%;
     position: fixed;
     pointer-events: none;
     z-index: 9999;
     transform: translate(-50%, -50%);
     transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
   }
   .cursor-ring {
     width: 36px; height: 36px;
     border: 1.5px solid var(--navy);
     border-radius: 50%;
     position: fixed;
     pointer-events: none;
     z-index: 9998;
     transform: translate(-50%, -50%);
     transition: transform 0.12s ease, width 0.3s ease, height 0.3s ease;
   }
   body:has(a:hover) .cursor,
   body:has(button:hover) .cursor { width: 16px; height: 16px; background: var(--navy); }
   body:has(a:hover) .cursor-ring,
   body:has(button:hover) .cursor-ring { width: 50px; height: 50px; }
   
   /* ===== DECORATIVE ILLUSTRATIONS ===== */
   .deco {
     position: absolute;
     pointer-events: none;
     user-select: none;
     opacity: 0.8;
   }
   
   /* Blue tint — works on dark SVG line art */
   .deco-flower1,
   .deco-flower2,
   .deco-stem1,
   .deco-about-stem,
   .deco-gallery-flower,
   .deco-gallery-flower2,
   .deco-footer-flower,
   .deco-footer-flower2,
   .deco-cta-stem {
     filter: brightness(0) saturate(100%) invert(27%) sepia(60%) saturate(800%) hue-rotate(200deg) brightness(0.9);
   }
   
   /* ===== TYPOGRAPHY HELPERS ===== */
   .section-label {
     font-family: var(--font-hand);
     font-size: 1rem;
     letter-spacing: 0.12em;
     color: var(--blue);
     margin-bottom: 0.6rem;
     display: flex;
     align-items: center;
     gap: 0.6rem;
   }
   .section-label::after {
     content: '';
     flex: 1;
     max-width: 40px;
     height: 1px;
     background: var(--gold);
     display: inline-block;
   }
   .section-title {
     font-family: var(--font-display);
     font-size: clamp(2.2rem, 4vw, 3.4rem);
     font-weight: 300;
     letter-spacing: 0.02em;
     color: var(--navy);
     line-height: 1.1;
   }
   .section-title em {
     font-style: italic;
     font-weight: 400;
     color: var(--pink);
   }
   
   /* ===== BUTTONS ===== */
   .btn {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     font-family: var(--font-body);
     font-size: 0.8rem;
     font-weight: 500;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     padding: 0.85rem 2rem;
     border-radius: var(--radius-pill);
     border: 1.5px solid transparent;
     cursor: none;
     transition: var(--transition);
   }
   .btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(30,42,110,0.18); }
   .btn-primary  { background: var(--navy); color: var(--white); }
   .btn-primary:hover { background: var(--blue); }
   .btn-outline  { background: transparent; color: var(--navy); border-color: var(--navy); }
   .btn-outline:hover { background: var(--navy); color: var(--white); }
   .btn-cream    { background: var(--cream); color: var(--navy); }
   .btn-cream:hover { background: var(--white); }
   .btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(250,245,236,0.6); }
   .btn-outline-light:hover { background: rgba(250,245,236,0.1); border-color: var(--cream); }
   .btn-large    { font-size: 0.85rem; padding: 1rem 2.4rem; }
   
   /* ===== NAV ===== */
   .nav {
     position: fixed;
     top: 0; left: 0; right: 0;
     z-index: 100;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 1.2rem 4rem;
     background: rgba(250, 245, 236, 0.92);
     backdrop-filter: blur(16px);
     -webkit-backdrop-filter: blur(16px);
     border-bottom: 1px solid rgba(201, 169, 110, 0.25);
     transition: var(--transition);
   }
   .nav-logo {
     font-family: var(--font-display);
     font-size: 1.5rem;
     font-weight: 300;
     font-style: italic;
     color: var(--navy);
     letter-spacing: 0.06em;
   }
   .nav-links {
     display: flex;
     align-items: center;
     gap: 2.5rem;
   }
   .nav-links a {
     font-size: 0.75rem;
     font-weight: 500;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: var(--navy);
     position: relative;
     transition: color 0.3s;
   }
   .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -3px; left: 0; right: 0;
     height: 1px;
     background: var(--pink);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.3s ease;
   }
   .nav-links a:hover { color: var(--pink); }
   .nav-links a:hover::after { transform: scaleX(1); }
   .nav-cta {
     background: var(--navy);
     color: var(--white) !important;
     padding: 0.55rem 1.4rem;
     border-radius: var(--radius-pill);
     letter-spacing: 0.1em;
     font-size: 0.72rem;
   }
   .nav-cta::after { display: none !important; }
   .nav-cta:hover { background: var(--pink) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240,62,142,0.3); }
   .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
   .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
   
   /* Mobile menu */
   .mobile-menu {
     display: none;
     position: fixed;
     top: 0; left: 0; right: 0; bottom: 0;
     background: var(--yellow-lt);
     z-index: 99;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 2rem;
   }
   .mobile-menu.open { display: flex; }
   .mobile-link {
     font-family: var(--font-display);
     font-size: 2.5rem;
     font-style: italic;
     font-weight: 300;
     color: var(--navy);
     transition: color 0.2s;
     letter-spacing: 0.04em;
   }
   .mobile-link:hover { color: var(--pink); }
   
   /* ===== HERO ===== */
   .hero {
     position: relative;
     min-height: 100vh;
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     gap: 3rem;
     padding: 8rem 4rem 0;
     background: var(--yellow-lt);
     overflow: visible;
     isolation: isolate;
     z-index: 1;
   }
   .hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: visible; }
   
   .deco-flower1 { bottom: 0; left: 2%;  width: 130px; transform: translateY(15%); }
   .deco-stem1   { bottom: 0; right: 4%; width: 80px;  transform: translateY(15%); }
   .deco-flower2 { bottom: 0; left: 40%; width: 90px;  opacity: 0.55; transform: translateY(15%); }
   .deco-bee     { top: 12%; right: 6%;  width: 52px; }
   .deco-bee2    { top: 38%; left: 5%;   width: 40px; opacity: 0.7; transform: scaleX(-1); }
   
   .hero-content { position: relative; z-index: 2; padding-bottom: 5rem; }
   .hero-tag {
     font-family: var(--font-hand);
     font-size: 1rem;
     color: var(--blue);
     letter-spacing: 0.08em;
     margin-bottom: 1rem;
     display: block;
   }
   .hero-title {
     font-family: var(--font-display);
     font-size: clamp(3rem, 5.5vw, 5.2rem);
     font-weight: 300;
     line-height: 1.05;
     letter-spacing: 0.02em;
     color: var(--navy);
     margin-bottom: 1.4rem;
   }
   .hero-title em { font-style: italic; font-weight: 400; color: var(--pink); }
   .hero-sub {
     font-size: 0.95rem;
     line-height: 1.85;
     color: #5a5a7a;
     margin-bottom: 2.2rem;
     max-width: 400px;
     letter-spacing: 0.02em;
   }
   .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
   
   .hero-img-wrap {
     position: relative;
     z-index: 2;
     display: flex;
     align-items: center;
     justify-content: center;
     padding-bottom: 5rem;
   }
   .hero-blob {
     position: absolute;
     width: 88%; height: 88%;
     background: var(--pink-lt);
     border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
     z-index: 0;
     top: 6%; left: 6%;
     animation: blobFloat 8s ease-in-out infinite;
   }
   @keyframes blobFloat {
     0%,100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
     50%      { border-radius: 40% 60% 45% 55% / 60% 40% 55% 45%; }
   }
   .hero-img-frame {
     position: relative;
     z-index: 1;
     width: 100%;
     max-width: 440px;
     aspect-ratio: 4/5;
     border-radius: var(--radius-lg);
     overflow: hidden;
     border: 1.5px solid var(--navy);
     box-shadow: 10px 10px 0 var(--navy), 0 20px 60px rgba(30,42,110,0.12);
     transition: var(--transition);
   }
   .hero-img-frame:hover { transform: translate(-3px, -3px); box-shadow: 13px 13px 0 var(--navy), 0 24px 70px rgba(30,42,110,0.16); }
   .hero-img-placeholder {
     width: 100%; height: 100%;
     background: var(--brown-lt);
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: var(--font-hand);
     font-size: 1.1rem;
     color: var(--tan);
     text-align: center;
     padding: 1rem;
   }
   .hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
   
   /* ===== MARQUEE ===== */
   .marquee-strip {
     background: var(--navy);
     color: var(--cream);
     padding: 0.9rem 0;
     overflow: hidden;
     white-space: nowrap;
     border-top: 1px solid var(--gold);
     border-bottom: 1px solid var(--gold);
   }
   .marquee-track {
     display: inline-flex;
     gap: 2.5rem;
     animation: marquee 26s linear infinite;
     font-family: var(--font-hand);
     font-size: 1.05rem;
     letter-spacing: 0.06em;
   }
   .marquee-track .dot { color: var(--gold); }
   @keyframes marquee {
     from { transform: translateX(0); }
     to   { transform: translateX(-50%); }
   }
   
   /* ===== ABOUT ===== */
   .about {
     position: relative;
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     gap: 5rem;
     padding: 7rem 4rem 0;
     background: var(--pink-lt);
     overflow: visible;
     isolation: isolate;
     z-index: 1;
   }
   .deco-about-stem { bottom: 0; right: 2%; width: 95px; opacity: 0.7; transform: translateY(15%); }
   .deco-about-bee  { top: 2rem; left: 46%; width: 50px; }
   
   .about-img-col {
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 1.2rem;
     padding-bottom: 5rem;
   }
   .about-img-frame {
     width: 100%;
     max-width: 360px;
     aspect-ratio: 3/4;
     border-radius: var(--radius-lg);
     overflow: hidden;
     border: 1.5px solid var(--navy);
     box-shadow: 7px 7px 0 var(--pink), 0 16px 48px rgba(30,42,110,0.1);
     transition: var(--transition);
   }
   .about-img-frame:hover { transform: translate(-2px, -2px); box-shadow: 9px 9px 0 var(--pink), 0 20px 56px rgba(30,42,110,0.14); }
   .about-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; }
   .about-tag-pill {
     background: var(--navy);
     color: var(--cream);
     font-family: var(--font-hand);
     font-size: 0.95rem;
     letter-spacing: 0.06em;
     padding: 0.45rem 1.3rem;
     border-radius: var(--radius-pill);
   }
   .about-text-col { padding-bottom: 5rem; }
   .about-body { font-size: 0.97rem; line-height: 1.85; color: #4a4a6a; margin-bottom: 1rem; letter-spacing: 0.01em; }
   .about-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
   .pill {
     background: rgba(255,255,255,0.7);
     backdrop-filter: blur(8px);
     border: 1px solid rgba(30,42,110,0.2);
     color: var(--navy);
     font-size: 0.8rem;
     font-weight: 500;
     padding: 0.45rem 1.1rem;
     border-radius: var(--radius-pill);
     letter-spacing: 0.04em;
     transition: var(--transition);
   }
   .pill:hover { background: var(--white); border-color: var(--navy); transform: translateY(-1px); }
   
   /* ===== GALLERY ===== */
   .gallery-section {
     position: relative;
     padding: 7rem 4rem 0;
     background: var(--brown-lt);
     overflow: visible;
     isolation: isolate;
     z-index: 1;
   }
   .deco-gallery-flower  { bottom: 0; right: 2%;  width: 105px; opacity: 0.65; transform: translateY(15%); }
   .deco-gallery-flower2 { bottom: 0; left: 1%;   width: 80px;  opacity: 0.5;  transform: translateY(15%); }
   .deco-gallery-bee     { top: 4rem; left: 3%; width: 44px; opacity: 0.7; }
   
   .gallery-header { text-align: center; max-width: 520px; margin: 0 auto 4rem; }
   .gallery-header .section-label { justify-content: center; }
   .gallery-header .section-label::after { display: none; }
   .gallery-sub { color: #7a6a5a; font-size: 0.92rem; margin-top: 0.7rem; letter-spacing: 0.03em; line-height: 1.7; }
   
   .gallery-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1.8rem;
     max-width: 1100px;
     margin: 0 auto;
   }
   .gallery-card {
     background: var(--white);
     border-radius: var(--radius-md);
     overflow: hidden;
     border: 1.5px solid transparent;
     box-shadow: var(--shadow-card);
     transition: var(--transition);
     cursor: none;
   }
   .gallery-card:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow-hover);
     border-color: rgba(30,42,110,0.15);
   }
   .gallery-card.featured { border-color: rgba(240, 62, 142, 0.3); box-shadow: 0 8px 40px rgba(240, 62, 142, 0.15); }
   .gallery-card-img { position: relative; aspect-ratio: 1/1; overflow: hidden; }
   .img-placeholder {
     width: 100%; height: 100%;
     background: linear-gradient(135deg, var(--pink-lt), var(--yellow-lt));
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: var(--font-hand);
     font-size: 0.95rem;
     color: var(--tan);
     text-align: center;
     padding: 1rem;
     min-height: 220px;
   }
   .gallery-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
   .gallery-card:hover .gallery-card-img img { transform: scale(1.06); }
   .card-overlay {
     position: absolute; inset: 0;
     background: rgba(30,42,110,0.65);
     display: flex; align-items: center; justify-content: center;
     opacity: 0; transition: opacity 0.35s ease;
     backdrop-filter: blur(2px);
   }
   .gallery-card:hover .card-overlay { opacity: 1; }
   .card-shop-btn {
     background: var(--white); color: var(--navy);
     font-size: 0.75rem; font-weight: 600;
     letter-spacing: 0.1em; text-transform: uppercase;
     padding: 0.6rem 1.4rem; border-radius: var(--radius-pill);
     transition: var(--transition);
   }
   .card-shop-btn:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }
   .card-info { padding: 1rem 1.2rem; display: flex; align-items: center; justify-content: space-between; }
   .card-name { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; font-weight: 400; color: var(--navy); letter-spacing: 0.02em; }
   .card-badge {
     font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
     background: var(--pink-lt); color: var(--pink);
     padding: 0.25rem 0.8rem; border-radius: var(--radius-pill);
     border: 1px solid rgba(240,62,142,0.3);
   }
   .gallery-cta { text-align: center; padding: 3.5rem 0 5rem; }
   
   /* ===== CTA BAND ===== */
   .cta-band {
     position: relative;
     background: var(--navy);
     color: var(--cream);
     padding: 7rem 4rem;
     text-align: center;
     overflow: visible;
   }
   .cta-band::before {
     content: '';
     position: absolute;
     top: -100px; left: -100px;
     width: 350px; height: 350px;
     background: var(--pink);
     border-radius: 50%;
     opacity: 0.06;
   }
   .cta-band::after {
     content: '';
     position: absolute;
     bottom: -80px; right: -80px;
     width: 300px; height: 300px;
     background: var(--blue);
     border-radius: 50%;
     opacity: 0.2;
   }
   .deco-cta-stem { bottom: 0; left: 3%; width: 75px; opacity: 0.3; transform: translateY(15%); }
   .deco-cta-bee  { top: 12%; right: 6%; width: 50px; opacity: 0.45; }
   
   .cta-band-inner { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
   .cta-title {
     font-family: var(--font-display);
     font-size: clamp(2.2rem, 4.5vw, 3.8rem);
     font-weight: 300;
     color: var(--cream);
     line-height: 1.15;
     letter-spacing: 0.03em;
     margin: 0.6rem 0 1.2rem;
   }
   .cta-title em { color: var(--pink); font-style: italic; font-weight: 400; }
   .cta-sub { color: rgba(250,245,236,0.7); font-size: 0.92rem; line-height: 1.85; margin-bottom: 2.2rem; letter-spacing: 0.02em; }
   .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
   
   /* ===== FOOTER ===== */
   .footer {
     position: relative;
     background: var(--cream);
     padding: 5rem 4rem 2.5rem;
     text-align: center;
     overflow: visible;
     border-top: 1px solid rgba(201, 169, 110, 0.35);
   }
   .deco-footer-flower  { bottom: 0; right: 5%; width: 90px; opacity: 0.4;  transform: translateY(15%); }
   .deco-footer-flower2 { bottom: 0; left: 3%;  width: 70px; opacity: 0.3;  transform: translateY(15%); }
   
   .footer-inner { position: relative; z-index: 1; }
   .footer-logo {
     font-family: var(--font-display);
     font-size: 2.2rem;
     font-style: italic;
     font-weight: 300;
     color: var(--navy);
     margin-bottom: 0.5rem;
     letter-spacing: 0.04em;
   }
   .footer-tagline { font-family: var(--font-hand); color: var(--blue); font-size: 1rem; margin-bottom: 2rem; letter-spacing: 0.04em; }
   .footer-links { display: flex; justify-content: center; gap: 2.5rem; margin-bottom: 2rem; }
   .footer-links a {
     font-size: 0.75rem; font-weight: 500; color: var(--navy);
     letter-spacing: 0.12em; text-transform: uppercase;
     position: relative;
     transition: color 0.2s;
   }
   .footer-links a::after {
     content: '';
     position: absolute;
     bottom: -3px; left: 0; right: 0;
     height: 1px;
     background: var(--gold);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.3s ease;
   }
   .footer-links a:hover { color: var(--pink); }
   .footer-links a:hover::after { transform: scaleX(1); }
   .footer-divider {
     width: 40px; height: 1px;
     background: var(--gold);
     margin: 0 auto 1.5rem;
   }
   .footer-copy { font-size: 0.75rem; color: var(--tan); letter-spacing: 0.06em; }
   .footer-credit {
     margin-top: 0.6rem;
     font-size: 0.72rem;
     color: var(--tan);
     letter-spacing: 0.08em;
   }
   .footer-credit a {
     color: var(--navy);
     font-weight: 500;
     border-bottom: 1px solid var(--gold);
     padding-bottom: 1px;
     transition: color 0.2s, border-color 0.2s;
   }
   .footer-credit a:hover { color: var(--pink); border-color: var(--pink); }
   
   /* ===== ANIMATIONS ===== */
   .fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
   .fade-up.visible { opacity: 1; transform: translateY(0); }
   
   /* ===== RESPONSIVE ===== */
   @media (max-width: 900px) {
     .nav-links { display: none; }
     .hamburger { display: flex; }
     body { cursor: auto; }
     .cursor, .cursor-ring { display: none; }
     .btn { cursor: pointer; }
   
     .nav { padding: 1rem 1.5rem; }
     .hero { grid-template-columns: 1fr; text-align: center; padding: 7rem 1.5rem 0; gap: 2rem; }
     .hero-btns { justify-content: center; }
     .hero-sub { margin: 0 auto 2rem; }
     .hero-img-wrap { max-width: 320px; margin: 0 auto; }
     .hero-content { padding-bottom: 3rem; }
     .hero-img-wrap { padding-bottom: 3rem; }
   
     .about { grid-template-columns: 1fr; padding: 5rem 1.5rem 0; gap: 2.5rem; }
     .about-img-col { align-items: center; padding-bottom: 3rem; }
     .about-text-col { padding-bottom: 3rem; }
   
     .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
     .gallery-section { padding: 5rem 1.5rem 0; }
   
     .cta-band { padding: 5rem 1.5rem; }
     .footer { padding: 3rem 1.5rem 2rem; }
     .footer-links { gap: 1.5rem; }
   }
   
   @media (max-width: 500px) {
     .gallery-grid { grid-template-columns: 1fr; }
     .hero-title { font-size: 2.8rem; }
   }
   
   /* ============================================
      LUXE UPGRADES
      ============================================ */
   
   /* ===== GRAIN TEXTURE OVERLAY ===== */
   body::after {
     content: '';
     position: fixed;
     inset: 0;
     z-index: 9997;
     pointer-events: none;
     opacity: 0.032;
     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)'/%3E%3C/svg%3E");
     background-repeat: repeat;
     background-size: 128px 128px;
   }
   
   /* ===== PAGE LOADER ===== */
   .page-loader {
     position: fixed;
     inset: 0;
     z-index: 99999;
     background: var(--navy);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 1.2rem;
     transition: opacity 0.7s ease, visibility 0.7s ease;
   }
   .page-loader.hidden {
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
   }
   .loader-logo {
     font-family: var(--font-display);
     font-size: 2.4rem;
     font-style: italic;
     font-weight: 300;
     color: var(--cream);
     letter-spacing: 0.08em;
     opacity: 0;
     transform: translateY(16px);
     animation: loaderFadeUp 0.7s ease 0.2s forwards;
   }
   .loader-tagline {
     font-family: var(--font-hand);
     font-size: 1rem;
     color: var(--gold);
     letter-spacing: 0.1em;
     opacity: 0;
     animation: loaderFadeUp 0.7s ease 0.5s forwards;
   }
   .loader-bar {
     width: 60px;
     height: 1px;
     background: rgba(250,245,236,0.2);
     position: relative;
     overflow: hidden;
     opacity: 0;
     animation: loaderFadeUp 0.5s ease 0.6s forwards;
   }
   .loader-bar::after {
     content: '';
     position: absolute;
     left: -100%;
     top: 0;
     width: 100%;
     height: 100%;
     background: var(--gold);
     animation: loaderProgress 1.2s ease 0.8s forwards;
   }
   @keyframes loaderFadeUp {
     to { opacity: 1; transform: translateY(0); }
   }
   @keyframes loaderProgress {
     to { left: 0; }
   }
   
   /* ===== SCROLL-TRIGGERED WORD ANIMATIONS ===== */
   .reveal-text {
     overflow: hidden;
     display: block;
     padding-bottom: 0.15em;
     margin-bottom: -0.15em;
   }
   .reveal-text .word {
     display: inline-block;
     transform: translateY(60%);
     opacity: 0;
     transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
   }
   .reveal-text.visible .word {
     transform: translateY(0);
     opacity: 1;
   }
   .reveal-text.visible .word:nth-child(1) { transition-delay: 0s; }
   .reveal-text.visible .word:nth-child(2) { transition-delay: 0.07s; }
   .reveal-text.visible .word:nth-child(3) { transition-delay: 0.14s; }
   .reveal-text.visible .word:nth-child(4) { transition-delay: 0.21s; }
   .reveal-text.visible .word:nth-child(5) { transition-delay: 0.28s; }
   .reveal-text.visible .word:nth-child(6) { transition-delay: 0.35s; }
   .reveal-text.visible .word:nth-child(7) { transition-delay: 0.42s; }
   .reveal-text.visible .word:nth-child(8) { transition-delay: 0.49s; }
   
   /* ===== PARALLAX HERO ===== */
   .hero-parallax {
     will-change: transform;
     transform: translateZ(0);
   }
   
   /* ===== HORIZONTAL SCROLL GALLERY ===== */
   .gallery-scroll-wrap {
     overflow-x: auto;
     overflow-y: visible;
     padding: 0 4rem 3rem;
     scrollbar-width: none;
     -ms-overflow-style: none;
     cursor: grab;
   }
   .gallery-scroll-wrap:active { cursor: grabbing; }
   .gallery-scroll-wrap::-webkit-scrollbar { display: none; }
   .gallery-scroll-track {
     display: flex;
     gap: 1.8rem;
     width: max-content;
     padding-bottom: 1rem;
     padding-left: 0.5rem;
   }
   .gallery-scroll-track .gallery-card {
     width: 300px;
     flex-shrink: 0;
   }
   /* Keep the old grid for mobile */
   .gallery-grid { display: none; }
   
   /* Scroll hint */
   .scroll-hint {
     display: flex;
     align-items: center;
     gap: 0.6rem;
     font-family: var(--font-hand);
     font-size: 0.9rem;
     color: var(--tan);
     letter-spacing: 0.06em;
     margin: 0 0 1.5rem 4rem;
     opacity: 0.8;
   }
   .scroll-hint-line {
     width: 30px;
     height: 1px;
     background: var(--tan);
     animation: scrollHintPulse 2s ease-in-out infinite;
   }
   @keyframes scrollHintPulse {
     0%, 100% { width: 20px; opacity: 0.5; }
     50%       { width: 40px; opacity: 1; }
   }
   
   @media (max-width: 900px) {
     .gallery-scroll-wrap { padding: 0 1.5rem 3rem 1.5rem; }
     .scroll-hint { margin-left: 1.5rem; }
     .gallery-scroll-track .gallery-card { width: 260px; }
     .gallery-grid { display: none; }
   }
   
   /* ===== BLOG SECTION ===== */
   .blog-section {
     position: relative;
     padding: 7rem 4rem 6rem;
     background: var(--yellow-lt);
     text-align: center;
     isolation: isolate;
     z-index: 1;
   }
   .blog-header { max-width: 520px; margin: 0 auto 3rem; }
   .blog-sub { color: #6a6a8a; font-size: 0.92rem; margin-top: 0.7rem; letter-spacing: 0.03em; }
   .blog-coming {
     font-family: var(--font-hand);
     font-size: 1.2rem;
     color: var(--tan);
     letter-spacing: 0.08em;
     padding: 3rem;
     border: 1px dashed var(--tan);
     border-radius: var(--radius-lg);
     max-width: 400px;
     margin: 0 auto;
   }
   @media (max-width: 900px) {
     .blog-section { padding: 5rem 1.5rem 4rem; }
   }
   
   /* ===== BLOG PAGE ===== */
   .blog-hero {
     position: relative;
     min-height: 55vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 10rem 4rem 4rem;
     background: var(--pink-lt);
     text-align: center;
     overflow: visible;
     isolation: isolate;
     z-index: 1;
   }
   .blog-hero-content { position: relative; z-index: 2; max-width: 600px; }
   .blog-hero-title {
     font-family: var(--font-display);
     font-size: clamp(2.8rem, 5vw, 4.5rem);
     font-weight: 300;
     color: var(--navy);
     line-height: 1.1;
     margin: 0.5rem 0 1rem;
     letter-spacing: 0.02em;
   }
   .blog-hero-title em { font-style: italic; color: var(--pink); }
   .blog-hero-sub { color: #6a6a8a; font-size: 0.95rem; line-height: 1.7; }
   
   .deco-blog-flower1,
   .deco-blog-stem1,
   .deco-blog-flower2 {
     filter: brightness(0) saturate(100%) invert(27%) sepia(60%) saturate(800%) hue-rotate(200deg) brightness(0.9);
   }
   
   .deco-blog-flower1 { bottom: 0; left: 2%;  width: 120px; transform: translateY(15%); }
   .deco-blog-stem1   { bottom: 0; right: 3%; width: 80px;  transform: translateY(15%); }
   .deco-blog-bee     { top: 20%; right: 8%;  width: 50px; }
   .deco-blog-flower2 { bottom: 0; right: 2%; width: 100px; opacity: 0.5; transform: translateY(15%); }
   
   .blog-posts-section {
     position: relative;
     padding: 6rem 4rem 6rem;
     background: var(--yellow-lt);
     min-height: 50vh;
     overflow: visible;
     isolation: isolate;
     z-index: 1;
   }
   .blog-posts-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
     max-width: 1100px;
     margin: 0 auto;
   }
   .blog-post-card {
     background: var(--white);
     border-radius: var(--radius-md);
     overflow: hidden;
     border: 1.5px solid transparent;
     box-shadow: var(--shadow-card);
     transition: var(--transition);
     cursor: none;
   }
   .blog-post-card:hover {
     transform: translateY(-6px);
     box-shadow: var(--shadow-hover);
     border-color: rgba(30,42,110,0.12);
   }
   .blog-post-thumb {
     width: 100%;
     aspect-ratio: 16/9;
     object-fit: cover;
     background: linear-gradient(135deg, var(--pink-lt), var(--yellow-lt));
   }
   .blog-post-body { padding: 1.4rem; }
   .blog-post-category {
     font-size: 0.7rem;
     font-weight: 600;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--pink);
     margin-bottom: 0.5rem;
     display: block;
   }
   .blog-post-title {
     font-family: var(--font-display);
     font-size: 1.3rem;
     font-style: italic;
     font-weight: 400;
     color: var(--navy);
     line-height: 1.3;
     margin-bottom: 0.6rem;
   }
   .blog-post-excerpt {
     font-size: 0.88rem;
     color: #6a6a8a;
     line-height: 1.7;
     margin-bottom: 1rem;
   }
   .blog-post-date {
     font-size: 0.75rem;
     color: var(--tan);
     letter-spacing: 0.06em;
   }
   .blog-coming-soon {
     grid-column: 1 / -1;
     text-align: center;
     padding: 4rem 2rem;
     border: 1px dashed var(--tan);
     border-radius: var(--radius-lg);
     font-family: var(--font-hand);
     font-size: 1.2rem;
     color: var(--tan);
     letter-spacing: 0.08em;
   }
   .blog-coming-sub {
     font-family: var(--font-body);
     font-size: 0.88rem;
     margin-top: 0.8rem;
     color: #9a9aaa;
     letter-spacing: 0.02em;
   }
   
   @media (max-width: 900px) {
     .blog-hero { padding: 8rem 1.5rem 3rem; }
     .blog-posts-section { padding: 4rem 1.5rem; }
     .blog-posts-grid { grid-template-columns: 1fr; }
   }
   
   /* ===== BLOG POST PAGE ===== */
   .post-article {
     background: var(--cream);
     min-height: 100vh;
   }
   .post-header {
     position: relative;
     background: var(--pink-lt);
     padding: 10rem 4rem 5rem;
     text-align: center;
     overflow: visible;
     isolation: isolate;
     z-index: 1;
   }
   .post-header-inner { max-width: 700px; margin: 0 auto; }
   .post-back {
     font-size: 0.78rem;
     font-weight: 500;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--blue);
     display: inline-block;
     margin-bottom: 1.2rem;
     transition: color 0.2s;
   }
   .post-back:hover { color: var(--pink); }
   .post-title {
     font-family: var(--font-display);
     font-size: clamp(2.2rem, 4vw, 3.5rem);
     font-weight: 300;
     font-style: italic;
     color: var(--navy);
     line-height: 1.15;
     margin: 0.5rem 0 1rem;
     letter-spacing: 0.02em;
   }
   .post-date {
     font-size: 0.8rem;
     color: var(--tan);
     letter-spacing: 0.1em;
     text-transform: uppercase;
   }
   .post-hero-img {
     max-width: 800px;
     margin: 3rem auto 0;
     border-radius: var(--radius-lg);
     overflow: hidden;
     border: 1.5px solid var(--navy);
     box-shadow: var(--shadow-card);
   }
   .post-hero-img img { width: 100%; height: auto; display: block; }
   .post-body {
     max-width: 720px;
     margin: 0 auto;
     padding: 4rem 2rem;
     font-size: 1.05rem;
     line-height: 1.9;
     color: #4a4a6a;
   }
   .post-body h2 {
     font-family: var(--font-display);
     font-size: 1.8rem;
     font-weight: 400;
     font-style: italic;
     color: var(--navy);
     margin: 2.5rem 0 1rem;
   }
   .post-body h3 {
     font-family: var(--font-display);
     font-size: 1.4rem;
     font-style: italic;
     color: var(--navy);
     margin: 2rem 0 0.8rem;
   }
   .post-body p { margin-bottom: 1.2rem; }
   .post-body ul, .post-body ol {
     padding-left: 1.5rem;
     margin-bottom: 1.2rem;
   }
   .post-body li { margin-bottom: 0.5rem; }
   .post-body strong { color: var(--navy); font-weight: 500; }
   .post-body a { color: var(--blue); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
   .post-body a:hover { color: var(--pink); }
   .post-footer {
     text-align: center;
     padding: 2rem 2rem 5rem;
   }
   .blog-post-thumb-placeholder {
     width: 100%;
     aspect-ratio: 16/9;
     background: linear-gradient(135deg, var(--pink-lt), var(--yellow-lt));
   }
   
   @media (max-width: 900px) {
     .post-header { padding: 8rem 1.5rem 4rem; }
     .post-body { padding: 3rem 1.5rem; }
   }
   
   /* ===== BLOG LATEST POST ON HOMEPAGE ===== */
   .blog-latest {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     max-width: 900px;
     margin: 0 auto 2.5rem;
     align-items: center;
     background: var(--white);
     border-radius: var(--radius-lg);
     overflow: hidden;
     border: 1.5px solid rgba(30,42,110,0.1);
     box-shadow: var(--shadow-card);
   }
   .blog-latest-img {
     aspect-ratio: 4/3;
     overflow: hidden;
   }
   .blog-latest-img img { width: 100%; height: 100%; object-fit: cover; }
   .blog-latest-img-placeholder {
     width: 100%; height: 100%;
     background: linear-gradient(135deg, var(--pink-lt), var(--yellow-lt));
     min-height: 260px;
   }
   .blog-latest-text { padding: 2rem 2rem 2rem 0; }
   .blog-latest-title {
     font-family: var(--font-display);
     font-size: 1.6rem;
     font-style: italic;
     font-weight: 400;
     color: var(--navy);
     line-height: 1.3;
     margin: 0.4rem 0 0.8rem;
   }
   .blog-latest-excerpt {
     font-size: 0.92rem;
     line-height: 1.75;
     color: #6a6a8a;
     margin-bottom: 0.5rem;
   }
   .blog-all-link { text-align: center; margin-top: 1rem; }
   
   @media (max-width: 900px) {
     .blog-latest { grid-template-columns: 1fr; }
     .blog-latest-text { padding: 1.5rem; }
     .blog-latest-img-placeholder { min-height: 200px; }
   }