@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Inter',sans-serif;background:#F8F6F2;color:#2C2C2C;overflow-x:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* ── TOKENS ── */
:root{
  --cream:#F8F6F2;
  --dark:#111111;
  --gold:#8B6914;
  --gold-light:#C9A84C;
  --text:#2C2C2C;
  --muted:#666;
  --border:#E0DDD7;
  --serif:'Cormorant Garamond',serif;
  --sans:'Inter',sans-serif;
  --nav-h:80px;
}

/* ── NAVBAR ── */
.site-nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  height:var(--nav-h);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 5%;
  transition:background .4s,box-shadow .4s;
}
.site-nav.scrolled{background:#fff;box-shadow:0 1px 12px rgba(0,0,0,.08)}
.site-nav.dark-nav{background:var(--dark)}
.nav-logo{font-family:var(--serif);font-size:1.5rem;font-weight:600;color:#fff;letter-spacing:.04em;transition:color .4s}
.site-nav.scrolled .nav-logo{color:var(--dark)}
.nav-links{display:flex;gap:2rem;align-items:center}
.nav-links a{font-size:.8rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.85);transition:color .3s}
.site-nav.scrolled .nav-links a{color:var(--text)}
.nav-links a:hover,.nav-links a.active{color:var(--gold-light)}
.site-nav.scrolled .nav-links a:hover,.site-nav.scrolled .nav-links a.active{color:var(--gold)}
.nav-cta{background:var(--gold);color:#fff!important;padding:.5rem 1.2rem;border-radius:2px;transition:background .3s!important}
.nav-cta:hover{background:var(--dark)!important;color:#fff!important}

/* hamburger */
.nav-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background:none;border:none;border-radius:4px;-webkit-tap-highlight-color:transparent;z-index:1001;position:relative}
.nav-toggle span{width:24px;height:2px;background:#fff;transition:transform .35s ease,opacity .35s ease,top .35s ease;display:block;border-radius:2px;position:relative}
.site-nav.scrolled .nav-toggle span{background:var(--dark)}
/* Animated hamburger → X */
.nav-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.is-open span:nth-child(2){opacity:0;transform:scaleX(0)}
.nav-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
/* Mobile full-screen overlay — uses opacity/visibility so CSS transition works on close */
.nav-mobile{
  display:flex;
  position:fixed;inset:0;
  background:rgba(10,10,10,.97);
  z-index:1000;
  flex-direction:column;align-items:center;justify-content:center;gap:1.8rem;padding:2rem;
  opacity:0;visibility:hidden;
  transition:opacity .35s ease,visibility .35s ease;
}
.nav-mobile.open{opacity:1;visibility:visible}
.nav-mobile a{
  font-family:var(--serif);font-size:1.8rem;color:#fff;
  letter-spacing:.04em;transition:color .2s,transform .2s;text-align:center;
  transform:translateY(12px);opacity:0;
  transition:color .2s,transform .4s ease,opacity .4s ease;
}
.nav-mobile.open a{transform:translateY(0);opacity:1}
.nav-mobile.open a:nth-child(2){transition-delay:.05s}
.nav-mobile.open a:nth-child(3){transition-delay:.1s}
.nav-mobile.open a:nth-child(4){transition-delay:.15s}
.nav-mobile.open a:nth-child(5){transition-delay:.2s}
.nav-mobile.open a:nth-child(6){transition-delay:.25s}
.nav-mobile.open a:nth-child(7){transition-delay:.3s}
.nav-mobile a:hover,.nav-mobile a.active{color:var(--gold-light)}
.nav-close{position:absolute;top:1.5rem;right:5%;font-size:2.2rem;color:rgba(255,255,255,.7);cursor:pointer;background:none;border:none;line-height:1;padding:.5rem;-webkit-tap-highlight-color:transparent;transition:color .2s,transform .2s}
.nav-close:hover{color:#fff;transform:rotate(90deg)}

/* ── HERO ── */
.hero{position:relative;height:100vh;min-height:600px;overflow:hidden}
.hero-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1.2s ease}
.hero-slide.active{opacity:1}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,.45) 0%,rgba(0,0,0,.25) 60%,rgba(0,0,0,.5) 100%)}
.hero-content{position:relative;z-index:2;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:0 6%}
.hero-eyebrow{font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.7);margin-bottom:1.5rem}
.hero h1{font-family:var(--serif);font-size:clamp(2.8rem,7vw,5.5rem);font-weight:300;color:#fff;line-height:1.1;margin-bottom:1.5rem;max-width:850px}
.hero h1 em{font-style:italic;font-weight:300}
.hero-sub{font-size:1rem;color:rgba(255,255,255,.8);max-width:500px;line-height:1.7;margin-bottom:2.5rem}
.hero-dots{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);display:flex;gap:.6rem;z-index:3}
.hero-dot{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.4);cursor:pointer;transition:.3s}
.hero-dot.active{background:#fff;width:24px;border-radius:4px}

/* ── BUTTONS ── */
.btn{display:inline-block;padding:.85rem 2.2rem;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;font-weight:500;border-radius:2px;cursor:pointer;border:none;transition:.3s}
.btn-gold{background:var(--gold);color:#fff}
.btn-gold:hover{background:#6e5010;color:#fff}
.btn-outline{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.7)}
.btn-outline:hover{background:#fff;color:var(--dark)}
.btn-dark{background:var(--dark);color:#fff}
.btn-dark:hover{background:var(--gold);color:#fff}
.btn-outline-dark{background:transparent;color:var(--dark);border:1px solid var(--dark)}
.btn-outline-dark:hover{background:var(--dark);color:#fff}

/* ── SECTION COMMONS ── */
.section{padding:7rem 5%}
.section-sm{padding:4rem 5%}
.section-dark{background:var(--dark);color:#fff}
.section-gold{background:var(--gold);color:#fff}
.section-cream{background:var(--cream)}
.container{max-width:1280px;margin:0 auto}
.section-label{font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem;display:block}
.section-dark .section-label{color:var(--gold-light)}
.section-title{font-family:var(--serif);font-size:clamp(2rem,4vw,3.2rem);font-weight:300;line-height:1.15;margin-bottom:1.5rem}
.section-body{font-size:1rem;line-height:1.8;color:var(--muted);max-width:560px}
.section-dark .section-body{color:rgba(255,255,255,.65)}
.text-center{text-align:center}
.text-center .section-body{margin-left:auto;margin-right:auto}
.divider{width:48px;height:1px;background:var(--gold);margin:1.5rem 0}
.divider-center{margin-left:auto;margin-right:auto}

/* ── TAGLINE ── */
.tagline-strip{padding:3.5rem 5%;border-top:1px solid var(--border);border-bottom:1px solid var(--border);text-align:center}
.tagline-strip p{font-family:var(--serif);font-size:clamp(1.3rem,3vw,2rem);font-weight:300;font-style:italic;color:var(--dark);letter-spacing:.02em}

/* ── ABOUT SPLIT ── */
.split{display:grid;grid-template-columns:1fr 1fr;min-height:600px}
.split-img{background-size:cover;background-position:center}
.split-body{display:flex;flex-direction:column;justify-content:center;padding:5rem 6%}
.split.reverse .split-img{order:2}
.split.reverse .split-body{order:1}

/* ── STATS ── */
.stats-bar{background:var(--dark);padding:5rem 5%}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;max-width:1100px;margin:0 auto;text-align:center}
.stat-number{font-family:var(--serif);font-size:clamp(2.5rem,5vw,4rem);font-weight:300;color:var(--gold-light);line-height:1}
.stat-label{font-size:.75rem;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.55);margin-top:.6rem}

/* ── PROJECTS GRID ── */
.projects-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border)}
.project-item{position:relative;overflow:hidden;aspect-ratio:3/4;cursor:pointer}
.project-item img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}
.project-item:hover img{transform:scale(1.06)}
.project-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.7) 0%,transparent 50%);opacity:0;transition:.4s}
.project-item:hover .project-overlay{opacity:1}
.project-name{position:absolute;bottom:1.5rem;left:1.5rem;right:1.5rem;font-family:var(--serif);font-size:1.15rem;color:#fff;transform:translateY(10px);opacity:0;transition:.4s}
.project-item:hover .project-name{transform:translateY(0);opacity:1}

/* ── TESTIMONIALS ── */
.testimonials-wrap{position:relative;overflow:hidden}
.testimonials-track{display:flex;transition:transform .6s ease}
.testimonial-slide{min-width:100%;padding:0 1rem}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;max-width:1100px;margin:0 auto}
.testi-card{background:#fff;border:1px solid var(--border);padding:2.5rem;position:relative}
.testi-quote{font-family:var(--serif);font-size:3rem;color:var(--gold);line-height:.6;margin-bottom:1.5rem}
.testi-text{font-size:.95rem;line-height:1.8;color:var(--text);margin-bottom:2rem}
.testi-author{display:flex;align-items:center;gap:1rem}
.testi-avatar{width:50px;height:50px;border-radius:50%;object-fit:cover}
.testi-name{font-weight:600;font-size:.9rem}
.testi-role{font-size:.78rem;color:var(--muted)}
.testi-stars{color:var(--gold);font-size:.85rem;margin-bottom:.3rem}
.testi-nav{display:flex;justify-content:center;gap:1rem;margin-top:3rem}
.testi-btn{width:44px;height:44px;border-radius:50%;border:1px solid var(--border);background:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:1.1rem;transition:.3s}
.testi-btn:hover{background:var(--dark);color:#fff;border-color:var(--dark)}

/* ── BLOG ── */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.blog-card{background:#fff;border:1px solid var(--border);overflow:hidden;transition:transform .3s,box-shadow .3s}
.blog-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.08)}
.blog-img-wrap{overflow:hidden;aspect-ratio:16/10}
.blog-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.blog-card:hover .blog-img-wrap img{transform:scale(1.04)}
.blog-body{padding:1.8rem}
.blog-cat{font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);margin-bottom:.7rem;display:block}
.blog-title{font-family:var(--serif);font-size:1.35rem;font-weight:400;line-height:1.35;margin-bottom:.8rem;color:var(--dark)}
.blog-title a:hover{color:var(--gold)}
.blog-excerpt{font-size:.88rem;line-height:1.7;color:var(--muted);margin-bottom:1.2rem}
.blog-meta{font-size:.75rem;color:var(--muted);display:flex;gap:1rem;align-items:center}
.blog-meta span::before{content:'·';margin-right:.5rem}
.blog-meta span:first-child::before{content:''}

