@font-face {
  font-family: 'Champagne & Limousines';
  src: url('asset/font/champagne-limousines-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Champagne & Limousines';
  src: url('asset/font/champagne-limousines-bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Champagne & Limousines';
  src: url('asset/font/champagne-limousines-italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Champagne & Limousines';
  src: url('asset/font/champagne-limousines-bolditalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

:root{
  --purple: #602252;
  --orange: #E7660C;
  --orange-dark: #DE7038;
  --stats-start: #793169;
  --stats-end: #A63F84;
  --cream: #F7EDEC;
  --white: #FFFFFF;
  --font-display: 'Champagne & Limousines', cursive;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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


/* ============ PAGE LOAD ANIMATION ============ */
@keyframes pageLoadSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px); /* Starts slightly lower */
  }
  100% {
    opacity: 1;
    transform: translateY(0);    /* Slides into its normal position */
  }
}

body {
  /* cubic-bezier creates a highly polished, natural-feeling deceleration */
  animation: pageLoadSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============ SCROLL REVEAL ANIMATION ============ */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease-out, transform .9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}


html{ scroll-behavior:smooth; }

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

/* Skip layout/paint work for offscreen sections until they're about to enter
   the viewport — cuts initial render cost on long pages significantly. */
.services-section,
.portfolio-section,
.why-section,
.testimonials-section,
.services-page-section,
.process-section,
.faq-section{
  content-visibility:auto;
}
.services-section{ contain-intrinsic-size:auto 900px; }
.portfolio-section{ contain-intrinsic-size:auto 1000px; }
.why-section{ contain-intrinsic-size:auto 700px; }
.testimonials-section{ contain-intrinsic-size:auto 700px; }
.services-page-section{ contain-intrinsic-size:auto 2200px; }
.process-section{ contain-intrinsic-size:auto 500px; }
.faq-section{ contain-intrinsic-size:auto 600px; }

body{
  font-family: var(--font-body);
  background:var(--cream);
  color:var(--purple);
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }

a{ text-decoration:none; color:inherit; }

ul{ list-style:none; }

.container{
  max-width:1400px;
  margin:0 auto;
  padding:0 48px;
}

/* ---------- NAVBAR ---------- */
.navbar{
  position:absolute;
  top:0; left:0; right:0;
  z-index:20;
  padding:28px 0;
}

.navbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:4px;
  font-family: var(--font-body);
  font-weight:700;
  font-size:26px;
  line-height:1;
}

.logo img{
width: clamp(120px, 10vw, 120px);
height: auto;
}


.logo .big{ color:var(--orange); }
.logo .events{
  color:var(--purple);
  letter-spacing:1px;
  margin-left:2px;
}

.logo .spark{
  font-size:14px;
  color:var(--orange);
  margin-left:2px;
  transform:translateY(-10px);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:40px;
}

.nav-links a{
  font-weight:700;
  font-size:clamp(13px, 1vw, 15px);
  color:var(--purple);
  transition:opacity .2s ease;
}

.nav-links a:hover{ opacity:.65; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family: var(--font-body);
  font-weight:700;
  font-size:clamp(13px, 1vw, 15px);
  border:none;
  border-radius:30px;
  cursor:pointer;
  transition:transform .15s ease, background .2s ease;
}

.btn:hover{ transform:translateY(-2px); }

.btn-primary{
  background:var(--orange);
  color:var(--white);
  padding:clamp(10px,1.2vw,14px) clamp(18px,2.2vw,28px);
}

.btn-primary:hover{ background:var(--orange-dark); }

.nav-cta{
  display:flex;
  align-items:center;
}

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
}

.nav-toggle span{
  width:26px; height:3px;
  background:var(--purple);
  border-radius:2px;
  transition:transform .3s ease, opacity .2s ease;
}

/* hamburger -> X when menu is open */
.nav-toggle.active span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; }
.nav-toggle.active span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

/* mobile-only "Book Event" CTA — only ever shown inside the full-screen
   mobile menu (see the dedicated mobile-menu media query below) */
.nav-mobile-book{ display:none; }

body.menu-open{ overflow:hidden; }

/* ============================================================================
   MOBILE MENU — full-screen overlay
   Active on every screen small enough to show the hamburger (below 992px,
   i.e. Small Phones through Small Tablet in the breakpoint system further
   down). Kept as one block rather than repeated per-bucket since the overlay
   behaves identically at every mobile size — only spacing needs to flex,
   and clamp()/vh units already handle that.
============================================================================ */
@media (max-width: 991px){
  /* the header's own CTA is dropped on mobile — the same action now lives
     inside the full-screen menu instead (see .nav-mobile-book below) */
  .nav-cta{ display:none; }

  .nav-toggle{ display:flex; z-index:30; }

  .nav-links{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    background:var(--white);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:0;
    padding:100px 32px 48px;
    z-index:25;
    overflow-y:auto;

    opacity:0;
    visibility:hidden;
    transform:translateY(-24px);
    transition:opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
  }

  .nav-links.open{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    transition:opacity .35s ease, transform .35s ease, visibility 0s linear 0s;
  }

  .nav-links a{
    width:100%;
    max-width:320px;
    text-align:center;
    padding:16px 0;
    border-bottom:1px solid #f0eae8;
    font-size:19px;

    opacity:0;
    transform:translateY(14px);
    transition:opacity .35s ease, transform .35s ease;
  }

  /* staggered entrance once the menu is open */
  .nav-links.open a{ opacity:1; transform:translateY(0); }
  .nav-links.open a:nth-child(2){ transition-delay:.05s; }
  .nav-links.open a:nth-child(3){ transition-delay:.1s; }
  .nav-links.open a:nth-child(4){ transition-delay:.15s; }
  .nav-links.open a:nth-child(5){ transition-delay:.2s; }
  .nav-links.open a:nth-child(6){ transition-delay:.25s; }

  /* the "Book Now" CTA only ever appears here, pinned to the bottom of the
     full-screen menu — it stays hidden everywhere else via the base rule */
  .nav-mobile-book{
    display:inline-flex;
    width:100%;
    max-width:320px;
    justify-content:center;
    margin-top:auto;
    padding:16px 0;
    font-size:16px;
    border-bottom:none;

    opacity:0;
    transform:translateY(14px);
    transition:opacity .35s ease, transform .35s ease;
    transition-delay:.3s;
  }
  .nav-links.open .nav-mobile-book{ opacity:1; transform:translateY(0); }
}

/* ---------- HERO ---------- */
.hero{
  position:relative;

  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.55) 0%, rgba(226,205,214,.35) 35%, rgba(120,90,110,.15) 60%, transparent 75%),
    linear-gradient(180deg, #E9E1E6 0%, #E3D2D9 35%, #C9A9BC 70%, #B98FA9 100%);
}

/* decorative floral-canopy silhouette, stands in for the photograph */
.hero-art{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
}

.hero-art img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top;
  display:block;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(107, 19, 73, 0) 40%, rgba(68, 16, 48, 0.35) 70%, rgba(39,20,20,.55) 100%);

  z-index:2;
}

