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

:root{
  --cream:#F4EFE5;
  --cream-off:#EDE8DC;
  --ink:#191917;
  --ink-soft:#2B2B28;
  --gold:#A8854A;
  --gold-hi:#C4A06A;
  --muted:#6A6760;
  --muted-light:#9A9790;
  --font:'helvetica-neue',Helvetica,Arial,sans-serif;
  --border:rgba(25,25,23,0.1);
  --border-soft:rgba(25,25,23,0.06);
}

html{scroll-behavior:smooth;font-size:16px}
body{
  background:var(--cream);color:var(--ink);
  font-family:var(--font);font-weight:400;
  overflow-x:hidden;-webkit-font-smoothing:antialiased;
}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.6rem 4rem;
  background:rgba(244,239,229,0.94);
  backdrop-filter:blur(16px);
  border-bottom:0.5px solid var(--border);
}
.nav-logo{
  font-family:var(--font);font-size:.78rem;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;color:var(--ink);text-decoration:none;
}
.nav-logo span{color:var(--gold);font-weight:300}
.nav-links{display:flex;gap:2.8rem;align-items:center}
.nav-links a{
  font-family:var(--font);font-size:.65rem;font-weight:400;
  letter-spacing:.12em;text-transform:uppercase;color:var(--muted);
  text-decoration:none;transition:color .2s;
}
.nav-links a:hover{color:var(--ink)}
.nav-lang{
  font-family:var(--font);font-size:.6rem;font-weight:300;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--muted-light);text-decoration:none;
  border-left:.5px solid var(--border);padding-left:2rem;
  transition:color .2s;
}
.nav-lang:hover{color:var(--gold)}

/* ── HERO ── */
.hero{
  min-height:100svh;
  display:flex;
  align-items:flex-end;
  background:var(--cream);
}
.hero-left{
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:9rem 4rem 5rem;
  position:relative;
  max-width:780px;
}
.hero-right{display:none}
.hero-eyebrow{
  font-family:var(--font);font-size:.62rem;font-weight:300;
  letter-spacing:.24em;text-transform:uppercase;color:var(--gold);
  margin-bottom:1.8rem;
  display:flex;align-items:center;gap:1.2rem;
}
.hero-eyebrow::before{content:'';width:32px;height:.5px;background:var(--gold)}
.hero-h1{
  font-family:var(--font);
  font-size:clamp(3rem,5.5vw,5.5rem);
  font-weight:700;line-height:1;letter-spacing:-.02em;
  color:var(--ink);margin-bottom:2.2rem;
}
.hero-h1 em{font-style:normal;color:var(--gold);font-weight:300}
.hero-sub{
  font-family:var(--font);font-size:.95rem;font-weight:300;
  line-height:1.75;color:var(--muted);max-width:420px;margin-bottom:3.5rem;
}
.hero-actions{display:flex;gap:2rem;align-items:center}
.btn-ink{
  font-family:var(--font);font-size:.62rem;font-weight:500;
  letter-spacing:.14em;text-transform:uppercase;
  background:var(--ink);color:var(--cream);
  padding:.9rem 2.4rem;text-decoration:none;
  transition:background .25s;display:inline-block;
}
.btn-ink:hover{background:var(--gold)}
.btn-link{
  font-family:var(--font);font-size:.62rem;font-weight:400;
  letter-spacing:.14em;text-transform:uppercase;color:var(--ink);
  text-decoration:none;border-bottom:.5px solid var(--ink);
  padding-bottom:2px;transition:color .2s,border-color .2s;
}
.btn-link:hover{color:var(--gold);border-color:var(--gold)}
.hero-scroll{
  position:absolute;bottom:2.5rem;left:4rem;
  display:flex;align-items:center;gap:.8rem;
  font-size:.56rem;font-weight:300;letter-spacing:.2em;text-transform:uppercase;color:var(--muted);
}
.hero-scroll-bar{width:36px;height:.5px;background:var(--muted)}

/* hero right */
.hero-right{position:relative;overflow:hidden;background:var(--ink-soft)}
.hero-img{width:100%;height:100%;object-fit:cover;display:block}
.hero-img-placeholder{
  width:100%;height:100%;min-height:100svh;background:#232118;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font);font-size:.7rem;font-weight:300;
  color:rgba(244,239,229,.15);letter-spacing:.14em;
}

