/* ============================================================
   Jk Skin & Hair Studio — Premium Landing
   ============================================================ */

:root{
  /* Palette */
  --bg:        #FAF8F5;        /* warm white */
  --bg-soft:   #F2EEE7;        /* soft beige */
  --bg-cream:  #EFE9DF;        /* cream */
  --line:      #E6DFD3;        /* soft beige line */
  --line-2:    #ECE7DD;
  --text:      #14110F;        /* deep near-black */
  --text-2:    #4A433D;        /* warm gray */
  --text-3:    #8A8079;        /* muted */
  --gold:      #C9A961;        /* sophisticated gold */
  --gold-2:    #B5924A;
  --gold-soft: #E6D8B6;
  --black:     #0E0C0A;
  --nude:      #E8DDCD;

  /* Type */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --radius:   18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 20px rgba(20,17,15,.06);
  --shadow-md: 0 14px 40px rgba(20,17,15,.08);
  --shadow-lg: 0 30px 80px rgba(20,17,15,.12);
  --maxw: 1240px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ===== Reset ===== */
*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; transition: color .3s var(--ease); }
button{ font-family: inherit; cursor:pointer; border:none; background:none; }
input, select, textarea{ font-family:inherit; font-size:1rem; }

.container{
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Typography ===== */
.h2{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}
.eyebrow{
  display:inline-block;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.eyebrow::before{
  content:'';
  position:absolute; left:0; top:50%;
  width: 26px; height: 1px;
  background: var(--gold);
}
.lead{
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 0 1.6rem;
}
.serif-italic{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.amp{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-2);
}

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg{ width:18px; height:18px; transition: transform .35s var(--ease); stroke: currentColor; }
.btn:hover svg{ transform: translateX(3px); }

.btn--gold{
  background: var(--gold);
  color: #fff;
  border: 1px solid rgba(201,169,97,.35);
  box-shadow: 0 8px 24px rgba(201,169,97,.28);
}
.btn--gold:hover{
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201,169,97,.4);
}
.btn--dark{
  background: var(--black);
  color: #fff;
}
.btn--dark:hover{
  background: #1f1b17;
  transform: translateY(-2px);
}
.btn--ghost-light{
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
}
.btn--ghost-light:hover{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.6);
}
.btn--ghost-dark{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.btn--ghost-dark:hover{
  background: var(--text);
  color: #fff;
}
.btn--block{ width:100%; justify-content:center; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position: fixed; top:0; left:0; right:0;
  z-index: 100;
  padding: 18px 0;
  transition: all .4s var(--ease);
}
.nav:not(.scrolled) .brand__mark{
  color: var(--gold-soft);
  border-color: rgba(230,216,182,.85);
  background: rgba(14,12,10,.18);
  backdrop-filter: blur(10px);
}
.nav:not(.scrolled) .brand__name{ color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.35); }
.nav:not(.scrolled) .brand__sub{ color: rgba(255,255,255,.78); text-shadow: 0 1px 10px rgba(0,0,0,.35); }
.nav:not(.scrolled) .nav__links a{ color: rgba(255,255,255,.82); text-shadow: 0 1px 10px rgba(0,0,0,.35); }
.nav:not(.scrolled) .nav__links a:hover{ color: #fff; }
.nav:not(.scrolled) .nav__burger span{ background: #fff; }
.nav.scrolled .brand__mark{
  color: var(--gold);
  border-color: var(--gold);
  background: transparent;
}
.nav.scrolled .brand__name{ color: var(--text); text-shadow: none; }
.nav.scrolled .brand__sub{ color: var(--text-3); text-shadow: none; }
.nav.scrolled .nav__links a{ color: var(--text-2); text-shadow: none; }
.nav.scrolled .nav__links a:hover{ color: var(--text); }
.nav.scrolled .nav__burger span{ background: var(--text); }
.nav.scrolled{
  background: rgba(250,248,245,.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(230,223,211,.6);
}
.nav__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Brand */
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand__mark{
  width: 42px; height: 42px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  letter-spacing: .03em;
}
.brand__text{ display:flex; flex-direction:column; line-height:1; }
.brand__name{
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text);
}
.brand__sub{
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 4px;
}

/* Nav links */
.nav__links{
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav__links a{
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
}
.nav__links a::after{
  content:'';
  position: absolute; left:0; bottom:-6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav__links a:hover{ color: var(--text); }
.nav__links a:hover::after{ width: 100%; }

.nav__cta{ padding: .7rem 1.4rem; font-size: .85rem; }

.nav__burger{
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: relative;
  z-index: 120;
}
.nav__burger span{
  width: 24px; height: 1.5px; background: var(--text);
  transition: all .3s var(--ease);
}
.nav__burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2){ opacity: 0; }
.nav__burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.nav .nav__burger.open span{ background: var(--text); }

/* Mobile menu */
.mobile-menu{
  position: fixed; top:0; right:-100%;
  width: 80%; max-width: 360px;
  height: 100vh;
  z-index: 110;
  background: var(--bg);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  padding: 100px 32px 32px;
  gap: 1.4rem;
  transition: right .5s var(--ease);
  box-shadow: -20px 0 60px rgba(0,0,0,.08);
}
.mobile-menu.open{ right: 0; }
.mobile-menu a{
  font-size: 1.1rem;
  color: var(--text);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 1rem;
}
.mobile-menu .btn{ margin-top: .6rem; align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg{
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1598440947619-2c35fc9aa908?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom{ to{ transform: scale(1); } }
.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(14,12,10,.78) 0%, rgba(14,12,10,.4) 50%, rgba(14,12,10,.7) 100%);
  z-index: -1;
}
.hero__inner{
  padding: 160px 28px 120px;
  max-width: 880px;
}
.hero .eyebrow{ color: var(--gold-soft); }
.hero .eyebrow::before{ background: var(--gold-soft); }

.hero__title{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 1.4rem;
}
.hero__title .amp{ color: var(--gold); }

.hero__slogan{
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 0 2.4rem;
  font-weight: 300;
}
.hero__cta{
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero__meta{
  display: flex; align-items: center; gap: 1.6rem;
  flex-wrap: wrap;
}
.hero__meta > div{
  display: flex; flex-direction: column; gap: 2px;
}
.hero__meta strong{
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold-soft);
  font-weight: 500;
}
.hero__meta span{
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero__meta .dot{
  width: 4px; height:4px; border-radius:50%;
  background: rgba(255,255,255,.3);
}

.hero__scroll{
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.hero__scroll span{
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, transparent, var(--gold-soft));
  animation: scrollLine 2s ease-in-out infinite;
}
.hero__scroll small{
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
@keyframes scrollLine{
  0%,100%{ transform: scaleY(.6); transform-origin: top; }
  50%{ transform: scaleY(1); transform-origin: top; }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section{ padding: 130px 0; position: relative; }
.section__head{ max-width: 720px; margin: 0 auto 70px; }
.section__head.center{ text-align: center; }
.section__head.center .eyebrow{ padding-left: 0; }
.section__head.center .eyebrow::before{ display: none; }

.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.grid-2.reverse > *:first-child{ order: 2; }

/* ============================================================
   ABOUT
   ============================================================ */
.about{ background: var(--bg); }
.about__media{
  position: relative;
  min-height: 560px;
}
.about__img{
  position: absolute;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}
.about__img--1{
  width: 70%; height: 70%;
  top: 0; left: 0;
  background-image: url('Multimedia/Jfprofesional.jpg');
}
.about__img--2{
  width: 55%; height: 55%;
  bottom: 0; right: 0;
  background-image: url('Multimedia/Jfprofesional2.jpg');
  border: 8px solid var(--bg);
}
.about__badge{
  position: absolute;
  bottom: 18%; left: -10px;
  background: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: .85rem;
  font-weight: 500;
  z-index: 2;
}
.about__badge svg{ color: var(--gold); width: 18px; height: 18px; stroke: currentColor; }

.about__cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 2rem;
}
.card-mini{
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
}
.card-mini:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.card-mini svg{
  width: 22px; height: 22px;
  color: var(--gold);
  margin-bottom: 10px;
  stroke: currentColor;
}
.card-mini h4{
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 6px;
}
.card-mini p{
  font-size: .88rem;
  color: var(--text-2);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services{ background: var(--bg-soft); }
.services__filters{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: -24px 0 42px;
}
.services__filter{
  min-width: 150px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  color: var(--text-2);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
  box-shadow: 0 8px 26px rgba(20,18,16,.04);
}
.services__filter:hover,
.services__filter.active{
  background: var(--black);
  color: #fff;
  border-color: var(--black);
  transform: translateY(-2px);
}
.services__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service.is-hidden{ display: none; }
.service{
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .5s var(--ease);
  border: 1px solid transparent;
  position: relative;
}
.service:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.service__img{
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease);
}
.service:hover .service__img{ transform: scale(1.06); }
.service__body{ padding: 24px; }
.tag{
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: var(--gold-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  font-weight: 500;
}
.service h3{
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.service p{
  font-size: .88rem;
  color: var(--text-2);
  margin: 0 0 18px;
  line-height: 1.6;
}
.link-arrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .04em;
  border-bottom: 1px solid var(--text);
  padding-bottom: 3px;
  transition: all .3s var(--ease);
}
.link-arrow svg{ width:14px; height:14px; transition: transform .3s var(--ease); stroke: currentColor; }
.link-arrow:hover{ color: var(--gold-2); border-color: var(--gold-2); }
.link-arrow:hover svg{ transform: translate(2px,-2px); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits{ background: var(--bg); }
.benefits__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit{
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.benefit::before{
  content:'';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
}
.benefit:hover::before{ transform: translateX(0); }
.benefit:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.benefit__icon{
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-cream);
  margin-bottom: 1.2rem;
  transition: all .4s var(--ease);
}
.benefit__icon svg{ width: 24px; height: 24px; color: var(--gold-2); stroke: currentColor; }
.benefit:hover .benefit__icon{
  background: var(--black);
}
.benefit:hover .benefit__icon svg{ color: var(--gold); }
.benefit h4{
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 8px;
}
.benefit p{
  font-size: .9rem;
  color: var(--text-2);
  margin: 0;
}

.stats{
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 60px 40px;
  background: var(--black);
  border-radius: var(--radius-lg);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before{
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(circle at 20% 30%, rgba(201,169,97,.15), transparent 50%);
}
.stat{
  text-align: center;
  position: relative;
}
.stat strong{
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span{
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience{ background: var(--bg-soft); overflow: hidden; }
.experience__media{
  position: relative;
  min-height: 580px;
}
.experience__img{
  position: absolute;
  inset: 0;
  background-image: url('Multimedia/Jfprofesional.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.experience__quote{
  position: absolute;
  bottom: -30px; left: -30px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  padding: 28px 32px;
  border-radius: var(--radius);
  max-width: 320px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,.6);
}
.experience__quote svg{
  width: 28px; height: 28px;
  color: var(--gold);
  margin-bottom: 10px;
  stroke: currentColor;
}
.experience__quote p{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.4;
  color: var(--text);
}

.experience__list{
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.experience__list li{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
  color: var(--text-2);
}
.experience__list li:last-child{ border-bottom: none; }
.experience__list svg{
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  stroke: currentColor;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{
  background: var(--bg);
  position: relative;
}
.testi__slider{
  overflow: hidden;
  position: relative;
}
.testi__track{
  display: flex;
  transition: transform .7s var(--ease);
  gap: 24px;
}
.testi{
  flex: 0 0 calc(33.333% - 16px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all .4s var(--ease);
}
.testi:hover{
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-md);
}
.testi__stars{
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.testi p{
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 1.6rem;
  font-weight: 400;
}
.testi__author{
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.avatar{
  width: 48px; height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--gold-soft);
}
.testi__author strong{
  display: block;
  font-size: .95rem;
  font-weight: 600;
}
.testi__author span{
  font-size: .78rem;
  color: var(--text-3);
  letter-spacing: .08em;
}

.testi__nav{
  display: flex; align-items: center; justify-content: center;
  gap: 1.6rem;
  margin-top: 50px;
}
.testi__btn{
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: grid; place-items: center;
  transition: all .35s var(--ease);
}
.testi__btn svg{ width: 20px; height: 20px; color: var(--text); stroke: currentColor; }
.testi__btn:hover{
  background: var(--black);
  border-color: var(--black);
}
.testi__btn:hover svg{ color: var(--gold); }

.testi__dots{ display: flex; gap: 8px; }
.testi__dots button{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: all .3s var(--ease);
}
.testi__dots button.active{
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery{ background: var(--bg-soft); }
.gallery__filters{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: -24px 0 42px;
}
.gallery__filter{
  min-width: 150px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  color: var(--text-2);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
  box-shadow: 0 8px 26px rgba(20,18,16,.04);
}
.gallery__filter:hover,
.gallery__filter.active{
  background: var(--black);
  color: #fff;
  border-color: var(--black);
  transform: translateY(-2px);
}
.gallery__slider{ overflow: hidden; }
.gallery__group{ display: none; }
.gallery__group.active{ display: block; }
.gallery__group.active + .gallery__group.active{ margin-top: 56px; }
.gallery__group-head{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.gallery__group-head h3{
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  margin: 0;
  color: var(--text);
}
.gallery__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery__viewport{
  overflow: hidden;
  padding: 6px 2px 18px;
}
.gallery__track{
  display: flex;
  gap: 24px;
  transition: transform .55s var(--ease);
  will-change: transform;
}
.gallery__cases{
  display: flex;
}
.case-card{
  flex: 0 0 calc(50% - 12px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 34px rgba(20,18,16,.05);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.case-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.case-card__head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.case-card__head span{
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--text);
}
.case-card__head small{
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  font-weight: 700;
}
.case-card__images{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: stretch;
}
.gallery__item{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  display: block;
  width: 100%;
  height: 260px;
  min-height: 260px;
  background: var(--bg-soft);
}
.gallery__item img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease);
}
.gallery__item span{
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  background: rgba(255,255,255,.86);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.gallery__item::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,12,10,.5));
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.gallery__item:hover img{ transform: scale(1.08); }
.gallery__item:hover::after{ opacity: 1; }
.gallery__nav{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}
.gallery__btn{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  transition: all .3s var(--ease);
}
.gallery__btn:hover{
  background: var(--black);
  border-color: var(--black);
}
.gallery__btn svg{
  width: 20px;
  height: 20px;
  color: var(--text);
  stroke: currentColor;
}
.gallery__btn:hover svg{ color: #fff; }
.gallery__dots{
  display: flex;
  gap: 8px;
  align-items: center;
}
.gallery__dots button{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: all .3s var(--ease);
}
.gallery__dots button.active{
  background: var(--gold);
  width: 28px;
  border-radius: 999px;
}

.gi-1{ grid-row: span 2; }
.gi-4{ grid-column: span 2; }
.gi-6{ grid-row: span 2; }

/* ============================================================
   FAQ
   ============================================================ */
.faq{ background: var(--bg); }
.grid-2-faq{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.faq__intro .btn{ margin-top: 1rem; }

.faq__item{
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq__item summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker{ display: none; }
.faq__item summary::after{
  content:'+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .35s var(--ease);
  font-weight: 300;
}
.faq__item[open] summary::after{ transform: rotate(45deg); }
.faq__item[open] summary{ color: var(--gold-2); }
.faq__item p{
  margin: 14px 0 0;
  color: var(--text-2);
  font-size: .95rem;
  line-height: 1.7;
  padding-right: 2rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact{ background: var(--bg-soft); }
.contact__list{
  list-style: none;
  padding: 0;
  margin: 2.4rem 0;
  display: grid;
  gap: 1.4rem;
}
.contact__list li{
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__list svg{
  width: 22px; height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  stroke: currentColor;
}
.contact__list strong{
  display: block;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact__list span{
  font-size: 1rem;
  color: var(--text);
}
.contact__socials{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.contact__socials a{
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  background: #fff;
  transition: all .35s var(--ease);
}
.contact__socials a:hover{
  background: var(--black);
  border-color: var(--black);
}
.contact__socials a:hover svg{ color: var(--gold); }
.contact__socials svg{ width: 18px; height: 18px; color: var(--text); stroke: currentColor; }
.contact__socials .brand-icon--stroke{ fill: none; stroke: currentColor; stroke-width: 1.8; }
.contact__socials .brand-icon--fill{ fill: currentColor; stroke: none; }
.contact__socials .wa-icon{ fill: currentColor; stroke: none; }
.contact__wa{
  width: 44px !important;
  padding: 0;
  border-radius: 50% !important;
  color: var(--text);
}
.contact__wa:hover{ color: #fff; }

/* Form */
.contact__form{
  background: #fff;
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.contact__form h3{
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 1.6rem;
}
.contact__form .row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact__form label{
  display: block;
  margin-bottom: 14px;
}
.contact__form span{
  display: block;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact__form input,
.contact__form select,
.contact__form textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  transition: border .3s var(--ease), background .3s var(--ease);
  outline: none;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus{
  border-color: var(--gold);
  background: #fff;
}
.contact__form textarea{ resize: vertical; min-height: 100px; }
.contact__form .btn--gold{
  margin-top: 10px;
  min-height: 54px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: rgba(181,146,74,.55);
}
.contact__form .btn--gold svg{
  color: #fff;
  stroke: currentColor;
}
.form__feedback{
  margin: 14px 0 0;
  font-size: .88rem;
  color: var(--gold-2);
  text-align: center;
  min-height: 20px;
}

.contact__map{
  margin-top: 80px;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.contact__map iframe{
  width: 100%; height: 100%; border: 0;
  filter: grayscale(.4) contrast(.95);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  background: var(--black);
  color: rgba(255,255,255,.75);
  padding: 80px 0 30px;
}
.footer .brand__name{ color: #fff; }
.footer .brand__sub{ color: rgba(255,255,255,.5); }
.footer__inner{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand p{
  margin: 1.4rem 0 1.6rem;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  max-width: 320px;
  line-height: 1.7;
}
.footer__socials{
  display: flex;
  gap: 10px;
}
.footer__socials a{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: grid; place-items: center;
  transition: all .35s var(--ease);
}
.footer__socials a:hover{
  background: var(--gold);
  border-color: var(--gold);
}
.footer__socials svg{ width: 16px; height: 16px; color: rgba(255,255,255,.85); stroke: currentColor; }
.footer__socials .brand-icon--stroke{ fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer__socials .brand-icon--fill{ fill: currentColor; stroke: none; }
.footer__socials .wa-icon{ fill: currentColor; stroke: none; }
.footer__socials a:hover svg{ color: #fff; }

.footer__col h5{
  font-family: var(--serif);
  font-size: 1.05rem;
  color: #fff;
  font-weight: 500;
  margin: 0 0 1.2rem;
  letter-spacing: .03em;
}
.footer__col a{
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  padding: 6px 0;
  transition: color .3s var(--ease), padding .3s var(--ease);
}
.footer__col a:hover{ color: var(--gold); padding-left: 6px; }

.footer__bottom{
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float{
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  z-index: 90;
  transition: transform .35s var(--ease);
  animation: pulse 2.5s infinite;
}
.wa-float:hover{ transform: scale(1.1); }
.wa-float svg{ color: #fff; width: 26px; height: 26px; stroke: currentColor; stroke-width: 2.4; }
.wa-float .wa-icon{ fill: currentColor; stroke: none; }
@keyframes pulse{
  0%,100%{ box-shadow: 0 10px 30px rgba(37,211,102,.4); }
  50%{ box-shadow: 0 10px 30px rgba(37,211,102,.7), 0 0 0 12px rgba(37,211,102,.05); }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(14,12,10,.92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;
}
.lightbox.open{ display: flex; animation: fade .3s ease; }
@keyframes fade{ from{ opacity:0; } to{ opacity:1; } }
.lightbox img{
  max-width: 92%;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__close{
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
  transition: all .3s var(--ease);
}
.lightbox__close:hover{ background: var(--gold); border-color: var(--gold); }
.lightbox__close svg{ color: #fff; width: 22px; height: 22px; stroke: currentColor; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px){
  .services__grid{ grid-template-columns: repeat(3, 1fr); }
  .benefits__grid{ grid-template-columns: repeat(2, 1fr); }
  .testi{ flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 900px){
  .nav__links{ display: none; }
  .nav__cta{ display: none; }
  .nav__burger{ display: flex; }

  .section{ padding: 90px 0; }
  .section__head{ margin-bottom: 50px; }

  .grid-2,
  .grid-2-faq{
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .grid-2.reverse > *:first-child{ order: 0; }

  .services__grid{ grid-template-columns: repeat(2, 1fr); }
  .benefits__grid{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: repeat(2, 1fr); padding: 40px 24px; }

  .gallery__grid{
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__cases{
    display: flex;
  }
  .case-card{ flex-basis: 100%; }
  .gallery__item{ height: 240px; min-height: 240px; }
  .gi-1, .gi-6{ grid-row: span 1; }
  .gi-4{ grid-column: span 1; }

  .testi{ flex: 0 0 100%; }

  .footer__inner{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about__media{ min-height: 450px; }
  .experience__media{ min-height: 460px; }
  .experience__quote{ left: 10px; right: 10px; max-width: none; bottom: -10px; }
}

@media (max-width: 560px){
  .container{ padding: 0 20px; }
  .hero__inner{ padding: 130px 20px 100px; }
  .hero__cta{ flex-direction: column; align-items: stretch; }
  .hero__cta .btn{ justify-content: center; }
  .hero__meta{ gap: 1rem; }
  .hero__meta .dot{ display: none; }

  .about__cards{ grid-template-columns: 1fr; }
  .services__grid{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr 1fr; gap: 18px; }
  .gallery__grid{ grid-template-columns: 1fr; }
  .gallery__group-head{ display: block; }
  .case-card{ flex-basis: 100%; }
  .case-card__images{ gap: 10px; }
  .gallery__item{ height: 220px; min-height: 220px; }

  .footer__inner{ grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer__bottom{ justify-content: center; text-align: center; }

  .contact__form{ padding: 32px 24px; }
  .contact__form .row{ grid-template-columns: 1fr; }

  .wa-float{ width: 52px; height: 52px; bottom: 18px; right: 18px; }
}
