:root{
  --bg:#090909;
  --bg-2:#111111;
  --panel:rgba(255,255,255,0.05);
  --panel-border:rgba(255,255,255,0.10);
  --text:#f4efe7;
  --muted:#b7aea1;
  --gold:#c8a66a;
  --gold-soft:#9d7a3f;
  --line:rgba(255,255,255,0.07);
  --shadow:0 30px 80px rgba(0,0,0,0.45);
  --container:1280px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Jost',sans-serif;
  font-size:1.04rem;
  line-height:1.72;
  background:linear-gradient(180deg,#080808 0%,#0d0d0d 100%);
  color:var(--text);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.bg-orb{
  position:fixed;
  border-radius:50%;
  filter:blur(80px);
  z-index:-3;
  opacity:.25;
}
.orb-1{
  width:420px;
  height:420px;
  background:#8e6d3a;
  top:-80px;
  left:-120px;
}
.orb-2{
  width:380px;
  height:380px;
  background:#6a5731;
  right:-100px;
  top:240px;
}

.noise{
  position:fixed;
  inset:0;
  z-index:-2;
  opacity:.07;
  background-image:linear-gradient(transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
  background-size:100% 3px;
  pointer-events:none;
}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(14px);
  background:rgba(9,9,9,.68);
  border-bottom:1px solid var(--line);
}
.header-inner{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  position:relative;
}
.logo{
  font-weight:800;
  letter-spacing:.08em;
  font-size:.98rem;
  white-space:nowrap;
  position:relative;
  z-index:1002;
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}
.logo span{
  color:var(--gold);
}
.logo-image{
  display:block;
  height:92px;
  width:auto;
  max-width:none;
}

.main-nav{
  display:flex;
  gap:30px;
}
.main-nav a{
  color:var(--muted);
  transition:.25s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"]{
  color:var(--text);
}

.menu-toggle{
  display:none;
  width:52px;
  height:52px;
  padding:0;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  position:relative;
  z-index:1002;
}
.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background:var(--text);
  transition:transform .25s ease, opacity .25s ease;
}
.menu-toggle.is-active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2){
  opacity:0;
}
.menu-toggle.is-active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:999px;
  transition:.25s ease;
  border:1px solid transparent;
  font-weight:600;
}
.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold-soft));
  color:#111;
  box-shadow:0 14px 34px rgba(200,166,106,.25);
}
.btn-primary:hover{
  transform:translateY(-2px);
}
.btn-outline{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.12);
}
.btn-outline:hover,
.btn-ghost:hover{
  background:rgba(255,255,255,.06);
}
.btn-ghost{
  border-color:rgba(255,255,255,.12);
  background:transparent;
  color:var(--text);
}

.hero{
  padding:72px 0 60px;
}
.hero-grid{
  display:grid;
  grid-template-columns:520px minmax(0, 1fr);
  gap:56px;
  align-items:start;
}

.hero-art{
  position:relative;
  width:620px;
  margin-left:-120px;
  margin-top:-34px;
  filter:drop-shadow(0 34px 80px rgba(0,0,0,.58));
  transform:translate3d(0,0,0);
  will-change:transform;
}
.hero-art img{
  width:100%;
  height:auto;
  display:block;
}

.hero-copy{
  max-width:620px;
  padding-top:8px;
}
.eyebrow,
.section-label{
  display:inline-block;
  margin:0 0 18px;
  color:var(--gold);
  text-transform:uppercase;
  font-size:.85rem;
  letter-spacing:.18em;
}
.hero-title{
  margin:0;
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.9rem,3vw,2.9rem);
  line-height:.98;
  font-weight:400;
  letter-spacing:-.02em;
}
.hero-title span{
  display:block;
}
.hero-title .line-1{margin-left:104px}
.hero-title .line-2{margin-left:86px}
.hero-title .line-3{margin-left:62px}
.hero-title .line-4{margin-left:40px}
.hero-title .line-5{margin-left:24px}

