:root{
  --bg:#070707;
  --bg-soft:#101010;
  --card:#141414;
  --text:#f5f1e8;
  --muted:#cfc6b5;
  --gold:#c9a35f;
  --gold-strong:#e0bc7a;
  --gold-soft:#f0d28a;
  --line:rgba(255,255,255,0.08);
  --shadow:0 20px 60px rgba(0,0,0,0.35);
  --radius:22px;
  --container:1200px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Assistant', sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

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

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

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.section{
  padding:70px 0;
  position:relative;
  background:transparent;
}

.center{
  text-align:center;
}

/* Header */

.site-header{
  position:fixed;
  top:18px;
  left:50%;
  transform:translateX(-50%);
  z-index:1000;
  width:min(1180px, calc(100% - 28px));
  transition:all .3s ease;
  background:rgba(10,10,10,.48);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.06);
  border-radius:28px;
  box-shadow:0 12px 40px rgba(0,0,0,.22);
}

.site-header.scrolled{
  background:rgba(8,8,8,.72);
  border-color:rgba(255,255,255,.08);
  box-shadow:0 16px 45px rgba(0,0,0,.32);
}

.nav-wrap{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-direction:row-reverse;
  padding:0 18px;
}

.brand{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.logo-glow-wrap{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px;
  border-radius:18px;
  background:transparent;
}

.logo-glow-wrap::before{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:22px;
  background:radial-gradient(circle, rgba(224,188,122,.18) 0%, rgba(224,188,122,.06) 40%, rgba(224,188,122,0) 74%);
  opacity:.85;
  pointer-events:none;
  transition:opacity .3s ease, transform .3s ease;
}

.site-logo{
  height:74px;
  width:auto;
  object-fit:contain;
  display:block;
  background:transparent;
  filter:
    drop-shadow(0 0 8px rgba(201,163,95,.22))
    drop-shadow(0 0 22px rgba(201,163,95,.12))
    drop-shadow(0 10px 24px rgba(0,0,0,.35));
  transition:transform .35s ease, filter .35s ease;
}

.site-header.scrolled .site-logo{
  transform:scale(1.03);
  filter:
    drop-shadow(0 0 10px rgba(224,188,122,.34))
    drop-shadow(0 0 26px rgba(224,188,122,.18))
    drop-shadow(0 12px 28px rgba(0,0,0,.4));
}

.site-logo:hover{
  transform:translateY(-1px) scale(1.04);
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  margin-right:auto;
  margin-left:auto;
}

.nav a{
  color:#eadfca;
  font-size:15px;
  font-weight:600;
  padding:10px 18px;
  border-radius:18px;
  transition:all .25s ease;
  position:relative;
}

.nav a:hover{
  color:#111;
  background:linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow:0 8px 22px rgba(201,163,95,.28);
}

.menu-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  font-size:22px;
  cursor:pointer;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  gap:10px;
  padding:0 18px 18px;
  background:rgba(10,10,10,.96);
  border-bottom-left-radius:28px;
  border-bottom-right-radius:28px;
}

.mobile-menu.open{
  display:flex;
}

.mobile-menu a{
  color:#f3e7d2;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
}

.desktop-only{
  display:inline-flex;
}

/* Buttons */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  transition:all .25s ease;
  cursor:pointer;
  border:1px solid transparent;
  position:relative;
  z-index:5;
}

.btn-gold{
  background:linear-gradient(135deg, var(--gold-soft), var(--gold));
  color:#111;
  box-shadow:
    0 12px 28px rgba(201,163,95,.22),
    0 0 16px rgba(224,188,122,.06);
}

.btn-gold:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(201,163,95,.3);
}

.btn-outline{
  border-color:rgba(255,255,255,.26);
  color:#fff;
  background:rgba(255,255,255,.04);
}

.btn-outline:hover{
  border-color:var(--gold);
  color:var(--gold-strong);
  background:rgba(255,255,255,.06);
}

