
:root{
  --onyx:#151209;
  --onyx-soft:#211c12;
  --ivory:#F8F4EA;
  --ivory-dim:#EFE8D6;
  --gold:#B8912F;
  --gold-bright:#D4AF5A;
  --bronze:#7A5C1E;
  --ink:#2A2620;
  --ink-soft:#5B5342;
  --hair: rgba(184,145,47,0.28);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--ivory);
  color:var(--ink);
  font-family:'Jost', sans-serif;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{display:block; max-width:100%;}
a{color:inherit;}

.eyebrow{
  font-family:'Jost',sans-serif;
  text-transform:uppercase;
  letter-spacing:0.22em;
  font-size:0.72rem;
  font-weight:500;
  color:var(--bronze);
}
h1,h2,h3{
  font-family:'Cormorant', serif;
  font-weight:500;
  line-height:1.08;
  color:var(--onyx);
  letter-spacing:0.005em;
}

/* ---------- NAV ---------- */
nav{
  position:relative;
  z-index:30;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px 5.5vw;
  background:var(--onyx);
}
.nav-brand-link{ text-decoration:none; display:flex; align-items:center; gap:12px; }
.nav-logo-icon{ height:38px; width:auto; display:block; }
.footer-brand-row{ display:flex; align-items:center; gap:12px; }
.footer-logo-icon{ height:34px; width:auto; display:block; }
.nav-brand-text{
  font-family:'Cormorant', serif;
  color:var(--ivory);
  font-size:1.28rem;
  letter-spacing:0.14em;
  font-weight:500;
  line-height:1;
}
.nav-brand-text span{
  display:block;
  font-family:'Jost',sans-serif;
  font-size:0.56rem;
  letter-spacing:0.3em;
  color:var(--gold-bright);
  margin-top:5px;
  font-weight:500;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:36px;
}
.nav-links a{
  font-family:'Jost',sans-serif;
  font-size:0.82rem;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:#D9D2BE;
  text-decoration:none;
  font-weight:500;
  transition:color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active{ color:var(--gold-bright); }
.nav-cta{
  font-family:'Jost',sans-serif;
  font-size:0.78rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--onyx);
  background:var(--gold-bright);
  padding:12px 24px;
  border-radius:2px;
  text-decoration:none;
  font-weight:500;
  white-space:nowrap;
  transition:background 0.25s ease;
}
.nav-cta:hover{ background:var(--ivory); }
.nav-toggle-label{ display:none; }

/* ---------- HERO (home) ---------- */
.hero{
  position:relative;
  background:var(--onyx);
  min-height:680px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 38%;
  filter:grayscale(30%) contrast(1.05) brightness(0.55) sepia(12%);
}
.hero-bg-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(21,18,9,0.94) 0%, rgba(21,18,9,0.86) 32%, rgba(21,18,9,0.52) 58%, rgba(21,18,9,0.34) 100%),
    linear-gradient(0deg, rgba(21,18,9,0.55), rgba(21,18,9,0.05) 35%);
}
.hero::after, .inner-hero::after{
  content:"";
  position:absolute; inset:0;
  z-index:2;
  background-image:repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 47px,
    rgba(184,145,47,0.07) 47px, rgba(184,145,47,0.07) 48px
  );
  pointer-events:none;
}
.hero-copy{
  position:relative;
  z-index:5;
  padding:64px 5.5vw 70px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:26px;
  max-width:720px;
}
.hero-copy h1{
  color:var(--ivory);
  font-size:clamp(2.5rem, 4.6vw, 3.85rem);
  max-width:11.5ch;
}
.hero-copy h1 em{ font-style:italic; color:var(--gold-bright); }
.hero-sub{
  color:#D9D2BE;
  font-size:1.06rem;
  line-height:1.65;
  max-width:46ch;
  font-weight:300;
}
.hero-actions{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; margin-top:6px; }
.btn-primary{
  background:var(--gold-bright);
  color:var(--onyx);
  padding:15px 30px;
  border-radius:2px;
  text-decoration:none;
  font-size:0.85rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  font-weight:500;
  transition:transform 0.2s ease, background 0.2s ease;
  display:inline-block;
}
.btn-primary:hover{ background:var(--ivory); transform:translateY(-1px); }
.btn-ghost{
  color:var(--ivory);
  text-decoration:none;
  font-size:0.85rem;
  letter-spacing:0.04em;
  border-bottom:1px solid var(--gold);
  padding-bottom:3px;
  transition:border-color 0.2s ease, color 0.2s ease;
}
.btn-ghost:hover{ color:var(--gold-bright); border-color:var(--gold-bright); }
.hero-trustrow{ display:flex; gap:0; margin-top:18px; flex-wrap:wrap; }
.hero-trustrow div{
  font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase;
  color:#AFA486; padding-right:22px; margin-right:22px;
  border-right:1px solid var(--hair); font-weight:500;
}
.hero-trustrow div:last-child{ border-right:none; }