.hero-inner{
  position:relative;
  z-index:5;
  width:100%;
  padding-bottom:150px;
}

.hero-content{
  max-width:780px;
}

.hero-heading{
  font-family: var(--font-display);
  font-weight:400;
  line-height:1.15;
  color:var(--white);

  text-shadow:0 2px 18px rgba(0,0,0,.18);
}

.hero-cta{
  margin-top:34px;
}

.hero-badges{
  position:absolute;
  right:48px;
  bottom:150px;
  z-index:6;
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:flex-end;
}

.badge{
  position:relative;
  isolation:isolate;
  display:flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.92);
  padding:clamp(8px,1vw,10px) clamp(14px,1.8vw,20px) clamp(8px,1vw,10px) clamp(10px,1.2vw,12px);
  border-radius:30px;
  font-size:clamp(12px, 1vw, 14px);
  font-weight:700;
  color:var(--purple);
  box-shadow:0 6px 18px rgba(60,20,45,.15);
  white-space:nowrap;
  transition:transform .35s cubic-bezier(.22,1,.36,1), background .3s ease;
  will-change:transform;
  cursor:default;
}

.badge::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:inherit;
  box-shadow:0 14px 30px rgba(60,20,45,.28);
  opacity:0;
  transition:opacity .3s ease;
  pointer-events:none;
}

.badge:hover{
  transform:translateY(-4px) scale(1.03);
  background:var(--white);
}

.badge:hover::after{ opacity:1; }

.badge:hover .icon-circle{
  background:var(--orange);
  transform:rotate(-8deg);
}

.badge .icon-circle{
  width:26px; height:26px;
  border-radius:50%;
  background:var(--purple);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  flex-shrink:0;
  transition:background .25s ease, transform .25s ease;
}

/* ---------- STATS BAR ---------- */
.stats-bar{
  position:relative;
  background:linear-gradient(90deg, var(--stats-start) 0%, var(--stats-end) 100%);
  padding:38px 0 38px 0;
  z-index:10;
  overflow:visible;
}

.stats-inner{
  display:flex;
  align-items:center;
  gap:60px;
}

.stats-photos{
  position:relative;
  width:270px;
  height:255px;
  flex-shrink:0;
  margin-top:-195px;
}

.stats-photos .circle{
  position:absolute;
  border-radius:60px;
  overflow:hidden;
  object-fit:cover;
  border:5px solid var(--cream);
  box-shadow:0 12px 26px rgba(0,0,0,.28);
}

.stats-photos .c1{
  left:0; bottom:-90px;
  width:110px; height:225px;
  z-index:1;
}
.stats-photos .c2{
  left:70px; bottom:-90px;
  width:110px; height:225px;
  z-index:2;
}
.stats-photos .c3{
  left:140px; bottom:-90px;
 width:110px; height:225px;
  z-index:3;
}

.stats-list{
  display:flex;
  flex:1;
  justify-content:space-between;
}

.stat{
  text-align:center;
}

.stat-number{
  font-family: var(--font-display);
  font-weight:400;
  font-size:clamp(30px, 4vw, 48px);
  color:var(--white);
  line-height:1;
}

.stat-label{
  margin-top:8px;
  font-size:clamp(12px, 1.1vw, 15px);
  font-weight:400;
  color:var(--white);
  opacity:.9;
}

/* ---------- SHARED ---------- */
.eyebrow{
  display:inline-block;
  font-family: var(--font-display);
  font-weight:400;
  font-size:clamp(24px, 2.6vw, 34px);
  color:var(--orange);
  margin-bottom:6px;
}

.accent{ color:var(--purple); }

.btn-arrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--orange);
  color:var(--white);
  font-weight:700;
  font-size:clamp(13px, 1vw, 15px);
  padding:clamp(11px,1.2vw,14px) clamp(20px,2vw,26px);
  border-radius:30px;
  transition:transform .2s ease, background .2s ease, gap .2s ease;
}

.btn-arrow .arrow{
  display:inline-flex;
  transition:transform .2s ease;
}

.btn-arrow:hover{
  background:var(--orange-dark);
  gap:14px;
  transform:translateY(-2px);
}

.btn-arrow:hover .arrow{ transform:translateX(3px); }

/* ---------- ABOUT ---------- */
.about-section{
  background:var(--cream);
  padding:clamp(60px,8vw,110px) 0;
}

.about-inner{
  display:grid;
  grid-template-columns:minmax(260px, 380px) 1fr;
  gap:clamp(30px,5vw,70px);
  align-items:center;
}

.about-media{
  background:var(--white);
  border-radius:24px;
  padding:clamp(24px,3vw,40px);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 20px 45px rgba(96,34,82,.08);
  aspect-ratio:1 / 1.05;
}

.about-media img{
  width:60%;
  height:auto;
}

.about-heading{
  font-family: var(--font-display);
  font-weight:700;
  font-size:clamp(26px, 3.4vw, 40px);
  line-height:1.25;
  color:#2b2b2b;
  margin:14px 0 22px;
}

.about-text{
  font-size:clamp(14px, 1.1vw, 16px);
  line-height:1.7;
  color:#6b6b6b;
  max-width:640px;
  margin-bottom:16px;
}

.about-text strong{
  color:#2b2b2b;
}

.about-content .btn-arrow{ margin-top:14px; }

/* ---------- SERVICES ---------- */
.services-section{
  position:relative;
  padding:clamp(60px,8vw,110px) 0;
  overflow:hidden;
  background:var(--cream);
}

.services-bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.services-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  display:block;
}

.services-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,
    transparent 0%,
    transparent 50%,
    #fbe4c9 50%,
    #fbe4c9 100%);
  z-index:1;
}

.services-inner{
  position:relative;
  z-index:2;
}

.services-header{
  text-align:center;
  margin-bottom:clamp(30px,4vw,48px);
}

.services-heading{
  font-family: var(--font-display);
  font-weight:700;
  font-size:clamp(26px, 3.4vw, 40px);
}

.services-heading .dark{ color:#2b2b2b; }

.services-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}

.service-card{
  position:relative;
  isolation:isolate;
  background:var(--white);
  border-radius: 35px;
  box-shadow:0 16px 34px rgba(60,30,20,.14);
  transition:transform .35s cubic-bezier(.22,1,.36,1);
  will-change:transform;
}
.service-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:inherit;
  box-shadow:0 22px 44px rgba(60, 30, 20, 0.108);
  opacity:0;
  transition:opacity .35s ease;
  pointer-events:none;
}
.card-text{
  padding:14px 14px 22px;
}
.service-card:hover{
  transform:translateY(-6px);
}
.service-card:hover::after{ opacity:1; }

.service-img{
  border-radius:35px 35px 0px 0px ;
  overflow:hidden;
  aspect-ratio:1 / 0.85;
  margin-bottom:0;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: center;
  transition:transform .4s ease;
}

.service-card:hover .service-img img{ transform:scale(1.06); }

