:root{
  --navy: #132238;
  --cream: #F4F1EA;
  --charcoal: #222222;
  --stone: #B8B2A8;
  --brass: #AF9165;

  --font-display: 'Fraunces', serif;
  --font-display1: 'Lora', serif;
  --font-display2: 'DM Serif Display', serif;
  --font-display3: 'Outfit', serif;

  --font-body: 'Inter', sans-serif;
  --font-body1: 'Nunito', sans-serif;
  --font-body2: 'DM Sans', sans-serif;
  --font-body3: 'Plus Jakarta Sans', sans-serif;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--cream);
  color:var(--charcoal);
  font-family:var(--font-body1);
  line-height:1.5;
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

/* Mencegah drag, select (blok biru), dan klik-kanan "simpan/buka gambar" pada logo & ikon */
.logo img,
.footer-logo,
.footer-social svg{
  -webkit-user-select:none;
  user-select:none;
  -webkit-touch-callout:none;
  pointer-events:none;
}

.container{ max-width:1340px; margin:0 auto; padding:0 20px; }

/* Reusable eyebrow label */
.eyebrow{
  display:inline-block; font-size:0.78rem; font-weight:600;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--brass);
}
.eyebrow-light{ color:var(--stone); }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-size:0.85rem; font-weight:600; letter-spacing:0.03em;
  padding:14px 26px; border-radius:2px;
  transition:background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-primary{ background:var(--navy); color:var(--cream); border:1px solid var(--navy); font-family:var(--font-body1); }
.btn-primary:hover{ background:var(--brass); }
.btn-ghost{ border:1px solid var(--charcoal); color:var(--charcoal); }
.btn-ghost:hover{ border-color:var(--brass); color:var(--brass); }

/* Frame corner marks — signature motif for photo placeholders */
.frame-mark{
  position:absolute; width:22px; height:22px; border-color:var(--brass); border-style:solid;
}
.tl{ top:16px; left:16px; border-width:1.5px 0 0 1.5px; }
.br{ bottom:16px; right:16px; border-width:0 1.5px 1.5px 0; }

/* ============ HEADER ============ */
header{
  position:sticky; top:0; z-index:20;
  background:rgba(244,241,234,0.92);
  backdrop-filter:blur(8px);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 40px; position:relative;
}
.logo img{ height:40px; width:auto; }

.nav-links{ display:flex; align-items:center; gap:40px; }
.nav-extra{ display:flex; align-items:center; gap:20px; margin-left:8px; }
.nav-links a{
  font-size:0.82rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--charcoal); position:relative; padding-bottom:4px;
  opacity:1; transition:color 0.25s ease, opacity 0.25s ease;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:1.5px;
  background:var(--brass); transition:width 0.25s ease;
}
.nav-links:hover a{ opacity:0.45; }
.nav-links a:hover{ opacity:1; color:var(--brass); }
.nav-links a:hover::after{ width:100%; }
.nav-links a.active{ color:var(--brass); opacity:1; }
.nav-links a.active::after{ width:100%; }

.nav-cta{ padding:12px 22px; }

.lang-switch{
  display:flex; align-items:center; border:1px solid var(--stone);
  border-radius:2px; overflow:hidden;
}
.lang-btn{
  font-family:var(--font-body1); font-size:0.78rem; font-weight:600;
  letter-spacing:0.04em; color:var(--charcoal); background:transparent;
  border:none; cursor:pointer; padding:9px 14px;
  transition:background 0.2s ease, color 0.2s ease;
}
.lang-btn + .lang-btn{ border-left:1px solid var(--stone); }
.lang-btn:hover{ color:var(--brass); }
.lang-btn.active{ background:var(--navy); color:var(--cream); }
.lang-btn.active:hover{ color:var(--cream); }

