/* Shared motion layer — intentionally progressive and reduced-motion safe. */
:root{
  --ease-luxe:cubic-bezier(.22,1,.36,1);
}

html{
  max-width:100%;
  overflow-x:clip;
}

body{
  overflow-x:clip;
}

.nav{
  transition:background-color .35s ease, box-shadow .35s ease, transform .35s var(--ease-luxe);
}

.nav.is-scrolled{
  background:rgba(255,255,255,.95);
  box-shadow:0 10px 30px rgba(31,24,10,.09);
}

.logo{
  transition:transform .55s var(--ease-luxe);
}

.brand:hover .logo,
.nav > a:hover .logo{
  transform:scale(1.045) rotate(-1.5deg);
}

.links a{
  position:relative;
  transition:color .25s ease;
}

.nav-toggle{
  display:none;
}

.mobile-planner{
  display:none;
}

.mobile-about-story{
  display:none;
}

.mobile-instagram-profile{
  display:block;
  padding:96px 0 102px;
  background:#f6f2e9;
}

.instagram-section-heading{
  margin-bottom:34px;
  text-align:center;
}

.instagram-section-heading > span{
  display:block;
  margin-bottom:14px;
  color:#9b7422;
  font-family:"Cinzel",serif;
  font-size:10px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
}

.instagram-section-heading h2{
  margin:0 0 20px;
  color:#17130f;
  font-family:"Cormorant Garamond",serif;
  font-size:64px;
  font-weight:500;
  letter-spacing:-1px;
  line-height:.92;
}

.instagram-section-heading a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding-bottom:5px;
  border-bottom:1px solid rgba(155,116,34,.55);
  color:#7b5a17;
  font-size:13px;
  font-weight:700;
  letter-spacing:.4px;
}

.instagram-embed-shell{
  position:relative;
  width:min(100%,540px);
  margin:0 auto;
  overflow:hidden;
  border:1px solid rgba(155,116,34,.2);
  border-radius:28px;
  background:#fff;
  box-shadow:0 22px 55px rgba(44,33,12,.14);
  animation:instagram-card-float 7s ease-in-out infinite;
  will-change:transform;
}

.instagram-embed-shell .instagram-media{
  width:100% !important;
  min-width:0 !important;
  max-width:none !important;
  margin:0 !important;
  border:0 !important;
  box-shadow:none !important;
}

.instagram-profile-embed{
  display:block;
  width:100%;
  height:590px;
  border:0;
  border-radius:27px;
  background:#fff;
  transform-origin:top left;
}

@keyframes instagram-card-float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-5px);}
}

.instagram-embed-shell > blockquote > a{
  display:flex;
  min-height:120px;
  align-items:center;
  justify-content:center;
  padding:20px;
  color:#7b5a17;
  font-family:"Cinzel",serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  text-align:center;
  text-transform:uppercase;
}

.links a::after{
  content:"";
  position:absolute;
  left:50%;
  right:50%;
  bottom:-7px;
  height:1px;
  background:var(--gold,#c89b3c);
  transition:left .3s var(--ease-luxe), right .3s var(--ease-luxe);
}

.links a:hover::after,
.links a:focus-visible::after{
  left:0;
  right:0;
}

.hero{
  background-repeat:no-repeat;
  touch-action:pan-y;
  contain:paint;
}

.hero-signature,
.hero-title,
.hero-description,
.hero-text > p:not(.hero-description){
  animation:hero-fade .72s ease-out both;
}

.hero-buttons{
  animation:hero-fade .72s .1s ease-out both;
}

.hero-btn,
.btn,
.social,
.hall-jump a{
  transition:transform .3s var(--ease-luxe), box-shadow .3s ease, background-color .3s ease;
}

.hero-btn:hover,
.btn:hover,
.social:hover,
.hall-jump a:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 26px rgba(126,91,20,.18);
}

.gallery-category,
.menu-card,
.about-card,
.review-card,
.inquiry-form,
.map-box{
  transition:transform .55s var(--ease-luxe), box-shadow .55s ease, opacity .7s ease;
}

.premium-review-carousel .review-card{
  transition:
    transform .72s var(--ease-luxe),
    opacity .48s ease,
    box-shadow .72s ease;
}

.menu-card:hover,
.about-card:hover{
  transform:translateY(-7px);
  box-shadow:0 20px 48px rgba(45,33,9,.12);
}

.menu-cover-img{
  transition:transform .7s var(--ease-luxe), filter .5s ease;
}

.menu-card:hover .menu-cover-img{
  transform:scale(1.025);
  filter:saturate(1.08);
}

.whatsapp{
  display:inline-flex;
  align-items:center;
  animation:whatsapp-float 3s ease-in-out infinite;
  transition:transform .3s var(--ease-luxe), box-shadow .3s ease;
  box-shadow:0 10px 28px rgba(37,211,102,.25);
}

.whatsapp-logo-frame{
  width:24px;
  height:24px;
  margin-right:8px;
  flex:0 0 auto;
  overflow:hidden;
  border-radius:50%;
}

.whatsapp-logo{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(2.2);
}

.whatsapp:hover{
  animation-play-state:paused;
  transform:translateY(-5px) scale(1.03);
}

body.motion-ready .motion-reveal{
  opacity:0;
  transition:
    opacity .8s ease,
    transform .9s var(--ease-luxe),
    clip-path 1s var(--ease-luxe),
    filter .9s ease;
  transition-delay:var(--motion-delay,0ms);
}

/* About: the two columns meet gently from opposite sides. */
body.motion-ready .motion-about-left{
  transform:translateX(-46px);
}

body.motion-ready .motion-about-right{
  transform:translateX(46px);
}

/* Homepage gallery: a cinematic vertical unveil. */
body.motion-ready .motion-gallery-card{
  opacity:.82;
  transform:translateY(34px) perspective(900px) rotateX(4deg);
  clip-path:inset(0 0 0 0 round 24px);
}

/* Menus: compact scale-up, like cards being placed on a table. */
body.motion-ready .motion-menu-card{
  transform:translateY(18px) scale(.92);
  filter:blur(4px);
}

/* Reviews: soft focus settling into place. */
body.motion-ready .motion-review{
  transform:scale(.965);
  filter:blur(7px);
}

/* Inquiry: copy and form arrive from opposing sides. */
body.motion-ready .motion-inquiry-copy{
  transform:translateX(-54px);
}

body.motion-ready .motion-inquiry-form{
  transform:translateX(54px);
}

/* Map: a wide horizontal curtain reveal. */
body.motion-ready .motion-map{
  opacity:1;
  transform:scaleX(.96);
  clip-path:inset(0 0 0 0 round 28px);
}

/* Contact: simple upward cadence reserved for the final CTA. */
body.motion-ready .motion-contact{
  transform:translateY(28px);
}

/* Gallery pages: photographs develop from soft focus. */
body.motion-ready .motion-photo{
  transform:scale(.94);
  filter:blur(10px) saturate(.7);
}

/* Hall pages: headings sweep in, dividers rotate into place. */
body.motion-ready .motion-hall-heading{
  transform:translateX(-50px);
  clip-path:inset(0 100% 0 0);
}

body.motion-ready .motion-divider{
  transform:scale(.45) rotate(-35deg);
}

/* Inner-page mastheads use a quiet drop rather than homepage motion. */
body.motion-ready .motion-page-head{
  transform:translateY(-24px);
}

body.motion-ready .motion-reveal.is-visible{
  opacity:1;
  transform:none;
  clip-path:inset(0 0 0 0);
  filter:none;
}

/* Essential media should never disappear if an observer is delayed. */
body.motion-ready .gallery-category img,
body.motion-ready .map-box iframe{
  opacity:1;
  visibility:visible;
}

.gallery img.motion-reveal.is-visible{
  transition:
    opacity .8s ease,
    transform .35s var(--ease-luxe),
    box-shadow .35s ease,
    filter .9s ease;
}

.gallery img:hover{
  box-shadow:0 18px 42px rgba(45,33,9,.18);
}

