
@font-face {
  font-family: "Fredoka";
  src: url("../assets/fonts/fredoka-var.woff2") format("woff2");
  font-weight: 300 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../assets/fonts/nunito-var.woff2") format("woff2");
  font-weight: 200 1000; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";   
  src: url("../assets/fonts/playfair-var.woff2") format("woff2");
  font-weight: 400 900; font-style: normal; font-display: swap;
}


:root {
  
  --carbon:       #0E0F12;   
  --cream:        #121419;   
  --cream-2:      #171A20;   
  --cream-3:      #242833;   
  --white:        #1A1D24;   
  --steel-2:      #20242C;   
  --line:         #2C313B;   
  --line-2:       #3A4150;   
  --silver:       #C9CED7;   

  
  --ink:          #ECEEF2;   
  --ink-soft:     #B0B7C3;   
  --ink-faint:    #7E8696;   

  
  --orange:       #FF6A13;
  --orange-deep:  #EA5410;   
  --yellow:       #FFC02E;
  --gold:         #FFD850;
  --teal:         #25C2CC;   
  --teal-deep:    #34CBD4;   
  --teal-ink:     #0A5A61;   
  --pink:         #FF4E8A;
  --red:          #FF5247;
  --grape:        #9B7CFF;
  --sky:          #BFEAF2;

  
  --grad-sun:     linear-gradient(135deg, #FF5E0F 0%, #FF8A1F 45%, #FFC02E 100%);
  --grad-sun-rev: linear-gradient(135deg, #FFC02E 0%, #FF8A1F 55%, #FF5E0F 100%);
  --grad-teal:    linear-gradient(135deg, #16C2CB 0%, #0C8088 100%);
  --grad-pink:    linear-gradient(135deg, #FF6FA3 0%, #FF4E8A 100%);
  --grad-cream:   linear-gradient(180deg, #1B1F27 0%, #14161B 100%);
  --grad-sky:     linear-gradient(180deg, #1A2329 0%, #161A20 55%, #121419 100%);
  --grad-silver:  linear-gradient(135deg, #EEF1F5 0%, #AEB4BF 52%, #D7DBE2 100%);
  --grad-steel:   linear-gradient(180deg, #20242C 0%, #14161B 100%);

  
  --shadow-xs:  0 2px 6px rgba(0, 0, 0, .35);
  --shadow-sm:  0 6px 16px -6px rgba(0, 0, 0, .50);
  --shadow-md:  0 16px 34px -14px rgba(0, 0, 0, .62);
  --shadow-lg:  0 28px 60px -20px rgba(0, 0, 0, .72);
  --shadow-orange: 0 16px 30px -12px rgba(255, 106, 19, .42);
  --shadow-teal:   0 16px 30px -12px rgba(20, 194, 203, .40);

  
  --r-sm:  12px;
  --r-md:  18px;
  --r-lg:  26px;
  --r-xl:  34px;
  --r-pill: 999px;

  
  --sp-1: .25rem;  --sp-2: .5rem;  --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;   --sp-7: 2.75rem; --sp-8: 3.5rem;
  --sp-9: 5rem;    --sp-10: 7rem;

  
  --font-serif:   "Playfair Display", Georgia, "Times New Roman", serif;   
  --font-display: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;  
  --font-body:    "Nunito", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  
  --container: 1180px;
  --container-wide: 1320px;
  --header-h: 76px;

  
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --ease-smooth: cubic-bezier(.4, 0, .2, 1);
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;        
  line-height: 1.65;
  color: var(--ink);
  
  background-color: var(--carbon);
  background-image:
    radial-gradient(72% 62% at 12% -8%, var(--page-glow, rgba(255, 106, 19, .12)), transparent 60%),
    radial-gradient(58% 55% at 92% 108%, rgba(20, 194, 203, .07), transparent 60%),
    linear-gradient(180deg, #0E0F12 0%, #131519 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}


body.page-home     { --page-glow: rgba(255, 106, 19, .13); }  
body.page-rentals  { --page-glow: rgba(20, 194, 203, .12); }  
body.page-packages { --page-glow: rgba(255, 78, 138, .12); }  
body.page-gallery  { --page-glow: rgba(155, 124, 255, .12); } 
body.page-about    { --page-glow: rgba(20, 194, 203, .11); }  
body.page-faq      { --page-glow: rgba(255, 138, 30, .12); }  
body.page-contact  { --page-glow: rgba(255, 106, 19, .12); }  

img, svg, video { display: block; max-width: 100%; height: auto; }
img { object-fit: cover; }

a { color: var(--teal-deep); text-decoration: none; transition: color .2s var(--ease-smooth); }
a:hover { color: var(--orange-deep); }

ul, ol { padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--yellow); color: #0E0F12; }

.skip-link {
  position: absolute; left: 16px; top: -120px;
  background: var(--orange); color: #fff; padding: 12px 20px;
  border-radius: var(--r-pill); z-index: 200; font-weight: 700;
  transition: top .2s var(--ease-smooth);
}
.skip-link:focus { top: 16px; color: #fff; }


h1, h2, h3, h4 {
  font-family: var(--font-serif);   
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: normal;           
  color: var(--ink);
  text-wrap: balance;        
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--ink-soft); text-wrap: pretty; }   

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-deep);
}
.eyebrow--teal { color: var(--teal-deep); }
.eyebrow::before {
  content: ""; width: 22px; height: 3px; border-radius: 3px;
  background: var(--grad-sun);
}
.eyebrow--teal::before { background: var(--grad-teal); }
.eyebrow--center { justify-content: center; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); text-wrap: pretty; }


.hero__sub, .page-hero p, .section-head p, .lead, .cta-band p, .feature p, .step p { text-wrap: balance; }

.text-grad {
  background: var(--grad-sun);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  white-space: nowrap;       
}
.text-teal { color: var(--teal-deep); }


.section-head { max-width: 640px; margin-bottom: var(--sp-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: .75rem; font-size: 1.1rem; }
.section-head--between {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; max-width: none; flex-wrap: wrap;
}


.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: 820px; }

.section { position: relative; padding-block: clamp(4.5rem, 8.5vw, 8.5rem); }
.section--cream { background: linear-gradient(180deg, #181B22 0%, #14161C 100%); }   
.section--white { background: transparent; }                                          

.section--tint  {
  background:
    radial-gradient(78% 88% at 50% -18%, var(--page-glow, rgba(255, 106, 19, .16)), transparent 62%),
    linear-gradient(180deg, #191C24 0%, #121419 100%);
}


.divider { position: relative; line-height: 0; }
.divider svg { width: 100%; height: clamp(40px, 6vw, 90px); display: block; }
.divider--flip svg { transform: rotate(180deg); }


.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}


.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.02rem; line-height: 1;
  padding: .95rem 1.7rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: transform .25s var(--ease-bounce), box-shadow .25s var(--ease-smooth), filter .2s;
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary {
  background: var(--grad-sun); color: #fff;
  box-shadow: var(--shadow-orange);
  text-shadow: 0 1px 0 rgba(120, 40, 0, .25);
}
.btn--primary:hover { color: #fff; transform: translateY(-3px); filter: saturate(1.08) brightness(1.03); box-shadow: 0 22px 38px -12px rgba(234, 84, 16, .6); }

.btn--secondary {
  background: var(--grad-teal); color: #fff;
  box-shadow: var(--shadow-teal);
}
.btn--secondary:hover { color: #fff; transform: translateY(-3px); filter: brightness(1.05); }

.btn--outline {
  background: var(--white); color: var(--teal-deep);
  box-shadow: inset 0 0 0 2px var(--teal);
}
.btn--outline:hover { color: var(--teal-deep); background: rgba(37, 194, 204, .12); transform: translateY(-3px); }

.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn--ghost:hover { color: var(--ink); background: var(--white); transform: translateY(-3px); }

.btn--white { background: #ffffff; color: var(--orange-deep); box-shadow: var(--shadow-md); }
.btn--white:hover { color: var(--orange-deep); transform: translateY(-3px); }

.btn--lg { font-size: 1.12rem; padding: 1.1rem 2.1rem; }
.btn--sm { font-size: .92rem; padding: .7rem 1.25rem; }
.btn--block { display: flex; width: 100%; }


.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 600; color: var(--teal-deep);
}
.link-arrow svg { transition: transform .25s var(--ease-bounce); }
.link-arrow:hover { color: var(--orange-deep); }
.link-arrow:hover svg { transform: translateX(5px); }


.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  letter-spacing: .02em; padding: .4rem .8rem; border-radius: var(--r-pill);
  color: #fff;
}
.badge--popular { background: var(--grad-pink); box-shadow: 0 8px 18px -8px rgba(255, 78, 138, .6); }
.badge--new { background: var(--grad-teal); }
.badge--value { background: var(--grad-sun); }

.trust-row { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; }
.trust-pill {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: .55rem 1rem .55rem .65rem;
  font-weight: 700; font-size: .9rem; color: var(--ink);
  box-shadow: var(--shadow-xs);
}
.trust-pill .ic {
  display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: 50%; color: #fff; flex: none;
}
.trust-pill .ic svg { width: 17px; height: 17px; }
.trust-pill--orange .ic { background: var(--grad-sun); }
.trust-pill--teal .ic   { background: var(--grad-teal); }
.trust-pill--pink .ic   { background: var(--grad-pink); }


.site-header {
  position: sticky; top: 0; z-index: 100;
  padding-top: .5rem;
  transition: background .3s var(--ease-smooth), opacity .25s ease, visibility .25s ease;
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between; gap: .7rem;
  background: rgba(15, 17, 22, .96);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  padding: .4rem 1rem .4rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease-smooth);
}
.site-header.is-scrolled .site-header__bar { box-shadow: var(--shadow-md); } .site-header .header-actions .header-phone { display: none; } .site-header .container--wide { max-width: 860px; }

.brand { display: inline-flex; align-items: center; gap: .65rem; flex: none; }
.brand:hover { color: inherit; }
.brand__mark { width: 46px; height: 46px; flex: none; }

.brand__logo { height: 46px; width: auto; flex: none; display: block; object-fit: contain; }
.mobile-menu__head .brand__logo { height: 40px; }
.footer-brand .brand__logo { height: 60px; }
@media (min-width: 861px) { .footer-brand .brand__logo { height: 84px; } .footer-brand .brand { margin-bottom: 1.2rem; } }
@media (max-width: 560px) { .brand__logo { height: 38px; } }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text .pf {
  font-family: var(--font-display); font-weight: 700; font-size: 1.34rem; letter-spacing: -.01em;
  background: var(--grad-sun); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.brand__text .kop {
  font-family: var(--font-display); font-weight: 600; font-size: .64rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--teal-deep); margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: .35rem; flex: none; }
.nav a {
  font-family: var(--font-display); font-weight: 500; font-size: .92rem;
  color: var(--ink); padding: .42rem .6rem; border-radius: var(--r-pill);
  transition: background .2s, color .2s;
}
.nav a:hover { background: var(--cream-3); color: var(--orange-deep); }
.nav a[aria-current="page"] { color: var(--orange-deep); background: var(--cream-3); }

.header-actions { display: flex; align-items: center; gap: .6rem; flex: none; }
.header-phone {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-display); font-weight: 600; color: var(--ink);
  padding: .38rem .6rem; border-radius: var(--r-pill);
}
.header-phone:hover { color: var(--teal-deep); background: var(--cream-3); }
.header-phone svg { width: 18px; height: 18px; color: var(--teal-deep); }
.header-phone span small { display: none; font-size: .68rem; font-weight: 700; color: var(--ink-faint); font-family: var(--font-body); letter-spacing: .04em; text-transform: uppercase; line-height: 1; }

.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-sun); color: #fff; place-items: center;
  box-shadow: var(--shadow-orange);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }


.site-header.is-collapsed .nav,
.site-header.is-collapsed .header-phone { display: none; }
.site-header.is-collapsed .nav-toggle { display: grid; }
.site-header.is-collapsed .header-actions { margin-left: auto; } body.menu-open .site-header { opacity: 0; visibility: hidden; pointer-events: none; }


.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(43, 36, 54, .45);
  backdrop-filter: blur(2px);
  visibility: hidden; opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease-smooth), visibility .25s;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86%, 360px);
  background: var(--cream); padding: 1.25rem; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .3s var(--ease-smooth);
  display: flex; flex-direction: column; gap: .35rem;
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.mobile-menu__head .brand__mark { width: 38px; height: 38px; }
.mobile-menu a.m-link {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 500; font-size: 1.2rem;
  color: var(--ink); padding: .85rem 1rem; border-radius: var(--r-md);
}
.mobile-menu a.m-link:hover, .mobile-menu a.m-link[aria-current="page"] { background: var(--cream-3); color: var(--orange-deep); }
.mobile-menu__cta { margin-top: auto; display: grid; gap: .6rem; padding-top: 1rem; }
.menu-close { width: 44px; height: 44px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--ink); }
.menu-close svg { width: 22px; height: 22px; }


/* static so the mega-menu positions against the sticky .site-header (full viewport
   width) instead of the toggle - a 720px panel anchored to the toggle's left edge
   ran off-screen at narrower desktop widths */
.nav-dd { position: static; display: inline-flex; }
.nav-dd .nav-dd__toggle { display: inline-flex; align-items: center; gap: .3rem; }
.nav-dd:hover .nav-dd__toggle, .nav-dd:focus-within .nav-dd__toggle { background: var(--cream-3); color: var(--orange-deep); }
.nav-dd .dd-caret { transition: transform .25s var(--ease-smooth); }
.nav-dd:hover .dd-caret, .nav-dd:focus-within .dd-caret { transform: rotate(180deg); }

.nav-dd__menu {
  position: absolute; top: 100%; left: 50%;
  /* overlap up into the header bar so the cursor never crosses a dead zone
     between the Rentals toggle and the panel (hover stays unbroken) */
  margin-top: -20px; padding-top: 26px;
  opacity: 0; visibility: hidden; transform: translate(-50%, 8px);
  transition: opacity .2s var(--ease-smooth), transform .2s var(--ease-smooth), visibility .2s;
  z-index: 200;
}
.nav-dd:hover .nav-dd__menu, .nav-dd:focus-within .nav-dd__menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dd__panel {
  width: min(720px, 90vw); max-height: min(70vh, 460px); overflow-y: auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: .2rem 1.1rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 1rem 1.1rem;
}
.nav-dd__group { display: flex; flex-direction: column; min-width: 0; }
.nav-dd .nav-dd__head {
  font-family: var(--font-display); font-weight: 700; font-size: .76rem; text-transform: uppercase;
  letter-spacing: .05em; color: var(--teal-deep); padding: .3rem .5rem .35rem; margin-bottom: .15rem;
  border-radius: 0; border-bottom: 1px dashed var(--line);
}
.nav-dd .nav-dd__head:hover { background: transparent; color: var(--orange-deep); }
.nav-dd a.nav-dd__item {
  font-family: var(--font-body); font-weight: 600; font-size: .9rem; color: var(--ink);
  padding: .42rem .55rem; border-radius: 10px; transition: background .15s, color .15s;
}
.nav-dd a.nav-dd__item:hover { background: var(--cream-3); color: var(--orange-deep); }
.nav-dd a.nav-dd__all {
  grid-column: 1 / -1; display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 700; font-size: .92rem; margin-top: .4rem;
  padding: .65rem; border-radius: var(--r-md); background: var(--cream-3); color: var(--orange-deep);
}
.nav-dd a.nav-dd__all:hover { background: #2E333D; color: var(--orange-deep); }


.m-dd { display: flex; flex-direction: column; }
.m-dd__toggle {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem; width: 100%;
  font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; text-align: left;
  color: var(--ink); padding: .85rem 1rem; border-radius: var(--r-md); background: transparent; cursor: pointer;
}
.m-dd__toggle:hover, .m-dd__toggle[aria-current="page"], .m-dd.is-open .m-dd__toggle { background: var(--cream-3); color: var(--orange-deep); }
.m-dd__toggle .dd-caret { flex: none; transition: transform .25s var(--ease-smooth); }
.m-dd.is-open .m-dd__toggle .dd-caret { transform: rotate(180deg); }
.m-dd__sub {
  display: flex; flex-direction: column; max-height: 0; overflow: hidden; margin: 0 .25rem;
  transition: max-height .32s var(--ease-smooth);
}
.m-dd.is-open .m-dd__sub { max-height: min(58vh, 360px); overflow-y: auto; padding: .3rem .35rem .5rem 0; }


.m-dd__sub, .mobile-menu__panel, .nav-dd__panel {
  scrollbar-width: thin;
  scrollbar-color: #FF8A1F rgba(255, 255, 255, .07);
}
.m-dd__sub::-webkit-scrollbar,
.mobile-menu__panel::-webkit-scrollbar,
.nav-dd__panel::-webkit-scrollbar { width: 12px; }
.m-dd__sub::-webkit-scrollbar-track,
.mobile-menu__panel::-webkit-scrollbar-track,
.nav-dd__panel::-webkit-scrollbar-track { background: rgba(255, 255, 255, .06); border-radius: 999px; margin: 6px 2px; }
.m-dd__sub::-webkit-scrollbar-thumb,
.mobile-menu__panel::-webkit-scrollbar-thumb,
.nav-dd__panel::-webkit-scrollbar-thumb {
  background: var(--grad-sun); border-radius: 999px;
  border: 3px solid transparent; background-clip: padding-box;
}
.m-dd__sub::-webkit-scrollbar-thumb:hover,
.mobile-menu__panel::-webkit-scrollbar-thumb:hover,
.nav-dd__panel::-webkit-scrollbar-thumb:hover { background: var(--orange); background-clip: padding-box; }
.m-dd__sub .m-sublink {
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--ink);
  padding: .58rem .9rem; border-radius: 10px;
}
.m-dd__sub .m-sublink:hover { background: var(--cream-3); color: var(--orange-deep); }
.m-dd__sub .m-sublink--head {
  font-family: var(--font-display); font-weight: 700; font-size: .76rem; text-transform: uppercase;
  letter-spacing: .05em; color: var(--teal-deep); margin-top: .55rem; padding: .4rem .9rem .2rem;
}
.m-dd__sub .m-sublink--head:hover { background: transparent; color: var(--orange-deep); }
.m-dd__sub > .m-sublink--head:first-child { margin-top: 0; }
.m-dd__sub .m-sublink--all { margin-top: .45rem; font-family: var(--font-display); font-weight: 700; color: var(--orange-deep); background: var(--cream-3); text-align: center; }


.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero h1 { margin: 1rem 0 1.1rem; }
.hero h1 .text-grad { display: inline-block; }
.hero__sub { font-size: clamp(1.08rem, 1.7vw, 1.32rem); max-width: 33ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin: 1.8rem 0 1.6rem; }
.hero__trust { display: grid; gap: .55rem; margin-top: 1.4rem; }
.hero__trust .trust-pill { width: fit-content; }

.hero__art { position: relative; }
.hero__art-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid var(--steel-2);
  aspect-ratio: 5 / 4.4;
}
.hero__art-card svg, .hero__art-card img, .hero__art-card video { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.hero__tag {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: .65rem;
  background: var(--white); border-radius: var(--r-pill);
  padding: .6rem 1rem .6rem .65rem; box-shadow: var(--shadow-md);
  font-weight: 800; font-size: .92rem; color: var(--ink);
}
.hero__tag .ic { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: #fff; flex: none; }
.hero__tag .ic svg { width: 20px; height: 20px; }
.hero__tag small { display: block; font-weight: 600; font-size: .72rem; color: var(--ink-faint); }
.hero__tag--tl { top: 8%; left: -4%; }
.hero__tag--br { bottom: 9%; right: -4%; }


.page-hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem); text-align: center; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin: .8rem 0 .8rem; }
.page-hero p { font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 60ch; margin-inline: auto; }
.breadcrumb { display: flex; gap: .5rem; justify-content: center; font-size: .9rem; color: var(--ink-faint); margin-top: 1.2rem; font-weight: 700; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb span { color: var(--ink-faint); }


.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.cat-card {
  position: relative; display: flex; align-items: stretch; gap: .5rem; overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; padding: 1.4rem 1.2rem 1.4rem 1.5rem;
  box-shadow: 0 12px 32px -22px rgba(20, 20, 35, .4); color: var(--ink);
  transition: transform .28s var(--ease-smooth), box-shadow .28s var(--ease-smooth);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px -24px rgba(20, 20, 35, .5); color: var(--ink); }
.cat-card__body { flex: 1 1 56%; display: flex; flex-direction: column; align-items: flex-start; gap: .4rem; min-width: 0; z-index: 1; }
.cat-card__pill { font-size: .67rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: #fff; background: var(--cat); padding: .3rem .72rem; border-radius: var(--r-pill); white-space: nowrap; }
.cat-card__icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; color: #fff; margin-top: .55rem;
  background: var(--cat); box-shadow: 0 10px 20px -10px var(--cat);
}
.cat-card__icon svg { width: 25px; height: 25px; }
.cat-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin: .4rem 0 0; }
.cat-card__body p { color: var(--ink-soft); font-size: .92rem; line-height: 1.5; margin: 0; }
.cat-card__cta {
  margin-top: .85rem; display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--cat);
  border: 1.5px solid var(--cat); border-radius: var(--r-pill); padding: .5rem 1.05rem; transition: background .2s, color .2s;
}
.cat-card:hover .cat-card__cta { background: var(--cat); color: #fff; }
.cat-card__cta svg { width: 16px; height: 16px; }
.cat-card__media { position: relative; flex: 0 0 40%; display: grid; place-items: center; align-self: center; }
.cat-card__media::before { content: ""; position: absolute; width: 92%; aspect-ratio: 1; border-radius: 50%; background: var(--cat-bg); }
.cat-card__media img { position: relative; width: 100%; height: auto; object-fit: contain; mix-blend-mode: multiply; }
@media (max-width: 600px) {
  .cat-card { flex-direction: column; }
  .cat-card__media { flex: none; width: 60%; margin: .4rem auto 0; }
}


.bg-orange { background: var(--grad-sun); }
.bg-teal   { background: var(--grad-teal); }
.bg-pink   { background: var(--grad-pink); }
.bg-grape  { background: linear-gradient(135deg, #9F86FF, #7C5CFF); }
.bg-red    { background: linear-gradient(135deg, #FF6A5E, #FF4438); }
.bg-gold   { background: linear-gradient(135deg, #FFD850, #FF9E2C); }


.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.pkg-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-bounce), box-shadow .3s;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-card--featured { border-color: var(--pink); box-shadow: 0 24px 50px -22px rgba(255, 78, 138, .45); }
.pkg-card__media { position: relative; aspect-ratio: 16 / 10; }
.pkg-card__media svg { width: 100%; height: 100%; }
.pkg-card__badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; }
.pkg-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.4rem 1.5rem; }
.pkg-card h3 { margin-bottom: .35rem; }
.pkg-card__desc { font-size: .96rem; margin-bottom: 1rem; }
.pkg-card__list { display: grid; gap: .55rem; margin-bottom: 1.25rem; }
.pkg-card__list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; color: var(--ink); font-weight: 600; }
.pkg-card__list li svg { width: 20px; height: 20px; flex: none; color: var(--teal); margin-top: 1px; }
.pkg-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.pkg-price { font-family: var(--font-display); font-weight: 700; color: var(--ink); line-height: 1; }
.pkg-price b { font-size: 1.7rem; color: var(--orange-deep); }
.pkg-price small { display: block; font-size: .72rem; font-weight: 700; color: var(--ink-faint); font-family: var(--font-body); text-transform: uppercase; letter-spacing: .04em; }


.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.feature {
  text-align: center; padding: 1.75rem 1.25rem; border-radius: var(--r-lg);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease-bounce), box-shadow .3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 1.1rem;
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm);
}
.feature__icon svg { width: 38px; height: 38px; }
.feature h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.feature p { font-size: .96rem; }


.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 1rem;
  grid-auto-flow: dense;   
}
.gallery-item {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 4px solid var(--steel-2);
}
.gallery-item svg, .gallery-item img { width: 100%; height: 100%; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem .9rem .8rem; color: #fff; font-weight: 700; font-size: .92rem;
  background: linear-gradient(180deg, transparent, rgba(20, 12, 30, .65));
  opacity: 0; transform: translateY(8px); transition: .3s var(--ease-smooth);
}
.gallery-item:hover .gallery-item__label { opacity: 1; transform: translateY(0); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: var(--teal-ink); opacity: 0; transition: opacity .3s; }
.gallery-item:hover::after { opacity: .08; }


.pkg-card__media svg, .rental-card__media svg, .split__media svg { transition: transform .55s var(--ease-smooth); will-change: transform; }
.pkg-card:hover .pkg-card__media svg, .rental-card:hover .rental-card__media svg { transform: scale(1.06); }
.gallery-item .media { transition: transform .55s var(--ease-smooth); will-change: transform; }
.gallery-item:hover .media { transform: scale(1.07); }


.gallery-page { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
.gallery-page .gallery-item { grid-row: auto; }
.gallery-page .gallery-item .media { aspect-ratio: 4 / 3; }


.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; }
.step { position: relative; text-align: center; padding: 1.5rem 1.25rem; }
.step__num {
  width: 84px; height: 84px; margin: 0 auto 1.1rem; border-radius: 50%;
  display: grid; place-items: center; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: #fff;
  box-shadow: var(--shadow-md);
}
.step:nth-child(1) .step__num { background: var(--grad-sun); }
.step:nth-child(2) .step__num { background: var(--grad-teal); }
.step:nth-child(3) .step__num { background: var(--grad-pink); }
.step__num::after {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px dashed currentColor; opacity: .35;
}
.step h3 { margin-bottom: .5rem; }
.step p { font-size: .98rem; }

.step:not(:last-child)::before {
  content: ""; position: absolute; top: 60px; right: -11%;
  width: 22%; height: 8px;
  background-image: radial-gradient(currentColor 1.7px, transparent 2.2px);
  background-size: 11px 8px; background-position: left center; background-repeat: repeat-x;
  color: var(--orange); opacity: .55;
}
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 60px; right: calc(-11% - 3px);
  width: 9px; height: 9px;
  border-top: 2.6px solid var(--orange); border-right: 2.6px solid var(--orange);
  border-radius: 1px; transform: rotate(45deg); opacity: .9;
}