.hero-text{
  max-width:540px;
  margin:28px 0 0;
  color:var(--muted);
  font-size:1.12rem;
  line-height:1.78;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.page-hero{
  padding:90px 0 36px;
}
.page-hero-inner{
  max-width:980px;
}
.page-title{
  margin:0;
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.9rem,3vw,2.9rem);
  line-height:.98;
  font-weight:400;
  letter-spacing:-.02em;
}
.page-intro{
  max-width:760px;
  margin:24px 0 0;
  color:var(--muted);
  font-size:1.12rem;
  line-height:1.78;
}

.anchor-nav{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}
.anchor-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:var(--text);
  transition:.25s ease;
}
.anchor-nav a:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(200,166,106,.45);
  color:var(--gold);
}

.signature{
  padding:18px 0 50px;
}
.signature-inner{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:18px 0;
}
.signature-inner p{
  margin:0;
  text-align:center;
  color:var(--muted);
  font-style:italic;
  font-size:1.06rem;
}

.statement,
.services,
.gallery,
.cta,
.services-overview,
.process-section,
.pricing-section,
.extra-info,
.contact-section{
  padding:100px 0;
}
.statement-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:start;
}
.statement-right{
  padding-top:28px;
}
.statement h2,
.section-head h2,
.cta-box h2,
.info-card h2{
  margin:0;
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.78rem,2.55vw,2.45rem);
  line-height:1.1;
  font-weight:400;
  letter-spacing:-.02em;
}
.statement-right p,
.section-head p,
.cta-box p{
  color:var(--muted);
  font-size:1.12rem;
  line-height:1.82;
}
.section-head{
  max-width:900px;
  margin-bottom:34px;
}

.section-return{
  margin-top:28px;
  display:flex;
  justify-content:flex-end;
}

.back-to-top-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:var(--text);
  transition:.25s ease;
}
.back-to-top-link:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(200,166,106,.45);
  color:var(--gold);
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.service-card{
  min-height:240px;
  padding:28px;
  border:1px solid var(--panel-border);
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  border-radius:26px;
}
.service-number{
  display:inline-block;
  margin-bottom:20px;
  color:var(--gold);
  font-weight:700;
  letter-spacing:.12em;
}
.service-card h3,
.process-card h3,
.contact-info-card h3{
  margin:0 0 10px;
  font-size:1.25rem;
}
.service-card p{
  margin:0;
  color:var(--muted);
  font-size:1.06rem;
  line-height:1.78;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.process-card{
  min-height:100%;
  padding:28px;
  border:1px solid var(--panel-border);
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  border-radius:26px;
}
.process-card p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:1.06rem;
  line-height:1.8;
}
.process-card p:last-child{
  margin-bottom:0;
}

.pricing-table-wrap{
  margin-top:26px;
}
.pricing-table{
  border:1px solid var(--panel-border);
  border-radius:30px;
  overflow:hidden;
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  box-shadow:var(--shadow);
}
.pricing-grid{
  display:grid;
  grid-template-columns:1.15fr 1.1fr 1.5fr .75fr;
  gap:24px;
}
.pricing-head{
  padding:22px 28px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--gold);
  font-size:.9rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.pricing-row{
  padding:28px;
  border-bottom:1px solid rgba(255,255,255,.08);
  align-items:start;
}
.pricing-row:last-child{
  border-bottom:0;
}
.pricing-row.featured{
  background:linear-gradient(90deg,rgba(200,166,106,.10),rgba(255,255,255,.02));
}
.pricing-name h3{
  margin:0 0 6px;
  font-size:1.2rem;
}
.pricing-name p{
  margin:0;
  color:var(--gold);
  font-size:.98rem;
}
.pricing-audience,
.pricing-content{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.78;
}
.pricing-price{
  font-size:1.15rem;
  font-weight:700;
  color:var(--text);
  white-space:nowrap;
}

.extra-info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.info-card{
  padding:30px;
  border:1px solid var(--panel-border);
  border-radius:28px;
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
}
.info-card h2{
  margin-bottom:14px;
}
.info-card p{
  color:var(--muted);
  font-size:1.12rem;
  line-height:1.82;
}
.info-card p:last-child{
  margin:0;
}
.info-card .section-label{
  color:var(--gold);
}

.legal-content h2{
  margin:34px 0 16px;
}
.legal-content h2:first-of-type{
  margin-top:0;
}
.legal-content p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.86;
}
.legal-content p.section-label{
  color:var(--gold);
  margin-bottom:22px;
}
.legal-content p:last-child{
  margin-bottom:0;
}