.mobile-whatsapp-float{
  position:fixed;
  left:18px;
  bottom:18px;
  z-index:1200;
  display:none;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--gold-soft), var(--gold));
  color:#111;
  font-weight:800;
  box-shadow:
    0 16px 34px rgba(201,163,95,.28),
    0 0 20px rgba(224,188,122,.12);
  border:1px solid rgba(255,255,255,.18);
  transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.mobile-whatsapp-float:hover{
  transform:translateY(-2px);
  box-shadow:
    0 20px 40px rgba(201,163,95,.34),
    0 0 26px rgba(224,188,122,.16);
}

.mobile-whatsapp-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(17,17,17,.1);
  font-size:15px;
  line-height:1;
}

/* Hero */

.hero{
  position:relative;
  min-height:65vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-top:90px;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 18%;
  filter:brightness(0.9);
  animation:heroZoom 13s ease-in-out infinite alternate;
}

@keyframes heroZoom{
  from{transform:scale(1);}
  to{transform:scale(1.02);}
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.42), rgba(0,0,0,.76)),
    linear-gradient(to left, rgba(0,0,0,.28), rgba(0,0,0,.12));
}

.hero-decor{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  overflow:hidden;
}

.smoke{
  position:absolute;
  border-radius:50%;
  filter:blur(24px);
  opacity:.12;
  background:
    radial-gradient(circle, rgba(255,255,255,.72) 0%, rgba(255,255,255,.16) 42%, rgba(255,255,255,0) 74%);
  animation:smokeFloat 14s ease-in-out infinite;
  will-change:transform, opacity;
}

.smoke-1{
  width:220px;
  height:220px;
  left:8%;
  bottom:10%;
  animation-delay:0s;
}

.smoke-2{
  width:280px;
  height:280px;
  right:8%;
  bottom:18%;
  animation-delay:3s;
}

.smoke-3{
  width:180px;
  height:180px;
  left:46%;
  bottom:12%;
  animation-delay:6s;
}

@keyframes smokeFloat{
  0%{
    transform:translate3d(0, 0, 0) scale(.92);
    opacity:.04;
  }
  35%{
    opacity:.12;
  }
  60%{
    transform:translate3d(18px, -50px, 0) scale(1.05);
    opacity:.16;
  }
  100%{
    transform:translate3d(-10px, -110px, 0) scale(1.18);
    opacity:0;
  }
}

.hero-content{
  position:relative;
  z-index:5;
  text-align:center;
  max-width:1040px;
  padding-top:110px;
  padding-bottom:50px;
}

.hero-logo-wrap{
  position:relative;
  width:max-content;
  margin:auto;
  margin-bottom:8px;
}

.hero-logo{
  height:260px;
  display:block;
  margin:auto;
  position:relative;
  z-index:3;
  filter:
    drop-shadow(0 0 14px rgba(224,188,122,.45))
    drop-shadow(0 0 40px rgba(224,188,122,.25))
    drop-shadow(0 16px 40px rgba(0,0,0,.55));
  animation:logoFloat 5s ease-in-out infinite;
}

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

.eyebrow{
  display:inline-block;
  margin-bottom:18px;
  color:#dcb56e;
  letter-spacing:6px;
  font-size:18px;
  font-weight:700;
  text-transform:uppercase;
  text-shadow:
    0 0 10px rgba(224,188,122,.18),
    0 0 22px rgba(224,188,122,.08);
}

.hero-title{
  margin:0 0 18px;
  font-family:'Cinzel', serif;
  font-size:clamp(48px, 8.5vw, 96px);
  line-height:1.02;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#f7f1e8;
  text-shadow:
    0 2px 0 rgba(255,255,255,.05),
    0 10px 28px rgba(0,0,0,.48);
}

.hero-subtitle{
  margin:0;
  font-size:16px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#d8b06a;
  text-shadow:0 0 12px rgba(216,176,106,.16);
}

.hero-text{
  max-width:820px;
  margin:18px auto 30px;
  font-size:22px;
  color:#f0e6d6;
  text-shadow:0 4px 18px rgba(0,0,0,.35);
}

.hero-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  position:relative;
  z-index:5;
}

.hero-bottom-fade{
  position:absolute;
  right:0;
  left:0;
  bottom:0;
  height:140px;
  background:linear-gradient(to bottom, rgba(7,7,7,0), var(--bg));
  z-index:2;
}

/* Stats */