.booking-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 1.75rem; align-items: start; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.4rem, 3vw, 2.4rem); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .9rem; color: var(--ink); }
.field label .req { color: var(--red); }
.field .hint { font-size: .78rem; color: var(--ink-faint); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s, background .2s;
  color-scheme: dark; 
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: var(--white);
  box-shadow: 0 0 0 4px rgba(17, 168, 176, .14);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-card__foot { margin-top: 1.3rem; display: flex; flex-direction: column; gap: .8rem; }
.form-note { font-size: .82rem; color: var(--ink-faint); display: flex; align-items: center; gap: .4rem; }
.form-note svg { width: 16px; height: 16px; color: var(--teal); flex: none; }
.form-error { color: var(--red); font-weight: 700; font-size: .92rem; margin: 0 0 .7rem; }
.field__label { font-weight: 700; font-size: .9rem; color: var(--ink); }
.field__hint { font-weight: 600; font-size: .78rem; color: var(--ink-faint); margin-left: .4rem; }
.rental-picker { display: grid; gap: .5rem; }
.rental-picker__cat { font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; font-weight: 800; color: var(--ink-soft); margin: 0 0 .5rem; }
.rental-picker__chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.rp-cat { border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--cream); overflow: hidden; }
.rp-cat > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: .55rem; padding: .72rem .9rem; font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--ink); }
.rp-cat > summary::-webkit-details-marker { display: none; }
.rp-cat__name { flex: 1; }
.rp-cat > summary::after { content: ""; width: 8px; height: 8px; border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft); transform: rotate(45deg); transition: transform .2s var(--ease-smooth); flex: none; }
.rp-cat[open] > summary::after { transform: rotate(-135deg); }
.rp-cat[open] > summary { border-bottom: 1.5px solid var(--line); }
.rp-cat__items { display: flex; flex-wrap: wrap; gap: .5rem; padding: .85rem .9rem; }
.rp-count { font-size: .72rem; font-weight: 800; color: #fff; background: var(--grad-sun); border-radius: var(--r-pill); padding: .05rem .5rem; line-height: 1.5; }
.rp-count:empty { display: none; }
.rp-custom { margin-top: .3rem; }
.rp-custom label { display: block; font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: .4rem; }
.rp-custom textarea { width: 100%; padding: .8rem .95rem; color: var(--ink); background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--r-sm); min-height: 64px; resize: vertical; color-scheme: dark; font-family: inherit; }
.rp-custom textarea::placeholder { color: var(--ink-faint); }
.rp-custom textarea:focus { outline: none; border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 4px rgba(17, 168, 176, .14); }
.chip-check { position: relative; display: inline-flex; }
.chip-check input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.chip-check span {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .5rem .85rem; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: var(--cream); color: var(--ink);
  font-size: .88rem; font-weight: 600; line-height: 1; transition: all .15s var(--ease-smooth);
}
.chip-check input:hover + span { border-color: var(--teal); }
.chip-check input:focus-visible + span { outline: 2px solid var(--teal); outline-offset: 2px; }
.chip-check input:checked + span {
  background: var(--grad-sun); border-color: transparent; color: #fff; box-shadow: var(--shadow-orange);
}
.chip-check input:checked + span::before { content: "\2713"; font-weight: 800; font-size: .85em; }
.form-card .g-recaptcha { margin: .1rem 0 .2rem; }
@media (max-width: 360px) { .form-card .g-recaptcha { transform: scale(.9); transform-origin: left top; } }