.gallery-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr .75fr;
  gap:18px;
}
.gallery-item{
  border:1px solid var(--panel-border);
  background:rgba(255,255,255,.03);
  border-radius:26px;
  overflow:hidden;
}
.gallery-item.large{
  grid-row:span 2;
}
.gallery-visual{
  min-height:260px;
}
.large .gallery-visual{
  min-height:560px;
}
.visual-1{
  background:
    radial-gradient(circle at 25% 18%, rgba(200,166,106,.28), transparent 30%),
    linear-gradient(135deg,#141311,#090909);
}
.visual-2{
  background:
    radial-gradient(circle at 70% 25%, rgba(255,255,255,.08), transparent 25%),
    linear-gradient(135deg,#1a1815,#0e0d0b);
}
.visual-3{
  background:
    radial-gradient(circle at 50% 50%, rgba(200,166,106,.20), transparent 30%),
    linear-gradient(135deg,#161514,#0b0b0b);
}
.gallery-copy{
  padding:22px;
}
.gallery-copy p{
  margin:0 0 8px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.82rem;
}
.gallery-copy h3{
  margin:0;
  font-size:1.2rem;
}

.contact-layout{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:32px;
  align-items:start;
}
.contact-copy,
.contact-form-wrap,
.contact-info-card{
  border:1px solid var(--panel-border);
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  border-radius:26px;
}
.contact-copy{
  padding:30px;
}
.contact-copy .section-head{
  margin-bottom:0;
}
.contact-info-card{
  margin-top:22px;
  padding:24px;
}
.contact-points{
  margin:0;
  padding-left:20px;
  color:var(--muted);
}
.contact-points li{
  margin:0 0 10px;
}
.contact-points li:last-child{
  margin-bottom:0;
}

.contact-form-wrap{
  padding:30px;
}
.form-status{
  margin-bottom:18px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--text);
}
.form-status.is-success{
  border-color:rgba(200,166,106,.35);
  background:rgba(200,166,106,.08);
}
.form-status.is-error{
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
}

.contact-form{
  display:block;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.form-field{
  margin-bottom:16px;
}
.form-field label{
  display:block;
  margin:0 0 8px;
  color:var(--text);
  font-weight:500;
}
.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:rgba(255,255,255,.03);
  color:var(--text);
  font:inherit;
  padding:14px 16px;
  outline:none;
  transition:border-color .25s ease, background-color .25s ease, color .25s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder{
  color:var(--muted);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  border-color:rgba(200,166,106,.55);
  background:rgba(255,255,255,.05);
}

.form-field select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  cursor:pointer;
  padding-right:52px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23c8a66a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  background-size:18px;
}
.form-field select option{
  background:#111111;
  color:#f4efe7;
}
.form-field select option[value=""]{
  color:#b7aea1;
}

.form-field textarea{
  min-height:180px;
  resize:vertical;
}
.form-actions{
  margin-top:8px;
}

.hp-field{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.cta-box{
  max-width:980px;
  margin:0 auto;
  padding:42px;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03)),
    radial-gradient(circle at top center, rgba(200,166,106,.14), transparent 40%);
  text-align:center;
}

.site-footer{
  padding:32px 0 52px;
  border-top:1px solid var(--line);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:24px;
}
.footer-inner--three{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:40px;
  align-items:start;
}
.footer-column{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-column-left{
  justify-self:start;
  text-align:left;
}
.footer-column-center{
  justify-self:center;
  text-align:center;
}
.footer-column-right{
  justify-self:end;
  text-align:right;
}
.footer-title{
  margin:0 0 6px;
  font-family:'DM Serif Display',serif;
  font-size:1.3rem;
  font-weight:400;
  line-height:1.1;
  color:var(--text);
}
.footer-column a{
  color:var(--muted);
  transition:.25s ease;
}
.footer-column a:hover{
  color:var(--text);
}

.footer-socials{
  flex-direction:row;
  align-items:center;
  justify-content:center;
  gap:16px;
}
.social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  transition:.25s ease;
}
.social-link:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(200,166,106,.45);
}
.social-icon{
  width:28px;
  height:28px;
  object-fit:contain;
  display:block;
}