.lightbox.active{
  animation:lightbox-in .25s ease both;
}

.lightbox.active img{
  animation:lightbox-image-in .45s var(--ease-luxe) both;
}

@keyframes hero-fade{
  from{opacity:0;}
  to{opacity:1;}
}

@keyframes whatsapp-float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
}

@keyframes lightbox-in{
  from{opacity:0;}
  to{opacity:1;}
}

@keyframes lightbox-image-in{
  from{opacity:0;transform:scale(.94);}
  to{opacity:1;transform:scale(1);}
}

@media(max-width:900px){
  .links a::after{display:none;}
  .hero{background-size:cover;}

  .hero-signature,
  .hero-title,
  .hero-description,
  .hero-text > p:not(.hero-description),
  .hero-buttons{
    animation-duration:.45s;
    animation-delay:0s;
  }

  .premium-review-carousel .review-card{
    will-change:auto;
  }

  body.motion-ready .motion-about-left,
  body.motion-ready .motion-about-right,
  body.motion-ready .motion-inquiry-copy,
  body.motion-ready .motion-inquiry-form,
  body.motion-ready .motion-hall-heading{
    transform:translateY(28px);
  }
}

/* =========================
   RESPONSIVE LAYOUT LAYER
========================= */

.menu-heading{
  grid-column:1 / -1;
  min-width:0;
}

section[id],
#menus{
  scroll-margin-top:96px;
}

@media(min-width:1201px){
  .menu-grid{
    width:min(calc(100% - 64px),1440px);
    margin:48px auto 90px;
    padding:0;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
  }

  .menu-heading{
    max-width:780px;
    margin:0 auto 10px;
    text-align:center;
  }

  .menu-heading .gold-line{
    margin-left:auto;
    margin-right:auto;
  }

  .menu-card{
    min-width:0;
    min-height:0;
    padding:18px;
  }

  .menu-cover-img{
    height:auto;
    aspect-ratio:4 / 5;
  }
}