.form-success {
  display: none; text-align: center; padding: 2rem 1rem;
}
.form-success.is-visible { display: block; animation: pop .4s var(--ease-bounce); }
.form-success__icon { width: 78px; height: 78px; margin: 0 auto 1rem; border-radius: 50%; background: var(--grad-teal); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-teal); }
.form-success__icon svg { width: 42px; height: 42px; }


.info-card { background: var(--grad-teal); color: #fff; border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-teal); position: relative; overflow: hidden; }
.info-card::before { content: ""; position: absolute; right: -60px; top: -60px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.1); }
.info-card h3 { color: #fff; margin-bottom: 1.2rem; position: relative; }
.info-card__list { display: grid; gap: 1.1rem; position: relative; }
.info-card__row { display: flex; gap: .9rem; align-items: flex-start; }
.info-card__row .ic { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; flex: none; }
.info-card__row .ic svg { width: 20px; height: 20px; color: #fff; }
.info-card__row b { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.info-card__row a { color: #fff; }
.info-card__row a:hover { color: var(--gold); }
.info-card__row span { color: rgba(255,255,255,.82); font-size: .92rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.5rem; position: relative; justify-content: center; }
.socials a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.16); display: grid; place-items: center; color: #fff; transition: transform .25s var(--ease-bounce), background .25s; }
.socials a:hover { background: #ffffff; color: var(--teal-ink); transform: translateY(-4px); }
.socials a svg { width: 20px; height: 20px; }


.site-footer { background: var(--carbon); border-top: 1px solid var(--line); color: rgba(255,255,255,.74); position: relative; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr 1.1fr; gap: 2rem; padding-block: clamp(3rem, 5vw, 4.5rem) 2.5rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.site-footer .brand__text .pf { -webkit-text-fill-color: #fff; color: #fff; background: none; }
.site-footer .brand__text .kop { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,.72); font-size: .95rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { font-weight: 600; font-size: .95rem; }
.footer-areas { font-size: .92rem; line-height: 1.8; color: rgba(255,255,255,.72); }
.footer-contact { display: grid; gap: .7rem; }
.footer-contact a, .footer-contact span { display: flex; gap: .55rem; align-items: center; font-size: .95rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.footer-socials { display: flex; gap: .55rem; margin-top: 1.1rem; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; transition: transform .25s var(--ease-bounce), background .25s; }
.footer-socials a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-socials a svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-block: 1.4rem 2rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.footer-promise { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.05rem; display: inline-flex; align-items: center; gap: .5rem; }
.footer-promise svg { width: 20px; height: 20px; color: var(--gold); }
.footer-legal { font-size: .85rem; color: rgba(255,255,255,.6); display: flex; gap: 1.25rem; flex-wrap: wrap; }


.footer-credit { display: flex; justify-content: center; padding-bottom: 1.9rem; }
.mau-credit { display: inline-flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.42); font-size: .8rem; font-weight: 700; letter-spacing: .02em; }
.mau-credit:hover { color: rgba(255,255,255,.82); }
.mau-credit img { width: 132px; height: auto; object-fit: contain; opacity: .82; transition: opacity .2s var(--ease-smooth); }
.mau-credit:hover img { opacity: 1; }


.confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.confetti i {
  position: absolute; display: block; opacity: .9;
  animation: floaty 7s var(--ease-smooth) infinite;
}
.confetti i.dot { width: 14px; height: 14px; border-radius: 50%; }
.confetti i.sq { width: 14px; height: 14px; border-radius: 3px; transform: rotate(20deg); }
.confetti i.tri { width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 15px solid; }
.confetti i.ring { width: 18px; height: 18px; border-radius: 50%; border: 4px solid; background: transparent; }
.c-orange { background: var(--orange); color: var(--orange); border-color: var(--orange); }
.c-teal { background: var(--teal); color: var(--teal); border-color: var(--teal); }
.c-pink { background: var(--pink); color: var(--pink); border-color: var(--pink); }
.c-yellow { background: var(--yellow); color: var(--yellow); border-color: var(--yellow); }
.c-grape { background: var(--grape); color: var(--grape); border-color: var(--grape); }

@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-22px) rotate(18deg); } }

.balloon { animation: bob 6s ease-in-out infinite; transform-origin: center bottom; }
.balloon--slow { animation-duration: 8s; }
.balloon--delay { animation-delay: -2s; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(2deg); } }


.cta-band { background: var(--grad-sun); color: #fff; border-radius: var(--r-xl); padding: clamp(2rem, 4vw, 3.25rem); text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-orange); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 52ch; margin: .8rem auto 1.6rem; font-size: 1.1rem; }
.cta-band .btn--white { box-shadow: 0 16px 30px -12px rgba(120,40,0,.45); }
.cta-band__row { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }


.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.stat { text-align: center; padding: 1.25rem 1rem; }
.stat b { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); display: block; line-height: 1; }
.stat span { font-weight: 700; color: var(--ink-soft); font-size: .92rem; }


.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-smooth), transform .7s var(--ease-smooth); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@keyframes pop { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }


.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .75rem; } .mt-2 { margin-top: 1.25rem; } .mt-3 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; } .gap-2 { gap: .75rem; } .gap-3 { gap: 1.25rem; }
.wrap { flex-wrap: wrap; }
.center-x { justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.hide-mobile { display: initial; }


.faq-list { display: grid; gap: .9rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-xs); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq-item.is-open { box-shadow: var(--shadow-sm); border-color: rgba(255, 160, 70, .45); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: 1.15rem 1.3rem; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.faq-q .chev { width: 34px; height: 34px; border-radius: 50%; background: var(--cream-3); display: grid; place-items: center; flex: none; transition: transform .3s var(--ease-bounce), background .3s; color: var(--orange-deep); }
.faq-q .chev svg { width: 18px; height: 18px; }
.faq-item.is-open .faq-q .chev { transform: rotate(180deg); background: var(--grad-sun); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-smooth); }
.faq-a__inner { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); }