.nav-toggle{
  display:none; background:none; border:none; cursor:pointer;
  width:36px; height:36px; padding:0;
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.nav-toggle span{
  display:block; width:22px; height:1.5px; background:var(--navy);
  transition:transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero{ padding-top:30px; position:relative; }
.hero-top{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:40px; padding-bottom:56px;
}
.hero-copy h1{
  font-family:var(--font-display1); font-weight:500;
  font-size:clamp(2.6rem, 6vw, 4.8rem); line-height:1.02;
  letter-spacing:-0.01em; color:var(--navy);
}
.hero-sub{
  margin-top:22px; max-width:380px; color:var(--charcoal); font-size:1.02rem;
}
.scroll-cue{
  display:flex; flex-direction:column; align-items:center; gap:14px;
  font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--stone);
  writing-mode:vertical-rl;
}
.scroll-line{ width:1.5px; height:60px; background:var(--stone); }

.hero-image-wrap{ padding-bottom:180px; }
.hero-image{
    position: relative;
    aspect-ratio: 18 / 10;
    max-height: max-content;
    background: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    overflow: hidden;
    margin-top: -160px;
    margin-bottom: 60px;
}

/* ============ PROJECTS ============ */
.projects{
  background:var(--navy); color:var(--cream);
  padding:120px 0 100px; margin-top:-90px; position:relative; z-index:1;
}
.section-head{
  display:flex; justify-content:space-between; align-items:center; margin-bottom:48px;
}
.view-all{
  font-size:0.85rem; font-weight:600; color:var(--cream);
  border-bottom:1px solid transparent; transition:border-color 0.25s ease, color 0.25s ease;
}
.view-all:hover{ color:var(--brass); border-color:var(--brass); }
 
.project-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:28px; }
.project-visual{
  position:relative; aspect-ratio:4/3; border-radius:2px; overflow:hidden;
  background:linear-gradient(160deg, rgba(244,241,234,0.14), rgba(244,241,234,0.04));
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  border:1px solid rgba(244,241,234,0.16);
}
.project-info{ display:flex; gap:16px; margin-top:20px; align-items:baseline; }
.project-num{ font-family:var(--font-display1); font-size:1rem; color:var(--brass); }
.project-info h3{ font-family:var(--font-display1); font-weight:500; font-size:1.25rem; margin-bottom:4px; }
.project-info p{ color:var(--stone); font-size:0.9rem; }

/* ============ STUDIO ============ */
.studio{ padding:120px 0; }
.studio-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center;
}
.studio-text h2{
  font-family:var(--font-display1); font-weight:500;
  font-size:clamp(1.8rem, 3.4vw, 2.6rem); color:var(--navy);
  line-height:1.2; margin-bottom:24px;
}
.studio-body{ color:var(--charcoal); max-width:440px; margin-bottom:32px; }
.studio-image{
  position:relative; aspect-ratio:3/4; min-height:320px; border-radius:2px; overflow:hidden;
  background:linear-gradient(200deg, var(--stone), var(--cream) 70%);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  border:1px solid rgba(28,47,99,0.1);
}
.studio-image .frame-mark{ border-color:var(--navy); }

/* ============ SERVICES ============ */
.services{ padding:0 0 120px; }
.services-title{
  font-family:var(--font-display1); font-weight:500;
  font-size:clamp(1.8rem, 3.4vw, 2.6rem); color:var(--navy); margin-bottom:56px;
}
.services-list{ border-top:1px solid rgba(184,178,168,0.5); }
.service-row{
  display:grid; grid-template-columns:60px 260px 1fr;
  align-items:baseline; gap:24px;
  padding:30px 0; border-bottom:1px solid rgba(184,178,168,0.5);
  transition:padding-left 0.25s ease;
}
.service-row:hover{ padding-left:12px; }
.service-num{ font-family:var(--font-display1); color:var(--brass); font-size:1rem; }
.service-row h3{ font-family:var(--font-display1); font-weight:500; font-size:1.3rem; color:var(--navy); }
.service-row p{ color:var(--charcoal); font-size:0.95rem; max-width:420px; }

/* ============ CONTACT ============ */
.contact{ background:var(--navy); color:var(--cream); padding:50px 0; }
.contact-grid{
  display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:48px;
}
.contact h2{
  font-family:var(--font-display1); font-weight:500;
  font-size:clamp(2rem, 5vw, 3.4rem); max-width:600px; line-height:1.08;
}
.contact-links{ display:flex; flex-direction:column; gap:22px; }
.contact-links a{ display:flex; flex-direction:column; gap:4px; }
.contact-label{
  font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--stone);
}
.contact-value{
  font-family:var(--font-display1); font-size:1.15rem; color:var(--cream);
  border-bottom:1px solid transparent; transition:color 0.25s ease, border-color 0.25s ease;
  width:fit-content;
}
.contact-links a:hover .contact-value{ color:var(--brass); border-color:var(--brass); }