/* ---------- INNER HERO (about/services/contact/legal) ---------- */
.inner-hero{
  position:relative;
  background:var(--onyx);
  min-height:300px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.inner-hero-bg{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center 40%;
  filter:grayscale(35%) contrast(1.05) brightness(0.4) sepia(10%);
}
.inner-hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(21,18,9,0.92) 0%, rgba(21,18,9,0.8) 45%, rgba(21,18,9,0.55) 100%);
}
.inner-hero-copy{
  position:relative; z-index:5;
  padding:56px 5.5vw;
  max-width:760px;
}
.inner-hero-copy h1{
  color:var(--ivory);
  font-size:clamp(2.1rem, 3.6vw, 3rem);
  margin-top:12px;
}

/* ---------- STRIP ---------- */
.strip{
  background:var(--gold-bright); color:var(--onyx);
  display:flex; justify-content:center; gap:60px;
  padding:15px 5.5vw; flex-wrap:wrap;
}
.strip div{
  font-size:0.76rem; letter-spacing:0.1em; text-transform:uppercase;
  font-weight:500; display:flex; align-items:center; gap:8px;
}

/* ---------- SECTIONS ---------- */
.section{ padding:96px 5.5vw; background:var(--ivory); }
.section.tight{ padding-top:0; }
.section-head{ text-align:center; max-width:64ch; margin:0 auto; }
.section-head .eyebrow{ justify-content:center; display:flex; }
.section-head h2{ font-size:clamp(2rem, 3.4vw, 2.7rem); margin-top:14px; }
.section-sub{ max-width:52ch; margin:18px auto 0; color:var(--ink-soft); font-weight:300; line-height:1.7; font-size:1rem; }
.divider{ width:64px; height:1px; background:var(--gold); margin:28px auto 0; }
.divider.left{ margin-left:0; }

/* ---------- SERVICE GRID ---------- */
.service-grid{
  margin-top:60px; display:grid; grid-template-columns:repeat(3, 1fr); gap:0;
  border-top:1px solid var(--hair); border-left:1px solid var(--hair);
}
.service-card{
  border-right:1px solid var(--hair); border-bottom:1px solid var(--hair);
  padding:42px 30px 36px; text-align:left; background:var(--ivory);
  transition:background 0.25s ease; scroll-margin-top:100px;
}
.service-card:hover{ background:var(--ivory-dim); }
.service-num{
  font-family:'Cormorant', serif; font-style:italic; color:var(--gold);
  font-size:1rem; margin-bottom:18px; display:block;
}
.service-card h3{ font-size:1.5rem; margin-bottom:14px; }
.service-card ul{ list-style:none; }
.service-card li{
  font-size:0.88rem; color:var(--ink-soft); padding:6px 0;
  border-top:1px solid rgba(0,0,0,0.05); font-weight:300;
}
.service-card li:first-child{ border-top:none; }
.service-more{
  margin-top:60px; text-align:center;
}