.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
/* vertical rhythm for raw text columns (blocks without a .section-head wrapper
   inherit the global margin reset and squash together) */
.split .eyebrow, .grid-2 .eyebrow { margin-bottom: .8rem; }
.split h2, .grid-2 h2 { margin-bottom: 1rem; }
.split h3, .grid-2 h3 { margin-bottom: .6rem; }
.split p + p, .grid-2 p + p { margin-top: .9rem; }
.split ul + p, .grid-2 ul + p, .split .checklist + p { margin-top: 1.1rem; }
.split__media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 6px solid var(--steel-2); aspect-ratio: 4/3; }
.split__media svg, .split__media img { width: 100%; height: 100%; }


.checklist { display: grid; gap: .7rem; margin-top: 1.25rem; }
.checklist li { display: flex; gap: .65rem; align-items: flex-start; font-weight: 600; color: var(--ink); }
.checklist li svg { width: 22px; height: 22px; color: var(--teal); flex: none; margin-top: 2px; }


.rental-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rental-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .3s var(--ease-bounce), box-shadow .3s; }
.rental-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.rental-card__media { aspect-ratio: 4/3; position: relative; }
.rental-card__media svg { width: 100%; height: 100%; }
.rental-card__tag { position: absolute; top: .8rem; left: .8rem; }
.rental-card__body { padding: 1.25rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.rental-card h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.rental-card p { font-size: .93rem; margin-bottom: 1rem; }
.rental-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; border-top: 1px dashed var(--line); }
.rental-card__price { font-family: var(--font-display); font-weight: 700; color: var(--orange-deep); font-size: 1.15rem; }
.rental-card__price small { color: var(--ink-faint); font-weight: 700; font-size: .72rem; font-family: var(--font-body); }