/* ── CTA STRIP ── */
.cta-strip{background:var(--dark);padding:6rem 5%;text-align:center}
.cta-strip h2{font-family:var(--serif);font-size:clamp(2rem,4vw,3rem);color:#fff;font-weight:300;margin-bottom:1rem}
.cta-strip p{color:rgba(255,255,255,.6);margin-bottom:2.5rem;font-size:.95rem}

/* ── SERVICES LIST ── */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.service-card{border:1px solid var(--border);padding:3rem 2.5rem;transition:.3s;position:relative;overflow:hidden}
.service-card::before{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:var(--gold);transform:scaleX(0);transition:.4s}
.service-card:hover{background:#fff;box-shadow:0 8px 32px rgba(0,0,0,.07)}
.service-card:hover::before{transform:scaleX(1)}
.service-icon{font-size:2rem;margin-bottom:1.5rem;color:var(--gold)}
.service-card h3{font-family:var(--serif);font-size:1.4rem;font-weight:400;margin-bottom:1rem}
.service-card p{font-size:.88rem;line-height:1.75;color:var(--muted)}

/* ── ABOUT PAGE ── */
.about-hero{height:60vh;min-height:400px;background-size:cover;background-position:center;display:flex;align-items:flex-end;padding:4rem 5%;position:relative}
.about-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.65),rgba(0,0,0,.2))}
.about-hero-text{position:relative;z-index:1}
.about-hero h1{font-family:var(--serif);font-size:clamp(2.5rem,5vw,4rem);color:#fff;font-weight:300}

/* ── TEAM ── */
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.team-card{text-align:center}
.team-img{width:100%;aspect-ratio:1;object-fit:cover;border-radius:2px;margin-bottom:1.2rem;filter:grayscale(20%);transition:.4s}
.team-card:hover .team-img{filter:grayscale(0)}
.team-name{font-family:var(--serif);font-size:1.1rem;font-weight:400}
.team-role{font-size:.78rem;color:var(--muted);text-transform:uppercase;letter-spacing:.1em;margin-top:.3rem}

/* ── CONTACT ── */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start}
.contact-form input,.contact-form textarea,.contact-form select{width:100%;border:1px solid var(--border);background:#fff;padding:.9rem 1.1rem;font-family:var(--sans);font-size:.9rem;color:var(--text);margin-bottom:1.2rem;border-radius:2px;transition:.3s;outline:none}
.contact-form input:focus,.contact-form textarea:focus{border-color:var(--gold)}
.contact-form textarea{height:140px;resize:vertical}
.contact-info-item{display:flex;gap:1.2rem;margin-bottom:2rem;align-items:flex-start}
.contact-icon{width:44px;height:44px;background:var(--gold);border-radius:2px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.1rem;flex-shrink:0}
.contact-info-label{font-size:.72rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted);margin-bottom:.3rem}
.contact-info-val{font-size:.95rem;color:var(--dark)}