.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .8s ease, transform .8s ease;
  will-change:opacity, transform;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}
.delay-1{transition-delay:.12s}
.delay-2{transition-delay:.22s}

@media (max-width:1250px){
  .hero-grid{
    grid-template-columns:470px minmax(0, 1fr);
    gap:38px;
  }

  .hero-art{
    width:560px;
    margin-left:-86px;
  }

  .hero-title,
  .page-title{
    font-size:clamp(1.8rem,2.75vw,2.65rem);
  }

  .hero-title .line-1{margin-left:78px}
  .hero-title .line-2{margin-left:62px}
  .hero-title .line-3{margin-left:42px}
  .hero-title .line-4{margin-left:26px}
  .hero-title .line-5{margin-left:12px}
}

@media (max-width:1100px){
  .hero-grid,
  .statement-grid,
  .gallery-grid,
  .extra-info-grid,
  .process-grid,
  .contact-layout{
    grid-template-columns:1fr;
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .main-nav{
    display:none;
  }

  .gallery-item.large{
    grid-row:auto;
  }

  .large .gallery-visual{
    min-height:300px;
  }

  .hero-art{
    width:min(100%, 560px);
    margin-left:-24px;
    margin-top:0;
  }

  .hero-copy{
    max-width:100%;
    padding-top:0;
  }

  .statement-right{
    padding-top:0;
  }

  .hero-title .line-1,
  .hero-title .line-2,
  .hero-title .line-3,
  .hero-title .line-4,
  .hero-title .line-5{
    margin-left:0;
  }

  .pricing-grid{
    grid-template-columns:1fr 1fr;
  }

  .pricing-head{
    display:none;
  }

  .pricing-row{
    gap:16px;
  }

  .footer-inner--three{
    grid-template-columns:1fr;
    gap:26px;
  }

  .footer-column-left,
  .footer-column-center,
  .footer-column-right{
    justify-self:start;
    text-align:left;
  }

  .footer-socials{
    justify-content:flex-start;
  }
}

@media (max-width:700px){
  .container{
    width:min(100% - 24px, var(--container));
  }

  .header-inner{
    min-height:82px;
  }

  .menu-toggle{
    display:inline-flex;
  }

  .header-cta{
    display:none;
  }

  .main-nav{
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    right:0;
    display:flex;
    flex-direction:column;
    gap:0;
    padding:10px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:24px;
    background:rgba(10,10,10,.96);
    backdrop-filter:blur(18px);
    box-shadow:0 22px 50px rgba(0,0,0,.38);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-8px);
    transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .main-nav.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }

  .main-nav a{
    display:block;
    padding:16px 18px;
    border-radius:16px;
    color:var(--text);
  }

  .main-nav a:hover{
    background:rgba(255,255,255,.05);
  }

  .hero,
  .page-hero,
  .statement,
  .services,
  .gallery,
  .cta,
  .services-overview,
  .process-section,
  .pricing-section,
  .extra-info,
  .contact-section{
    padding:70px 0;
  }

  .services-grid,
  .pricing-grid,
  .form-row{
    grid-template-columns:1fr;
  }

  .hero-art{
    margin-left:-10px;
    width:min(100%, 470px);
    filter:drop-shadow(0 22px 50px rgba(0,0,0,.52));
  }

  .hero-title,
  .page-title{
    font-size:clamp(1.7rem,7.2vw,2.2rem);
    line-height:1.02;
  }

  .statement h2,
  .section-head h2,
  .cta-box h2,
  .info-card h2{
    font-size:clamp(1.6rem,6.4vw,2rem);
    line-height:1.1;
  }

  .hero-text,
  .page-intro,
  .statement-right p,
  .section-head p,
  .cta-box p,
  .info-card p,
  .service-card p,
  .process-card p,
  .pricing-audience,
  .pricing-content{
    font-size:1.02rem;
  }

  .anchor-nav{
    gap:10px;
  }

  .anchor-nav a{
    width:100%;
    justify-content:flex-start;
    padding:0 16px;
  }

  .section-return{
    justify-content:flex-start;
  }

  .pricing-row,
  .info-card,
  .process-card,
  .contact-copy,
  .contact-form-wrap{
    padding:22px;
  }

  .logo-image{
    height:68px;
  }
}