.media { position: relative; aspect-ratio: 4 / 3; display: grid; place-items: center; overflow: hidden; }
.media > .media-ic { width: 38%; height: auto; color: #fff; position: relative; z-index: 1; filter: drop-shadow(0 8px 12px rgba(0,0,0,.18)); }
.media::before, .media::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.16); }
.media::before { width: 96px; height: 96px; top: -28px; right: -22px; }
.media::after { width: 64px; height: 64px; bottom: -20px; left: -12px; }
.media-dots { position: absolute; inset: 0; z-index: 1; }
.media-dots i { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); }
.media-tag { position: absolute; top: .7rem; left: .7rem; z-index: 4; }
.media--wide { aspect-ratio: 16 / 9; }
.media--tall { aspect-ratio: 3 / 4; }


.media > img, .media > picture { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 3; }
.media:has(> img) > .media-ic, .media:has(> picture) > .media-ic { display: none; }


.chips { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.chip { font-family: var(--font-display); font-weight: 500; font-size: .95rem; padding: .55rem 1.1rem; border-radius: var(--r-pill); background: var(--white); border: 1.5px solid var(--line); color: var(--ink); transition: all .2s; }
.chip:hover { border-color: var(--orange); color: var(--orange-deep); }
.chip.is-active { background: var(--grad-sun); color: #fff; border-color: transparent; box-shadow: var(--shadow-orange); }


.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.value { display: flex; gap: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem; box-shadow: var(--shadow-xs); }
.value .ic { width: 54px; height: 54px; border-radius: var(--r-md); display: grid; place-items: center; color: #fff; flex: none; }
.value .ic svg { width: 28px; height: 28px; }
.value h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.value p { font-size: .92rem; }


.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); position: relative; }
.quote__stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: .8rem; }
.quote__stars svg { width: 20px; height: 20px; }
.quote p { color: var(--ink); font-size: 1.02rem; }
.quote__by { display: flex; align-items: center; gap: .7rem; margin-top: 1.2rem; }
.quote__by .quote__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 800; flex: none; }
.quote__by b { display: block; font-size: .95rem; color: var(--ink); font-family: var(--font-display); }
.quote__by span { font-size: .82rem; color: var(--ink-faint); }