/* ── PAGE HERO ── */
.page-hero{height:55vh;min-height:380px;background-size:cover;background-position:center;display:flex;align-items:center;justify-content:center;text-align:center;position:relative;margin-top:var(--nav-h)}
.page-hero::before{content:'';position:absolute;inset:0;background:rgba(0,0,0,.5)}
.page-hero-content{position:relative;z-index:1}
.page-hero h1{font-family:var(--serif);font-size:clamp(2.5rem,6vw,4.5rem);color:#fff;font-weight:300;margin-bottom:.8rem}
.page-hero p{color:rgba(255,255,255,.75);font-size:1rem}
.breadcrumb{font-size:.75rem;color:rgba(255,255,255,.6);margin-bottom:1rem}
.breadcrumb a{color:rgba(255,255,255,.7)}
.breadcrumb span{color:rgba(255,255,255,.4);margin:0 .5rem}

/* ── FOOTER ── */
.site-footer{background:#0a0a0a;color:#fff;padding:5rem 5% 2rem}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.1)}
.footer-brand-name{font-family:var(--serif);font-size:1.8rem;font-weight:300;margin-bottom:1rem;color:#fff}
.footer-brand-desc{font-size:.85rem;color:rgba(255,255,255,.5);line-height:1.8;margin-bottom:1.5rem}
.footer-social{display:flex;gap:.8rem}
.footer-social a{width:36px;height:36px;border:1px solid rgba(255,255,255,.15);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.85rem;color:rgba(255,255,255,.6);transition:.3s}
.footer-social a:hover{background:var(--gold);border-color:var(--gold);color:#fff}
.footer-heading{font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.4);margin-bottom:1.5rem}
.footer-links li{margin-bottom:.7rem}
.footer-links a{font-size:.88rem;color:rgba(255,255,255,.55);transition:.3s}
.footer-links a:hover{color:var(--gold-light)}
.footer-contact-item{display:flex;gap:.8rem;margin-bottom:.9rem;font-size:.85rem;color:rgba(255,255,255,.55);align-items:flex-start}
.footer-contact-item svg{flex-shrink:0;margin-top:3px;color:var(--gold-light)}
.footer-bottom{padding-top:2rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer-copy{font-size:.78rem;color:rgba(255,255,255,.35)}
.footer-legal{display:flex;gap:1.5rem}
.footer-legal a{font-size:.78rem;color:rgba(255,255,255,.35);transition:.3s}
.footer-legal a:hover{color:rgba(255,255,255,.7)}

/* ── UTILS ── */
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}.mt-5{margin-top:3rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}
.gap-1{gap:.5rem}.gap-2{gap:1rem}
.flex{display:flex}.flex-center{align-items:center;justify-content:center}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:2rem}

/* ── BLOG SINGLE ── */
.blog-single-hero{height:65vh;min-height:420px;background-size:cover;background-position:center;position:relative;margin-top:var(--nav-h)}
.blog-single-hero::before{content:'';position:absolute;inset:0;background:rgba(0,0,0,.45)}
.blog-single-content{max-width:760px;margin:0 auto;padding:5rem 5%}
.blog-single-content h2{font-family:var(--serif);font-size:1.8rem;font-weight:400;margin:2.5rem 0 1rem}
.blog-single-content p{font-size:.97rem;line-height:1.9;color:var(--text);margin-bottom:1.4rem}
.blog-single-content strong{font-weight:600;color:var(--dark)}
.blog-tag{display:inline-block;background:var(--cream);border:1px solid var(--border);padding:.3rem .8rem;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);border-radius:2px;margin-right:.5rem;margin-bottom:.5rem}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .projects-grid{grid-template-columns:repeat(2,1fr)}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
}
@media(max-width:768px){
  :root{--nav-h:64px}
  .nav-links{display:none}
  .nav-toggle{display:flex}
  .split{grid-template-columns:1fr}
  .split-img{height:300px}
  .split.reverse .split-img{order:unset}
  .split.reverse .split-body{order:unset}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .services-grid{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr}
  .testi-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr;gap:3rem}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .section{padding:4rem 5%}
}
@media(max-width:480px){
  .projects-grid{grid-template-columns:1fr 1fr}
  .stats-grid{grid-template-columns:1fr 1fr}
}