.service-title{
  font-size:clamp(16px, 1.4vw, 19px);
  font-weight:700;
  color:#2b2b2b;
  margin-bottom:8px;
}

.service-desc{
  font-size:clamp(13px, 1vw, 14px);
  line-height:1.55;
  color:#7a7a7a;
}

.services-cta-wrap{
  display:flex;
  justify-content:center;
  margin-top:clamp(28px,4vw,44px);
}

/* ---------- PORTFOLIO ---------- */
.portfolio-section{
  background:var(--white);
  padding:clamp(60px,8vw,110px) 0;
}

.portfolio-header{
  text-align:center;
  margin-bottom:24px;
}

.portfolio-heading{
  font-family: var(--font-body);
  font-weight:700;
  font-size:clamp(26px, 3.4vw, 40px);
  color:#2b2b2b;
}

.portfolio-filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:clamp(30px,4vw,48px);
}

.filter-btn{
  font-family: var(--font-body);
  font-weight:700;
  font-size:clamp(12px, 1vw, 14px);
  color:var(--purple);
  background:var(--white);
  border:1.5px solid var(--purple);
  border-radius:30px;
  padding:10px 22px;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, transform .15s ease;
}

.filter-btn:hover{
  transform:translateY(-2px);
  background:rgba(96,34,82,.06);
}

.filter-btn.active{
  background:var(--purple);
  color:var(--white);
  border-color:var(--purple);
}

.portfolio-grid{
  display:flex;
  gap:16px;
  align-items:flex-start;
}

.portfolio-col{
  display:flex;
  flex-direction:column;
  gap:16px;
  flex:1;
  min-width:0;
}

.portfolio-item{
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
  transition:opacity .3s ease, transform .3s ease;
}

.portfolio-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}

.portfolio-item:hover img{ transform:scale(1.06); }

.portfolio-item.hidden{
  display:none;
}

.gallery-btn{
  align-self:flex-start;
  margin-top:4px;
}

/* ---------- WHY CHOOSE US ---------- */
.why-section{
  background:#6B2356;
  padding:clamp(60px,8vw,110px) 0;
}

.why-header{
  text-align:center;
  margin-bottom:clamp(36px,5vw,56px);
}

.why-eyebrow{
  display:block;
  font-family: var(--font-display);
  font-weight:400;
  font-size:clamp(24px, 2.6vw, 32px);
  color:#F0C48A;
  margin-bottom:6px;
}

.why-eyebrow .accent-b{
  color:var(--orange);
  font-weight:700;
}

.why-heading{
  font-family: var(--font-body);
  font-weight:700;
  font-size:clamp(28px, 3.6vw, 42px);
  color:var(--white);
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px clamp(20px,3vw,40px);
}

.why-item{
  display:flex;
  align-items:stretch;
  gap:6px;
}

.why-icon{
  flex:0 0 clamp(64px,7vw,86px);
  background:rgba(0,0,0,.18);
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--orange);
}

.why-icon svg{
  width:44%;
  height:44%;
}

.why-text{
  flex:1;
  background:rgba(255,255,255,.06);
  border-radius:16px;
  padding:18px 20px;
  min-width:0;
}

.why-text h3{
  font-size:clamp(14px, 1.2vw, 16px);
  font-weight:700;
  color:var(--white);
  margin-bottom:6px;
}

.why-text p{
  font-size:clamp(12px, 1vw, 13.5px);
  line-height:1.55;
  color:rgba(255,255,255,.65);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section{
  background:var(--cream);
  padding:clamp(60px,8vw,110px) 0;
}

.testimonials-header{
  text-align:center;
  margin-bottom:clamp(30px,4vw,48px);
}

.testimonials-heading{
  font-family: var(--font-body);
  font-weight:700;
  font-size:clamp(26px, 3.4vw, 40px);
}

.testimonials-heading .dark{ color:#2b2b2b; }

.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.testimonial-card{
  position:relative;
  isolation:isolate;
  background:var(--white);
  border-radius:18px;
  padding:26px 26px 24px;
  box-shadow:0 14px 30px rgba(96,34,82,.07);
  display:flex;
  flex-direction:column;
  transition:transform .35s cubic-bezier(.22,1,.36,1);
  will-change:transform;
}

.testimonial-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:inherit;
  box-shadow:0 20px 40px rgba(96,34,82,.12);
  opacity:0;
  transition:opacity .35s ease;
  pointer-events:none;
}

.testimonial-card:hover{
  transform:translateY(-4px);
}

.testimonial-card:hover::after{ opacity:1; }

.stars{
  color:#E8A93C;
  font-size:15px;
  letter-spacing:2px;
  margin-bottom:14px;
}

.testimonial-quote{
  font-style:italic;
  font-size:clamp(13px, 1vw, 14.5px);
  line-height:1.7;
  color:#4a4a4a;
  flex:1;
  margin-bottom:22px;
}

.testimonial-author{
  display:flex;
  align-items:center;
  gap:12px;
}

.testimonial-author img{
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}

.testimonial-author h4{
  font-size:14px;
  font-weight:700;
  color:#2b2b2b;
  margin-bottom:2px;
}

.testimonial-author span{
  font-size:12.5px;
  color:#9a9a9a;
}

/* ---------- CTA ---------- */
.cta-section{
  position:relative;
  overflow:hidden;
  padding:clamp(80px,12vw,150px) 0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:560px;
}

.cta-bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.cta-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.cta-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(90,30,25,.55) 0%, rgba(70,25,25,.65) 60%, rgba(50,18,20,.7) 100%);
  z-index:1;
}

.cta-inner{
  position:relative;
  z-index:2;
}

.cta-heading{
  font-family: var(--font-display);
  font-weight:400;
  font-size:clamp(30px, 5vw, 56px);
  line-height:1.25;
  color:var(--white);
}

.cta-heading .accent-gold{
  color:#F0A93A;
}

.cta-sub{
  font-family: var(--font-display);
  font-style:italic;
  font-size:clamp(16px, 1.6vw, 22px);
  color:rgba(255,255,255,.9);
  margin-top:14px;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-top:32px;
  flex-wrap:wrap;
}

.btn-outline{
  background:transparent;
  color:var(--white);
  border:1.5px solid rgba(255,255,255,.8);
  padding:clamp(10px,1.2vw,14px) clamp(22px,2.4vw,32px);
}

.btn-outline:hover{
  background:rgba(255,255,255,.12);
}

/* ---------- FOOTER ---------- */
.site-footer{
  background:#181818;
  padding:clamp(50px,6vw,70px) 0 0;
}

.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:clamp(30px,4vw,50px);
  padding-bottom:clamp(40px,5vw,56px);
}

.footer-logo img{
  width:110px;
  height:auto;
}

.footer-desc{
  margin-top:16px;
  font-size:13.5px;
  line-height:1.7;
  color:rgba(255,255,255,.6);
  max-width:280px;
}

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

.footer-social a{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1.3px solid rgba(255,255,255,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.8);
  transition:background .2s ease, border-color .2s ease, color .2s ease;
}