/* ── TICKER ── */
.ticker{
  background:var(--ink);padding:1rem 0;overflow:hidden;
  border-top:.5px solid rgba(244,239,229,.05);
}
.ticker-track{
  display:flex;white-space:nowrap;
  animation:tick 28s linear infinite;
}
.ticker-item{
  font-family:var(--font);font-size:.75rem;font-weight:300;
  letter-spacing:.14em;text-transform:uppercase;
  color:rgba(244,239,229,.7);padding:0 2.5rem;flex-shrink:0;
}
.ticker-sep{color:var(--gold)}
@keyframes tick{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ── SECTION BASE ── */
.sec{padding:8rem 4rem}
.sec-label{
  font-family:var(--font);font-size:.58rem;font-weight:400;
  letter-spacing:.22em;text-transform:uppercase;color:var(--gold);
  margin-bottom:1rem;display:flex;align-items:center;gap:1rem;
}
.sec-label::after{content:'';width:36px;height:.5px;background:var(--gold)}
.sec-h2{
  font-family:var(--font);
  font-size:clamp(2rem,3.8vw,3.6rem);
  font-weight:700;line-height:1.0;letter-spacing:-.02em;color:var(--ink);
}
.sec-h2 em{font-style:normal;color:var(--gold);font-weight:300}

/* ── PORTFOLIO ── */
.sec-portfolio{background:var(--cream-off)}
.port-header{
  display:flex;justify-content:space-between;align-items:flex-end;
  margin-bottom:3.5rem;
}
.port-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:3px;
}
.port-item{position:relative;overflow:hidden;cursor:pointer}
.port-item:nth-child(1){grid-column:1/7;aspect-ratio:4/3;background:#23201A}
.port-item:nth-child(2){grid-column:7/10;background:#1A1917}
.port-item:nth-child(3){grid-column:10/13;background:#252219}
.port-item:nth-child(4){grid-column:1/5;aspect-ratio:3/4;background:#1D1C1A}
.port-item:nth-child(5){grid-column:5/9;aspect-ratio:3/4;background:#21201E}
.port-item:nth-child(6){grid-column:9/13;background:#1E1B17}

.port-img-wrap{width:100%;height:100%;min-height:260px;overflow:hidden}
.port-img-wrap img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .7s cubic-bezier(.25,.46,.45,.94);
}
.port-item:hover .port-img-wrap img{transform:scale(1.04)}
.port-ph{
  width:100%;height:100%;min-height:260px;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font);font-size:.6rem;font-weight:300;
  color:rgba(244,239,229,.15);letter-spacing:.1em;text-transform:uppercase;
}
.port-hover{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(20,18,14,.8) 0%,transparent 55%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:1.4rem;opacity:0;transition:opacity .3s;
}
.port-item:hover .port-hover{opacity:1}
.port-hover-title{
  font-family:var(--font);font-size:.9rem;font-weight:500;
  color:var(--cream);margin-bottom:.3rem;letter-spacing:.01em;
}
.port-hover-tag{
  font-family:var(--font);font-size:.55rem;font-weight:300;letter-spacing:.16em;
  text-transform:uppercase;color:var(--gold-hi);
}
.port-num{
  position:absolute;top:.85rem;right:.85rem;
  font-family:var(--font);font-size:.55rem;font-weight:300;
  color:rgba(244,239,229,.25);letter-spacing:.1em;
}

/* ── SERVICES ── */
.sec-services{background:var(--cream)}
.svc-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  border:.5px solid var(--border);margin-top:4rem;
}
.svc-card{
  padding:3.5rem 3rem;border:.5px solid var(--border);
  position:relative;transition:background .3s;
}
.svc-card:hover{background:var(--cream-off)}
.svc-card:hover .svc-arrow{opacity:1;transform:translate(0,0)}
.svc-n{
  font-family:var(--font);font-size:4rem;font-weight:700;
  color:rgba(168,133,74,.12);line-height:1;margin-bottom:1.8rem;
  letter-spacing:-.03em;
}
.svc-name{
  font-family:var(--font);font-size:1.35rem;font-weight:700;
  color:var(--ink);margin-bottom:1.2rem;line-height:1.1;
  letter-spacing:-.01em;
}
.svc-name em{font-style:normal;color:var(--gold);font-weight:300}
.svc-desc{
  font-family:var(--font);font-size:.88rem;font-weight:300;
  line-height:1.75;color:var(--muted);
}
.svc-arrow{
  position:absolute;top:3rem;right:3rem;
  font-size:1rem;color:var(--gold);
  opacity:0;transform:translate(-5px,5px);transition:all .3s;
}

/* ── ABOUT ── */
.sec-about{background:var(--ink)}
.about-grid{
  display:grid;grid-template-columns:44% 1fr;gap:7rem;align-items:center;
}
.about-img-wrap{position:relative}
.about-img{
  aspect-ratio:3/4;background:#252219;
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
}
.about-img img{width:100%;height:100%;object-fit:cover;display:block}
.about-img-ph{
  font-family:var(--font);font-size:.7rem;font-weight:300;
  color:rgba(244,239,229,.2);letter-spacing:.12em;text-transform:uppercase;
}
.about-frame{
  position:absolute;top:-1.6rem;right:-1.6rem;
  width:55%;height:55%;
  border:.5px solid rgba(168,133,74,.3);
  pointer-events:none;
}
.about-caption{
  margin-top:1.4rem;
  font-family:var(--font);font-size:.7rem;font-weight:300;
  color:rgba(244,239,229,.5);letter-spacing:.1em;text-transform:uppercase;
}
.about-right .sec-label{color:var(--gold-hi)}
.about-right .sec-h2{color:var(--cream)}
.about-body{
  font-family:var(--font);font-size:.95rem;font-weight:300;
  line-height:1.8;color:#ffffff;
  margin-top:2rem;margin-bottom:3rem;
}
.about-body strong{font-weight:500;color:#ffffff}
.about-divider{height:.5px;background:rgba(244,239,229,.1);margin-bottom:2.5rem}
.about-facts{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem}
.fact-n{
  font-family:var(--font);font-size:2.4rem;font-weight:700;
  color:var(--gold);line-height:1;letter-spacing:-.02em;
}
.fact-l{
  font-family:var(--font);font-size:.6rem;font-weight:300;
  letter-spacing:.14em;text-transform:uppercase;
  color:rgba(244,239,229,.5);margin-top:.4rem;
}

/* ── CONTACT ── */
.sec-contact{background:var(--ink)}
.contact-inner{
  display:grid;grid-template-columns:1fr 1fr;gap:7rem;align-items:start;
}
.contact-left .sec-label{color:var(--gold)}
.contact-left .sec-h2{color:var(--cream)}
.contact-pitch{
  font-family:var(--font);font-size:.95rem;font-weight:300;
  line-height:1.75;color:#ffffff;margin-bottom:3.5rem;
  margin-top:1.5rem;
}
.contact-row{
  display:flex;align-items:baseline;gap:1.2rem;
  padding:1.1rem 0;border-bottom:.5px solid rgba(244,239,229,.12);
}
.contact-row-label{
  font-family:var(--font);font-size:.55rem;font-weight:300;letter-spacing:.2em;
  text-transform:uppercase;color:rgba(244,239,229,.45);
  width:80px;flex-shrink:0;
}
.contact-row-val{
  font-family:var(--font);font-size:.9rem;font-weight:400;
  color:#ffffff;
}
.btn-wa{
  margin-top:3rem;
  display:inline-flex;align-items:center;gap:.9rem;
  font-family:var(--font);font-size:.62rem;font-weight:500;
  letter-spacing:.14em;text-transform:uppercase;
  background:var(--gold);color:var(--cream);
  padding:1rem 2.4rem;text-decoration:none;
  transition:background .25s;
}
.btn-wa:hover{background:var(--gold-hi)}

/* contact form */
.form{display:flex;flex-direction:column}
.f-group{
  border-bottom:.5px solid rgba(244,239,229,.1);
  padding:1.1rem 0;
}
.f-group:first-child{border-top:.5px solid rgba(244,239,229,.1)}
.f-label{
  font-family:var(--font);font-size:.53rem;font-weight:300;letter-spacing:.2em;
  text-transform:uppercase;color:rgba(244,239,229,.4);
  display:block;margin-bottom:.4rem;
}
.f-input,.f-select,.f-textarea{
  width:100%;background:none;border:none;outline:none;
  font-family:var(--font);font-size:.95rem;font-weight:300;
  color:rgba(244,239,229,.85);caret-color:var(--gold);
  padding:.2rem 0;
}
.f-input::placeholder,.f-textarea::placeholder{color:rgba(244,239,229,.2)}
.f-select{appearance:none;cursor:pointer;color:rgba(244,239,229,.85)}
.f-select option{background:#1D1C1A;color:rgba(244,239,229,.85)}
.f-textarea{resize:none;min-height:72px}
.f-submit{
  margin-top:2.5rem;align-self:flex-start;
  font-family:var(--font);font-size:.62rem;font-weight:500;
  letter-spacing:.14em;text-transform:uppercase;
  background:transparent;color:var(--gold);
  border:.5px solid var(--gold);
  padding:.9rem 2.4rem;cursor:pointer;
  transition:background .25s,color .25s;
}
.f-submit:hover{background:var(--gold);color:var(--cream)}

/* ── FOOTER ── */
footer{
  background:var(--ink);
  padding:2rem 4rem;
  border-top:.5px solid rgba(244,239,229,.07);
  display:flex;justify-content:space-between;align-items:center;
}
.foot-logo{
  font-family:var(--font);font-size:.72rem;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;
  color:rgba(244,239,229,.35);text-decoration:none;
}
.foot-logo span{color:var(--gold);font-weight:300}
.foot-copy{
  font-family:var(--font);font-size:.55rem;font-weight:300;letter-spacing:.1em;
  color:rgba(244,239,229,.25);
}
.foot-credit{
  color:var(--gold);text-decoration:none;transition:color .2s;
}
.foot-credit:hover{color:var(--gold-hi)}
.foot-links{display:flex;gap:1.8rem}
.foot-links a{
  font-family:var(--font);font-size:.55rem;font-weight:300;letter-spacing:.14em;
  text-transform:uppercase;color:rgba(244,239,229,.3);
  text-decoration:none;transition:color .2s;
}
.foot-links a:hover{color:var(--gold)}

/* ── RESPONSIVE 1024px (tablet) ── */
@media (max-width:1024px){
  nav{padding:1.4rem 2.5rem}
  .nav-links{gap:2rem}
  .hero-left{padding:8rem 2.5rem 4rem}
  .hero-h1{font-size:clamp(2.8rem,5vw,4rem)}
  .sec{padding:6rem 2.5rem}
  .about-grid{grid-template-columns:1fr 1fr;gap:4rem}
  .contact-inner{gap:4rem}
  footer{padding:2rem 2.5rem}
}

/* ── RESPONSIVE 768px (mobile) ── */
@media (max-width:768px){
  nav{padding:1.2rem 1.5rem}
  .nav-links{gap:1.5rem}
  .nav-links a{font-size:.6rem}
  .nav-lang{padding-left:1.2rem}

  .hero-left{padding:7rem 1.5rem 3.5rem;max-width:100%}
  .hero-h1{font-size:clamp(2.4rem,8vw,3.2rem)}
  .hero-sub{font-size:.88rem;max-width:100%}
  .hero-actions{flex-direction:column;align-items:flex-start;gap:1.2rem}
  .hero-scroll{left:1.5rem}

  .ticker{padding:.75rem 0}
  .ticker-item{font-size:.68rem;padding:0 1.5rem}

  .sec{padding:5rem 1.5rem}
  .sec-h2{font-size:clamp(1.8rem,6vw,2.6rem)}

  .port-grid{grid-template-columns:1fr 1fr;gap:2px}
  .port-item:nth-child(1){grid-column:1/3;aspect-ratio:3/2}
  .port-item:nth-child(2){grid-column:1/2;aspect-ratio:1/1}
  .port-item:nth-child(3){grid-column:2/3;aspect-ratio:1/1}
  .port-item:nth-child(4){grid-column:1/2;aspect-ratio:1/1}
  .port-item:nth-child(5){grid-column:2/3;aspect-ratio:1/1}
  .port-item:nth-child(6){grid-column:1/3;aspect-ratio:3/2}
  .port-img{min-height:0}
  .port-ph{min-height:0}

  .svc-grid{grid-template-columns:1fr}
  .svc-card{padding:2.5rem 1.5rem}
  .svc-arrow{opacity:1;transform:translate(0,0)}

  .about-grid{grid-template-columns:1fr;gap:3rem}
  .about-img-wrap{max-width:320px;margin:0 auto}
  .about-frame{display:none}
  .about-facts{grid-template-columns:1fr 1fr;gap:1.5rem}

  .contact-inner{grid-template-columns:1fr;gap:3.5rem}

  footer{
    flex-direction:column;gap:1.2rem;text-align:center;
    padding:2rem 1.5rem;
  }
  .foot-links{justify-content:center}
}