/* ============ FOOTER ============ */
footer{ background:var(--navy); color:var(--cream); padding:13px 0; }
.footer-inner{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap;
  gap:20px; padding-bottom:8px;
}
.footer-logo{ height:26px; filter:brightness(0) invert(1); opacity:0.9; }
.footer-principal{ display:flex; flex-direction:column; gap:4px; }
.footer-label{ font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--stone); }
.footer-name{ font-family:var(--font-display1); font-size:1.05rem; }
.footer-social{ display:flex; gap:18px; align-items:center; }
.footer-social a{
  display:flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:50%;
  border:1px solid rgba(244,241,234,0.3); color:var(--cream);
  transition:color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.footer-social a:hover{ color:var(--brass); border-color:var(--brass); background:rgba(175,145,101,0.1); }
.footer-social svg{
  width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.4;
}
.footer-bottom{
  padding:0; font-size:0.78rem; color:var(--stone);
  display: contents;
}

/* ============ RESPONSIVE ============ */
@media (max-width:900px){
  .studio-grid{ grid-template-columns:1fr; }
  .studio-image{ order:-1; aspect-ratio:4/3; min-height:auto; }
  .project-grid{ grid-template-columns:1fr; }
  .service-row{ grid-template-columns:40px 1fr; }
  .service-row p{ grid-column:2; }
  .logo img { height:30px; }
}

@media (max-width:760px){
  .footer-inner {display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: space-between;}
  .container{ padding:0 20px; }
  .nav-inner{ padding:16px 24px; }
  .nav-toggle{ display:flex; }
  .nav-links{
    display:none; position:absolute; top:calc(100% + 1px); left:0; right:0;
    flex-direction:column; align-items:stretch; gap:0; background:var(--cream);
    border-bottom:1px solid rgba(184,178,168,0.4);
    max-height:calc(100vh - 64px); overflow-y:auto;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{
    padding:16px 24px; border-bottom:1px solid rgba(184,178,168,0.3);
  }
  .nav-links a::after{ display:none; }
  .nav-links a.active{
    background:rgba(175,145,101,0.08);
    border-left:2px solid var(--brass); padding-left:22px;
  }
  .nav-links:hover a{ opacity:1; }

  .nav-extra{
    flex-direction:column; align-items:stretch; gap:16px;
    margin-left:0; padding:20px 24px 24px;
  }
  .lang-switch{ align-self:center; }
  .nav-cta{ display:flex; justify-content:center; width:100%; }
  .hero {padding-top:20px; }
  .hero-top{ flex-direction:column; align-items:flex-start; gap:32px; }
  .scroll-cue{ writing-mode:horizontal-tb; flex-direction:row; padding-bottom: 16px;}
  .scroll-line{ width:40px; height:1.5px; }
  .hero-image { margin-top:-45px; margin-bottom: 55px; }
  .hero-image-wrap{ padding-bottom:90px; }
  .logo img { height:30px; }
  .projects{ margin-top:-56px; padding:50px 0; }
  .studio{ padding:50px 0; }
  .contact-grid{ align-items:flex-start; }
  .services { padding:0 0 60px; }
  .services-title { margin-bottom:30px; }
  .footer-bottom { font-size:0.62rem; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
}

:focus-visible{ outline:2px solid var(--brass); outline-offset:3px; }

/* ============ OVERLAY MODALS (shared) ============ */
.overlay-modal{
  position:fixed; inset:0; z-index:100;
  background:var(--cream);
  visibility:hidden; opacity:0;
  transform:translateY(16px);
  transition:opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
  overflow-y:auto;
}
.overlay-modal.open{
  visibility:visible; opacity:1; transform:translateY(0);
  transition:opacity 0.35s ease, transform 0.35s ease;
}
body.modal-open{ overflow:hidden; }

.modal-header{
  position:sticky; top:0; z-index:2;
  background:rgba(244,241,234,0.95); backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(184,178,168,0.4);
}
.modal-header-inner{
  display:flex; align-items:center; justify-content:space-between; padding:22px 40px;
}
.modal-title{
  font-family:var(--font-display1); font-weight:500; font-size:1.4rem; color:var(--navy);
}
.modal-close{
  width:40px; height:40px; border-radius:50%; border:1px solid var(--stone);
  background:none; cursor:pointer; display:flex; align-items:center; justify-content:center;
  color:var(--charcoal); transition:color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.modal-close svg{ width:18px; height:18px; stroke:currentColor; stroke-width:1.6; fill:none; }
.modal-close:hover{ color:var(--brass); border-color:var(--brass); transform:rotate(90deg); }

.modal-body{ padding:56px 0 100px; }

/* ---- Projects modal specifics ---- */
.modal-tabs{ display:flex; gap:12px; margin-bottom:48px; }
.tab-btn{
  font-family:var(--font-body1); font-size:0.82rem; font-weight:600; letter-spacing:0.04em;
  padding:10px 20px; border-radius:20px; border:1px solid var(--stone);
  background:none; color:var(--charcoal); cursor:pointer;
  transition:background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.tab-btn:hover{ border-color:var(--brass); color:var(--brass); }
.tab-btn.active{ background:var(--navy); border-color:var(--navy); color:var(--cream); }

.modal-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:32px 28px; }
.modal-grid .project-card{ transition:opacity 0.25s ease; }
.modal-grid .project-card.hide{ display:none; }
.modal-grid .project-visual{
  background-color:rgba(28,47,99,0.08);
  border:1px solid rgba(28,47,99,0.12);
}
.modal-grid .project-visual .frame-mark{ border-color:var(--navy); }
.modal-grid .project-info h3{ color:var(--navy); }
.modal-grid .project-info p{ color:var(--charcoal); opacity:0.7; }
.modal-grid .project-num{ color:var(--brass); }

.status-tag{
  position:absolute; top:16px; right:16px;
  font-size:0.68rem; font-weight:600; letter-spacing:0.06em; text-transform:uppercase;
  padding:6px 12px; border-radius:20px;
}
.status-completed{ background:rgba(19,34,56,0.92); color:var(--cream); }
.status-ongoing{ background:var(--brass); color:var(--cream); }

/* ---- Let's Talk modal specifics ---- */
.talk-body{ max-width:640px; }
.talk-intro{ color:var(--charcoal); font-size:1.05rem; max-width:480px; margin-bottom:40px; }
.talk-form .field{ margin-bottom:26px; }
.talk-form label{
  display:block; font-size:0.78rem; font-weight:600; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--stone); margin-bottom:10px;
}
.talk-form input, .talk-form textarea{
  width:100%; border:none; border-bottom:1px solid var(--stone);
  background:transparent; font-family:var(--font-body1); font-size:1.05rem;
  color:var(--charcoal); padding:8px 0; resize:vertical;
  transition:border-color 0.25s ease;
}
.talk-form input:focus, .talk-form textarea:focus{
  outline:none; border-color:var(--brass);
}
.talk-channels{ margin-top:40px; }
.talk-channels-label{
  display:block; font-size:0.78rem; font-weight:600; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--stone); margin-bottom:16px;
}
.talk-channel-buttons{ display:flex; gap:16px; flex-wrap:wrap; }
.channel-btn{
  display:flex; align-items:center; gap:10px;
  padding:14px 26px; border-radius:2px; border:1px solid var(--navy);
  background:var(--navy); color:var(--cream); cursor:pointer;
  font-family:var(--font-body1); font-size:0.9rem; font-weight:600;
  transition:background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.15s ease;
}
.channel-btn svg{ width:19px; height:19px; stroke:currentColor; fill:none; stroke-width:1.5; }
.channel-btn:hover{ background:var(--brass); border-color:var(--brass); }
.channel-btn:active{ transform:scale(0.97); }
.channel-email{ background:transparent; color:var(--navy); }
.channel-email:hover{ background:var(--brass); color:var(--cream); border-color:var(--brass); }

/* ---- Our Story modal specifics ---- */
.story-body{ max-width:820px; }
.story-intro{ margin-bottom:56px; }
.story-intro p{
  color:var(--charcoal); font-size:1.05rem; max-width:640px; margin-bottom:20px;
}
.story-milestones{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:24px;
  padding:36px 0; border-top:1px solid rgba(184,178,168,0.5);
  border-bottom:1px solid rgba(184,178,168,0.5); margin-bottom:56px;
}
.milestone-item{ display:flex; flex-direction:column; gap:8px; }
.milestone-year{ font-family:var(--font-display1); font-size:1.6rem; color:var(--brass); }
.milestone-label{ font-size:0.88rem; color:var(--charcoal); }

.values-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:32px; margin-top:24px; }
.value-item{ display:flex; flex-direction:column; gap:10px; }
.value-num{ font-family:var(--font-display1); color:var(--brass); font-size:1rem; }
.value-item h3{ font-family:var(--font-display1); font-weight:500; font-size:1.15rem; color:var(--navy); }
.value-item p{ color:var(--charcoal); font-size:0.92rem; }

@media (max-width:900px){
  .modal-grid{ grid-template-columns:repeat(2, 1fr); }
  .story-milestones{ grid-template-columns:repeat(2, 1fr); }
  .values-grid{ grid-template-columns:1fr; }
}
@media (max-width:600px){
  .modal-header-inner{ padding:18px 24px; }
  .modal-body{ padding:40px 0 70px; }
  .modal-grid{ grid-template-columns:1fr; }
  .modal-tabs{ flex-wrap:wrap; }
  .talk-channel-buttons{ flex-direction:column; }
  .channel-btn{ justify-content:center; }
}