.footer-social svg{ width:16px; height:16px; }

.footer-social a:hover{
  background:var(--orange);
  border-color:var(--orange);
  color:var(--white);
}

.footer-heading{
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:20px;
}

.footer-links, .footer-contact{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:13px;
}

.footer-links a{
  font-size:14px;
  color:rgba(255,255,255,.75);
  transition:opacity .2s ease, color .2s ease;
}

.footer-links a:hover{ color:var(--orange); }

.footer-contact li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13.5px;
  color:rgba(255,255,255,.75);
  line-height:1.5;
}

.footer-contact svg{
  width:17px;
  height:17px;
  flex-shrink:0;
  margin-top:1px;
  color:var(--orange);
}

.whatsapp-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#25D366;
  color:var(--white);
  font-weight:700;
  font-size:13.5px;
  padding:10px 10px 10px 20px;
  border-radius:30px;
  margin-top:22px;
  transition:transform .2s ease, background .2s ease;
}

.whatsapp-btn:hover{
  transform:translateY(-2px);
  background:#1fbd5a;
}

.whatsapp-icon{
  width:26px;
  height:26px;
  border-radius:50%;
  background:rgba(255,255,255,.2);
  display:flex;
  align-items:center;
  justify-content:center;
}

.whatsapp-icon svg{ width:15px; height:15px; }

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:22px 0;
  text-align:center;
}

.footer-bottom p{
  font-size:12px;
  color:rgba(255,255,255,.4);
  letter-spacing:.5px;
}

/* active nav state for the current page */
.nav-links a.active{ color:var(--orange); }

/* ---------- PAGE HERO (services.html) ---------- */
.page-hero{
  position:relative;
  min-height:360px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  text-align:center;
  background:linear-gradient(180deg, #f6ece0 0%, #f8ecd9 55%, #fbe4c9 100%);
}

.page-hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  opacity:.5;
}

.page-hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 30%;
}

.page-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:radial-gradient(ellipse at 50% 35%, rgba(255,255,255,.9) 0%, rgba(255,248,238,.78) 40%, rgba(251,228,201,.92) 100%);
}

.page-hero-inner{
  position:relative;
  z-index:2;
  padding-top:96px;
}

.page-hero-title{
  font-family: var(--font-display);
  font-weight:400;
  font-size:clamp(32px, 5vw, 54px);
  color:var(--orange);
  text-shadow:0 2px 14px rgba(255,255,255,.5);
}

/* ---------- SERVICES PAGE GRID ---------- */
.services-page-section{
  background:var(--cream);
  padding:clamp(50px,7vw,90px) 0;
}

.services-page-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px;
}

.service-page-card{
  position:relative;
  isolation:isolate;
  background:var(--white);
  border-radius:22px;
  box-shadow:0 14px 30px rgba(60,30,20,.1);
  transition:transform .35s cubic-bezier(.22,1,.36,1);
  will-change:transform;
  display:flex;
  flex-direction:column;
}

.service-page-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:inherit;
  box-shadow:0 20px 40px rgba(60,30,20,.16);
  opacity:0;
  transition:opacity .35s ease;
  pointer-events:none;
}

.service-page-card:hover{
  transform:translateY(-6px);
}

.service-page-card:hover::after{ opacity:1; }

.service-page-img{
  aspect-ratio:1 / 0.82;
  overflow:hidden;
  border-radius:22px 22px 0 0;
}

.service-page-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.service-page-card:hover .service-page-img img{ transform:scale(1.06); }

.service-page-body{
  padding:18px 20px 22px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.service-page-title{
  font-size:clamp(16px, 1.3vw, 18px);
  font-weight:700;
  color:#2b2b2b;
  margin-bottom:8px;
}

.service-page-desc{
  font-size:clamp(12.5px, 1vw, 13.5px);
  line-height:1.55;
  color:#7a7a7a;
  flex:1;
  margin-bottom:16px;
}

.btn-book{
  display:block;
  text-align:center;
  background:var(--orange);
  color:var(--white);
  font-weight:700;
  font-size:14px;
  padding:12px 0;
  border-radius:30px;
  transition:background .2s ease, transform .15s ease;
}

.btn-book:hover{
  background:var(--orange-dark);
  transform:translateY(-2px);
}

/* ---------- LIGHT CTA (SERVICES PAGE) ---------- */
.cta-light-section{
  position:relative;
  overflow:hidden;
  padding:clamp(70px,9vw,110px) 0;
  text-align:center;
  background:linear-gradient(135deg, #fbead1 0%, #f6cf9e 55%, #f3b978 100%);
}

.cta-light-heading{
  font-family: var(--font-display);
  font-weight:400;
  font-size:clamp(28px, 4vw, 46px);
  color:var(--purple);
  line-height:1.25;
}

.cta-light-sub{
  font-size:clamp(14px, 1.1vw, 17px);
  color:#7d6a63;
  margin-top:14px;
}

.cta-light-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-top:32px;
  flex-wrap:wrap;
}

.btn-outline-dark{
  background:var(--white);
  color:var(--purple);
  border:1.5px solid var(--purple);
  padding:clamp(10px,1.2vw,14px) clamp(22px,2.4vw,32px);
}

.btn-outline-dark:hover{
  background:rgba(96,34,82,.06);
}

/* ---------- CONTACT HERO ---------- */
.contact-hero{
  position:relative;
  min-height:360px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  text-align:center;
}

.contact-hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.contact-hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 35%;
}

.contact-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.35) 45%, rgba(255,255,255,.55) 100%);
}

.contact-hero-inner{
  position:relative;
  z-index:2;
  padding-top:90px;
}

.contact-hero-title{
  font-family: var(--font-display);
  font-weight:400;
  font-size:clamp(30px, 5vw, 54px);
  color:var(--orange);
  text-shadow:0 2px 18px rgba(255,255,255,.6);
}

/* ---------- CONTACT SECTION LAYOUT ---------- */
.contact-section{
  background:var(--white);
  padding:clamp(50px,7vw,90px) 0;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:clamp(30px,5vw,60px);
  align-items:start;
}

/* ---------- LEFT: INFO COLUMN ---------- */
.contact-heading{
  font-family: var(--font-display);
  font-weight:400;
  font-size:clamp(28px, 3.6vw, 44px);
  line-height:1.2;
  color:#4a4a4a;
}

.contact-heading .accent-purple{
  display:block;
  color:var(--purple);
  font-weight:700;
  font-family: var(--font-body);
}

.contact-lead{
  margin-top:18px;
  font-size:clamp(14px, 1.1vw, 16px);
  line-height:1.7;
  color:#7a7a7a;
  max-width:460px;
}

.info-list{
  margin-top:34px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.info-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.info-icon{
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(96,34,82,.08);
  color:var(--purple);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:background .2s ease, transform .2s ease;
}

.info-icon svg{ width:17px; height:17px; }

.info-item:hover .info-icon{
  background:var(--orange);
  color:var(--white);
  transform:scale(1.08);
}

.info-label{
  font-size:13px;
  color:#9a9a9a;
  margin-bottom:2px;
}

.info-value{
  font-size:clamp(14px, 1.1vw, 16px);
  font-weight:700;
  color:var(--purple);
}

.contact-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  margin-top:30px;
}