/* ---------- ABOUT SPLIT ---------- */
.about-split{
  display:grid; grid-template-columns:0.95fr 1.05fr; gap:70px; align-items:center;
  max-width:1140px; margin:0 auto;
}
.about-split img{
  width:100%; height:100%; object-fit:cover; min-height:420px;
  filter:grayscale(15%) sepia(6%) contrast(1.02);
  border:1px solid var(--hair);
}
.about-copy .eyebrow{ margin-bottom:14px; }
.about-copy h2{ font-size:clamp(1.9rem, 3vw, 2.5rem); margin-bottom:20px; }
.about-copy p{ color:var(--ink-soft); font-weight:300; line-height:1.8; font-size:1rem; margin-bottom:16px; }
.credential-row{ display:flex; gap:28px; margin-top:30px; flex-wrap:wrap; }
.credential{
  border-left:2px solid var(--gold); padding-left:16px;
}
.credential .label{ font-size:0.68rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--bronze); font-weight:500; }
.credential .value{ font-family:'Cormorant', serif; font-size:1.15rem; color:var(--onyx); margin-top:4px; }

/* ---------- VALUES ---------- */
.values-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:40px;
  max-width:1140px; margin:70px auto 0;
}
.value-card{ text-align:center; padding:0 10px; }
.value-card .eyebrow{ justify-content:center; display:flex; }
.value-card h3{ font-size:1.4rem; margin:14px 0 10px; }
.value-card p{ color:var(--ink-soft); font-weight:300; font-size:0.92rem; line-height:1.7; }

/* ---------- CONTACT ---------- */
.contact-wrap{
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  max-width:1140px; margin:0 auto;
  border:1px solid var(--hair);
}
.contact-info{ background:var(--onyx); padding:56px 46px; color:var(--ivory); }
.contact-info h2{ color:var(--ivory); font-size:1.9rem; margin-bottom:22px; }
.contact-row{ margin-bottom:24px; }
.contact-row .label{ font-size:0.68rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold-bright); font-weight:500; margin-bottom:6px; }
.contact-row a, .contact-row div.value{ color:#D9D2BE; text-decoration:none; font-size:0.98rem; font-weight:300; line-height:1.6; }
.contact-row a:hover{ color:var(--gold-bright); }
.social-row{ display:flex; gap:16px; margin-top:30px; }
.social-row a{
  width:38px; height:38px; border:1px solid var(--hair); border-radius:50%;
  display:flex; align-items:center; justify-content:center; text-decoration:none;
  color:var(--gold-bright); transition:background 0.2s ease, border-color 0.2s ease;
}
.social-row a:hover{ background:rgba(212,175,90,0.12); border-color:var(--gold-bright); }
.social-row svg{ width:16px; height:16px; fill:currentColor; }

.contact-form{ background:var(--ivory); padding:56px 46px; }
.form-field{ margin-bottom:20px; }
.form-field label{
  display:block; font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--bronze); font-weight:500; margin-bottom:8px;
}
.form-field input, .form-field textarea{
  width:100%; border:1px solid var(--hair); background:transparent;
  padding:13px 14px; font-family:'Jost', sans-serif; font-size:0.95rem; color:var(--ink);
  border-radius:2px;
}
.form-field textarea{ resize:vertical; min-height:110px; }
.form-field input:focus, .form-field textarea:focus{ outline:2px solid var(--gold-bright); outline-offset:1px; }
.form-note{ font-size:0.82rem; color:var(--ink-soft); font-weight:300; margin-top:6px; }
.btn-submit{
  background:var(--onyx); color:var(--ivory); border:none; padding:15px 34px;
  border-radius:2px; font-family:'Jost', sans-serif; font-size:0.85rem; letter-spacing:0.06em;
  text-transform:uppercase; font-weight:500; cursor:pointer; transition:background 0.2s ease;
}
.btn-submit:hover{ background:var(--bronze); }

