/* ============================================================
   SUHITO STONE — stylesheet
   ============================================================ */

/* --- reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: #1a1a1a; background: #fff; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.loader {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 9999;
  background: #0f0a05;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
  transition: opacity .5s ease .1s, visibility .5s ease .1s;
}
.loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
body.is-loading { overflow: hidden; }
.loader__logo {
  display: flex; align-items: center; gap: 14px;
  animation: loaderLogoPop .6s cubic-bezier(.34,1.56,.64,1) forwards;
}
.loader__mark {
  width: 56px; height: 56px; border-radius: 12px;
  background: #7a5230;
  display: flex; align-items: center; justify-content: center;
  animation: loaderPulse 1.8s ease-in-out infinite;
}
.loader__mark svg { width: 28px; height: 28px; fill: #fff; }
.loader__name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: #fff; line-height: 1;
}
.loader__name span { font-weight: 400; opacity: .55; }
.loader__track {
  width: 200px; height: 2px;
  background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden;
}
.loader__fill {
  height: 100%; width: 0; border-radius: 2px;
  background: linear-gradient(90deg, #7a5230, #b8865a);
  animation: loaderFill 1.8s cubic-bezier(.4,0,.2,1) forwards;
}
.loader__tagline {
  font-size: .78rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  animation: loaderFadeIn .8s ease .4s both;
}
@keyframes loaderLogoPop {
  from { opacity: 0; transform: scale(.8) translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@keyframes loaderPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(122,82,48,.5); }
  50%      { box-shadow: 0 0 0 14px rgba(122,82,48,0); }
}
@keyframes loaderFill {
  0%   { width: 0; }
  30%  { width: 35%; }
  65%  { width: 72%; }
  100% { width: 100%; }
}
@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
.hero__eyebrow,
.hero__title,
.hero__desc,
.hero__actions,
.hero__stats,
.hero__indicator { opacity: 0; }

body:not(.is-loading) .hero__eyebrow  { animation: enterUp .7s ease .15s forwards; }
body:not(.is-loading) .hero__title    { animation: enterUp .8s ease .3s forwards; }
body:not(.is-loading) .hero__desc     { animation: enterUp .7s ease .45s forwards; }
body:not(.is-loading) .hero__actions  { animation: enterUp .7s ease .6s forwards; }
body:not(.is-loading) .hero__stats    { animation: enterUp .6s ease .75s forwards; }
body:not(.is-loading) .hero__indicator{ animation: enterUp .5s ease .9s forwards; }

@keyframes enterUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* Tab page transition */
.page-enter { animation: pageEnter .35s ease forwards; }
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* counter pop */
@keyframes numPop {
  0%   { transform: scale(.75); opacity: 0; }
  70%  { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.num-pop { animation: numPop .5s cubic-bezier(.34,1.56,.64,1) forwards; }

/* --- tokens --- */
:root {
  --brown:        #7a5230;
  --brown-dark:   #5a3a1e;
  --brown-light:  #b8865a;
  --cream:        #f7f2ec;
  --cream-dark:   #ede4d8;
  --green:        #2a4a10;
  --text:         #181818;
  --muted:        #6b6b6b;
  --white:        #ffffff;
  --wa:           #25d366;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  --sh-sm: 0 1px 4px rgba(0,0,0,.06);
  --sh-md: 0 4px 20px rgba(0,0,0,.09);
  --sh-lg: 0 16px 48px rgba(0,0,0,.13);

  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .28s;
  --max: 1200px;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* --- buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--r-sm);
  font-weight: 600; font-size: .88rem; letter-spacing: .01em;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn-primary { background: var(--brown); color: #fff; }
.btn-primary:hover { background: var(--brown-dark); transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn-outline { border: 1.5px solid rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-ghost { border: 1.5px solid var(--brown); color: var(--brown); background: transparent; }
.btn-ghost:hover { background: var(--brown); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1dba5a; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(37,211,102,.28); }
.btn-lg { padding: 14px 32px; font-size: .96rem; border-radius: var(--r-md); }

/* --- section header --- */
.sec-label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brown); background: var(--cream); border-radius: 99px;
  padding: 4px 14px; margin-bottom: 14px;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700; line-height: 1.18; color: var(--text);
  margin-bottom: 16px;
}
.sec-desc { font-size: .95rem; line-height: 1.75; color: var(--muted); max-width: 540px; }
.sec-head { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.sec-head .sec-desc { margin: 0 auto; }

/* reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   FLOATING WA BUTTON
   ============================================================ */
.wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}

/* ============================================================
   TOPBAR (removed — CSS kept minimal)
   ============================================================ */

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav.scrolled,
.nav.nav--forced {
  background: rgba(255,255,255,.96); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  padding: 12px 0; box-shadow: var(--sh-sm);
}
.nav.nav--forced .nav__logo { color: var(--text); }
.nav.nav--forced .nav__link { color: var(--muted); }
.nav.nav--forced .nav__link:hover { color: var(--text); background: var(--cream); }
.nav.nav--forced .nav__link.active { color: var(--brown); }
.nav.nav--forced .nav__hamburger span { background: var(--text); }
.nav.nav--forced .nav__cta.btn-outline { border-color: var(--brown); color: var(--brown); background: transparent; }
.nav.nav--forced .nav__cta.btn-outline:hover { background: var(--brown); color: #fff; }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700;
  color: #fff; transition: color var(--dur) var(--ease);
}
.nav.scrolled .nav__logo { color: var(--text); }
.nav__logo-mark {
  width: 34px; height: 34px; border-radius: 6px;
  background: var(--brown); display: flex; align-items: center; justify-content: center;
}
.nav__logo-mark svg { width: 18px; height: 18px; fill: #fff; }
.nav__logo span { font-weight: 400; opacity: .7; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 7px 13px; border-radius: var(--r-sm);
  font-size: .87rem; font-weight: 500; color: rgba(255,255,255,.85);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav__link.active { color: #fff; font-weight: 600; }
.nav.scrolled .nav__link.active { color: var(--brown); font-weight: 600; }
.nav.scrolled .nav__link { color: var(--muted); }
.nav.scrolled .nav__link:hover { color: var(--text); background: var(--cream); }
.nav__cta { margin-left: 8px; }
.nav.scrolled .nav__cta.btn-outline { border-color: var(--brown); color: var(--brown); background: transparent; }
.nav.scrolled .nav__cta.btn-outline:hover { background: var(--brown); color: #fff; }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.nav.scrolled .nav__hamburger span { background: var(--text); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; overflow: hidden;
}
.hero__slides { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0; }
.hero__slide {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero__slide--1 { background-image: url('../images/product-03.jpeg'); }
.hero__slide--2 { background-image: url('../images/product-15.jpeg'); }
.hero__slide--3 { background-image: url('../images/product-25.jpeg'); }
.hero__slide--4 { background-image: url('../images/product-33.jpeg'); }
.hero__slide.active { opacity: 1; }
.hero__overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1;
  background: linear-gradient(to right, rgba(5,3,1,.82) 0%, rgba(5,3,1,.55) 60%, rgba(5,3,1,.3) 100%);
}
.hero__body {
  position: relative; z-index: 2;
  padding-top: 80px; max-width: 620px;
}
.hero__eyebrow { text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.hero__title { text-shadow: 0 2px 16px rgba(0,0,0,.7), 0 1px 4px rgba(0,0,0,.5); }
.hero__desc { text-shadow: 0 1px 6px rgba(0,0,0,.6); }
.hero__stat-num { text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.hero__stat-label { text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  margin-bottom: 22px;
}
.hero__eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--brown-light); }
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700; line-height: 1.12; color: #fff;
  margin-bottom: 22px;
}
.hero__title em { font-style: normal; color: var(--brown-light); }
.hero__desc {
  font-size: clamp(.95rem, 1.8vw, 1.08rem); line-height: 1.78;
  color: rgba(255,255,255,.78); margin-bottom: 36px; max-width: 480px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 52px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 0; }
.hero__stat {
  padding: 0 28px; border-right: 1px solid rgba(255,255,255,.18);
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label { font-size: .72rem; color: rgba(255,255,255,.55); font-weight: 500; }

.hero__indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; gap: 8px;
}
.hero__dot {
  width: 24px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.3);
  transition: background var(--dur) var(--ease), width var(--dur) var(--ease); cursor: pointer;
}
.hero__dot.active { background: var(--brown-light); width: 36px; }

/* ============================================================
   PRODUK
   ============================================================ */
.products { padding: 110px 0 80px; background: var(--cream); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.pcard {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.pcard__thumb { position: relative; padding-top: 68.75%; overflow: hidden; }
.pcard__thumb > img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; }
@supports (aspect-ratio: 1) {
  .pcard__thumb { padding-top: 0; aspect-ratio: 16/11; }
  .pcard__thumb > * { position: static; width: 100%; height: 100%; }
}
.pcard__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pcard:hover .pcard__thumb img { transform: scale(1.04); }

.pcard__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.pcard__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: var(--text);
}
.pcard__desc { font-size: .875rem; line-height: 1.68; color: var(--muted); margin-bottom: 18px; }
.pcard__feats { margin-bottom: 22px; flex: 1; }
.pcard__feats li {
  display: flex; align-items: center; gap: 9px;
  font-size: .82rem; color: var(--muted); padding: 3px 0;
}
.pcard__feats li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--brown); flex-shrink: 0;
}
.pcard__cta { align-self: flex-start; margin-top: auto; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 100px 0; background: var(--cream); }
.about__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about__img-wrap {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.about__img-wrap img { width: 100%; border-radius: var(--r-lg); object-fit: cover; padding-top: 0; }
@supports (aspect-ratio: 1) {
  .about__img-wrap img { aspect-ratio: 4/3; }
}
.about__img-secondary { margin-top: 24px; }
.about__content { display: flex; flex-direction: column; gap: 0; }
.about__text { font-size: .95rem; line-height: 1.78; color: var(--muted); margin-bottom: 16px; }
.about__vals {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin: 28px 0 32px;
}
.about__val-num {
  font-size: 2rem; font-weight: 800; color: var(--brown); line-height: 1;
  margin-bottom: 4px;
}
.about__val-label { font-size: .78rem; color: var(--muted); font-weight: 500; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { padding: 80px 0; background: var(--brown-dark); }
.cta-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.cta-banner__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: #fff; margin-bottom: 8px;
}
.cta-banner__desc { font-size: .95rem; color: rgba(255,255,255,.65); }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .about__inner { grid-template-columns: 1fr; gap: 36px; }
  .about__img-wrap { grid-template-columns: 1fr 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: 110px 0; background: #fff; }
.gallery__tabs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px; margin-bottom: 44px;
}
.gtab {
  padding: 8px 20px; border-radius: 99px;
  border: 1.5px solid var(--cream-dark);
  font-size: .83rem; font-weight: 600; color: var(--muted);
  transition: all var(--dur) var(--ease);
}
.gtab:hover { border-color: var(--brown); color: var(--brown); }
.gtab.active {
  background: var(--brown); border-color: var(--brown);
  color: #fff; box-shadow: 0 4px 16px rgba(122,82,48,.25);
}
.gallery__panel { display: none; animation: fadeUp .38s var(--ease); }
.gallery__panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gitem {
  position: relative; padding-top: 75%; overflow: hidden;
  border-radius: var(--r-md); cursor: pointer; background: var(--cream-dark);
}
@supports (aspect-ratio: 1) {
  .gitem { padding-top: 0; aspect-ratio: 4/3; }
}
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gitem:hover img { transform: scale(1.05); }
.gitem__over {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(15,10,5,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.gitem:hover .gitem__over { opacity: 1; }
.gitem__icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
}
.gitem__icon svg { width: 18px; height: 18px; fill: #fff; }

/* ============================================================
   KEUNGGULAN
   ============================================================ */
.why { padding: 110px 0; background: var(--cream); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.wcard {
  padding: 32px 28px; background: #fff;
  border-radius: var(--r-lg); border: 1px solid var(--cream-dark);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wcard:hover { border-color: var(--brown-light); box-shadow: var(--sh-md); }
.wcard__icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.wcard__icon svg { width: 22px; height: 22px; stroke: var(--brown); fill: none; stroke-width: 1.8; }
.wcard__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.wcard__desc { font-size: .85rem; line-height: 1.68; color: var(--muted); }

/* ============================================================
   KONTAK
   ============================================================ */
.contact { padding: 110px 0; background: #fff; }
.contact__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.contact__info-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; line-height: 1.2;
  color: var(--text); margin-bottom: 18px;
}
.contact__info-desc { font-size: .93rem; line-height: 1.75; color: var(--muted); margin-bottom: 32px; }
.contact__detail { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.cdetail {
  display: flex; align-items: flex-start; gap: 14px;
}
.cdetail__icon {
  width: 40px; height: 40px; border-radius: var(--r-md); background: var(--cream);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cdetail__icon svg { width: 18px; height: 18px; stroke: var(--brown); fill: none; stroke-width: 1.8; }
.cdetail__label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 2px; }
.cdetail__val { font-size: .92rem; font-weight: 600; color: var(--text); }

.cform { background: var(--cream); border-radius: var(--r-lg); padding: 36px; }
.cform__title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 22px; }
.cform__row { margin-bottom: 16px; }
.cform__label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.cform__input, .cform__select, .cform__textarea {
  width: 100%; padding: 10px 14px; border-radius: var(--r-sm);
  border: 1.5px solid var(--cream-dark); background: #fff;
  font-family: inherit; font-size: .9rem; color: var(--text);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
}
.cform__input:focus, .cform__select:focus, .cform__textarea:focus {
  border-color: var(--brown); box-shadow: 0 0 0 3px rgba(122,82,48,.1);
}
.cform__textarea { resize: vertical; min-height: 100px; }
.cform__submit { width: 100%; margin-top: 4px; justify-content: center; padding: 13px; font-size: .92rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #111; padding: 56px 0 28px; }
.footer__inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer__brand-name {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  font-weight: 700; color: #fff; margin-bottom: 12px;
}
.footer__brand-desc { font-size: .85rem; line-height: 1.72; color: rgba(255,255,255,.45); max-width: 260px; }
.footer__col-title { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer__col a { display: block; font-size: .87rem; color: rgba(255,255,255,.55); padding: 4px 0; transition: color var(--dur) var(--ease); }
.footer__col a:hover { color: rgba(255,255,255,.9); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer__ig-handle { color: rgba(255,255,255,.4); font-size: .8rem; transition: color var(--dur) var(--ease); }
.footer__ig-handle:hover { color: rgba(255,255,255,.8); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__backdrop {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0,0,0,.88);
  cursor: pointer;
}
.lightbox__box {
  position: relative; z-index: 1; max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__img { max-width: 90vw; max-height: 84vh; border-radius: var(--r-md); object-fit: contain; }
.lightbox__close {
  position: fixed; top: 20px; right: 22px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  font-size: 1.4rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }
.lightbox__prev, .lightbox__next {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease);
}
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.25); }
.lightbox__cap { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.6); font-size: .82rem; }

/* ============================================================
   PORTOFOLIO
   ============================================================ */
.portfolio { padding: 110px 0; background: #fff; }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pfolio-item { border-radius: var(--r-lg); overflow: hidden; }
.pfolio-item__thumb {
  position: relative; padding-top: 75%; overflow: hidden;
  background: var(--cream-dark);
}
@supports (aspect-ratio: 1) {
  .pfolio-item__thumb { padding-top: 0; aspect-ratio: 4/3; }
}
.pfolio-item__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.pfolio-item:hover .pfolio-item__thumb img { transform: scale(1.05); }
.pfolio-item__over {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(to top, rgba(15,10,5,.72) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 18px;
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.pfolio-item:hover .pfolio-item__over { opacity: 1; }
.pfolio-item__cat {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  background: rgba(122,82,48,.7); padding: 3px 10px;
  border-radius: 99px;
}

/* footer social icons */
.footer__social {
  display: flex; gap: 12px; margin-top: 18px;
}
.footer__social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer__social a:hover {
  background: var(--brown); color: #fff;
}

@media (max-width: 680px) {
  .portfolio__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .portfolio__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   POPUP WA
   ============================================================ */
.wa-popup {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
}
.wa-popup.open { display: flex; }
.wa-popup__backdrop {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0,0,0,.55);
  cursor: pointer;
}
.wa-popup__box {
  position: relative; z-index: 1; width: 360px; max-width: calc(100vw - 32px);
  background: #f0f0f0; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  animation: popupIn .25s var(--ease);
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(.94) translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.wa-popup__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,0,0,.15); color: #fff;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease);
}
.wa-popup__close:hover { background: rgba(0,0,0,.3); }
.wa-popup__head {
  background: #075E54; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.wa-popup__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-popup__name { font-size: .95rem; font-weight: 700; color: #fff; }
.wa-popup__status { font-size: .72rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.wa-popup__body { padding: 16px 16px 8px; background: #e5ddd5; }
.wa-popup__bubble {
  background: #fff; border-radius: 0 8px 8px 8px;
  padding: 10px 14px; font-size: .87rem; line-height: 1.55;
  color: #1a1a1a; max-width: 85%; box-shadow: 0 1px 2px rgba(0,0,0,.1);
  position: relative;
}
.wa-popup__bubble::before {
  content: ''; position: absolute; top: 0; left: -8px;
  border: 8px solid transparent; border-top-color: #fff; border-left: none;
}
.wa-popup__form { background: #f0f0f0; padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 10px; }
.wa-popup__field { display: flex; flex-direction: column; }
.wa-popup__input, .wa-popup__select {
  width: 100%; padding: 9px 13px; border-radius: 8px;
  border: 1px solid #ddd; background: #fff;
  font-family: inherit; font-size: .88rem; color: #1a1a1a;
  outline: none; transition: border-color var(--dur) var(--ease);
}
.wa-popup__input:focus, .wa-popup__select:focus { border-color: #25D366; }
.wa-popup__send {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #fff; border-radius: 8px;
  padding: 11px; font-size: .9rem; font-weight: 600;
  font-family: inherit; cursor: pointer; border: none;
  transition: background var(--dur) var(--ease);
}
.wa-popup__send:hover { background: #1dba5a; }

/* ============================================================
   TAB CTA
   ============================================================ */
.tab-cta { padding: 64px 0; background: var(--cream); }
.tab-cta__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.tab-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700; color: var(--text); margin-bottom: 6px;
}
.tab-cta__desc { font-size: .9rem; color: var(--muted); }
@media (max-width: 600px) {
  .tab-cta__inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.btt {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brown); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md); opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transform: translateY(8px);
}
.btt.show { opacity: 1; pointer-events: auto; transform: none; }
.btt:hover { background: var(--brown-dark); transform: translateY(-2px); }
.btt svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .nav__links { display: none; flex-direction: column; gap: 4px; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,.97); padding: 12px 20px 20px; box-shadow: var(--sh-md); }
  .nav__links.open { display: flex; }
  .nav__link { color: var(--muted); }
  .nav__cta { margin-left: 0; width: 100%; justify-content: center; }
  .nav__hamburger { display: flex; }
  .hero__stats { gap: 12px; flex-direction: column; }
  .hero__stat { padding: 0; border-right: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .products__grid { grid-template-columns: 1fr; }
}
