/* ═══════════════════════════════════════════════
   Anggrek Interior — Static Site Stylesheet
   ═══════════════════════════════════════════════ */

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

:root {
  --bg:            #0c0b09;
  --bg2:           #131210;
  --bg3:           #1a1815;
  --gold:          #C8A96E;
  --gold-light:    #E2C98A;
  --gold-dark:     #9A7A45;
  --white:         #F5F0E8;
  --white-dim:     #B8B0A0;
  --white-muted:   #6B6560;
  --serif:         'Cormorant Garamond', Georgia, serif;
  --sans:          'Jost', sans-serif;
  --border:        rgba(200,169,110,0.18);
  --border-strong: rgba(200,169,110,0.35);
  --nav-h:         72px;
  --max-w:         1400px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── NAVBAR ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(12,11,9,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border);
  transition: border-color .3s;
}
.nav.scrolled { border-bottom-color: var(--border-strong); }

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }

.logo-mark {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}

.logo-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color .2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 22px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background .25s, color .25s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white-dim);
  transition: all .25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── BUTTONS ─────────────────────────────────── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 14px 32px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background .25s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white-dim);
  padding: 14px 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px solid var(--white-muted);
  transition: color .2s, border-color .2s;
  cursor: pointer;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* ── SECTION COMMONS ────────────────────────── */
.section-tag {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold-dark);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold-light); }

.section-body {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.85;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4% 5rem 7%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2rem;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold-dark); }
.hero-eyebrow span { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 500; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--white-dim);
  max-width: 420px;
  margin-bottom: 3rem;
}

.hero-actions { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }

.hero-right { position: relative; overflow: hidden; }

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(.8);
}

.hero-grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 30%),
    linear-gradient(to top,   var(--bg) 0%, transparent 25%);
}

.hero-badge {
  position: absolute;
  bottom: 3rem; left: 2rem;
  z-index: 3;
  background: var(--bg3);
  border: 1px solid var(--border-strong);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-badge-num  { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--gold); line-height: 1; }
.hero-badge-text { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white-dim); line-height: 1.5; }

/* Hero placeholder (jika foto belum diisi) */
.hero-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,#1e1b16 0%,#2a2520 50%,#131008 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-placeholder-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(200,169,110,.3); }

/* ── TRUST BAR ───────────────────────────────── */
.trust-bar {
  background: var(--bg2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 1.4rem 7%;
  display: flex;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2.5rem;
  border-right: 0.5px solid var(--border);
  flex-shrink: 0;
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child  { border-right: none; }
.trust-icon  { color: var(--gold); font-size: .85rem; }
.trust-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--white-dim); font-weight: 500; white-space: nowrap; }

/* ── ABOUT ───────────────────────────────────── */
.about { padding: 7rem 7%; max-width: var(--max-w); margin: 0 auto; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg,#1e1b16 0%,#2a2520 60%,#131008 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-img-placeholder span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(200,169,110,.3); text-align: center; padding: 1rem; }

.about-badge-block {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--bg);
  padding: 1.8rem;
  text-align: center;
  min-width: 130px;
}
.about-badge-num   { font-family: var(--serif); font-size: 3rem; font-weight: 600; line-height: 1; display: block; }
.about-badge-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; display: block; margin-top: 4px; }

.about-right { padding-top: 2rem; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 0.5px solid var(--border);
}
.stat-num   { font-family: var(--serif); font-size: 2.8rem; font-weight: 500; color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white-muted); margin-top: 6px; }

/* ── SERVICES ────────────────────────────────── */
.services { background: var(--bg2); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); padding: 7rem 7%; }

.services-inner { max-width: var(--max-w); margin: 0 auto; }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: var(--border); }

.service-card {
  background: var(--bg2);
  padding: 0 0 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.service-card:hover { background: var(--bg3); }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .4s;
}
.service-card:hover::after { width: 100%; }

.service-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 2rem;
  display: block;
}
.service-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg,#1a1815 0%,#252018 60%,#121008 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
}
.service-img-placeholder span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(200,169,110,.25); }