@media(max-width:1200px){
  .wrap{
    width:min(100% - 40px,1100px);
  }

  section{
    padding:76px 0;
  }

  .menu-grid{
    width:min(100% - 40px,1100px);
    margin:40px auto;
    padding:0;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .gallery-categories{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .gallery-category:last-child:nth-child(odd){
    grid-column:1 / -1;
    height:420px;
  }

  .premium-review-carousel{
    max-width:100%;
  }
}

@media(max-width:900px){
  body{
    -webkit-text-size-adjust:100%;
  }

  section{
    padding:58px 0;
  }

  .wrap{
    width:min(100% - 32px,760px);
  }

  .nav{
    height:82px;
    min-height:82px;
    padding:0 16px;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid rgba(200,155,60,.22);
    background:rgba(255,255,255,.93);
    backdrop-filter:blur(20px);
  }

  .home-page .nav:not(.is-scrolled){
    border-bottom-color:transparent;
    background:transparent;
    backdrop-filter:none;
    box-shadow:none;
  }

  .home-page .nav .brand{
    transition:opacity .25s ease, visibility .25s ease, transform .3s var(--ease-luxe);
  }

  .home-page .nav:not(.is-scrolled) .brand{
    display:flex;
    height:82px;
    align-items:center;
    justify-content:center;
    line-height:0;
  }

  .home-page .nav:not(.is-scrolled) .logo{
    display:block;
    width:76px;
    height:76px;
    margin:0;
    filter:drop-shadow(0 3px 8px rgba(0,0,0,.24));
  }

  .home-page .nav:not(.is-scrolled) .nav-toggle{
    align-self:center;
    margin-top:0;
    margin-bottom:0;
    border-color:rgba(248,231,163,.7);
    background:rgba(3,18,42,.32);
    color:#f8e7a3;
    backdrop-filter:blur(8px);
    box-shadow:0 8px 24px rgba(0,0,0,.22);
  }

  .nav::after{
    content:"";
    position:fixed;
    inset:82px 0 0;
    z-index:1;
    background:rgba(17,13,7,.38);
    backdrop-filter:blur(2px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .35s ease, visibility .35s ease;
  }

  .nav.nav-open::after{
    opacity:1;
    visibility:visible;
  }

  .nav-inner{
    width:100%;
    height:82px;
    min-height:82px;
    flex-direction:row;
    justify-content:space-between;
    gap:0;
  }

  .nav > a{
    display:flex;
    align-items:center;
    justify-content:center;
    height:64px;
    position:relative;
    z-index:3;
  }

  .brand{
    position:relative;
    z-index:3;
  }

  .logo{
    width:82px;
    height:82px;
  }

  .nav > a .logo{
    height:64px;
  }

  .nav-toggle{
    width:44px;
    height:44px;
    flex:0 0 44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-left:auto;
    border:1px solid rgba(200,155,60,.55);
    border-radius:50%;
    background:linear-gradient(145deg,#fff,#faf6ec);
    color:#9b7422;
    box-shadow:0 7px 22px rgba(116,82,16,.11);
    cursor:pointer;
    position:relative;
    z-index:3;
  }

  .nav-toggle span,
  .nav-toggle::before,
  .nav-toggle::after{
    content:"";
    position:absolute;
    width:18px;
    height:1.5px;
    border-radius:999px;
    background:currentColor;
    transition:transform .3s var(--ease-luxe), opacity .2s ease;
  }

  .nav-toggle::before{transform:translateY(-6px);}
  .nav-toggle::after{transform:translateY(6px);}

  .nav.nav-open .nav-toggle span{opacity:0;}
  .nav.nav-open .nav-toggle::before{transform:rotate(45deg);}
  .nav.nav-open .nav-toggle::after{transform:rotate(-45deg);}

  .links{
    display:flex !important;
    flex-direction:column;
    position:fixed;
    top:96px;
    left:auto;
    right:14px;
    width:min(86vw,340px);
    max-width:340px;
    gap:0;
    padding:22px 20px 20px;
    overflow:hidden;
    z-index:4;
    background:
      linear-gradient(145deg,rgba(255,255,255,.99),rgba(250,247,239,.99));
    backdrop-filter:blur(24px);
    border:1px solid rgba(200,155,60,.34);
    border-radius:26px;
    box-shadow:
      0 30px 70px rgba(20,14,5,.24),
      inset 0 1px 0 rgba(255,255,255,.9);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-14px) scale(.97);
    transform-origin:top right;
    transition:
      opacity .25s ease,
      visibility .25s ease,
      transform .35s var(--ease-luxe);
  }

  .links::before{
    content:"AYRAA  ·  NAVIGATION";
    display:block;
    padding:0 8px 14px;
    color:var(--gold,#c89b3c);
    font-size:10px;
    font-weight:700;
    letter-spacing:2.3px;
    border-bottom:1px solid rgba(200,155,60,.2);
  }

  .nav.nav-open .links{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:none;
  }

  .links a{
    display:grid;
    grid-template-columns:34px 1fr;
    min-height:57px;
    align-items:center;
    justify-content:start;
    padding:8px;
    border:0;
    border-bottom:1px solid rgba(200,155,60,.15);
    border-radius:0;
    background:transparent;
    color:#282117;
    font-family:"Cormorant Garamond",serif;
    font-size:25px;
    font-weight:700;
    letter-spacing:.2px;
    text-align:left;
    white-space:normal;
    transition:color .2s ease, padding-left .3s var(--ease-luxe);
  }

  .links a::before{
    color:var(--gold,#c89b3c);
    font-family:Inter,sans-serif;
    font-size:10px;
    font-weight:700;
    letter-spacing:1px;
  }

  .links a:nth-child(1)::before{content:"01";}
  .links a:nth-child(2)::before{content:"02";}
  .links a:nth-child(3)::before{content:"03";}
  .links a:nth-child(4)::before{content:"04";}
  .links a:nth-child(5)::before{content:"05";}

  .links a:last-child{
    display:flex;
    min-height:50px;
    justify-content:center;
    margin-top:14px;
    border:0;
    border-radius:999px;
    background:linear-gradient(135deg,#e5c67a,#b98625);
    color:white;
    font-family:Inter,sans-serif;
    font-size:13px;
    font-weight:800;
    letter-spacing:.4px;
    box-shadow:0 10px 24px rgba(166,124,34,.22);
  }

  .links a:last-child::before{
    display:none;
  }

  section[id],
  #menus{
    scroll-margin-top:96px;
  }

  .hero-title,
  .hero-text > p{
    display:none !important;
  }

  .home-page .hero{
    min-height:100svh;
    padding:112px 16px 14px;
    background-color:#151008;
    background-image:
      linear-gradient(180deg,rgba(5,4,3,.04) 0%,rgba(5,4,3,.1) 42%,rgba(5,4,3,.78) 100%),
      url("images/ayraamain1.jpg");
    background-size:cover,cover;
    background-position:center,60% center;
    align-items:flex-end;
    contain:none;
  }

  .home-page .hero-grid{
    width:min(100% - 28px,760px);
    max-width:760px;
    margin:0 auto;
    align-items:flex-end;
  }

  .home-page .hero-text{
    width:100%;
    text-align:left;
  }

  .home-page .hero-buttons{
    display:flex !important;
    width:100%;
    flex-direction:row;
    gap:10px;
    margin:0 0 12px;
    padding:0;
  }

  .home-page .hero-btn{
    width:auto !important;
    min-width:0;
    min-height:50px;
    flex:1 1 0;
    padding:12px 10px;
    font-size:14px;
  }

  .home-page .hero-btn.secondary{
    border-color:rgba(255,255,255,.72);
    background:rgba(18,14,9,.24);
    backdrop-filter:blur(9px);
  }

  .mobile-planner{
    display:block;
    width:100%;
    margin:0;
    overflow:hidden;
    border:1px solid rgba(229,198,122,.48);
    border-radius:16px;
    background:rgba(32,25,17,.78);
    backdrop-filter:blur(16px);
    box-shadow:0 14px 36px rgba(0,0,0,.24);
    color:#fff9e8;
  }

  .mobile-planner-head{
    display:flex;
    min-height:70px;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:12px 14px;
    cursor:pointer;
    list-style:none;
  }

  .mobile-planner-head::-webkit-details-marker{
    display:none;
  }

  .mobile-planner-copy{
    display:grid;
    gap:4px;
    min-width:0;
  }

  .mobile-planner-copy strong{
    color:#fff8e5;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(22px,5.8vw,26px);
    font-weight:600;
    line-height:.95;
  }

  .mobile-planner-copy span{
    color:rgba(255,255,255,.62);
    font-size:11px;
    letter-spacing:.3px;
  }

  .mobile-planner-action{
    display:inline-flex;
    flex:0 0 auto;
    align-items:center;
    gap:8px;
    color:#e5c67a;
    font-size:10.5px;
    font-weight:800;
    letter-spacing:1.6px;
    text-transform:uppercase;
  }

  .mobile-planner-action::after{
    content:"⌄";
    font-size:18px;
    line-height:1;
    transition:transform .25s ease;
  }

  .planner-close-label{
    display:none;
  }

  .mobile-planner[open] .planner-open-label{
    display:none;
  }

  .mobile-planner[open] .planner-close-label{
    display:inline;
  }

  .mobile-planner[open] .mobile-planner-action::after{
    transform:rotate(180deg);
  }

  .mobile-planner[open]{
    position:fixed;
    right:0;
    bottom:0;
    left:0;
    z-index:220;
    width:100%;
    max-height:88svh;
    margin:0;
    overflow-y:auto;
    border-right:0;
    border-bottom:0;
    border-left:0;
    border-radius:28px 28px 0 0;
    background:linear-gradient(155deg,#2a2117,#18120d);
    backdrop-filter:blur(22px);
    box-shadow:
      0 0 0 100vmax rgba(10,7,4,.58),
      0 -18px 48px rgba(0,0,0,.34);
  }

  body.planner-open{
    overflow:hidden;
  }

  .mobile-planner-form{
    padding:16px 16px max(18px,env(safe-area-inset-bottom));
    border-top:1px solid rgba(229,198,122,.2);
  }

  .planner-step{
    display:none;
  }

  .planner-step.is-active{
    display:block;
    animation:planner-step-in .28s ease both;
  }

  .planner-step-heading{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:14px;
    color:rgba(255,255,255,.58);
    font-size:12px;
    letter-spacing:.5px;
  }

  .planner-step-heading strong{
    color:#e5c67a;
    font-size:11px;
    letter-spacing:1.5px;
    text-transform:uppercase;
  }

  .planner-field{
    display:grid;
    gap:7px;
    margin-bottom:12px;
  }

  .planner-field > span{
    color:rgba(255,248,229,.72);
    font-size:11px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
  }

  .planner-field input,
  .planner-field select{
    width:100%;
    height:50px;
    min-width:0;
    padding:0 14px;
    border:1px solid rgba(229,198,122,.25);
    border-radius:12px;
    background:#fffdf8;
    color:#241d13;
    font:600 14px Inter,sans-serif;
    outline:none;
  }

  .planner-field input:focus,
  .planner-field select:focus{
    border-color:#d8ac57;
    box-shadow:0 0 0 3px rgba(216,172,87,.16);
  }

  .planner-field-row{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(92px,.52fr);
    gap:10px;
  }

  .planner-continue,
  .planner-submit,
  .planner-back{
    min-height:50px;
    border:0;
    border-radius:12px;
    font:800 12px Inter,sans-serif;
    letter-spacing:1.6px;
    text-transform:uppercase;
    cursor:pointer;
  }

  .planner-continue{
    width:100%;
    background:linear-gradient(135deg,#e5c67a,#c89b3c);
    color:#21180a;
  }

  .planner-form-actions{
    display:grid;
    grid-template-columns:54px 1fr;
    gap:10px;
  }

  .planner-back{
    border:1px solid rgba(229,198,122,.42);
    background:rgba(255,255,255,.05);
    color:#fff8e5;
    font-size:22px;
  }

  .planner-submit{
    background:linear-gradient(135deg,#e5c67a,#c89b3c);
    color:#21180a;
  }

  @keyframes planner-step-in{
    from{opacity:0;transform:translateY(8px);}
    to{opacity:1;transform:none;}
  }

  .section-title{
    font-size:clamp(40px,8vw,52px);
    line-height:1;
  }

  .about-grid,
  .inquiry-grid{
    gap:28px;
  }

  .about{
    padding:64px 0 70px;
    overflow:hidden;
    background:
      radial-gradient(circle at 92% 8%,rgba(200,155,60,.12),transparent 34%),
      linear-gradient(180deg,#fbf8f1 0%,#f5eee2 100%);
  }

  .about-desktop{
    display:none;
  }

  .mobile-about-story{
    display:block;
  }

  .mobile-about-heading{
    margin-bottom:20px;
  }

  .mobile-about-eyebrow{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:13px;
    color:#a67c22;
    font-size:10px;
    font-weight:800;
    letter-spacing:2.4px;
    text-transform:uppercase;
  }

  .mobile-about-eyebrow::before{
    content:"";
    width:38px;
    height:1px;
    background:#c89b3c;
  }

  .mobile-about-heading h2{
    margin:0;
    color:#17120d;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(46px,13.5vw,64px);
    font-weight:600;
    letter-spacing:-1.6px;
    line-height:.82;
  }

  .mobile-about-heading h2 em{
    display:inline-block;
    margin-top:12px;
    color:#b88729;
    font-size:.54em;
    font-weight:500;
    letter-spacing:.2px;
    line-height:1;
  }

  .mobile-about-copy{
    display:grid;
    gap:12px;
    margin-bottom:26px;
  }

  .mobile-about-copy p{
    margin:0;
    color:#625b52;
    font-size:14px;
    line-height:1.72;
  }

  .mobile-about-visual{
    position:relative;
    aspect-ratio:4 / 5;
    margin:0;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 22px 48px rgba(45,31,10,.18);
  }

  .mobile-about-visual::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,transparent 58%,rgba(15,10,5,.64) 100%);
    pointer-events:none;
  }

  .mobile-about-visual img,
  .mobile-about-visual video{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 48%;
  }

  .mobile-about-visual figcaption{
    position:absolute;
    right:20px;
    bottom:18px;
    left:20px;
    z-index:1;
    color:#fff8e7;
    font-family:"Cormorant Garamond",serif;
    font-size:24px;
    font-weight:600;
    letter-spacing:.2px;
  }

  .mobile-about-points{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    margin:-1px 10px 0;
    overflow:hidden;
    border:1px solid rgba(184,135,41,.28);
    border-top:0;
    border-radius:0 0 20px 20px;
    background:rgba(255,252,246,.9);
    box-shadow:0 14px 30px rgba(61,42,11,.08);
  }

  .mobile-about-points div{
    display:flex;
    min-width:0;
    min-height:88px;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    padding:12px 7px;
    text-align:center;
  }

  .mobile-about-points div + div{
    border-left:1px solid rgba(184,135,41,.2);
  }

  .mobile-about-points strong{
    color:#a67c22;
    font-family:"Cormorant Garamond",serif;
    font-size:20px;
    font-weight:700;
    line-height:1;
  }

  .mobile-about-points span{
    color:#696057;
    font-size:9px;
    font-weight:700;
    letter-spacing:.55px;
    line-height:1.3;
    text-transform:uppercase;
  }

  .mobile-about-cta{
    display:flex;
    min-height:54px;
    align-items:center;
    justify-content:space-between;
    margin-top:22px;
    padding:0 20px;
    border:1px solid rgba(166,124,34,.45);
    border-radius:999px;
    background:#1d1710;
    color:#f8e7a3;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.2px;
    text-transform:uppercase;
    box-shadow:0 12px 28px rgba(31,22,9,.14);
  }

  .mobile-about-cta span:last-child{
    font-size:20px;
    font-weight:400;
  }

  .about-card,
  .inquiry-form{
    padding:28px;
    border-radius:22px;
  }

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

  .gallery-category,
  .gallery-category:last-child:nth-child(odd){
    grid-column:auto;
    height:clamp(310px,62vw,420px);
    border-radius:20px;
  }

  .gallery-overlay{
    padding:26px;
  }

  .menu-grid{
    width:min(100% - 32px,760px);
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
    margin:32px auto 58px;
  }

  .menu-card{
    min-height:0;
    padding:16px;
    border-radius:20px;
  }

  .menu-cover-img{
    height:auto;
    max-height:390px;
    aspect-ratio:4 / 5;
  }

  .map-box{
    margin-top:28px;
    border-radius:20px;
  }

  .map-box iframe{
    height:400px;
  }

  .phone{
    font-size:clamp(27px,6vw,36px);
  }

  .social{
    padding:12px 16px;
  }

  .whatsapp{
    right:max(14px,env(safe-area-inset-right));
    bottom:max(14px,env(safe-area-inset-bottom));
    z-index:120;
  }

  .home-page .whatsapp{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    animation:none;
    transform:translateY(16px) scale(.96);
    transition:
      opacity .32s ease,
      visibility .32s ease,
      transform .38s var(--ease-luxe),
      box-shadow .3s ease;
  }

  .home-page .whatsapp.is-after-hero{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    animation:whatsapp-float 3s .38s ease-in-out infinite;
    transform:none;
  }

  .page-head{
    padding:64px 0 34px;
  }

  .page-head h1{
    font-size:clamp(50px,12vw,72px);
  }

  .hall-header{
    margin:48px auto 28px;
    padding:0 24px;
  }

  .hall-header h2{
    font-size:clamp(44px,10vw,58px);
    letter-spacing:3px;
  }

  .gallery{
    columns:2 240px;
    column-gap:14px;
    padding-bottom:56px;
  }

  .gallery img{
    margin-bottom:14px;
    border-radius:16px;
  }

  body.motion-ready .motion-gallery-card{
    transform:translateY(20px) scale(.985);
  }

  body.motion-ready .motion-menu-card,
  body.motion-ready .motion-review,
  body.motion-ready .motion-photo,
  body.motion-ready .motion-page-head,
  body.motion-ready .motion-contact,
  body.motion-ready .motion-divider{
    transform:translateY(18px) scale(.985);
    filter:none;
  }

  body.motion-ready .motion-map{
    transform:translateY(14px);
  }

  .menu-heading{
    grid-column:1 / -1;
    margin-bottom:6px;
  }

  .menu-heading p{
    max-width:650px;
    color:#666;
  }

  /* Phone-only editorial treatment for the Ayraa story. */
  .about{
    padding:70px 0 76px;
    background:
      radial-gradient(circle at 100% 0,rgba(203,164,82,.1),transparent 32%),
      #111a28;
  }

  .mobile-about-heading{
    margin-bottom:24px;
  }

  .mobile-about-eyebrow{
    gap:12px;
    margin-bottom:20px;
    color:#caa85d;
    font-family:"Cinzel",serif;
    font-size:12px;
    font-weight:600;
    letter-spacing:2.7px;
  }

  .mobile-about-eyebrow::before{
    width:30px;
    background:rgba(202,168,93,.8);
  }

  .mobile-about-heading h2{
    font-size:inherit;
    letter-spacing:0;
    line-height:1;
  }

  .mobile-about-heading h2 em{
    display:block;
    margin:0;
    max-width:330px;
    color:#f6f0e5;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(43px,12vw,58px);
    font-style:normal;
    font-weight:500;
    letter-spacing:-1.2px;
    line-height:.92;
  }

  .mobile-about-copy{
    gap:14px;
    margin-bottom:30px;
    padding-left:20px;
    border-left:1px solid rgba(202,168,93,.42);
  }

  .mobile-about-copy p{
    color:#bdb8ae;
    font-size:13.5px;
    line-height:1.75;
  }

  .mobile-about-visual{
    aspect-ratio:4 / 5;
    border:1px solid rgba(230,211,167,.18);
    border-radius:8px;
    box-shadow:0 28px 60px rgba(0,0,0,.34);
  }

  .mobile-about-visual::after{
    background:linear-gradient(180deg,transparent 64%,rgba(4,8,14,.78) 100%);
  }

  .mobile-about-visual img,
  .mobile-about-visual video{
    object-position:42% center;
    filter:saturate(.82) contrast(1.04);
  }

  .mobile-about-visual.has-video::after{
    display:none;
  }

  .mobile-about-visual.has-video video{
    object-position:center;
    filter:none;
    pointer-events:none;
    -webkit-user-select:none;
    user-select:none;
    -webkit-touch-callout:none;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
  }

  .mobile-about-visual figcaption{
    right:18px;
    bottom:17px;
    left:18px;
    color:#eee4ce;
    font-family:"Cinzel",serif;
    font-size:9px;
    font-weight:600;
    letter-spacing:2.2px;
    text-transform:uppercase;
  }

  .mobile-about-points{
    margin:24px 0 0;
    border:0;
    border-top:1px solid rgba(202,168,93,.26);
    border-bottom:1px solid rgba(202,168,93,.26);
    border-radius:0;
    background:transparent;
    box-shadow:none;
  }

  .mobile-about-points div{
    min-height:78px;
    gap:7px;
    padding:12px 5px;
  }

  .mobile-about-points div + div{
    border-left-color:rgba(202,168,93,.22);
  }

  .mobile-about-points strong{
    color:#d6b86f;
    font-family:"Cormorant Garamond",serif;
    font-size:18px;
    font-weight:600;
  }

  .mobile-about-points span{
    color:#9e9b96;
    font-size:8px;
    font-weight:600;
    letter-spacing:1px;
  }

  .mobile-about-cta{
    min-height:56px;
    margin-top:26px;
    padding:0 18px;
    border-color:#d0ad61;
    border-radius:5px;
    background:#d0ad61;
    color:#111721;
    font-family:"Cinzel",serif;
    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;
    box-shadow:none;
  }

  .mobile-about-cta span:last-child{
    font-family:Inter,sans-serif;
    font-size:18px;
  }

  /* Compact presentation for Instagram's official profile embed. */
  .mobile-instagram-profile{
    display:block;
    padding:66px 0 72px;
    background:#f6f2e9;
  }

  .instagram-section-heading{
    margin-bottom:24px;
    text-align:left;
  }

  .instagram-section-heading > span{
    display:block;
    margin-bottom:12px;
    color:#9b7422;
    font-family:"Cinzel",serif;
    font-size:9px;
    font-weight:700;
    letter-spacing:2.6px;
    text-transform:uppercase;
  }

  .instagram-section-heading h2{
    margin:0 0 18px;
    color:#17130f;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(38px,10.8vw,52px);
    font-weight:500;
    letter-spacing:-.8px;
    line-height:.93;
  }

  .instagram-section-heading a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding-bottom:5px;
    border-bottom:1px solid rgba(155,116,34,.55);
    color:#7b5a17;
    font-size:12px;
    font-weight:700;
    letter-spacing:.4px;
  }

  .instagram-embed-shell{
    width:100%;
    overflow:hidden;
    border:1px solid rgba(155,116,34,.2);
    border-radius:26px;
    background:#fff;
    box-shadow:0 18px 44px rgba(44,33,12,.1);
  }

  .instagram-embed-shell .instagram-media{
    width:100% !important;
    min-width:0 !important;
    max-width:none !important;
    margin:0 !important;
    border:0 !important;
    box-shadow:none !important;
  }

  .instagram-profile-embed{
    width:540px;
    max-width:none;
    height:590px;
    border-radius:21px;
  }

  .instagram-embed-shell > blockquote > a{
    display:flex;
    min-height:120px;
    align-items:center;
    justify-content:center;
    padding:20px;
    color:#7b5a17;
    font-family:"Cinzel",serif;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-align:center;
    text-transform:uppercase;
  }
}

@media(max-width:600px){
  .wrap{
    width:calc(100% - 28px);
  }

  section{
    padding:48px 0;
  }

  .hero{
    min-height:100svh;
    padding:100px 14px 96px;
    background-position:center;
    align-items:flex-end;
  }

  .hero-grid{
    align-items:flex-end;
    margin:0 auto;
  }

  .home-page .hero{
    min-height:100svh;
    padding:100px 14px 10px;
    background-size:cover,cover;
    background-position:center,60% center;
    align-items:flex-end;
  }

  .home-page .hero-grid{
    width:100%;
    align-items:flex-end;
  }

  .hero-signature{
    display:flex;
    justify-content:center;
    gap:9px;
    margin:0 auto 16px;
    font-size:10px;
    letter-spacing:2px;
  }

  .hero-signature::before{
    width:26px;
  }

  .hero-signature span{
    letter-spacing:.9px;
  }

  .hero-text h1,
  .hero-title{
    font-size:clamp(48px,16vw,68px);
  }

  .hero-buttons{
    gap:10px;
    margin-top:24px;
  }

  .hero-text > p:not(.hero-description){
    display:none !important;
    max-width:310px;
    margin:18px auto 0;
    color:rgba(255,255,255,.92);
    font-size:15px;
    line-height:1.55;
    text-align:center;
    text-shadow:0 2px 8px rgba(0,0,0,.45);
  }

  .hero-btn{
    min-height:48px;
    padding:12px 20px;
    font-size:15px;
  }

  .gold-line{
    width:62px;
    height:3px;
    margin-bottom:20px;
  }

  .section-title{
    font-size:clamp(36px,11vw,46px);
  }

  .about-card,
  .inquiry-form{
    padding:22px;
  }

  .gallery-category,
  .gallery-category:last-child:nth-child(odd){
    grid-column:auto;
    height:190px;
    border-radius:18px;
  }

  .gallery-categories{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }

  .gallery-category:first-child{
    grid-column:1 / -1;
    height:275px;
  }

  .gallery-category:first-child img{
    object-position:center 35%;
  }

  .gallery-overlay{
    padding:14px;
  }

  .gallery-category:first-child .gallery-overlay{
    padding:22px;
  }

  .gallery-overlay h3{
    margin-bottom:7px;
    font-size:24px;
    line-height:.95;
  }

  .gallery-category:first-child .gallery-overlay h3{
    font-size:31px;
  }

  .gallery-overlay p{
    display:none;
  }

  .gallery-category:first-child .gallery-overlay p{
    display:block;
    margin-bottom:10px;
    font-size:13px;
    line-height:1.45;
  }

  .gallery-overlay span{
    font-size:12px;
  }

  .gallery-category:first-child .gallery-overlay span{
    font-size:14px;
  }

  .menu-grid{
    width:calc(100% - 24px);
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin:18px auto 48px;
  }

  .menu-heading{
    margin-bottom:2px;
  }

  .menu-heading .gold-line{
    margin-bottom:14px;
  }

  .menu-heading .section-title{
    margin-bottom:8px;
    font-size:38px;
  }

  .menu-heading p{
    font-size:13px;
    line-height:1.45;
  }

  .menu-card{
    min-width:0;
    min-height:0;
    padding:10px;
    justify-content:flex-start;
    border:1px solid rgba(200,155,60,.2);
    border-radius:18px;
    background:linear-gradient(155deg,#fff 0%,#fdfaf3 100%);
    box-shadow:
      0 12px 28px rgba(48,35,10,.08),
      inset 0 1px 0 rgba(255,255,255,.9);
  }

  .menu-cover-img{
    width:100%;
    height:154px;
    max-height:154px;
    aspect-ratio:auto;
    object-fit:contain;
    object-position:center;
    padding:5px;
    margin-bottom:11px;
    border-radius:13px;
    border:1px solid rgba(229,198,122,.65);
    background:linear-gradient(145deg,#006b70,#00484d);
    box-shadow:inset 0 0 24px rgba(0,0,0,.1);
  }

  .menu-card h3{
    display:flex;
    min-height:46px;
    align-items:center;
    justify-content:center;
    margin:0 0 8px;
    font-size:22px;
    line-height:1;
  }

  .menu-card p{
    display:none;
  }

  .menu-card .btn{
    width:100%;
    min-height:40px;
    margin-top:auto;
    padding:9px 6px;
    font-size:12px;
    box-shadow:0 8px 18px rgba(166,124,34,.16);
  }

  .premium-review-carousel{
    height:450px;
  }

  .review-card{
    top:14px;
    width:calc(100% - 54px);
    min-height:360px;
    padding:27px 22px;
  }

  .review-card p{
    font-size:15px;
  }

  .review-nav{
    width:42px;
    height:42px;
    font-size:28px;
  }

  .inquiry-form input,
  .inquiry-form select,
  .inquiry-form textarea{
    min-height:50px;
    font-size:16px;
  }

  .map-box iframe{
    height:340px;
  }

  .whatsapp{
    width:58px;
    height:58px;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:0;
    border:2px solid rgba(255,255,255,.9);
  }

  .whatsapp::before{
    content:none;
  }

  .whatsapp-logo-frame{
    width:44px;
    height:44px;
    margin:0;
  }

  .whatsapp-label{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
  }

  .socials{
    gap:8px;
  }

  .social{
    font-size:13px;
  }

  .gallery{
    columns:1;
  }

  .page-head{
    padding:42px 0 28px;
  }

  .page-head p{
    font-size:15px;
  }

  .hall-header{
    padding:0 18px;
  }

  .hall-header h2{
    font-size:44px;
  }

  .menu-heading .section-title{
    margin-bottom:8px;
  }

  .menu-heading p{
    font-size:13px;
    line-height:1.45;
  }

  footer{
    padding-bottom:90px;
  }

  .lightbox img{
    max-width:94%;
    max-height:80%;
  }

  .close,
  .prev,
  .next{
    width:44px;
    height:44px;
    font-size:26px;
  }

  .prev{left:8px;}
  .next{right:8px;}
  .close{top:14px;right:14px;}
}

@media(max-width:380px){
  .gallery-category,
  .gallery-category:last-child:nth-child(odd){
    height:175px;
  }

  .gallery-category:first-child{
    height:250px;
  }

  .gallery-overlay{
    padding:12px;
  }

  .gallery-overlay h3{
    font-size:22px;
  }

  .phone{
    font-size:25px;
  }
}

@media(max-height:600px) and (orientation:landscape) and (max-width:950px){
  .hero{
    min-height:620px;
    padding-top:128px;
    align-items:center;
  }

  .hero-text h1,
  .hero-title{
    font-size:62px;
  }
}

/* Hall navigation and headings stay legible even if reveal observation is delayed. */
.hall-jump{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:24px;
}

.hall-jump a{
  display:inline-flex;
  min-height:42px;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border:1px solid rgba(200,155,60,.42);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:var(--gold,#c89b3c);
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  box-shadow:0 8px 20px rgba(70,49,10,.06);
}

.hall-section{
  scroll-margin-top:96px;
  padding:0;
}

.luxury-divider{
  display:flex;
  width:min(calc(100% - 48px),1450px);
  height:28px;
  align-items:center;
  justify-content:center;
  gap:13px;
  margin:0 auto 24px;
  color:var(--gold,#c89b3c);
}

.luxury-divider::before,
.luxury-divider::after{
  content:"";
  width:min(92px,14vw);
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(200,155,60,.68));
}

.luxury-divider::after{
  background:linear-gradient(90deg,rgba(200,155,60,.68),transparent);
}

.luxury-divider span{
  display:block;
  color:inherit;
  font-size:9px;
  line-height:1;
}

/* Keep this tiny separator stable; rotating its full-width box creates a false gap. */
body.motion-ready .luxury-divider.motion-divider,
body.motion-ready .luxury-divider.motion-divider.is-visible{
  opacity:1;
  transform:none;
  filter:none;
}

body.motion-ready .hall-header .motion-hall-heading{
  opacity:1;
  visibility:visible;
  transform:none;
  clip-path:inset(0 0 0 0);
  filter:none;
}

body.motion-ready .hall-header .motion-hall-heading.is-visible{
  animation:hall-heading-in .72s var(--ease-luxe) both;
}

@keyframes hall-heading-in{
  from{
    opacity:0;
    transform:translateX(-34px);
    clip-path:inset(0 100% 0 0);
  }
  to{
    opacity:1;
    transform:none;
    clip-path:inset(0 0 0 0);
  }
}

/* Natural-aspect masonry for the Weddings, Halls and Events galleries. */
.gallery-grid-page{
  display:block;
  width:min(calc(100% - 48px),1450px);
  margin:0 auto;
  padding:0 0 80px;
  columns:4;
  column-gap:18px;
}

.hall-section .gallery-grid-page{
  columns:3;
}

section.gallery.gallery-grid-page img,
section.gallery.gallery-grid-page img:nth-child(4n + 1),
section.gallery.gallery-grid-page img:nth-child(4n + 2),
section.gallery.gallery-grid-page img:nth-child(4n + 3),
section.gallery.gallery-grid-page img:nth-child(4n + 4){
  width:100%;
  height:auto !important;
  aspect-ratio:auto !important;
  margin:0 0 18px;
  object-fit:contain;
  break-inside:avoid;
  border-radius:18px;
}

.lightbox img{
  width:auto;
  height:auto;
  object-fit:contain;
}

@media(max-width:900px){
  .gallery-grid-page{
    columns:3;
    column-gap:12px;
    padding-bottom:52px;
  }

  .hall-section .gallery-grid-page{
    columns:2;
  }

  section.gallery.gallery-grid-page img{
    margin-bottom:12px;
  }

  .hall-jump{
    gap:8px;
    margin-top:20px;
  }

  .hall-jump a{
    min-height:38px;
    padding:8px 14px;
    font-size:11px;
  }
}

@media(max-width:600px){
  .gallery-grid-page,
  .hall-section .gallery-grid-page{
    display:block;
    width:calc(100% - 24px);
    padding:0 0 22px;
    columns:2;
    column-gap:10px;
  }

  .luxury-divider{
    width:calc(100% - 24px);
    height:22px;
    gap:10px;
    margin:0 auto 18px;
  }

  .luxury-divider::before,
  .luxury-divider::after{
    width:54px;
  }

  section.gallery.gallery-grid-page img,
  section.gallery.gallery-grid-page img:nth-child(4n + 1),
  section.gallery.gallery-grid-page img:nth-child(4n + 2),
  section.gallery.gallery-grid-page img:nth-child(4n + 3),
  section.gallery.gallery-grid-page img:nth-child(4n + 4){
    display:block;
    width:100%;
    height:auto !important;
    aspect-ratio:auto !important;
    margin:0 0 10px;
    object-fit:contain;
    break-inside:avoid;
    border-radius:14px;
  }

  .hall-header{
    margin-top:38px;
  }

  .hall-header h2{
    font-size:clamp(42px,13vw,54px);
    line-height:1;
  }
}

/* Phone-only dark navigation with a truly centered brand mark. */
@media(max-width:900px){
  .nav,
  .nav.is-scrolled,
  .home-page .nav:not(.is-scrolled){
    border-bottom-color:rgba(207,173,96,.25);
    background:rgba(9,15,25,.96);
    backdrop-filter:blur(20px);
    box-shadow:0 10px 28px rgba(0,0,0,.2);
  }

  .nav-inner{
    position:relative;
    justify-content:flex-end;
  }

  .home-page .nav .brand,
  .home-page .nav:not(.is-scrolled) .brand{
    position:absolute;
    top:50%;
    left:50%;
    height:auto;
    transform:translate(-50%,-50%);
  }

  .nav > a{
    position:absolute;
    top:50%;
    left:50%;
    height:72px;
    transform:translate(-50%,-50%);
  }

  .logo,
  .home-page .nav:not(.is-scrolled) .logo,
  .nav > a .logo{
    display:block;
    width:80px;
    height:72px;
    margin:0;
    filter:drop-shadow(0 3px 9px rgba(0,0,0,.34));
  }

  .nav-toggle,
  .home-page .nav:not(.is-scrolled) .nav-toggle{
    align-self:center;
    margin-top:0;
    margin-right:0;
    margin-bottom:0;
    margin-left:auto;
    border-color:rgba(207,173,96,.58);
    background:rgba(255,255,255,.035);
    color:#d7b767;
    backdrop-filter:blur(10px);
    box-shadow:0 8px 22px rgba(0,0,0,.22);
  }

  .links{
    border-color:rgba(207,173,96,.28);
    background:linear-gradient(150deg,rgba(18,27,42,.99),rgba(8,14,23,.99));
    box-shadow:
      0 30px 70px rgba(0,0,0,.42),
      inset 0 1px 0 rgba(255,255,255,.05);
  }

  .links::before{
    color:#cdaa5e;
    border-bottom-color:rgba(207,173,96,.22);
  }

  .links a{
    color:#f4eee1;
    border-bottom-color:rgba(207,173,96,.15);
  }

  .links a::before{
    color:#cdaa5e;
  }

  .links a:last-child{
    background:linear-gradient(135deg,#dfc278,#b88a31);
    color:#101722;
  }

  .nav::after{
    background:rgba(3,7,13,.62);
  }
}

/* Mobile-only drawer content is injected by motion.js. */
.nav-menu-meta,
.mobile-only-nav-link{
  display:none;
}

/* Mobile navigation: one restrained floating system for every page. */
@media(max-width:900px){
  body::before{
    content:"";
    position:fixed;
    inset:0;
    z-index:99;
    background:rgba(2,6,12,.64);
    -webkit-backdrop-filter:blur(3px);
    backdrop-filter:blur(3px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .3s ease,visibility .3s ease;
  }

  body.nav-menu-open::before{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  body.nav-menu-open{
    overflow:hidden;
  }

  .nav,
  .nav.is-scrolled,
  .home-page .nav:not(.is-scrolled),
  .home-page .nav.nav-open:not(.is-scrolled){
    position:fixed;
    top:0;
    right:0;
    left:0;
    width:100%;
    height:64px;
    min-height:64px;
    padding:0 18px;
    border:0;
    border-bottom:1px solid rgba(215,183,103,.2);
    border-radius:0;
    background:rgba(7,13,23,.94);
    -webkit-backdrop-filter:blur(18px) saturate(115%);
    backdrop-filter:blur(18px) saturate(115%);
    box-shadow:0 5px 22px rgba(0,0,0,.14);
    transition:
      background-color .3s ease,
      border-color .3s ease,
      box-shadow .3s ease,
      transform .35s var(--ease-luxe);
  }

  .nav.is-scrolled,
  .nav.nav-open,
  .home-page .nav.nav-open:not(.is-scrolled){
    border-bottom-color:rgba(215,183,103,.24);
    background:rgba(7,13,23,.95);
    box-shadow:0 6px 24px rgba(0,0,0,.16);
  }

  .home-page .nav:not(.is-scrolled):not(.nav-open){
    border-bottom-color:transparent;
    background:transparent;
    -webkit-backdrop-filter:none;
    backdrop-filter:none;
    box-shadow:none;
  }

  .nav-inner{
    position:relative;
    width:100%;
    height:64px;
    min-height:64px;
  }

  .home-page .nav .brand,
  .home-page .nav:not(.is-scrolled) .brand{
    position:absolute;
    top:50%;
    left:0;
    z-index:5;
    height:62px;
    transform:translateY(-50%);
  }

  .nav > a{
    position:absolute;
    top:50%;
    left:18px;
    z-index:5;
    height:62px;
    transform:translateY(-50%);
  }

  .logo,
  .home-page .nav:not(.is-scrolled) .logo,
  .nav > a .logo{
    width:92px;
    height:64px;
    filter:none;
    transform:none;
  }

  .brand:hover .logo,
  .nav > a:hover .logo{
    transform:none;
  }

  .nav-toggle,
  .home-page .nav:not(.is-scrolled) .nav-toggle{
    position:absolute;
    top:50%;
    right:0;
    z-index:5;
    width:44px;
    height:44px;
    margin:0;
    transform:translateY(-50%);
    border:0;
    border-radius:0;
    background:transparent;
    color:#dfc47e;
    -webkit-backdrop-filter:none;
    backdrop-filter:none;
    box-shadow:none;
  }

  .nav > .nav-toggle{
    right:18px;
  }

  .nav-toggle span,
  .nav-toggle::before,
  .nav-toggle::after{
    width:23px;
    height:1px;
  }

  .nav-toggle span{display:none;}
  .nav-toggle::before{transform:translateY(-5px);}
  .nav-toggle::after{transform:translateY(5px);}
  .nav.nav-open .nav-toggle{background:transparent;}
  .nav.nav-open .nav-toggle::before{transform:rotate(45deg);}
  .nav.nav-open .nav-toggle::after{transform:rotate(-45deg);}

  .nav::after{
    display:none;
  }

  .links{
    top:72px;
    right:12px;
    left:12px;
    width:auto;
    max-width:none;
    max-height:calc(100dvh - 112px);
    gap:0;
    padding:24px 22px 20px;
    overflow-y:auto;
    border:1px solid rgba(215,183,103,.23);
    border-radius:18px;
    background:rgba(7,13,23,.96);
    -webkit-backdrop-filter:blur(24px) saturate(115%);
    backdrop-filter:blur(24px) saturate(115%);
    box-shadow:0 22px 58px rgba(0,0,0,.34);
    transform:translateY(-9px) scale(.99);
    transform-origin:top center;
  }

  .links::before{
    content:"Explore Ayraa";
    padding:0 2px 16px;
    border-bottom:1px solid rgba(215,183,103,.16);
    color:#bfa05e;
    font-family:Inter,sans-serif;
    font-size:9px;
    font-weight:700;
    letter-spacing:2.4px;
    text-transform:uppercase;
  }

  .links > a{
    display:flex;
    min-height:54px;
    align-items:center;
    justify-content:flex-start;
    padding:5px 2px;
    border:0;
    border-bottom:1px solid rgba(215,183,103,.11);
    background:transparent;
    color:#f2ebdf;
    font-family:"Cormorant Garamond",serif;
    font-size:27px;
    font-weight:600;
    letter-spacing:.1px;
    line-height:1;
    opacity:0;
    transform:translateY(-7px);
    transition:
      color .2s ease,
      opacity .32s var(--ease-luxe),
      transform .38s var(--ease-luxe);
  }

  .links > a::before,
  .links > a::after{
    display:none;
    content:none;
  }

  .links > .desktop-enquire-link{
    display:none;
  }

  .links > .mobile-only-nav-link{
    display:flex;
  }

  .nav.nav-open .links > a{
    opacity:1;
    transform:none;
  }

  .nav.nav-open .links > a:nth-of-type(1){transition-delay:.04s;}
  .nav.nav-open .links > a:nth-of-type(2){transition-delay:.08s;}
  .nav.nav-open .links > a:nth-of-type(3){transition-delay:.12s;}
  .nav.nav-open .links > a:nth-of-type(4){transition-delay:.16s;}
  .nav.nav-open .links > a:nth-of-type(5){transition-delay:.2s;}
  .nav.nav-open .links > a:nth-of-type(6){transition-delay:.24s;}

  .links > a.nav-cta{
    min-height:50px;
    justify-content:center;
    margin-top:18px;
    padding:0 18px;
    border:1px solid rgba(215,183,103,.62);
    border-radius:12px;
    background:#c7a45a;
    color:#09101b;
    font-family:Inter,sans-serif;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.1px;
    text-transform:uppercase;
    box-shadow:none;
  }

  .nav-menu-meta{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    padding-top:17px;
  }

  .links .nav-menu-meta a{
    display:inline-flex;
    min-height:34px;
    align-items:center;
    padding:0;
    border:0;
    background:transparent;
    color:#aaa394;
    font-family:Inter,sans-serif;
    font-size:10px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
  }

  .links .nav-menu-meta a::before,
  .links .nav-menu-meta a::after{
    display:none;
    content:none;
  }

  .links .nav-menu-meta a + a::before{
    content:"";
    display:block;
    width:1px;
    height:12px;
    margin-right:22px;
    background:rgba(215,183,103,.24);
  }

  .nav-toggle:focus-visible,
  .links a:focus-visible{
    outline:2px solid #e1c77f;
    outline-offset:3px;
  }
}

.gallery-halls-kicker{
  display:none;
}

/* Phone-only site palette, derived from the midnight-blue hero artwork. */
@media(max-width:900px){
  body{
    --mobile-night:#06101d;
    --mobile-navy:#091522;
    --mobile-panel:#0e1b2b;
    --mobile-panel-soft:#122235;
    --mobile-gold:#d0ad61;
    --mobile-ivory:#f1e8d8;
    --mobile-muted:#aeb5bd;
    background:var(--mobile-night);
    color:var(--mobile-ivory);
    color-scheme:dark;
  }

  .about,
  .gallery,
  .reviews,
  .inquiry,
  #location,
  .mobile-instagram-profile,
  .contact,
  .page-head,
  .hall-section{
    border-top:1px solid rgba(208,173,97,.1);
  }

  .about{
    background:
      radial-gradient(circle at 100% 0,rgba(208,173,97,.09),transparent 31%),
      var(--mobile-navy);
  }

  .gallery,
  .inquiry,
  .mobile-instagram-profile,
  .page-head{
    background:var(--mobile-night);
  }

  .home-page #gallery{
    border-top-color:transparent;
    background:var(--mobile-navy);
  }

  .reviews,
  #location,
  .contact,
  .hall-section{
    background:var(--mobile-navy);
  }

  .menu-grid,
  .gallery-grid-page{
    background:transparent;
  }

  .section-title,
  .menu-heading .section-title,
  .instagram-section-heading h2,
  .page-head h1,
  .hall-header h2{
    color:var(--mobile-ivory);
  }

  .gold-line,
  .hall-line{
    background:linear-gradient(90deg,var(--mobile-gold),rgba(208,173,97,.18));
  }

  .gallery-subtitle,
  .menu-heading p,
  .inquiry-grid > div > p,
  .reviews .wrap > p,
  #location .wrap > p,
  .contact .wrap > p,
  .page-head p,
  .hall-header p{
    color:var(--mobile-muted) !important;
  }

  .mobile-about-copy p{
    color:#b8bec4;
  }

  .mobile-about-points{
    border-color:rgba(208,173,97,.25);
  }

  .mobile-about-points div + div{
    border-left-color:rgba(208,173,97,.18);
  }

  .mobile-about-points strong,
  .mobile-about-eyebrow,
  .gallery-overlay span,
  .menu-card h3,
  .review-card h4,
  .phone,
  .instagram-section-heading > span,
  .instagram-section-heading a,
  .hall-subtitle{
    color:var(--mobile-gold);
  }

  .gallery-category,
  .gallery-category:last-child:nth-child(odd){
    border:1px solid rgba(208,173,97,.18);
    box-shadow:0 18px 38px rgba(0,0,0,.3);
  }

  .gallery-overlay{
    background:linear-gradient(180deg,rgba(3,8,15,.04) 24%,rgba(3,8,15,.9) 100%);
  }

  .menu-card{
    border:1px solid rgba(208,173,97,.19);
    background:linear-gradient(155deg,var(--mobile-panel-soft),var(--mobile-panel));
    box-shadow:
      0 16px 34px rgba(0,0,0,.27),
      inset 0 1px 0 rgba(255,255,255,.025);
  }

  .menu-cover-img{
    border-color:rgba(208,173,97,.42);
    background:#052d36;
  }

  .menu-card p{
    color:var(--mobile-muted);
  }

  .gold-btn,
  .menu-card .btn,
  .inquiry-form .gold-btn,
  .contact .gold-btn{
    border:0;
    background:var(--mobile-gold);
    color:#07111e;
    box-shadow:none;
  }

  .review-card{
    border-color:rgba(208,173,97,.2);
    background:linear-gradient(155deg,var(--mobile-panel-soft),var(--mobile-panel));
    box-shadow:0 22px 48px rgba(0,0,0,.32);
  }

  .review-card p{
    color:#d1d2d1;
  }

  .review-card h4{
    border-top-color:rgba(208,173,97,.2);
  }

  .review-card small{
    color:#8f99a3;
  }

  .review-nav{
    border:1px solid rgba(208,173,97,.24);
    background:var(--mobile-panel-soft);
    color:var(--mobile-gold);
    box-shadow:0 10px 25px rgba(0,0,0,.28);
  }

  .review-dot{
    background:#34404e;
  }

  .review-dot.active{
    background:var(--mobile-gold);
  }

  .inquiry-form{
    border:1px solid rgba(208,173,97,.18);
    background:linear-gradient(155deg,var(--mobile-panel-soft),var(--mobile-panel));
    box-shadow:0 20px 44px rgba(0,0,0,.3);
  }

  .inquiry-form input,
  .inquiry-form select,
  .inquiry-form textarea,
  .planner-field input,
  .planner-field select{
    border-color:rgba(208,173,97,.2);
    background:#091625;
    color:var(--mobile-ivory);
  }

  .inquiry-form input::placeholder,
  .inquiry-form textarea::placeholder,
  .planner-field input::placeholder{
    color:#7f8994;
    opacity:1;
  }

  .inquiry-form input:focus,
  .inquiry-form select:focus,
  .inquiry-form textarea:focus,
  .planner-field input:focus,
  .planner-field select:focus{
    border-color:var(--mobile-gold);
    outline:none;
    box-shadow:0 0 0 3px rgba(208,173,97,.12);
  }

  .mobile-planner{
    border-color:rgba(208,173,97,.42);
    background:rgba(6,16,29,.82);
  }

  .mobile-planner[open]{
    background:linear-gradient(155deg,#102136,#07111e);
    box-shadow:
      0 0 0 100vmax rgba(2,7,13,.68),
      0 -18px 48px rgba(0,0,0,.4);
  }

  .map-box{
    border:1px solid rgba(208,173,97,.2);
    background:var(--mobile-panel);
    box-shadow:0 20px 46px rgba(0,0,0,.32);
  }

  .mobile-instagram-profile{
    background:var(--mobile-night);
  }

  .instagram-section-heading a{
    border-bottom-color:rgba(208,173,97,.5);
  }

  .instagram-embed-shell{
    padding:5px;
    border-color:rgba(208,173,97,.23);
    background:var(--mobile-panel);
    box-shadow:0 20px 46px rgba(0,0,0,.3);
  }

  .instagram-embed-shell > blockquote > a{
    color:var(--mobile-gold);
  }

  .social{
    border-color:rgba(208,173,97,.26);
    background:rgba(255,255,255,.025);
    color:#d9d6cf;
  }

  footer{
    border-top-color:rgba(208,173,97,.16);
    background:#040b14;
    color:#8f98a2;
  }

  .hall-jump a{
    border-color:rgba(208,173,97,.33);
    background:var(--mobile-panel);
    color:var(--mobile-gold);
    box-shadow:none;
  }

  .hall-section .gallery-grid-page,
  section.gallery.gallery-grid-page{
    background:transparent;
  }

  section.gallery.gallery-grid-page img{
    border:1px solid rgba(208,173,97,.14);
    box-shadow:0 12px 26px rgba(0,0,0,.24);
  }

  .luxury-divider::before,
  .luxury-divider::after{
    opacity:.62;
  }
}

/* Full Explore Ayraa collection on phones: featured weddings above halls and events. */
@media(max-width:900px){
  .page-head{
    padding:96px 0 34px;
  }

  body.motion-ready .page-head .motion-page-head{
    opacity:1;
    visibility:visible;
    transform:none;
    filter:none;
  }

  .home-page #gallery .gallery-subtitle{
    max-width:650px;
    margin-bottom:26px;
    font-size:14px;
    line-height:1.65;
  }
}

/* Keep every mobile page surface on one uninterrupted midnight background. */
@media(max-width:900px){
  .home-page .about{
    padding-bottom:38px;
  }

  .home-page #gallery{
    padding-top:28px;
  }

  html,
  body,
  .about,
  .gallery,
  .reviews,
  .inquiry,
  #location,
  .mobile-instagram-profile,
  .contact,
  .page-head,
  .hall-section,
  .menu-grid,
  .gallery-grid-page,
  footer{
    background:#091522;
  }

  .about,
  .gallery,
  .reviews,
  .inquiry,
  #location,
  .mobile-instagram-profile,
  .contact,
  .page-head,
  .hall-section,
  footer{
    border-top-color:transparent;
  }

  .nav,
  .nav.is-scrolled,
  .nav.nav-open,
  .home-page .nav.nav-open:not(.is-scrolled){
    background:rgba(9,21,34,.96);
  }

  .home-page .nav:not(.is-scrolled):not(.nav-open){
    background:transparent;
  }
}

@media(hover:none) and (pointer:coarse){
  .gallery-category:hover,
  .gallery-category:hover img,
  .menu-card:hover,
  .menu-card:hover .menu-cover-img,
  .about-card:hover,
  .hero-btn:hover,
  .btn:hover,
  .social:hover{
    transform:none;
  }

  .links a,
  .hero-btn,
  .btn,
  .social{
    -webkit-tap-highlight-color:rgba(200,155,60,.16);
  }
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.01ms !important;
  }
  body.motion-ready .motion-reveal{
    opacity:1;
    transform:none;
  }
}