.stats-bar{
  padding:20px 0 12px;
  background:linear-gradient(to bottom, #0d0d0d, #070707);
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}

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

.stats-grid div{
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.05);
  border-radius:18px;
  padding:18px 16px;
  text-align:center;
}

.stats-grid strong{
  display:block;
  color:var(--gold-strong);
  font-size:20px;
  margin-bottom:6px;
}

.stats-grid span{
  color:var(--muted);
  font-size:14px;
}

/* Generic layout */

.split{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:12px;
  align-items:center;
}

.split.reverse{
  grid-template-columns:1fr;
}

.image-card{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  box-shadow:none;
  background:transparent;
}

.image-card img{
  width:100%;
  height:auto;
  object-fit:cover;
}

.text-col h2,
.section-head h2{
  margin:0 0 16px;
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size:clamp(34px, 5vw, 56px);
  line-height:1.1;
  color:#f7f2e9;
}

.text-col p,
.section-head p{
  color:var(--muted);
  font-size:18px;
}

.section-tag{
  display:inline-block;
  margin-bottom:10px;
  color:var(--gold-strong);
  font-size:14px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.pill{
  border:1px solid rgba(201,163,95,.35);
  color:#f5ead7;
  background:rgba(201,163,95,.08);
  padding:10px 14px;
  border-radius:999px;
  font-size:14px;
}

/* Cards */

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

.service-card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.06);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card:hover{
  transform:translateY(-8px);
  border-color:rgba(201,163,95,.35);
  box-shadow:0 28px 70px rgba(0,0,0,.42);
}

.service-card img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.card-body{
  padding:24px;
}

.card-body h3{
  margin:0 0 12px;
  font-family:'Cormorant Garamond', serif;
  font-size:34px;
  line-height:1.1;
  color:#fff6ea;
}

.card-body p{
  margin:0 0 16px;
  color:var(--muted);
}

.card-body ul{
  margin:0;
  padding-right:18px;
  color:#efe2cb;
}

.card-body li{
  margin-bottom:8px;
}

/* Why us */

.why-us{
  background:linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,.02));
}

.feature-list{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:28px;
}

.feature-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  border-radius:20px;
}

.feature-item span{
  flex-shrink:0;
  width:52px;
  height:52px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(201,163,95,.1);
  color:var(--gold-strong);
  border:1px solid rgba(201,163,95,.25);
  font-weight:800;
}

.feature-item h4{
  margin:0 0 6px;
  font-size:20px;
  color:#fff;
}

.feature-item p{
  margin:0;
  color:var(--muted);
}

/* Remove old stacked image leftovers safely */

.image-stack,
.floating-img{
  display:none !important;
}

.main-img{
  width:100%;
  height:100%;
  min-height:640px;
  object-fit:cover;
  border-radius:26px;
  box-shadow:var(--shadow);
  position:relative;
  z-index:1;
}

/* Gallery */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:250px;
  gap:18px;
  margin-top:36px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  background:#101010;
  border:1px solid rgba(255,255,255,.05);
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease, opacity .45s ease;
}

.gallery-item:hover img{
  transform:scale(1.06);
  opacity:.92;
}

.gallery-item.tall{
  grid-row:span 2;
}

.gallery-item.wide{
  grid-column:span 2;
}

.gallery-item-espresso img{
  object-position:center 42%;
}

/* Contact */

.contact-box{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
  padding:38px;
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  box-shadow:var(--shadow);
}

.contact-copy h2{
  margin:0 0 14px;
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(32px, 4vw, 54px);
  line-height:1.1;
}

.contact-copy p{
  color:var(--muted);
  font-size:18px;
}

.contact-points{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:22px;
}

.contact-points a{
  color:#fff3df;
}

.contact-form{
  display:grid;
  gap:14px;
}

.contact-form label{
  display:grid;
  gap:8px;
  color:#f3e8d6;
  font-weight:600;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  background:#111;
  border:1px solid rgba(255,255,255,.09);
  color:#fff;
  border-radius:16px;
  padding:14px 16px;
  font:inherit;
  outline:none;
  transition:border-color .25s ease, box-shadow .25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:rgba(201,163,95,.55);
  box-shadow:0 0 0 4px rgba(201,163,95,.08);
}

.contact-form textarea{
  min-height:140px;
  resize:vertical;
}

/* Footer */