.service-body   { padding: 0 2.5rem; }
.service-num    { font-family: var(--serif); font-size: .85rem; color: var(--gold-dark); letter-spacing: 2px; margin-bottom: .8rem; font-weight: 600; }
.service-name   { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: .8rem; line-height: 1.3; }
.service-desc   { font-size: 13px; color: var(--white-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.service-link   { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.service-link::after { content: '→'; transition: transform .2s; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ── PROCESS ─────────────────────────────────── */
.process { padding: 7rem 7%; max-width: var(--max-w); margin: 0 auto; }

.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; margin-top: 4rem; }

.process-steps { display: flex; flex-direction: column; }

.process-step { display: flex; gap: 2rem; padding: 2rem 0; border-bottom: 0.5px solid var(--border); }
.process-step:first-child { border-top: 0.5px solid var(--border); }

.step-num   { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; color: var(--border-strong); line-height: 1; min-width: 50px; transition: color .3s; }
.process-step:hover .step-num { color: var(--gold); }
.step-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--white); margin-bottom: .5rem; }
.step-desc  { font-size: 13px; color: var(--white-muted); line-height: 1.75; }

.process-right { position: sticky; top: calc(var(--nav-h) + 2rem); }

.process-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.process-img      { width: 100%; height: 100%; object-fit: cover; }
.process-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,#1e1b16 0%,#2a2520 50%,#131008 100%);
  display: flex; align-items: center; justify-content: center;
}
.process-img-placeholder span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(200,169,110,.3); }
.process-quote {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top,rgba(12,11,9,.9) 0%,transparent 100%);
  padding: 2.5rem 2rem 2rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
}

/* ── PORTFOLIO ───────────────────────────────── */
.portfolio { background: var(--bg3); border-top: 0.5px solid var(--border); padding: 7rem 7%; }
.portfolio-inner { max-width: var(--max-w); margin: 0 auto; }

.portfolio-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 2rem; }

.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
}

.port-item { position: relative; overflow: hidden; cursor: pointer; }
.port-item:first-child { grid-row: 1 / 3; }

.port-img {
  width: 100%; height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.port-item:first-child .port-img { min-height: 540px; }
.port-img-placeholder {
  width: 100%; height: 100%;
  min-height: 260px;
  background: #1e1a14;
  display: flex; align-items: center; justify-content: center;
}
.port-item:first-child .port-img-placeholder { min-height: 540px; }
.port-img-placeholder span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(200,169,110,.25); }

.port-item:hover .port-img { transform: scale(1.04); }

.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(12,11,9,.85) 0%,transparent 60%);
  opacity: 0;
  transition: opacity .35s;
  display: flex; align-items: flex-end;
  padding: 2rem;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-tag  { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.port-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--white); }

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials { padding: 7rem 7%; max-width: var(--max-w); margin: 0 auto; }

.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: var(--border); margin-top: 3.5rem; }

.testi-card { background: var(--bg); padding: 2.5rem; }
.testi-stars  { color: var(--gold); font-size: .85rem; letter-spacing: 2px; margin-bottom: 1.2rem; }
.testi-text   { font-family: var(--serif); font-size: 1.05rem; font-weight: 300; font-style: italic; color: var(--white-dim); line-height: 1.7; margin-bottom: 1.8rem; }
.testi-author { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--white-muted); }
.testi-author strong { display: block; color: var(--white); font-weight: 500; margin-bottom: 2px; }

/* ── BLOG ────────────────────────────────────── */
.blog { background: var(--bg2); border-top: 0.5px solid var(--border); padding: 7rem 7%; }
.blog-inner { max-width: var(--max-w); margin: 0 auto; }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: var(--border); margin-top: 3.5rem; }

.blog-card { background: var(--bg2); overflow: hidden; }
.blog-card:hover .blog-thumb { transform: scale(1.04); }

.blog-thumb-wrap { overflow: hidden; aspect-ratio: 16/9; }
.blog-thumb      { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-thumb-placeholder { width: 100%; aspect-ratio: 16/9; background: var(--bg3); display: flex; align-items: center; justify-content: center; }
.blog-thumb-placeholder span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(200,169,110,.25); }