@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact-col { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: grid; }
  .header-actions { margin-left: auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 540px; margin-inline: auto; width: 100%; }
  .hero__sub { max-width: none; }
  .cat-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .rental-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  
  .steps { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; gap: 1rem; }
  .step:not(:last-child)::before, .step:not(:last-child)::after { display: none; }
  .section-head--between { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  
  .header-actions .btn--primary { display: none; }
  .brand__text .kop { font-size: .6rem; letter-spacing: .1em; }
  .cat-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .gallery-item--wide { grid-column: span 2; }
  .rental-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .hero__tag--tl { left: 2%; }
  .hero__tag--br { right: 2%; }
  .btn--block-sm { display: flex; width: 100%; }
  .hero__cta .btn { flex: 1; min-width: 0; }
}


.launch-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center; gap: 1rem 2.25rem; flex-wrap: wrap;
  padding: .85rem 1.4rem;
  background: rgba(14, 16, 21, .94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-2);
  box-shadow: 0 -14px 34px -14px rgba(0, 0, 0, .65);
}
.launch-bar__msg { display: flex; flex-direction: column; line-height: 1.3; }
.launch-bar__msg strong { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.06rem; }
.launch-bar__msg span { color: var(--ink-soft); font-size: .9rem; }
.launch-bar__btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; line-height: 1;
  color: #fff; background: var(--grad-sun);
  padding: 1.05rem 2.5rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-orange); white-space: nowrap;
  transition: transform .25s var(--ease-bounce), filter .2s;
  animation: launchPulse 2.4s var(--ease-smooth) infinite;
}
.launch-bar__btn:hover { color: #fff; transform: translateY(-2px); filter: saturate(1.08) brightness(1.04); }
@keyframes launchPulse {
  0%, 100% { box-shadow: 0 16px 30px -12px rgba(255, 106, 19, .5); }
  50%      { box-shadow: 0 18px 46px -10px rgba(255, 106, 19, .78); }
}
.has-launch-bar { padding-bottom: 92px; }   
@media (max-width: 600px) {
  .launch-bar { flex-direction: column; text-align: center; gap: .55rem; padding: .8rem 1rem 1rem; }
  .launch-bar__msg { align-items: center; }
  .launch-bar__btn { width: 100%; justify-content: center; }
  .has-launch-bar { padding-bottom: 152px; }
}


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


@media print {
  .site-header, .mobile-menu, .nav-toggle, .cta-band, .confetti, .launch-bar { display: none !important; }
  body { background: var(--white); }
}

.theme-light {
  /* darker teals so links/accents keep contrast on the light background */
  --teal: #12838C;
  --teal-deep: #0B7078;
  --cream: #FFF7EC;
  --cream-2: #FFFFFF;
  --cream-3: #FBEEDC;
  --white: #FFFFFF;
  --steel-2: #F1F3F7;
  --line: #ECE4D6;
  --line-2: #F3EDE1;
  --silver: #6B7280;
  --ink: #26212F;
  --ink-soft: #5A5364;
  --ink-faint: #8B8494;
  --grad-cream: linear-gradient(180deg, #FFFFFF 0%, #FFF7EC 100%);
  --grad-sky: linear-gradient(180deg, #FFFBF4 0%, #FFF7EC 60%, #FFFDF9 100%);
  --grad-steel: linear-gradient(180deg, #F7F4EF 0%, #FFFFFF 100%);
  --shadow-xs: 0 2px 6px rgba(60,40,20,.07);
  --shadow-sm: 0 8px 20px -8px rgba(60,40,20,.12);
  --shadow-md: 0 18px 38px -16px rgba(60,40,20,.16);
  --shadow-lg: 0 30px 60px -22px rgba(60,40,20,.20);
  color: var(--ink);
}
.section.theme-light { background: #FFFCF6; }
.section.theme-light.section--cream { background: #FFF3E3; }

.cookie-bar {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 400;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .8rem 1.4rem; max-width: 720px; margin-inline: auto;
  background: rgba(20, 23, 29, .97); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); padding: 1rem 1.25rem; box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.cookie-bar p { flex: 1 1 300px; margin: 0; font-size: .92rem; color: var(--ink-soft); }
.cookie-bar p strong { color: var(--ink); }
.cookie-bar a { font-weight: 700; }
.cookie-bar__btns { display: flex; gap: .6rem; }

.legal h2 { font-size: 1.45rem; margin: 2.2rem 0 .7rem; }
.legal h2:first-child { margin-top: 0; }
.legal p { margin-bottom: .9rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; margin: 0 0 1rem; color: var(--ink-soft); }
.legal li { margin-bottom: .45rem; }
.legal li strong, .legal p strong { color: var(--ink); }
.legal-links { margin-top: 2.4rem; }
