:root{
  --black:#090909;
  --black-soft:#111111;
  --bone:#F3EEE4;
  --bone-soft:#FBF7EF;
  --gold:#C6A664;
  --gold-soft:#E3C987;
  --gray:#9B9487;
  --line:rgba(198,166,100,.28);
  --shadow:0 24px 80px rgba(0,0,0,.25);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--bone);
  background:var(--black);
}

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

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:30;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px clamp(20px,4vw,64px);
  background:linear-gradient(to bottom, rgba(9,9,9,.92), rgba(9,9,9,.35), transparent);
  backdrop-filter: blur(10px);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.76rem;
  color:var(--bone);
}
.brand img{
  width:38px;
  height:38px;
  object-fit:contain;
}

.nav{
  display:flex;
  gap:28px;
  font-size:.76rem;
  text-transform:uppercase;
  letter-spacing:.15em;
  color:rgba(243,238,228,.78);
}
.nav a:hover{color:var(--gold)}

.section{
  padding:clamp(84px,10vw,150px) clamp(22px,6vw,96px);
}
.section-dark{
  background:radial-gradient(circle at top left, rgba(198,166,100,.13), transparent 34%), var(--black);
}
.section-light{
  background:
    linear-gradient(135deg, rgba(255,255,255,.55), rgba(255,255,255,0)),
    var(--bone);
  color:var(--black);
}

.hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(9,9,9,.96) 0%, rgba(9,9,9,.82) 34%, rgba(9,9,9,.35) 60%, rgba(9,9,9,.08) 100%),
    url("assets/hero-bg-herculean.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity:1;
}
.hero-inner{
  position:relative;
  z-index:2;
  max-width:980px;
  text-align:center;
}
.eyebrow{
  margin:0 0 18px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:.78rem;
  font-weight:600;
}
.eyebrow.dark{color:#8F7130}

h1,h2,h3{
  font-family:"Cinzel",serif;
  font-weight:600;
  line-height:1.02;
  margin:0;
}
h1{
  font-size:clamp(3.2rem,9vw,8.4rem);
  letter-spacing:.02em;
}
h1 span{color:var(--gold)}
h2{
  font-size:clamp(2.1rem,5vw,4.8rem);
  letter-spacing:.02em;
}
h3{
  font-size:1.25rem;
  letter-spacing:.04em;
}
.hero-text{
  max-width:720px;
  margin:28px auto 0;
  color:rgba(243,238,228,.82);
  font-size:clamp(1rem,2vw,1.28rem);
  line-height:1.8;
}
.hero-actions{
  margin-top:38px;
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:999px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:.76rem;
  transition:.25s ease;
}
.button-gold{
  background:var(--gold);
  color:var(--black);
  box-shadow:0 14px 40px rgba(198,166,100,.25);
}
.button-gold:hover{
  transform:translateY(-2px);
  background:var(--gold-soft);
}
.button-outline{
  border:1px solid var(--line);
  color:var(--bone);
  background:rgba(255,255,255,.05);
}
.button-outline:hover{
  border-color:var(--gold);
  color:var(--gold);
}

.hero-card{
  position:absolute;
  z-index:2;
  right:clamp(22px,5vw,70px);
  bottom:clamp(22px,5vw,70px);
  max-width:330px;
  padding:24px;
  border:1px solid var(--line);
  background:rgba(9,9,9,.62);
  backdrop-filter:blur(14px);
  box-shadow:var(--shadow);
}
.hero-card p{
  margin:0 0 8px;
  color:var(--gray);
}
.hero-card strong{
  color:var(--bone);
  font-size:1.05rem;
}

.section-heading{
  max-width:900px;
  margin:0 auto 58px;
  text-align:center;
}
.section-heading p:not(.eyebrow){
  margin:24px auto 0;
  max-width:720px;
  line-height:1.8;
  color:inherit;
  opacity:.78;
}

.pillars{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.pillars article{
  padding:30px;
  border:1px solid rgba(9,9,9,.12);
  background:rgba(255,255,255,.42);
  min-height:240px;
}
.pillars span{
  display:block;
  color:#8F7130;
  font-weight:800;
  letter-spacing:.18em;
  margin-bottom:34px;
}
.pillars p,
.service-grid p,
.origin p,
.contact-section p{
  line-height:1.75;
  opacity:.75;
}

.split-section{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:52px;
  align-items:start;
}
.split-section > div:first-child p:not(.eyebrow){
  margin-top:24px;
  line-height:1.85;
  color:rgba(243,238,228,.75);
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.service-grid article{
  padding:26px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.045);
}
.service-grid h3{color:var(--gold)}

.origin{
  min-height:760px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg, rgba(243,238,228,.94) 0%, rgba(243,238,228,.76) 36%, rgba(243,238,228,.04) 72%),
    url("assets/origin-bg.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.origin-panel{
  max-width:600px;
  padding:42px;
  background:rgba(251,247,239,.82);
  border:1px solid rgba(198,166,100,.24);
  box-shadow:0 24px 80px rgba(0,0,0,.16);
  backdrop-filter: blur(8px);
}

.origin-panel h2{
  font-size:clamp(2rem, 3.7vw, 3.8rem);
  line-height:1.08;
}
.quote-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
blockquote{
  margin:0;
  padding:34px;
  border:1px solid var(--line);
  color:var(--bone);
  font-family:"Cinzel",serif;
  font-size:clamp(1.25rem,2vw,1.8rem);
  line-height:1.35;
  background:rgba(255,255,255,.04);
}

.contact-section{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:54px;
  align-items:start;
}
.contact-form{
  display:grid;
  gap:16px;
  padding:34px;
  background:#fff;
  border:1px solid rgba(9,9,9,.12);
  box-shadow:0 20px 70px rgba(0,0,0,.12);
}
label{
  display:grid;
  gap:8px;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
  color:rgba(9,9,9,.7);
}
input,select,textarea{
  width:100%;
  border:1px solid rgba(9,9,9,.14);
  background:var(--bone-soft);
  padding:14px 14px;
  font:inherit;
  color:var(--black);
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color:var(--gold);
}

.footer{
  padding:38px 22px;
  background:var(--black);
  color:rgba(243,238,228,.65);
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
}
.footer img{width:34px;height:34px;object-fit:contain}

@media (max-width: 900px){
  .nav{display:none}
  .site-header{position:absolute}
  .brand span{display:none}
  .hero{text-align:center}
  .hero-card{position:relative;right:auto;bottom:auto;margin:38px auto 0}
  .pillars,.service-grid,.quote-row{grid-template-columns:1fr}
  .split-section,.contact-section{grid-template-columns:1fr}
  .origin{min-height:auto}
  .origin-panel{padding:28px}
}

@media (max-width: 560px){
  .section{padding:78px 20px}
  h1{font-size:3.3rem}
  .hero-actions{flex-direction:column}
  .button{width:100%}
  .pillars article,.service-grid article,blockquote,.contact-form{padding:24px}
}
.hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:140px clamp(22px,6vw,96px) 150px;
}

.hero-inner{
  position:relative;
  z-index:2;
  max-width:760px;
  text-align:left;
}

.hero .eyebrow{
  color:var(--gold);
  letter-spacing:.22em;
  margin-bottom:24px;
}

.hero h1{
  font-size:clamp(3rem, 5.2vw, 5.9rem);
  line-height:1.04;
  color:var(--bone);
  text-shadow:0 20px 70px rgba(0,0,0,.55);
  max-width:820px;
}

.hero h1 span{
  color:var(--bone);
}

.hero-line{
  width:72px;
  height:2px;
  background:var(--gold);
  margin:30px 0 30px;
}

.hero-text{
  max-width:660px;
  margin:0;
  color:rgba(243,238,228,.9);
  font-size:clamp(1rem,1.25vw,1.15rem);
  line-height:1.85;
}

.hero-text strong{
  color:var(--gold);
  font-weight:600;
}

.hero-actions{
  margin-top:34px;
  display:flex;
  gap:18px;
  justify-content:flex-start;
  flex-wrap:wrap;
  margin-bottom:70px;
}

.hero-benefits{
  position:absolute;
  left:clamp(22px,6vw,96px);
  bottom:34px;
  z-index:2;
  width:min(1120px, calc(100% - 120px));
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid rgba(198,166,100,.35);
  background:rgba(9,9,9,.58);
  backdrop-filter:blur(10px);
  box-shadow:0 24px 80px rgba(0,0,0,.28);
}

.hero-benefits article{
  padding:24px 26px;
  border-right:1px solid rgba(198,166,100,.24);
  text-align:center;
}

.hero-benefits article:last-child{
  border-right:none;
}

.hero-benefits span{
  display:block;
  color:var(--gold);
  font-size:1.65rem;
  margin-bottom:12px;
}

.hero-benefits h3{
  font-family:"Inter", sans-serif;
  color:var(--bone);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.11em;
  margin-bottom:10px;
}

.hero-benefits p{
  margin:0;
  color:rgba(243,238,228,.78);
  font-size:.88rem;
  line-height:1.55;
}

@media (max-width: 900px){
  .hero{
    min-height:100vh;
    padding:120px 22px 60px;
    align-items:flex-end;
  }

  .hero::before{
    background:
      linear-gradient(180deg, rgba(9,9,9,.32) 0%, rgba(9,9,9,.75) 48%, rgba(9,9,9,.96) 100%),
      url("assets/hero-statues-clean.jpg");
    background-size:cover;
    background-position:65% center;
  }

  .hero-inner{
    max-width:100%;
  }

  .hero h1{
    font-size:clamp(2.9rem, 14vw, 4.8rem);
  }

  .hero-text br{
    display:none;
  }

  .hero-actions{
    flex-direction:column;
  }

  .hero-benefits{
    position:relative;
    left:auto;
    bottom:auto;
    width:100%;
    grid-template-columns:1fr;
    margin-top:42px;
  }

  .hero-benefits article{
    border-right:none;
    border-bottom:1px solid rgba(198,166,100,.24);
  }

  .hero-benefits article:last-child{
    border-bottom:none;
  }
/* ============================
   MOBILE OPTIMIZATION
   Herculean Training
============================ */

@media (max-width: 768px){

  .site-header{
    padding:16px 18px;
    background:rgba(9,9,9,.92);
    backdrop-filter:blur(12px);
  }

  .brand{
    gap:10px;
  }

  .brand img{
    width:32px;
    height:32px;
  }

  .brand span{
    display:block;
    font-size:.62rem;
    letter-spacing:.12em;
  }

  .nav{
    display:none;
  }

  .hero{
    min-height:auto;
    padding:120px 20px 56px;
    display:block;
  }

  .hero::before{
    background:
      linear-gradient(
        180deg,
        rgba(9,9,9,.10) 0%,
        rgba(9,9,9,.45) 28%,
        rgba(9,9,9,.84) 58%,
        rgba(9,9,9,.98) 100%
      ),
      url("assets/hero-bg-herculean.png");
    background-size:cover;
    background-position:62% top;
    background-repeat:no-repeat;
  }

  .hero-inner{
    max-width:100%;
    text-align:left;
    padding-top:300px;
  }

  .hero .eyebrow{
    font-size:.68rem;
    line-height:1.5;
    letter-spacing:.18em;
    margin-bottom:18px;
  }

  .hero h1{
    font-size:clamp(2.65rem, 13vw, 4rem);
    line-height:1.02;
    max-width:100%;
  }

  .hero-line{
    width:54px;
    margin:24px 0 22px;
  }

  .hero-text{
    max-width:100%;
    font-size:1rem;
    line-height:1.75;
  }

  .hero-text br{
    display:none;
  }

  .hero-actions{
    margin-top:28px;
    margin-bottom:36px;
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .button{
    width:100%;
    min-height:50px;
    font-size:.72rem;
    padding:0 18px;
  }

  .hero-benefits{
    position:relative;
    left:auto;
    bottom:auto;
    width:100%;
    grid-template-columns:1fr;
    margin-top:34px;
    background:rgba(9,9,9,.68);
    backdrop-filter:blur(12px);
  }

  .hero-benefits article{
    padding:22px 18px;
    border-right:none;
    border-bottom:1px solid rgba(198,166,100,.24);
  }

  .hero-benefits article:last-child{
    border-bottom:none;
  }

  .hero-benefits span{
    font-size:1.45rem;
    margin-bottom:10px;
  }

  .hero-benefits h3{
    font-size:.74rem;
  }

  .hero-benefits p{
    font-size:.86rem;
  }

  .section{
    padding:72px 20px;
  }

  .section-heading{
    margin-bottom:38px;
    text-align:left;
  }

  .section-heading h2{
    font-size:clamp(2rem, 10vw, 3.1rem);
    line-height:1.08;
  }

  .section-heading p:not(.eyebrow){
    font-size:1rem;
    line-height:1.75;
  }

  .pillars{
    grid-template-columns:1fr;
  }

  .split-section{
    grid-template-columns:1fr;
    gap:38px;
  }

  .service-grid{
    grid-template-columns:1fr;
  }

  .origin{
    min-height:auto;
    padding:80px 20px;
    background:
      linear-gradient(
        180deg,
        rgba(243,238,228,.96) 0%,
        rgba(243,238,228,.88) 48%,
        rgba(243,238,228,.58) 100%
      ),
      url("assets/origin-bg.jpg");
    background-size:cover;
    background-position:70% center;
  }

  .origin-panel{
    max-width:100%;
    padding:28px 22px;
    background:rgba(251,247,239,.86);
  }

  .origin-panel h2{
    font-size:clamp(2rem, 10vw, 3rem);
    line-height:1.08;
  }

  .quote-row{
    grid-template-columns:1fr;
  }

  .contact-section{
    grid-template-columns:1fr;
    gap:34px;
  }

  .footer{
    flex-direction:column;
    text-align:center;
  }
/* ============================
   FORM POPUP
============================ */

.form-popup{
  position:fixed;
  inset:0;
  z-index:999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(9,9,9,.72);
  backdrop-filter:blur(10px);
}

.form-popup.active{
  display:flex;
}

.form-popup-content{
  position:relative;
  width:min(520px, 100%);
  padding:38px 34px;
  background:var(--bone);
  color:var(--black);
  border:1px solid rgba(198,166,100,.38);
  box-shadow:0 24px 90px rgba(0,0,0,.38);
  text-align:left;
}

.form-popup-content h3{
  margin:0 0 16px;
  font-size:clamp(1.8rem, 4vw, 2.6rem);
  line-height:1.05;
}

.form-popup-content p{
  margin:0;
  line-height:1.7;
  color:rgba(9,9,9,.72);
}

.form-popup-close{
  position:absolute;
  top:14px;
  right:16px;
  width:36px;
  height:36px;
  border:1px solid rgba(9,9,9,.12);
  background:transparent;
  color:var(--black);
  font-size:1.6rem;
  line-height:1;
  cursor:pointer;
}

.form-popup-close:hover{
  border-color:var(--gold);
  color:#8F7130;
}