.blog-body   { padding: 1.8rem 2rem 2rem; }
.blog-date   { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.blog-title  { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--white); margin-bottom: .8rem; line-height: 1.35; }
.blog-title a { transition: color .2s; }
.blog-title a:hover { color: var(--gold-light); }
.blog-excerpt { font-size: 13px; color: var(--white-muted); line-height: 1.75; margin-bottom: 1.2rem; }
.blog-link    { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.blog-link::after { content: '→'; transition: transform .2s; }
.blog-card:hover .blog-link::after { transform: translateX(4px); }

/* ── CTA ─────────────────────────────────────── */
.cta-section {
  background: var(--bg2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 7rem 7%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}
.cta-title { font-family: var(--serif); font-size: clamp(2rem,3.2vw,3.2rem); font-weight: 300; color: var(--white); line-height: 1.2; }
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub  { margin-top: 1rem; font-size: 13px; color: var(--white-muted); }
.cta-right { text-align: right; }
.cta-phone { font-family: var(--serif); font-size: 2rem; font-weight: 500; color: var(--gold); display: block; margin-bottom: .5rem; }
.cta-email { font-size: 12px; color: var(--white-muted); display: block; transition: color .2s; }
.cta-email:hover { color: var(--gold); }

/* ── FAQ ─────────────────────────────────────── */
.faq { padding: 7rem 7%; max-width: var(--max-w); margin: 0 auto; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3.5rem; }

.faq-item { border-bottom: 0.5px solid var(--border); }

.faq-q {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  padding: 1.5rem 0 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  user-select: none;
}
.faq-q-icon { color: var(--gold); font-size: 1.3rem; line-height: 1; flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }

.faq-a {
  font-size: 13px;
  color: var(--white-muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.5rem; }

/* ── CONTACT FORM ────────────────────────────── */
.contact { background: var(--bg2); border-top: 0.5px solid var(--border); padding: 7rem 7%; }
.contact-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }

.contact-info p { font-size: 14px; color: var(--white-dim); line-height: 1.85; margin-bottom: 2.5rem; }

.contact-detail { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-row { display: flex; align-items: flex-start; gap: 1rem; }
.contact-row-icon { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-row-text { font-size: 14px; color: var(--white-dim); line-height: 1.6; }
.contact-row-text strong { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(200,169,110,.06);
  border: 0.5px solid var(--border-strong);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  transition: border-color .2s;
  resize: vertical;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-muted); }
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }

.form-group textarea { min-height: 130px; }

.form-msg { margin-top: .5rem; font-size: 13px; }
.form-msg.success { color: #6fcf97; }
.form-msg.error   { color: #eb5757; }

/* ── FOOTER ──────────────────────────────────── */
.footer { background: var(--bg); border-top: 0.5px solid var(--border); padding: 5rem 7% 2.5rem; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 2.5rem;
}

.footer-desc { font-size: 13px; color: var(--white-muted); line-height: 1.8; margin-top: 1.2rem; max-width: 300px; }

.footer-social { display: flex; gap: 1.2rem; margin-top: 1.5rem; }
.footer-social a { font-size: 11px; letter-spacing: 1.5px; color: var(--white-muted); transition: color .2s; }
.footer-social a:hover { color: var(--gold); }

.footer-col-title { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1.2rem; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a,
.footer-links span { font-size: 13px; color: var(--white-muted); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy   { font-size: 11px; color: var(--white-muted); }
.footer-legal  { display: flex; gap: 2rem; }
.footer-legal a { font-size: 11px; color: var(--white-muted); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── FLOATING WA ─────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ── MOBILE MENU ─────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 999;
  background: var(--bg2);
  border-bottom: 0.5px solid var(--border);
  flex-direction: column;
  padding: 1.5rem 7%;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: .8rem 0;
  border-bottom: 0.5px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── FADE IN ANIMATION ───────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 6rem 7% 3rem; }
  .hero-right { height: 60vw; }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-badge-block { right: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-right { position: static; order: -1; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .port-item:first-child { grid-row: auto; }
  .port-item:first-child .port-img,
  .port-item:first-child .port-img-placeholder { min-height: 320px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .cta-section { grid-template-columns: 1fr; }
  .cta-right { text-align: left; }
  .contact-inner { grid-template-columns: 1fr; gap: 4rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none !important; }
  .nav-burger { display: flex; }

  .hero-right { height: 70vw; }
  .services-grid  { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .faq-grid       { grid-template-columns: 1fr; gap: 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; }
  .about-stats    { grid-template-columns: 1fr 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .trust-bar      { gap: 0; }
  section, .about, .process, .faq, .testimonials { padding: 5rem 5%; }
  .services, .portfolio, .blog, .contact { padding: 5rem 5%; }
}