/* ---------- LEGAL ---------- */
.legal-body{ max-width:74ch; margin:0 auto; }
.legal-body h2{ font-size:1.5rem; margin:38px 0 12px; }
.legal-body h2:first-child{ margin-top:0; }
.legal-body p, .legal-body li{ color:var(--ink-soft); font-weight:300; line-height:1.85; font-size:0.98rem; margin-bottom:14px; }
.legal-body ul{ padding-left:22px; margin-bottom:14px; }
.legal-updated{ color:var(--bronze); font-size:0.82rem; letter-spacing:0.06em; text-transform:uppercase; margin-bottom:40px; display:block; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-wrap{
  max-width:760px; margin:0 auto; text-align:center;
}
.testimonial-stars{ color:var(--gold-bright); font-size:1.3rem; letter-spacing:4px; margin-bottom:26px; }
.testimonial-quote{
  font-family:'Cormorant', serif; font-style:italic; font-weight:400;
  font-size:clamp(1.5rem, 2.6vw, 2rem); color:var(--onyx); line-height:1.5;
  margin-bottom:26px;
}
.testimonial-quote::before{ content:"“"; }
.testimonial-quote::after{ content:"”"; }
.testimonial-author{
  font-family:'Jost', sans-serif; font-size:0.82rem; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--bronze); font-weight:500;
}
.testimonial-source{ color:var(--ink-soft); font-weight:300; }

/* ---------- CTA BAND ---------- */
.cta-band{
  background:var(--onyx); padding:76px 5.5vw; text-align:center; position:relative; overflow:hidden;
}
.cta-band::before{
  content:""; position:absolute; inset:0;
  background-image:repeating-linear-gradient(to bottom, transparent 0px, transparent 47px, rgba(184,145,47,0.06) 47px, rgba(184,145,47,0.06) 48px);
}
.cta-band > *{ position:relative; z-index:2; }
.cta-band h2{ color:var(--ivory); font-size:clamp(1.8rem, 3vw, 2.4rem); max-width:22ch; margin:0 auto 26px; }

/* ---------- FOOTER ---------- */
.site-footer{ background:var(--onyx-soft); padding:70px 5.5vw 0; }
.footer-grid{
  display:grid; grid-template-columns:1.3fr 0.8fr 1fr 1.1fr; gap:40px;
  max-width:1240px; margin:0 auto; padding-bottom:56px;
  border-bottom:1px solid rgba(184,145,47,0.18);
}
.footer-brand p{ color:#AFA486; font-weight:300; font-size:0.9rem; line-height:1.7; margin-top:16px; max-width:32ch; }
.footer-col h4{
  font-family:'Jost', sans-serif; font-size:0.74rem; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--gold-bright); font-weight:500; margin-bottom:18px;
}
.footer-col a, .footer-col p{
  display:block; color:#C9C1A8; text-decoration:none; font-size:0.9rem; font-weight:300;
  line-height:2; margin-bottom:2px;
}
.footer-col a:hover{ color:var(--gold-bright); }
.footer-bottom{
  max-width:1240px; margin:0 auto; padding:26px 0;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
}
.footer-bottom p{ color:#8E856B; font-size:0.8rem; font-weight:300; }
.footer-legal-links{ display:flex; gap:26px; }
.footer-legal-links a{ color:#8E856B; text-decoration:none; font-size:0.8rem; font-weight:300; }
.footer-legal-links a:hover{ color:var(--gold-bright); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float{
  position:fixed; bottom:26px; right:26px; z-index:50;
  width:56px; height:56px; border-radius:50%;
  background:var(--gold-bright); display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 24px rgba(21,18,9,0.35); text-decoration:none;
  transition:transform 0.2s ease, background 0.2s ease;
}
.whatsapp-float:hover{ transform:translateY(-2px); background:var(--ivory); }
.whatsapp-float svg{ width:26px; height:26px; fill:var(--onyx); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 880px){
  .hero{ min-height:560px; }
  .hero-copy{ padding:52px 6vw 60px; max-width:100%; }
  .service-grid{ grid-template-columns:1fr; }
  .strip{ gap:18px 34px; }
  .nav-links{ display:none; }
  .about-split{ grid-template-columns:1fr; gap:36px; }
  .about-split img{ min-height:280px; }
  .values-grid{ grid-template-columns:1fr; gap:44px; }
  .contact-wrap{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns:1fr; }
  .section{ padding:70px 6vw; }
}

.form-message{margin-top:16px;padding:12px 14px;border-left:3px solid;font-size:.9rem;line-height:1.5;}
.form-success{background:#edf6ed;border-color:#397a3d;color:#245327;}
.form-error{background:#fff0ed;border-color:#a33b2f;color:#7d2b22;}
