/* ═══════════════════════════════════════════════════════
   Anggrek Interior – Main 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;
}

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; }

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

.ai-nav__inner {
  max-width: 1400px;
  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;
  text-decoration: none;
}

.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;
  margin: 0;
  padding: 0;
}

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

.nav-links a:hover,
.nav-links .current-menu-item > a { color: var(--gold); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 22px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

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

.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white-dim);
  transition: all 0.25s;
}

/* ── 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;
}

.eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold-dark);
  display: block;
}

.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-wrap {
  position: absolute;
  inset: 0;
}

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

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

.photo-label {
  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;
}

.photo-label-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.photo-label-text {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  line-height: 1.5;
}

/* ── IMAGE PLACEHOLDER ──────────────────────────────── */
.img-placeholder {
  width: 100%; height: 100%;
  min-height: inherit;
  background: linear-gradient(135deg, #1e1b16 0%, #2a2520 50%, #131008 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.img-placeholder-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200,169,110,0.35);
  text-align: center;
  padding: 1rem;
}

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

.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--white-dim);
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-bottom: 1px solid var(--white-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.btn-outline:hover { color: var(--gold); border-color: var(--gold); }

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  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); }

.trust-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  font-weight: 500;
  white-space: nowrap;
}

/* ── SECTION COMMONS ────────────────────────────────── */
section {
  padding: 7rem 7%;
  max-width: 1400px;
  margin: 0 auto;
}

.about-section,
.services-section,
.process-section,
.portfolio-section,
.testimonials-section,
.faq-section,
.cta-section { max-width: 100%; }

.services-section,
.portfolio-section,
.faq-section { background: var(--bg2); border-top: 0.5px solid var(--border); }

.cta-section { background: var(--bg2); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }

.trust-bar { max-width: 100%; }

.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);
}

.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);
  max-width: 560px;
  line-height: 1.85;
}

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

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-image-wrap .img-placeholder {
  aspect-ratio: 4/5;
  min-height: unset;
}

.about-badge {
  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-section { padding: 7rem 7%; }

.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: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.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 0.4s ease;
}

.service-card:hover::after { width: 100%; }

.service-img {
  aspect-ratio: 4/3;
  margin-bottom: 2rem;
  min-height: unset;
}

.service-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--gold-dark);
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.service-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.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;
  text-decoration: none;
}

.service-link::after {
  content: '→';
  transition: transform 0.2s;
}

.service-card:hover .service-link::after { transform: translateX(4px); }

/* ── PROCESS ────────────────────────────────────────── */
.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 0.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: 0.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 {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.process-img.img-placeholder { min-height: unset; }

.process-quote {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,11,9,0.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);
  z-index: 1;
}

/* ── PORTFOLIO ──────────────────────────────────────── */
.portfolio-section { padding: 7rem 7%; }

.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: auto auto;
  gap: 1.5px;
  background: var(--border);
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item--featured {
  grid-row: 1 / 3;
}

.port-img {
  width: 100%; height: 100%;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  background-color: #1e1a14;
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item--featured .port-img { min-height: 540px; }

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

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,11,9,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.portfolio-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 ───────────────────────────────────── */
.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: 0.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;
}

/* ── CTA ────────────────────────────────────────────── */
.cta-section {
  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);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.cta-email {
  font-size: 12px;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}

.cta-email:hover { color: var(--gold); }

/* ── FAQ ────────────────────────────────────────────── */
.faq-section { padding: 7rem 7%; }

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

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

.faq-q {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.faq-q span {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-q span { transform: rotate(45deg); }

.faq-a {
  font-size: 13px;
  color: var(--white-muted);
  line-height: 1.8;
  display: none;
  padding-top: 0.5rem;
}

.faq-item.open .faq-a { display: block; }

/* ── FOOTER ─────────────────────────────────────────── */
.ai-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);
  text-decoration: none;
  transition: color 0.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: 0.6rem;
  padding: 0;
  margin: 0;
}

.footer-links a,
.footer-links span {
  font-size: 13px;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.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);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--gold); }

/* ── FLOATING WHATSAPP ──────────────────────────────── */
.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,0.35);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ── GENERIC PAGE ───────────────────────────────────── */
.page-content {
  padding: calc(var(--nav-h) + 5rem) 7% 7rem;
  max-width: 860px;
  margin: 0 auto;
}

.page-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.page-content h2, .page-content h3 {
  font-family: var(--serif);
  color: var(--white);
  margin: 2.5rem 0 1rem;
}

.page-content p {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* ── 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       { right: 0; bottom: -1rem; }
  .process-grid      { grid-template-columns: 1fr; }
  .process-right     { position: static; order: -1; }
  .portfolio-grid    { grid-template-columns: 1fr 1fr; }
  .portfolio-item--featured { grid-row: auto; }
  .footer-top        { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .cta-section       { grid-template-columns: 1fr; }
  .cta-right         { text-align: left; }
}

@media ( max-width: 768px ) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  .nav-links.open       { display: flex; flex-direction: column; }

  .nav-hamburger { display: flex; }

  /* Mobile nav dropdown */
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--bg2);
    flex-direction: column;
    gap: 0;
    border-bottom: 0.5px solid var(--border);
  }

  .nav-links li a {
    display: block;
    padding: 1rem 7%;
    border-bottom: 0.5px solid var(--border);
  }

  .services-grid    { grid-template-columns: 1fr; }
  .testi-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; }
  .trust-bar        { gap: 0; }
  .hero-right       { height: 70vw; }

  section { padding: 5rem 5%; }
  .services-section,
  .portfolio-section,
  .faq-section,
  .cta-section { padding: 5rem 5%; }
}