.site-footer{
  padding:34px 0;
  border-top:1px solid rgba(255,255,255,.06);
  background:#0a0a0a;
}

.footer-wrap{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:20px;
  align-items:start;
}

.footer-logo{
  height:88px;
  width:auto;
  margin-bottom:12px;
  background:transparent;
  filter:
    drop-shadow(0 0 8px rgba(201,163,95,.16))
    drop-shadow(0 10px 20px rgba(0,0,0,.25));
}

.footer-wrap p{
  color:var(--muted);
  margin:0;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-links a{
  color:#f0e7d9;
}

/* Reveal */

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* ABOUT SECTION */

.about-section{
  position:relative;
  padding:60px 0;
  margin-top:0;
  background:linear-gradient(to bottom,#070707,#0b0b0b);
}

.about-grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:60px;
  align-items:center;
}

.about-text{
  max-width:560px;
}

.about-tag{
  color:#c9a35f;
  letter-spacing:4px;
  font-size:14px;
  margin-bottom:12px;
  display:block;
}

.about-title{
  font-family:'Cormorant Garamond', serif;
  font-size:56px;
  line-height:1.1;
  margin-bottom:20px;
}

.about-text p{
  font-size:18px;
  color:#cfc6b5;
  line-height:1.8;
  margin-bottom:16px;
}

.about-buttons{
  margin-top:30px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.about-buttons .btn{
  border:1px solid rgba(201,163,95,0.4);
  background:rgba(201,163,95,0.08);
  color:#f3e8d4;
  padding:12px 18px;
  border-radius:999px;
  transition:all .25s ease;
}

.about-buttons .btn:hover{
  background:linear-gradient(135deg, #f0d28a, #c9a35f);
  color:#111;
}

.about-image{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(0,0,0,0.45);
}

.about-image img{
  width:100%;
  height:100%;
  min-height:640px;
  object-fit:cover;
}

.about-image::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:200px;
  background:linear-gradient(
    to bottom,
    rgba(7,7,7,1) 0%,
    rgba(7,7,7,0.85) 40%,
    rgba(7,7,7,0.2) 80%,
    rgba(7,7,7,0) 100%
  );
  z-index:2;
}

/* Mid image section - full width like main hero */

/* MID HERO IMAGE */

.mid-hero{
  position:relative;
  width:100%;
  min-height:85vh;
  margin:0;
  overflow:hidden;
  background:#070707;
}

.mid-hero-media{
  position:absolute;
  inset:0;
}

.mid-hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
 object-position:center 40%;
  filter:brightness(0.72);
  animation:midHeroZoom 13s ease-in-out infinite alternate;
}

@keyframes midHeroZoom{
  from{transform:scale(0.8);}
  to{transform:scale(0.84);}
}


.mid-hero-content{
  position:relative;
  z-index:2;
  min-height:85vh;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:flex-start;
  text-align:right;
  padding:0 40px 70px;
}

.mid-hero-tag{
  color:var(--gold-strong);
  font-size:14px;
  letter-spacing:4px;
  margin-bottom:14px;
}

.mid-hero-content h2{
  margin:0 0 14px;
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(44px, 6vw, 78px);
  line-height:1.05;
  color:#fff6ea;
  text-shadow:0 8px 30px rgba(0,0,0,.35);
}

.mid-hero-content p{
  margin:0;
  max-width:760px;
  font-size:22px;
  color:#efe4d3;
  text-shadow:0 4px 18px rgba(0,0,0,.3);
}

.mid-hero::after{
  content:"";
  position:absolute;
  right:0;
  left:0;
  bottom:0;
  height:160px;
  background:linear-gradient(to bottom, rgba(7,7,7,0), #070707);
  z-index:2;
  pointer-events:none;
}

@media (max-width:860px){

  .mid-hero{
    min-height:60vh;
  }

  .mid-hero-content{
    min-height:60vh;
    padding:0 20px 40px;
    align-items:center;
    text-align:center;
  }

  .mid-hero-content h2{
    font-size:clamp(34px,9vw,56px);
  }

  .mid-hero-content p{
    font-size:17px;
  }

}
@media (max-width: 1080px){
  .cards-grid,
  .stats-grid,
  .footer-wrap,
  .gallery-grid,
  .contact-box,
  .split,
  .split.reverse,
  .about-grid{
    grid-template-columns:1fr;
  }

  .main-img{
    min-height:420px;
  }

  .gallery-item.wide,
  .gallery-item.tall{
    grid-column:auto;
    grid-row:auto;
  }
}

@media (max-width: 860px){
  .nav,
  .desktop-only{
    display:none;
  }

  .mobile-whatsapp-float{
    display:inline-flex;
  }

  .hero-bg{
    object-position:74% 52%;
    transform:scale(1);
    filter:brightness(.99);
    animation:none;
  }

  .menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .site-header{
    top:12px;
    width:calc(100% - 18px);
    border-radius:22px;
  }

  .site-logo{
    height:60px;
  }

  .hero-logo{
    height:170px;
  }

  .eyebrow{
    font-size:15px;
    letter-spacing:4px;
  }

  .hero-title{
    font-size:clamp(40px, 10vw, 72px);
  }

  .hero-content{
    padding-top:140px;
  }

  .hero-text{
    font-size:18px;
  }

  .section,
  .about-section{
    padding:60px 0;
  }

  .about-title{
    font-size:42px;
  }

  .about-image img{
    min-height:420px;
  }

  .about-image::before{
    height:88px;
    background:linear-gradient(
      to bottom,
      rgba(7,7,7,.68) 0%,
      rgba(7,7,7,.26) 58%,
      rgba(7,7,7,0) 100%
    );
  }

  .mid-hero{
    min-height:320px;
    margin:20px 0 50px;
  }

  .mid-hero-content{
    min-height:320px;
    padding:26px 18px 30px;
    align-items:center;
    text-align:center;
  }

  .mid-hero-content p{
    font-size:17px;
  }
}

@media (max-width: 640px){
  .container{
    width:min(var(--container), calc(100% - 24px));
  }

  .mobile-whatsapp-float{
    left:12px;
    bottom:12px;
    width:52px;
    height:52px;
  }

  .mobile-whatsapp-icon{
    width:30px;
    height:30px;
    font-size:13px;
  }

  .nav-wrap{
    min-height:72px;
  }

  .site-logo{
    height:52px;
  }

  .hero-logo{
    height:130px;
  }

  .eyebrow{
    font-size:13px;
    letter-spacing:3px;
  }

  .hero-title{
    font-size:clamp(36px, 12vw, 58px);
    letter-spacing:2px;
  }

  .hero-subtitle{
    font-size:12px;
    letter-spacing:2px;
  }

  .hero-text{
    font-size:16px;
  }

  .btn{
    width:100%;
  }

  .hero-actions{
    flex-direction:column;
  }

  .stats-grid div,
  .feature-item,
  .contact-box{
    padding:16px;
  }

  .service-card img{
    height:220px;
  }

  .service-card-cocktails img{
    object-fit:cover;
    object-position:center 30%;
  }

  .card-body h3{
    font-size:28px;
  }

  .footer-logo{
    height:90px;
  }

  .smoke-1,
  .smoke-2,
  .smoke-3{
    opacity:.1;
  }
}/* Premium section transitions */

.hero,
.mid-hero,
.about-section,
.services,
.contact,
.site-footer{
  position:relative;
}

.mid-hero::before,
.about-section::before,
.services::before,
.contact::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:120px;
  pointer-events:none;
  background:linear-gradient(
    to bottom,
    rgba(7,7,7,1) 0%,
    rgba(7,7,7,0.75) 45%,
    rgba(7,7,7,0) 100%
  );
  z-index:1;
}

.about-section,
.services,
.contact{
  overflow:hidden;
}

.section-head,
.about-text,
.contact-box,
.cards-grid{
  position:relative;
  z-index:2;
}

/* Soft luxury glow between sections */

.about-section::after,
.services::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:1px;
  background:linear-gradient(
    to left,
    rgba(224,188,122,0),
    rgba(224,188,122,.25),
    rgba(224,188,122,0)
  );
  z-index:2;
}

/* Slight cinematic spacing */

.about-section{
  padding-top:80px;
  padding-bottom:80px;
}

.services.section{
  padding-top:80px;
}

.contact.section{
  padding-top:80px;
}