.btn-whatsapp, .btn-call-dark{
  position:relative;
  isolation:isolate;
  display:inline-flex;
  align-items:center;
  gap:9px;
  width:180px;
  font-family: var(--font-display);
  font-weight:800;
  letter-spacing:.2px;
  font-size:14px;
  padding:5px 18px 5px 5px;
  border-radius:30px;
  transition:transform .3s cubic-bezier(.22,1,.36,1), background .2s ease;
  will-change:transform;
}

.btn-whatsapp::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:inherit;
  box-shadow:0 10px 20px rgba(37,211,102,.35);
  opacity:0;
  transition:opacity .3s ease;
  pointer-events:none;
}

.btn-call-dark::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:inherit;
  box-shadow:0 10px 20px rgba(0,0,0,.25);
  opacity:0;
  transition:opacity .3s ease;
  pointer-events:none;
}

.btn-whatsapp .icon-badge, .btn-call-dark .icon-badge{
  width:26px;
  height:26px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  background:rgba(255,255,255,.22);
}

.btn-whatsapp .icon-badge svg, .btn-call-dark .icon-badge svg{
  width:13px;
  height:13px;
}

.btn-whatsapp{
  background:#25D366;
  color:var(--white);
}

.btn-whatsapp:hover{
  background:#1fbd5a;
  transform:translateY(-3px);
}

.btn-whatsapp:hover::after{ opacity:1; }

.btn-call-dark{
  background:#1c1c1c;
  color:var(--white);
}

.btn-call-dark:hover{
  background:#000;
  transform:translateY(-3px);
}

.btn-call-dark:hover::after{ opacity:1; }

.contact-map{
  margin-top:30px;
  border-radius:20px;
  overflow:hidden;
  min-height:220px;
  background:#ececec;
  border:1px solid #e2e2e2;
}

.contact-map iframe{
  width:100%;
  height:100%;
  min-height:220px;
  border:0;
  display:block;
}

/* ---------- RIGHT: FORM CARD ---------- */
.contact-form-card{
  background:#F6F3EF;
  border-radius:24px;
  padding:clamp(26px,3vw,40px);
  box-shadow:0 20px 50px rgba(60,30,20,.08);
}

.form-heading{
  font-size:clamp(19px, 1.6vw, 22px);
  font-weight:700;
  color:#2b2b2b;
  margin-bottom:26px;
}

.form-group{
  margin-bottom:22px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:22px;
}

.form-row .form-group{ margin-bottom:0; }

.form-label{
  display:block;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:#8a8a8a;
  margin-bottom:9px;
}

