
  :root{
    --ink: #2B1226;
    --ink-deep: #1D0C19;
    --magenta: #A61E8C;
    --magenta-soft: #C752AE;
    --magenta-tint: #F1D9EC;
    --marigold: #E8A33D;
    --marigold-soft: #F3C67E;
    --emerald: #21503F;
    --porcelain: #FBF5F0;
    --porcelain-deep: #F3E9E1;
    --charcoal: #34262F;
    --champagne: #E4D3C6;
    --white: #FFFFFF;
    --max-w: 1180px;
    --radius-s: 10px;
    --radius-m: 18px;
    --radius-l: 28px;
    --ease: cubic-bezier(.22,.68,.29,1);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{ background: var(--porcelain); color: var(--charcoal); font-family:'Manrope', sans-serif; line-height:1.6; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
  h1,h2,h3,.display{ font-family:'Fraunces', serif; color: var(--ink); font-weight:500; letter-spacing:-0.01em; }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  ul{list-style:none;}
  button{font-family:inherit; cursor:pointer;}
  :focus-visible{ outline: 2.5px solid var(--magenta); outline-offset: 3px; }
  .wrap{ max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
  .eyebrow{ font-family:'Manrope', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta); display:flex; align-items:center; gap:10px; margin-bottom: 18px; }
  .eyebrow::before{ content:""; width: 26px; height: 1.5px; background: var(--magenta); display:inline-block; }

  #preloader{ position:fixed; inset:0; z-index:999; background: var(--ink); display:flex; align-items:center; justify-content:center; transition: opacity .6s var(--ease), visibility .6s var(--ease); }
  #preloader img{ width: 90px; opacity:0; filter: brightness(0) invert(1); animation: preloaderIn 1s var(--ease) forwards; }
  #preloader.done{ opacity:0; visibility:hidden; }
  @keyframes preloaderIn{ 0%{ opacity:0; transform: scale(0.8); } 60%{ opacity:1; transform: scale(1.04); } 100%{ opacity:1; transform: scale(1); } }

  .reveal{ opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  .reveal.is-visible{ opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } html{ scroll-behavior:auto; } #preloader{ display:none; } }

  header{ position: fixed; top:0; left:0; right:0; z-index: 100; padding: 20px 0; transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow .35s var(--ease); }
  header.scrolled{ background: rgba(251,245,240,0.92); backdrop-filter: blur(10px); padding: 13px 0; box-shadow: 0 1px 0 rgba(43,18,38,0.08); }
  header .wrap{ display:flex; align-items:center; justify-content:space-between; }
  .brand{ display:flex; align-items:center; gap:10px; }
  .brand-logo{ height: 46px; width: auto; filter: brightness(0) invert(1); transition: filter .35s var(--ease); }
  header.scrolled .brand-logo{ filter: none; }

  nav ul{ display:flex; gap: 34px; align-items:center; }
  nav a{ font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,0.85); transition: color .3s ease; position:relative; }
  nav a:not(.btn)::after{ content:""; position:absolute; left:0; bottom:-5px; width:0; height:1.5px; background: var(--marigold-soft); transition: width .3s var(--ease); }
  nav a:not(.btn):hover::after{ width:100%; }
  header.scrolled nav a{ color: var(--charcoal); }
  nav a:hover{ color: var(--marigold-soft); }
  header.scrolled nav a:hover{ color: var(--magenta); }

  .btn{ display:inline-flex; align-items:center; gap: 8px; padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 14px; border: 1.5px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease; white-space:nowrap; position:relative; overflow:hidden; }
  .btn-primary{ background: var(--magenta); color: var(--white); box-shadow: 0 10px 24px -10px rgba(166,30,140,0.7); }
  .btn-primary::before{ content:""; position:absolute; top:0; left:-120%; width:60%; height:100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent); transform: skewX(-20deg); transition: left .6s var(--ease); }
  .btn-primary:hover::before{ left:130%; }
  .btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(166,30,140,0.85); }
  .btn-ghost-light{ border-color: rgba(255,255,255,0.5); color: var(--white); }
  .btn-ghost-light:hover{ background: rgba(255,255,255,0.12); }
  .btn-white{ background:white; color:var(--magenta); }
  .btn-white:hover{ transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(0,0,0,0.25); }

  .nav-toggle{ display:none; background:none; border:none; width: 40px; height:40px; position: relative; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{ content:""; position:absolute; left: 8px; right: 8px; height: 2px; background: var(--white); transition: transform .3s ease, opacity .3s ease, background .3s ease; }
  header.scrolled .nav-toggle span, header.scrolled .nav-toggle span::before, header.scrolled .nav-toggle span::after{ background: var(--ink); }
  .nav-toggle span{ top:19px; } .nav-toggle span::before{ top:-7px; } .nav-toggle span::after{ top:7px; }
  .nav-toggle.open span{ background: transparent; }
  .nav-toggle.open span::before{ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span::after{ transform: translateY(-7px) rotate(-45deg); }

  .hero{ position:relative; min-height: 100vh; display:flex; align-items:center; background: radial-gradient(130% 100% at 78% 8%, #4A1B3E 0%, var(--ink) 55%, var(--ink-deep) 100%); overflow:hidden; padding: 140px 0 70px; }
  .hero-orb{ position:absolute; border-radius:50%; filter: blur(60px); opacity:0.35; pointer-events:none; animation: drift 16s ease-in-out infinite alternate; }
  .hero-orb.o1{ width:340px; height:340px; background: var(--magenta); top:-60px; right:8%; }
  .hero-orb.o2{ width:260px; height:260px; background: var(--marigold); bottom:-40px; right:28%; animation-delay:3s; }
  @keyframes drift{ from{ transform: translate(0,0);} to{ transform: translate(-24px, 26px);} }
  @media (prefers-reduced-motion: reduce){ .hero-orb{ animation:none; } }
  .hero-petals{ position:absolute; right: 6%; top: 50%; transform: translateY(-50%); width: 480px; max-width: 55vw; animation: floaty 10s ease-in-out infinite; }
  .hero-petals img{ width:100%; height:auto; filter: brightness(0) invert(1); opacity: 0.08; }
  @keyframes floaty{ 0%,100%{ transform: translateY(-50%);} 50%{ transform: translateY(calc(-50% - 14px));} }
  @media (prefers-reduced-motion: reduce){ .hero-petals{ animation:none; } }
  .hero .wrap{ position:relative; z-index:2; }
  .hero-content{ max-width: 700px; }
  .hero .eyebrow{ color: var(--marigold-soft); }
  .hero .eyebrow::before{ background: var(--marigold-soft); }
  .hero h1{ color: var(--white); font-size: clamp(38px, 5.4vw, 68px); line-height: 1.08; font-weight: 500; }
  .hero h1 .word{ display:inline-block; opacity:0; transform: translateY(24px); animation: wordUp .7s var(--ease) forwards; }
  @keyframes wordUp{ to{ opacity:1; transform:translateY(0); } }
  .hero h1 em{ font-style: italic; color: var(--marigold-soft); }
  .hero p.lead{ margin-top: 22px; font-size: 18px; color: rgba(255,255,255,0.78); max-width: 560px; }
  .hero-actions{ margin-top: 38px; display:flex; gap: 16px; flex-wrap: wrap; }

  .marquee-band{ background: var(--ink-deep); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); overflow:hidden; padding: 18px 0; }
  .marquee-track{ display:flex; width:max-content; animation: marquee 32s linear infinite; }
  @media (prefers-reduced-motion: reduce){ .marquee-track{ animation:none; } }
  .marquee-track span{ display:flex; align-items:center; gap: 14px; font-family:'Fraunces', serif; font-style:italic; font-weight:400; font-size: 19px; color: rgba(255,255,255,0.55); padding: 0 34px; white-space:nowrap; }
  .marquee-track span::after{ content:"✦"; color: var(--marigold-soft); font-size:13px; margin-left:34px; font-style:normal; }
  @keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

  section{ padding: 108px 0; position:relative; }
  .section-head{ max-width: 640px; }
  .section-head h2{ font-size: clamp(28px, 3.6vw, 42px); line-height:1.15; }
  .section-head p{ margin-top: 16px; font-size: 16.5px; color: #5B4A54; max-width: 560px; }

  .about{ background: var(--white); }
  .about-grid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items:center; }
  .about-copy p{ font-size: 16.5px; color: #5B4A54; margin-top: 18px; }
  .about-copy p:first-of-type{ margin-top: 0; }
  .about-visual{ position:relative; aspect-ratio: 4/5; border-radius: var(--radius-l); background: linear-gradient(155deg, var(--magenta) 0%, #7d1a6c 60%, var(--ink) 130%); display:flex; align-items:center; justify-content:center; overflow:hidden; }
  .about-logo{ width: 62%; filter: brightness(0) invert(1); opacity:0.92; }
  .about-visual::after{ content: attr(data-caption); position:absolute; bottom: 26px; left: 26px; right: 26px; color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }
  .stat-row{ display:flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
  .stat-row div{ min-width: 120px; }
  .stat-row .num, .stat-row .num-text{ font-family:'Fraunces', serif; font-size: 34px; color: var(--magenta); font-weight: 500; }
  .stat-row .lbl{ font-size: 13px; color: #83717A; font-weight: 600; margin-top: 4px; }

  .services{ background: var(--porcelain-deep); }
  .service-grid{ margin-top: 52px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .service-card{ background: var(--white); border-radius: var(--radius-m); padding: 32px 26px; border: 1px solid rgba(43,18,38,0.06); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease; }
  .service-card:hover{ transform: translateY(-6px); box-shadow: 0 22px 40px -20px rgba(43,18,38,0.22); border-color: rgba(166,30,140,0.2); }
  .service-card .icon{ width: 46px; height:46px; border-radius: 12px; background: var(--magenta-tint); display:flex; align-items:center; justify-content:center; margin-bottom: 22px; transition: transform .35s var(--ease), background .35s ease; }
  .service-card:hover .icon{ transform: rotate(-8deg) scale(1.08); background: var(--magenta); }
  .service-card:hover .icon svg{ stroke: white; }
  .service-card .icon svg{ width:24px; height:24px; stroke: var(--magenta); transition: stroke .35s ease; }
  .service-card h3{ font-size: 19px; margin-bottom: 10px; }
  .service-card p{ font-size: 14.5px; color: #6B5A63; }

  .gallery{ background: var(--white); }
  .gallery-grid{ margin-top: 52px; display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; gap: 14px; }
  .gtile{ border-radius: var(--radius-s); position:relative; overflow:hidden; display:flex; align-items:flex-end; padding: 16px; transition: transform .4s var(--ease); }
  .gtile:hover{ transform: scale(1.02); }
  .gtile span{ color: rgba(255,255,255,0.92); font-size: 13.5px; font-weight: 700; position:relative; z-index:2; }
  .gtile::before{ content:""; position:absolute; inset:0; background: rgba(0,0,0,0.18); z-index:1; }
  .gtile.g1{ grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, var(--magenta), #7d1a6c); }
  .gtile.g2{ grid-column: span 2; background: linear-gradient(135deg, var(--marigold), #c47f22); }
  .gtile.g3{ grid-column: span 1; background: linear-gradient(135deg, var(--emerald), #123024); }
  .gtile.g4{ grid-column: span 1; background: linear-gradient(135deg, var(--magenta-soft), #8f2c7d); }
  .gtile.g5{ grid-column: span 2; background: linear-gradient(135deg, var(--ink), var(--ink-deep)); }
  .gallery-note{ margin-top: 22px; font-size: 13.5px; color: #8A7A83; font-style:italic; }
  .gtile.has-photo{ cursor:pointer; }
  .gtile.has-photo .gtile-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
  .gtile.has-photo::before{ background: linear-gradient(180deg, rgba(29,12,25,0.05) 40%, rgba(29,12,25,0.75) 100%); transition: background .35s ease; }
  .gtile.has-photo:hover::before{ background: linear-gradient(180deg, rgba(29,12,25,0.15) 30%, rgba(29,12,25,0.82) 100%); }
  .gtile.has-photo .gtile-tag{ position:relative; z-index:2; display:flex; flex-direction:column; gap:2px; }
  .gtile.has-photo .gtile-tag .view-hint{ font-size:11px; font-weight:600; color: rgba(255,255,255,0.7); text-transform:uppercase; letter-spacing:0.05em; }

  .gal-overlay{ position:fixed; inset:0; z-index:999; background: rgba(20,8,17,0.97); display:none; overflow-y:auto; padding: 90px 24px 60px; }
  .gal-overlay.open{ display:block; }
  .pg-wrap{ max-width: 1100px; margin: 0 auto; }
  .pg-head{ display:flex; align-items:flex-start; justify-content:space-between; gap: 20px; margin-bottom: 34px; }
  .pg-head h3{ color:white; font-size: clamp(24px, 3vw, 34px); }
  .pg-head p{ color: rgba(255,255,255,0.55); margin-top:8px; font-size: 14.5px; max-width: 520px; }
  .pg-close{ flex-shrink:0; width: 44px; height:44px; border-radius:50%; background: rgba(255,255,255,0.1); border:none; color:white; font-size:20px; display:flex; align-items:center; justify-content:center; transition: background .25s ease; cursor:pointer; }
  .pg-close:hover{ background: rgba(255,255,255,0.22); }
  .pg-photo-grid{ display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
  .pg-photo{ border-radius: var(--radius-s); overflow:hidden; cursor:pointer; position:relative; }
  .pg-photo img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .5s var(--ease); }
  .pg-photo:hover img{ transform: scale(1.06); }
  @media (max-width: 900px){ .pg-photo-grid{ grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; } }
  @media (max-width: 640px){ .pg-photo-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; } .gal-overlay{ padding: 80px 14px 40px; } }

  #lightbox-overlay{ position:fixed; inset:0; z-index:1000; background: rgba(20,8,17,0.95); display:none; align-items:center; justify-content:center; padding: 32px; }
  #lightbox-overlay.open{ display:flex; }
  #lightbox-overlay .lb-close{ position:absolute; top: 22px; right: 28px; width: 42px; height:42px; border-radius:50%; background: rgba(255,255,255,0.12); border:none; color:white; font-size:20px; display:flex; align-items:center; justify-content:center; cursor:pointer; }
  #lightbox-overlay .lb-arrow{ position:absolute; top:50%; transform: translateY(-50%); width: 48px; height:48px; border-radius:50%; background: rgba(255,255,255,0.12); border:none; color:white; font-size:22px; display:flex; align-items:center; justify-content:center; cursor:pointer; }
  #lightbox-overlay .lb-prev{ left: 18px; } #lightbox-overlay .lb-next{ right: 18px; }
  #lightbox-overlay .lb-img-wrap{ max-width: 900px; max-height: 84vh; display:flex; flex-direction:column; align-items:center; gap: 14px; }
  #lightbox-overlay img{ max-width:100%; max-height: 74vh; border-radius: var(--radius-m); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6); }
  #lightbox-overlay .lb-caption{ color: rgba(255,255,255,0.6); font-size: 13px; }
  @media (max-width: 640px){ #lightbox-overlay .lb-arrow{ width:38px; height:38px; font-size:18px; } #lightbox-overlay{ padding: 16px; } }


  .calendar-section{ background: var(--ink); color: var(--white); }
  .calendar-section .eyebrow{ color: var(--marigold-soft); }
  .calendar-section .eyebrow::before{ background: var(--marigold-soft); }
  .calendar-section .section-head h2{ color: var(--white); }
  .calendar-section .section-head p{ color: rgba(255,255,255,0.65); }
  .calendar-layout{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items:center; margin-top: 50px; }
  .wheel-wrap{ position:relative; width: 100%; max-width: 400px; aspect-ratio: 1/1; margin: 0 auto; transform: rotate(-8deg) scale(0.92); opacity:0; transition: transform 1s var(--ease), opacity 1s var(--ease); }
  .wheel-wrap.is-visible{ transform: rotate(0) scale(1); opacity:1; }
  .wheel-ring{ position:absolute; inset: 0; border-radius: 50%; }
  .wheel-center{ position:absolute; inset: 15.5%; border-radius: 50%; background: var(--ink); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
  .wc-logo{ width: 74px; height:auto; margin-bottom:8px; }
  .wheel-center .wc-title{ font-family:'Fraunces', serif; font-size: 15px; color: var(--white); }
  .wheel-center .wc-sub{ font-size: 10.5px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 3px; }
  .month-label{ position:absolute; font-size: 11.5px; font-weight: 700; letter-spacing: 0.03em; color: rgba(255,255,255,0.8); transform: translate(-50%, -50%); white-space:nowrap; pointer-events:none; }
  .month-label.hl-navratri{ color: var(--magenta-soft); }
  .month-label.hl-diwali{ color: var(--marigold-soft); }
  .month-label.hl-holi{ color: var(--marigold-soft); }
  .month-label.hl-wedding{ color: #E7B7DA; }
  .calendar-legend{ display:flex; flex-direction:column; gap: 22px; }
  .legend-item{ display:flex; gap: 16px; align-items:flex-start; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .legend-item:last-child{ border-bottom:none; padding-bottom:0; }
  .legend-dot{ width: 12px; height:12px; border-radius: 3px; margin-top: 5px; flex-shrink:0; }
  .legend-item h4{ font-family:'Fraunces', serif; font-size: 17px; font-weight:500; color: var(--white); }
  .legend-item p{ font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 4px; }
  .legend-item .when{ font-size: 11.5px; color: rgba(255,255,255,0.4); font-weight:700; letter-spacing: 0.05em; text-transform:uppercase; }

  .process{ background: var(--white); }
  .process-grid{ margin-top: 56px; display:grid; grid-template-columns: repeat(4, 1fr); gap: 0; position:relative; }
  .process-line{ position:absolute; top: 27px; left: 6%; right: 6%; height: 2px; background: var(--champagne); z-index:1; }
  .process-line-fill{ height:100%; width:0%; background: linear-gradient(90deg, var(--magenta), var(--marigold)); transition: width 1.4s var(--ease); }
  .process-step{ position:relative; padding-right: 20px; z-index: 2; }
  .process-step .step-num{ width: 54px; height:54px; border-radius: 50%; background: var(--porcelain); border: 1.5px solid var(--champagne); display:flex; align-items:center; justify-content:center; font-family:'Fraunces', serif; font-size: 18px; color: var(--magenta); position:relative; z-index:2; margin-bottom: 22px; transition: background .4s ease, color .4s ease, border-color .4s ease; }
  .process-step.is-visible .step-num{ background: var(--magenta); color:white; border-color: var(--magenta); }
  .process-step h3{ font-size: 18px; margin-bottom: 8px; }
  .process-step p{ font-size: 14px; color: #6B5A63; }

  .why{ background: var(--porcelain-deep); }
  .why-grid{ margin-top: 50px; display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
  .why-item{ background: var(--white); border-radius: var(--radius-m); padding: 28px; display:flex; gap: 18px; align-items:flex-start; border: 1px solid rgba(43,18,38,0.06); transition: transform .3s var(--ease); }
  .why-item:hover{ transform: translateY(-4px); }
  .why-item .icon{ width: 40px; height:40px; border-radius: 10px; background: var(--marigold-soft); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .why-item .icon svg{ width:20px; height:20px; stroke: var(--ink); }
  .why-item h4{ font-size: 16.5px; color: var(--ink); font-family:'Fraunces', serif; font-weight:500; margin-bottom: 6px; }
  .why-item p{ font-size: 14px; color: #6B5A63; }

  .founding{ background: var(--white); }
  .founding-card{ background: linear-gradient(120deg, var(--magenta-tint), var(--porcelain-deep)); border-radius: var(--radius-l); padding: 52px; display:grid; grid-template-columns: 1.3fr 0.7fr; gap:40px; align-items:center; border: 1px solid rgba(166,30,140,0.14); }
  .founding-card h3{ font-size: 26px; }
  .founding-card p{ margin-top: 12px; color: #5B4A54; font-size: 15.5px; max-width: 480px; }

  .faq{ background: var(--porcelain-deep); }
  .faq-list{ margin-top: 44px; max-width: 780px; }
  .faq-item{ border-bottom: 1px solid rgba(43,18,38,0.12); }
  .faq-q{ width:100%; background:none; border:none; text-align:left; display:flex; justify-content:space-between; align-items:center; gap: 20px; padding: 22px 4px; font-family:'Fraunces', serif; font-size: 17px; color: var(--ink); }
  .faq-q .plus{ font-size: 20px; color: var(--magenta); transition: transform .3s var(--ease); flex-shrink:0; }
  .faq-item.open .plus{ transform: rotate(45deg); }
  .faq-a{ max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
  .faq-a p{ padding: 0 4px 22px; font-size: 14.5px; color: #6B5A63; max-width: 640px; }

  .cta{ background: linear-gradient(155deg, var(--magenta) 0%, #7d1a6c 65%, var(--ink) 130%); color: var(--white); text-align:center; }
  .cta h2{ color: var(--white); font-size: clamp(30px, 4.4vw, 48px); max-width: 720px; margin: 0 auto; line-height:1.15; }
  .cta p{ margin: 20px auto 0; color: rgba(255,255,255,0.8); max-width: 480px; font-size: 16px; }
  .cta-actions{ margin-top: 36px; display:flex; gap: 16px; justify-content:center; flex-wrap:wrap; }
  .contact-details{ margin-top: 56px; display:flex; justify-content:center; gap: 48px; flex-wrap:wrap; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.2); }
  .contact-details div{ text-align:left; }
  .contact-details .lbl{ font-size: 11.5px; font-weight:700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
  .contact-details .val{ font-size: 15px; font-weight:600; line-height:1.5; }
  .map-link{
    display:inline-flex; align-items:center; gap:6px; margin-top:12px;
    font-size: 13.5px; font-weight:700; color: var(--marigold-soft);
    border-bottom: 1px solid rgba(243,198,126,0.5); padding-bottom:2px;
    transition: color .25s ease, border-color .25s ease;
  }
  .map-link:hover{ color: white; border-color: white; }
  .map-embed{
    margin-top: 44px;
    border-radius: var(--radius-m);
    overflow: hidden;
    height: 300px;
    box-shadow: 0 24px 50px -20px rgba(0,0,0,0.45);
    border: 3px solid rgba(255,255,255,0.15);
  }

  footer{ background: var(--ink); color: rgba(255,255,255,0.55); padding: 48px 0 28px; }
  footer .wrap{ display:flex; flex-direction:column; gap: 28px; }
  .footer-top{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  footer .f-logo{ height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
  .f-socials{ display:flex; gap: 14px; }
  .f-socials a{ width: 38px; height:38px; border-radius:50%; border: 1px solid rgba(255,255,255,0.25); display:flex; align-items:center; justify-content:center; transition: background .3s ease, border-color .3s ease, transform .3s var(--ease); }
  .f-socials a:hover{ background: var(--magenta); border-color: var(--magenta); transform: translateY(-3px); }
  .f-socials svg{ width:16px; height:16px; stroke: white; }
  .footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap: 16px; }
  .f-links{ display:flex; gap: 24px; }
  .f-links a{ font-size: 13px; transition: color .3s ease; }
  .f-links a:hover{ color: var(--marigold-soft); }
  .f-copy{ font-size: 12.5px; }

  .sticky-cta{ position: fixed; bottom: 18px; right: 18px; z-index: 90; opacity:0; transform: translateY(20px) scale(0.9); pointer-events:none; transition: opacity .35s var(--ease), transform .35s var(--ease); }
  .sticky-cta.show{ opacity:1; transform: translateY(0) scale(1); pointer-events:auto; }

  /* ---- Premium polish: scroll progress, back-to-top, scrollbar, lotus divider, gallery shine ---- */
  ::-webkit-scrollbar{ width: 10px; height:10px; }
  ::-webkit-scrollbar-track{ background: var(--porcelain); }
  ::-webkit-scrollbar-thumb{ background: var(--magenta-soft); border-radius: 10px; border: 2px solid var(--porcelain); }
  ::-webkit-scrollbar-thumb:hover{ background: var(--magenta); }
  html{ scrollbar-color: var(--magenta-soft) var(--porcelain); scrollbar-width: thin; }

  .scroll-progress{ position: fixed; top:0; left:0; height: 3px; width:0%; background: linear-gradient(90deg, var(--magenta), var(--marigold)); z-index: 101; transition: width .1s linear; }
  @media (prefers-reduced-motion: reduce){ .scroll-progress{ transition:none; } }

  .back-to-top{ position: fixed; bottom: 18px; left: 18px; z-index: 90; width: 46px; height:46px; border-radius:50%; background: var(--ink); border:none; color:white; display:flex; align-items:center; justify-content:center; opacity:0; transform: translateY(20px) scale(0.9); pointer-events:none; transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s ease; box-shadow: 0 12px 26px -12px rgba(43,18,38,0.5); }
  .back-to-top.show{ opacity:1; transform: translateY(0) scale(1); pointer-events:auto; }
  .back-to-top:hover{ background: var(--magenta); }
  .back-to-top svg{ width:18px; height:18px; stroke:white; }

  .lotus-divider{ display:flex; align-items:center; justify-content:center; gap: 18px; padding: 0 0 8px; }
  .lotus-divider::before, .lotus-divider::after{ content:""; height:1px; width: 100%; max-width: 160px; background: linear-gradient(90deg, transparent, var(--champagne), transparent); }
  .lotus-divider svg{ width: 30px; height:30px; flex-shrink:0; opacity: 0.85; }

  .gtile.has-photo{ position:relative; }
  .gtile.has-photo::after{ content:""; position:absolute; inset:0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%); transform: translateX(-130%); transition: transform .85s var(--ease); z-index:3; pointer-events:none; }
  .gtile.has-photo:hover::after{ transform: translateX(130%); }
  @media (max-width: 720px){ .back-to-top{ bottom: 14px; left: 14px; } }

  /* ---- Arabic / RTL support ---- */
  .lang-btn{ background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.35); color: white; font-weight: 700; font-size: 13px; padding: 8px 16px; border-radius: 999px; transition: background .25s ease, border-color .25s ease, color .25s ease; }
  header.scrolled .lang-btn{ background: rgba(43,18,38,0.06); border-color: rgba(43,18,38,0.2); color: var(--charcoal); }
  .lang-btn:hover{ background: var(--magenta); border-color: var(--magenta); color: white; }
  @media (max-width: 720px){ .lang-btn{ color: white !important; border-color: rgba(255,255,255,0.4) !important; background: rgba(255,255,255,0.08) !important; align-self:flex-start; } }

  [dir="rtl"] body{ font-family: 'Tajawal', 'Manrope', sans-serif; }
  [dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] .display,
  [dir="rtl"] .wc-title, [dir="rtl"] .num, [dir="rtl"] .num-text,
  [dir="rtl"] .eyebrow, [dir="rtl"] .marquee-track span, [dir="rtl"] .faq-q{ font-family: 'Tajawal', sans-serif; font-weight: 700; letter-spacing: 0; }
  [dir="rtl"] .eyebrow, [dir="rtl"] .lbl, [dir="rtl"] .when, [dir="rtl"] .view-hint,
  [dir="rtl"] .wc-sub, [dir="rtl"] .f-copy, [dir="rtl"] nav a{ letter-spacing: normal; }
  [dir="rtl"] .eyebrow{ text-transform: none; }
  [dir="rtl"] .hero h1 em{ font-style: normal; }
  [dir="rtl"] .marquee-track span{ font-style: normal; }
  [dir="rtl"] .contact-details div{ text-align: right; }
  [dir="rtl"] .faq-q{ text-align: right; }
  [dir="rtl"] nav a:not(.btn)::after{ left: auto; right: 0; }
  [dir="rtl"] .marquee-track{ direction: rtl; }
  [dir="rtl"] .lb-caption{ direction: ltr; }

  @media (max-width: 980px){
    .about-grid{ grid-template-columns: 1fr; }
    .about-visual{ order:-1; aspect-ratio: 16/9; }
    .service-grid{ grid-template-columns: repeat(2, 1fr); }
    .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
    .calendar-layout{ grid-template-columns: 1fr; }
    .process-grid{ grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .process-line{ display:none; }
    .founding-card{ grid-template-columns: 1fr; text-align:center; }
    .founding-card p{ margin-left:auto; margin-right:auto; }
  }
  @media (max-width: 720px){
    .map-embed{ height: 220px; }
    nav{ position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px); background: var(--ink); transform: translateX(100%); transition: transform .4s var(--ease); padding: 100px 32px 40px; z-index: 90; }
    nav.open{ transform: translateX(0); }
    nav ul{ flex-direction:column; align-items:flex-start; gap: 26px; }
    nav a{ color: var(--white); font-size:17px; }
    nav .btn{ margin-top: 10px; }
    .nav-toggle{ display:block; }
    .hero-actions .btn-ghost-light{ display:none; }
    .service-grid{ grid-template-columns: 1fr; }
    .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 110px; }
    .gtile.g1{ grid-column: span 2; grid-row: span 1; }
    .process-grid{ grid-template-columns: 1fr; }
    .hero-petals{ opacity: 0.5; width: 340px; right: 3%; }
    .contact-details{ flex-direction:column; align-items:center; text-align:center; gap: 24px; }
    .contact-details div{ text-align:center; }
    .footer-top, .footer-bottom{ flex-direction:column; text-align:center; }
    .sticky-cta{ bottom: 14px; right: 14px; }
  }