/* ── SCROLL REVEAL ── */
[data-reveal]{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease}
[data-reveal].revealed{opacity:1;transform:none}
[data-reveal="left"]{transform:translateX(-28px)}
[data-reveal="right"]{transform:translateX(28px)}
[data-reveal="left"].revealed,[data-reveal="right"].revealed{transform:none}

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress{
  position:fixed;top:0;left:0;height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
  width:0%;z-index:2000;transition:width .1s linear;
  pointer-events:none;
}

/* ── FLOATING BUTTONS ── */
.float-group{position:fixed;bottom:2rem;right:1.5rem;display:flex;flex-direction:column;gap:.8rem;z-index:900;align-items:center}
.float-wa{
  width:52px;height:52px;border-radius:50%;
  background:#25D366;color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  transition:transform .3s,box-shadow .3s;
  text-decoration:none;
}
.float-wa:hover{transform:scale(1.1);box-shadow:0 6px 28px rgba(37,211,102,.55)}
.float-top{
  width:44px;height:44px;border-radius:50%;
  background:#fff;color:var(--dark);
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;box-shadow:0 2px 12px rgba(0,0,0,.1);
  transition:transform .3s,background .3s,opacity .3s;
  opacity:0;pointer-events:none;
  font-size:1rem;
}
.float-top.visible{opacity:1;pointer-events:auto}
.float-top:hover{background:var(--dark);color:#fff;transform:translateY(-3px)}