.form-input{
  width:100%;
  background:var(--white);
  border:1.5px solid #e6e0da;
  border-radius:12px;
  padding:13px 16px;
  font-family:var(--font-body);
  font-size:14px;
  color:#2b2b2b;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.form-input::placeholder{ color:#b3aca6; }

.form-input:focus{
  outline:none;
  border-color:var(--orange);
  box-shadow:0 0 0 4px rgba(231,102,12,.12);
}

.form-input.invalid{
  border-color:#e0483f;
  box-shadow:0 0 0 4px rgba(224,72,63,.1);
}

.input-icon-wrap{
  position:relative;
}

.input-icon-wrap .form-input{
  padding-right:44px;
}

.input-icon-wrap svg{
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  height:18px;
  color:#b3aca6;
  pointer-events:none;
}

textarea.form-input{
  resize:vertical;
  min-height:100px;
  font-family:var(--font-body);
}

.event-type-group{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.event-type-btn{
  font-family:var(--font-body);
  font-weight:600;
  font-size:13.5px;
  color:#4a4a4a;
  background:var(--white);
  border:1.5px solid #e6e0da;
  border-radius:30px;
  padding:10px 20px;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}

.event-type-btn:hover{
  transform:translateY(-2px);
  border-color:var(--orange);
  color:var(--orange);
}

.event-type-btn.active{
  background:var(--orange);
  border-color:var(--orange);
  color:var(--white);
}

.event-type-btn.active:hover{ color:var(--white); }

.form-submit-btn{
  position:relative;
  isolation:isolate;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:var(--orange);
  color:var(--white);
  font-weight:700;
  font-size:15px;
  padding:16px 0;
  border:none;
  border-radius:30px;
  cursor:pointer;
  margin-top:6px;
  transition:background .2s ease, transform .3s cubic-bezier(.22,1,.36,1);
  will-change:transform;
}

.form-submit-btn::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:inherit;
  box-shadow:0 14px 28px rgba(231,102,12,.3);
  opacity:0;
  transition:opacity .3s ease;
  pointer-events:none;
}

.form-submit-btn:hover{
  background:var(--orange-dark);
  transform:translateY(-3px);
}

.form-submit-btn:hover::after{ opacity:1; }

.form-submit-btn svg{
  width:16px; height:16px;
  transition:transform .2s ease;
}

.form-submit-btn:hover svg{ transform:translateX(4px); }

.form-note{
  text-align:center;
  font-size:12.5px;
  color:#9a9a9a;
  margin-top:14px;
}

/* ---------- SUBMIT POPUP / TOAST ---------- */
.toast-container{
  position:fixed;
  top:24px;
  right:24px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:12px;
  pointer-events:none;
}

.toast{
  pointer-events:auto;
  display:flex;
  align-items:flex-start;
  gap:12px;
  min-width:280px;
  max-width:360px;
  background:var(--white);
  border-radius:14px;
  padding:16px 16px 16px 14px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  border-left:4px solid #25D366;
  transform:translateX(120%);
  opacity:0;
  transition:transform .4s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}

.toast.show{
  transform:translateX(0);
  opacity:1;
}

.toast.error{ border-left-color:#e0483f; }

.toast-icon{
  width:32px;
  height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  background:rgba(37,211,102,.14);
  color:#25D366;
}

.toast.error .toast-icon{
  background:rgba(224,72,63,.14);
  color:#e0483f;
}

.toast-icon svg{ width:16px; height:16px; }

.toast-body{ flex:1; min-width:0; }

.toast-body h4{
  font-size:14px;
  font-weight:700;
  color:#2b2b2b;
  margin-bottom:2px;
}

.toast-body p{
  font-size:12.5px;
  line-height:1.4;
  color:#7a7a7a;
}

.toast-close{
  background:none;
  border:none;
  cursor:pointer;
  color:#c2bbb4;
  font-size:15px;
  line-height:1;
  padding:2px;
  flex-shrink:0;
  transition:color .2s ease;
}

.toast-close:hover{ color:#7a7a7a; }

/* ---------- PROCESS TIMELINE SECTION ---------- */
.process-section {
  background: var(--white);
  padding: clamp(60px, 8vw, 110px) 0;
}

.process-heading {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: #2b2b2b;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.process-heading .accent {
  color: var(--purple);
}

.process-grid {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}

/* Connecting Line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 30px; /* Aligns with middle of circles */
  left: 10%;
  right: 10%;
  height: 1.5px;
  background: #e6cbdb; /* Light purple line */
  z-index: 1;
}

.process-item {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-step {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  outline: 8px solid var(--white); /* Clears the line behind it */
}

.process-title {
  font-size: 15px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.process-desc {
  font-size: 13px;
  color: #7a7a7a;
  line-height: 1.5;
  max-width: 200px;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
  background: linear-gradient(135deg, #faebd5 0%, #ffdeb6 55%, #ffeedb 100%);
  padding: clamp(60px, 8vw, 100px) 0;
}

.faq-heading {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: #2b2b2b;
  margin-bottom: clamp(30px, 4vw, 50px);
}

.faq-heading .accent {
  color: var(--purple);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 16px);
  color: #2b2b2b;
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  color: var(--purple);
  font-weight: 700;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  margin-top: 14px;
  font-size: clamp(13px, 1vw, 14.5px);
  color: #6b6b6b;
  line-height: 1.6;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* Turns the + into an x/minus visual */
}

/* ============================================================================
   RESPONSIVE — unified breakpoint system
   ----------------------------------------------------------------------------
   Everything above this line is the shared, size-independent CSS (desktop /
   large-screen default, ~1400px+). Below, each block below owns ONE discrete
   width range — nothing cascades between them automatically the way the old
   overlapping max-width queries did, so each bucket repeats whatever it needs
   from the ranges below it. This trades a bit of repetition for buckets that
   can be edited in isolation without hunting through the whole file.

   Mapping notes (what used to live where, now merged into each range):
   - old "max-width:1024px"  -> now lives in Tablet Landscape + Tablet Portrait
   - old "max-width:768px"   -> now lives in Small Tablet and everything smaller
   - old "max-width:600px" (services/contact) -> Large Mobile and smaller
   - old "max-width:480px"   -> Large Mobile and smaller
   - old "max-width:375px"   -> Small Phones (the tightest bucket)
   - the buggy universal "(max-width:1200px), (min-width:1023px)" selector
     (which matched almost every viewport) has been resolved into explicit,
     non-overlapping rules in Small Laptop / Tablet Landscape instead.
   - 1400px and up had no rules before; Laptop/Large Desktop/2K/4K now get a
     capped, breathing-room container so the design doesn't stretch forever.
============================================================================ */

/* =========================================
   Extra Small Devices (Phones)
========================================= */

/* Small Phones */
@media (max-width: 359px) {
  .container{ padding:0 16px; }

  .nav-cta .btn-primary{ padding:9px 16px; font-size:12.5px; }

  .hero{ min-height:780px; }
  .hero-badges{ position:static; align-items:flex-start; margin-top:24px; width:100%; }
  .hero-inner{ padding-bottom:50px; }
  .hero-content{ max-width:100%; }
  .hero-heading{ font-size:clamp(22px, 8vw, 30px); }
  .badge{ white-space:normal; }

  .stats-inner{ flex-direction:column; gap:24px; }
  .stats-photos{ margin-top:0; transform:scale(.6); transform-origin:bottom left; }
  .stats-list{ width:100%; flex-direction:column; gap:20px; }
  .stat{ text-align:left; }

  .about-inner{ grid-template-columns:1fr; }
  .about-media{ max-width:300px; margin:0 auto; }
  .about-content{ text-align:center; }
  .about-text{ margin-left:auto; margin-right:auto; }

  .services-grid{ grid-template-columns:1fr; }
  .service-card{ padding:10px 10px 16px; }

  .portfolio-grid{ flex-wrap:wrap; }
  .portfolio-col{ flex:1 1 calc(50% - 8px); min-width:130px; }
  .gallery-btn{ align-self:stretch; text-align:center; justify-content:center; }

  .why-grid{ grid-template-columns:1fr; }
  .why-icon{ flex-basis:52px; }

  .testimonials-grid{ grid-template-columns:1fr; }
  .testimonial-card{ padding:10px 10px 16px; }

  .cta-heading br{ display:none; }
  .cta-heading{ font-size:clamp(20px, 7vw, 28px); }
  .cta-sub{ font-size:14px; }
  .cta-buttons{ flex-direction:column; align-items:center; width:100%; }
  .cta-buttons .btn{ width:100%; max-width:260px; }

  .footer-top{ grid-template-columns:1fr; text-align:left; }
  .footer-brand{ grid-column:auto; }
  .footer-desc{ max-width:none; }
  .footer-social{ justify-content:flex-start; }

  /* services / contact / process pages */
  .services-page-grid{ grid-template-columns:1fr; }
  .page-hero{ min-height:260px; }
  .page-hero-inner{ padding-top:74px; }

  .contact-grid{ grid-template-columns:1fr; }
  .contact-lead{ max-width:100%; }
  .contact-hero{ min-height:320px; }
  .contact-hero-inner{ padding-top:72px; }
  .form-row{ grid-template-columns:1fr; gap:20px; }
  .contact-actions{ max-width:100%; }
  .contact-form-card{ padding:18px; }

  .process-grid{ flex-direction:column; gap:36px; }
  .process-grid::before{ top:0; bottom:0; left:26px; right:auto; width:1.5px; height:auto; }
  .process-item{ flex-direction:row; text-align:left; gap:18px; }
  .process-step{ width:52px; height:52px; margin-bottom:0; flex-shrink:0; outline:5px solid var(--white); }
  .process-desc{ max-width:100%; }
}

/* Mobile */
@media (min-width: 360px) and (max-width: 479px) {
  .container{ padding:0 20px; }

  .nav-cta .btn-primary{ padding:10px 18px; font-size:13px; }

  .hero{ min-height:95vh; }
  .hero-badges{ position:static; align-items:center; 
    margin-top:28px; width:100%; 
  
  margin-bottom: 28px;}
  .hero-inner{ padding-bottom:60px; }
  .hero-content{ max-width:100%; 
          text-align: center;

  }
  .badge{ white-space:normal; }

  .stats-inner{ flex-direction:column; gap:30px; }
  .stats-photos{ margin-top:0; 
    transform:scale(.7);
     transform-origin:bottom centers;
     height: 40px;
    flex-shrink: 0;
    }

    .stats-photos .c1{
  left:0; bottom:-20px;
  width:110px; height:225px;
  z-index:1;
}
.stats-photos .c2{
  left:70px; bottom:-20px;
  width:110px; height:225px;
  z-index:2;
}
.stats-photos .c3{
  left:140px; bottom:-20px;
 width:110px; height:225px;
  z-index:3;
}

  .stats-list{ width:100%; flex-direction:row; gap:22px; }
  .stat{ text-align:left; }

  .about-inner{ grid-template-columns:1fr; }
  .about-media{ max-width:320px; margin:0 auto; }
  .about-content{ text-align:center; }
  .about-text{ margin-left:auto; margin-right:auto; 
  text-align: justify;
  }

  .services-grid{ grid-template-columns:1fr 1fr; }
  
.service-desc{
  font-size:clamp(13px, 1vw, 14px);
  line-height:1.2;
  color:#7a7a7a;
}
.service-img{
  border-radius:20px 20px 0px 0px ;
  overflow:hidden;
  aspect-ratio: 1.5 / 1;
  margin-bottom:2px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(60, 30, 20, .14);
    transition: transform .35s cubic-bezier(.22,1,.36,1);
}
  .portfolio-grid{ flex-wrap:wrap; }
  .portfolio-col{ flex:1 1 calc(50% - 8px); min-width:150px; }
  .gallery-btn{ align-self:stretch; text-align:center; justify-content:center; 
  font-size: 12px;
  }

  .why-grid{ grid-template-columns:1fr; }

  .testimonials-grid{ grid-template-columns:1fr; }

  .cta-heading br{ display:none; }
  .cta-heading{ font-size:clamp(26px, 6vw, 38px); }
  .cta-buttons{ flex-direction:column; align-items:center; width:100%; }
  .cta-buttons .btn{ width:100%; max-width:280px; }

  .footer-top{ grid-template-columns:1fr 1fr ; 
    text-align:left; 
    padding-bottom: 30px;
  }
  .footer-brand{ grid-column:auto; }
  .footer-desc{ max-width:none; }
  .footer-social{ justify-content:flex-start; }

  .services-page-grid{ grid-template-columns:1fr; }
  .page-hero{ min-height:280px; }
  .page-hero-inner{ padding-top:80px; }

  .contact-grid{ grid-template-columns:1fr; }
  .contact-lead{ max-width:100%; }
  .contact-hero{ min-height:340px; }
  .contact-hero-inner{ padding-top:78px; }
  .form-row{ grid-template-columns:1fr; gap:22px; }
  .contact-actions{ max-width:100%; }
  .contact-form-card{ padding:22px; }

  .process-grid{ flex-direction:column; gap:40px; }
  .process-grid::before{ top:0; bottom:0; left:30px; right:auto; width:1.5px; height:auto; }
  .process-item{ flex-direction:row; text-align:left; gap:20px; }
  .process-step{ margin-bottom:0; flex-shrink:0; outline:6px solid var(--white); }
  .process-desc{ max-width:100%; }
}

/* Large Mobile */
@media (min-width: 480px) and (max-width: 575px) {
  .container{ padding:0 24px; }

  .nav-cta .btn-primary{ padding:10px 18px; font-size:13px; }

  .hero{ min-height:820px; }
  .hero-badges{ position:static; align-items:flex-start; margin-top:28px; width:100%; }
  .hero-inner{ padding-bottom:60px; }
  .hero-content{ max-width:100%; }
  .badge{ white-space:normal; }

  .stats-inner{ flex-direction:column; gap:30px; }
  .stats-photos{ margin-top:0; transform:scale(.78); transform-origin:bottom left; }
  .stats-list{ width:100%; flex-direction:column; gap:22px; }
  .stat{ text-align:left; }

  .about-inner{ grid-template-columns:1fr; }
  .about-media{ max-width:340px; margin:0 auto; }
  .about-content{ text-align:center; }
  .about-text{ margin-left:auto; margin-right:auto; }

  .services-grid{ grid-template-columns:1fr; }

  .portfolio-grid{ flex-wrap:wrap; }
  .portfolio-col{ flex:1 1 calc(50% - 8px); min-width:170px; }
  .gallery-btn{ align-self:stretch; text-align:center; justify-content:center; }

  .why-grid{ grid-template-columns:1fr; }

  .testimonials-grid{ grid-template-columns:1fr; }

  .cta-heading br{ display:none; }
  .cta-heading{ font-size:clamp(26px, 6vw, 40px); }
  .cta-buttons{ flex-direction:column; align-items:center; width:100%; }
  .cta-buttons .btn{ width:100%; max-width:280px; }

  .footer-top{ grid-template-columns:1fr; text-align:left; }
  .footer-brand{ grid-column:auto; }
  .footer-desc{ max-width:none; }
  .footer-social{ justify-content:flex-start; }

  .services-page-grid{ grid-template-columns:1fr; }
  .page-hero{ min-height:280px; }
  .page-hero-inner{ padding-top:80px; }

  .contact-grid{ grid-template-columns:1fr; }
  .contact-lead{ max-width:100%; }
  .contact-hero{ min-height:340px; }
  .contact-hero-inner{ padding-top:78px; }
  .form-row{ grid-template-columns:1fr; gap:22px; }
  .contact-actions{ max-width:100%; }
  .contact-form-card{ padding:22px; }

  .process-grid{ flex-direction:column; gap:40px; }
  .process-grid::before{ top:0; bottom:0; left:30px; right:auto; width:1.5px; height:auto; }
  .process-item{ flex-direction:row; text-align:left; gap:20px; }
  .process-step{ margin-bottom:0; flex-shrink:0; outline:6px solid var(--white); }
  .process-desc{ max-width:100%; }
}

/* =========================================
   Tablets
========================================= */

/* Small Tablet */
@media (min-width: 576px) and (max-width: 767px) {
  .container{ padding:0 24px; }

  .nav-cta .btn-primary{ padding:10px 18px; font-size:13px; }

  .hero{ min-height:840px; }
  .hero-badges{ position:static; align-items:flex-start; margin-top:28px; }
  .hero-inner{ padding-bottom:60px; }
  .hero-content{ max-width:600px; }

  .stats-inner{ flex-direction:column; gap:30px; }
  .stats-photos{ margin-top:0; }
  .stats-list{ width:100%; flex-direction:column; gap:22px; }
  .stat{ text-align:left; }

  .about-inner{ grid-template-columns:1fr; }
  .about-media{ max-width:340px; margin:0 auto; }
  .about-content{ text-align:center; }
  .about-text{ margin-left:auto; margin-right:auto; }

  .services-grid{ grid-template-columns:1fr; }

  .portfolio-grid{ flex-wrap:wrap; }
  .portfolio-col{ flex:1 1 calc(50% - 8px); min-width:200px; }
  .gallery-btn{ align-self:stretch; text-align:center; justify-content:center; }

  .why-grid{ grid-template-columns:1fr; }

  .testimonials-grid{ grid-template-columns:1fr; }

  .cta-heading br{ display:none; }
  .cta-heading{ font-size:clamp(26px, 6vw, 40px); }

  .footer-top{ grid-template-columns:1fr; text-align:left; }
  .footer-brand{ grid-column:auto; }
  .footer-desc{ max-width:none; }

  .services-page-grid{ grid-template-columns:repeat(2, 1fr); }

  .contact-grid{ grid-template-columns:1fr; }
  .contact-lead{ max-width:100%; }

  .process-grid{ flex-direction:column; gap:40px; }
  .process-grid::before{ top:0; bottom:0; left:30px; right:auto; width:1.5px; height:auto; }
  .process-item{ flex-direction:row; text-align:left; gap:20px; }
  .process-step{ margin-bottom:0; flex-shrink:0; outline:6px solid var(--white); }
  .process-desc{ max-width:100%; }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 991px) {
  .hero{ min-height:900px; }
  
  .hero-inner{ padding-bottom:60px; }
  .hero-content{ max-width:600px; }

  .stats-inner{ flex-direction:row; gap:30px; }
  .stats-photos{ margin-top:0; }
  .stats-list{ width:100%; flex-direction:row; gap:22px; }
  .stat{ text-align:left; }
.stats-photos {
    position: relative;
    width: 270px;
    height: 70px;
    flex-shrink: 0;
  }

  .about-inner{ grid-template-columns:1fr 1fr; }
  .about-media{ max-width:340px; margin:0 auto; }
  .about-content{ text-align:left; }
  .about-text{ margin-left:auto; margin-right:auto; }
.about-text {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.5;
    color: #6b6b6b;
    max-width: 640px;
    margin-bottom: 5px;
}
.about-heading {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.25;
    color: #2b2b2b;
    margin: 8px 0 8px;
}
  .services-grid{ grid-template-columns:1fr 1fr; }

  .portfolio-grid{ flex-wrap:wrap; }
  .portfolio-col{ flex:1 1 calc(50% - 8px); min-width:150px; }
  .gallery-btn{ align-self:stretch; text-align:center; justify-content:center; }

  .why-grid{ grid-template-columns:1fr 1fr; }

  .testimonials-grid{ grid-template-columns:1fr; }
.cta-section {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 12vw, 150px) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 360px;
}
  .cta-heading br{ display:none; }
  .cta-heading{ font-size:clamp(26px, 6vw, 40px); }

  .footer-top{ grid-template-columns:1fr 1fr 1fr; row-gap:40px; }
  .footer-brand{ grid-column:1 / -1; }

  .services-page-grid{ grid-template-columns:repeat(2, 1fr); }

  .contact-grid{ grid-template-columns:1fr; }
  .contact-lead{ max-width:100%; }

  .process-grid{ flex-direction:column; gap:40px; }
  .process-grid::before{ top:0; bottom:0; left:30px; right:auto; width:1.5px; height:auto; }
  .process-item{ flex-direction:row; text-align:left; gap:20px; }
  .process-step{ margin-bottom:0; flex-shrink:0; outline:6px solid var(--white); }
  .process-desc{ max-width:100%; }
}

/* Tablet Landscape */
@media (min-width: 992px) and (max-width: 1199px) {

  .stats-bar{
  position:relative;
  background:linear-gradient(90deg, var(--stats-start) 0%, var(--stats-end) 100%);
  padding:0;
  z-index:10;
  overflow:visible;
  height: 180px;
}

.stats-inner{
  display:flex;
  align-items:center;
  gap:60px;
}

.stats-photos .c1{
  left:0; bottom:-30px;
  width:110px; height:225px;
  z-index:1;
}
.stats-photos .c2{
  left:70px; bottom:-30px;
  width:110px; height:225px;
  z-index:2;
}
.stats-photos .c3{
  left:140px; bottom:-30px;
 width:110px; height:225px;
  z-index:3;
}
.about-content .btn-arrow {
    margin-top: 8px;
}

.about-heading{
  font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1;
    color: #2b2b2b;
    margin: 8px 0 10px;
}
  .hero{ min-height:85vh; }

.hero-badges {
    position: absolute;
    right: 48px;
    bottom: 100px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}
  .hero-inner{ padding-bottom:60px; }
  .hero-content{ max-width:600px; }

     .hero-heading{
       font-size:3rem;
  line-height:1.15;
   }

  .stats-inner{ flex-direction:row; gap:30px; }
  .stats-photos{ margin-top:-80px; }
  .stats-list{ width:100%; }

  .about-inner{ grid-template-columns:1fr 1fr; }
  .about-media{ max-width:340px; margin:0 auto; }
  .about-content{ text-align:left; }
  .about-text{ margin-left:auto; margin-right:auto; }

  .services-grid{ grid-template-columns:repeat(4, 1fr); }

  .portfolio-grid{ flex-wrap:wrap; }
  .portfolio-col{ flex:1 1 1 1 calc(50% - 8px); min-width:220px; }

  .why-grid{ grid-template-columns:repeat(2, 1fr); }

  .testimonials-grid{ grid-template-columns:1fr 1fr 1fr; }

  .footer-top{ grid-template-columns:1fr 1fr 1fr 1fr; row-gap:40px; }
  .footer-brand{ grid-column:1;}

  .services-page-grid{ grid-template-columns:repeat(2, 1fr); }

  .contact-grid{ grid-template-columns:1fr; }
  .contact-lead{ max-width:100%; }
}

/* =========================================
   Laptops
========================================= */

/* Small Laptop */
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero{ min-height:82vh; }
  .hero-inner{ padding-bottom:100px; }

   .hero-heading{
       font-size:6vh;
  line-height:1.15;
   }
}

/* Laptop */
@media (min-width: 1400px) and (max-width: 1599px) {
  /* Base desktop layout already applies; nothing to override. */
   .hero{ min-height:82vh; }
  .hero-inner{ padding-bottom:100px; }
     .hero-heading{
       font-size:5.5vh;
  line-height:1.15;
   }
}

/* Large Desktop */
@media (min-width: 1600px) and (max-width: 1919px) {
    .hero{ min-height:87vh; }
  .container{ max-width:1500px; }
  .hero-inner{ padding-bottom:100px; }
      .hero-heading{
       font-size:5.5vh;
  line-height:1.15;
   }
}

/* 2K Displays */
@media (min-width: 1920px) and (max-width: 2559px) {
  .container{ max-width:1450px; }
  .hero{ min-height:85vh; }
     .hero-heading{
       font-size:6vh;
  line-height:1.15;
   }

}

/* 4K Displays */
@media (min-width: 2560px) {
   .hero-heading{
       font-size:6vh;
  line-height:1.15;
   }
  .container{ max-width:1600px; }
  .hero{ min-height:85vh; }
}

/* --- Video Trigger Overlay --- */
.about-media {
  position: relative;
  cursor: pointer;
  overflow: hidden; /* Ensures the overlay stays within your rounded corners */
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(96, 34, 82, 0.4); /* var(--purple) with transparency */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-media:hover .play-overlay {
  opacity: 1;
}

.play-overlay svg {
  width: 60px;
  height: 60px;
  color: var(--white);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-media:hover .play-overlay svg {
  transform: scale(1.15);
}

/* --- Fullscreen Video Modal --- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-wrapper {
  position: relative;
  /* Constrain by height instead of width so it fits the screen vertically */
  height: 90vh; 
  max-width: 90vw; /* Prevents it from spilling off the edge on narrow phones */
  aspect-ratio: 9 / 16; /* Vertical video aspect ratio */
  
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.video-modal.active .video-wrapper {
  transform: scale(1);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Video Controls --- */
.video-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
}

.vid-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 28px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.vid-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}