:root{
  --ink:#111111;
  --charcoal:#202020;
  --muted:#69665f;
  --sand:#f5f0e8;
  --cream:#fbf8f1;
  --taupe:#cdbfae;
  --sage:#74806f;
  --olive:#444d3f;
  --white:#ffffff;
  --line:rgba(17,17,17,.12);
  --shadow:0 24px 80px rgba(17,17,17,.16);
  --radius:26px;
  --max:1180px;
}

*{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(--ink);
  background:var(--cream);
  line-height:1.6;
}

img{max-width:100%;display:block}

a{color:inherit;text-decoration:none}

.container{
  width:min(calc(100% - 40px),var(--max));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:#fff;
  color:#111;
  padding:10px 14px;
  z-index:20;
  border-radius:999px;
}

.skip-link:focus{left:12px}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:10;
  background:rgba(251,248,241,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(17,17,17,.08);
}

.header-inner{
  min-height:104px;
  padding:14px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.brand img{
  width:auto;
  height:76px;
  object-fit:contain;
}

.nav{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(17,17,17,.72);
}

.nav a{
  transition:.2s ease;
}

.nav a:hover{
  color:#111;
}

.nav-cta{
  background:#111;
  color:#fff!important;
  padding:13px 18px;
  border-radius:999px;
  box-shadow:0 12px 30px rgba(17,17,17,.18);
}

.hero{
  min-height:860px;
  position:relative;
  display:grid;
  align-items:center;
  overflow:hidden;
  background:#111;
  padding-top:104px;
}

.hero-image{
  position:absolute;
  inset:0;
  background-image:url('assets/robbie-hero.webp');
  background-size:cover;
  background-position:center top;
  transform:scale(1.01);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(13,13,12,.82) 0%,rgba(13,13,12,.58) 34%,rgba(13,13,12,.16) 68%,rgba(13,13,12,.05) 100%);
}

.hero-content{
  position:relative;
  z-index:1;
  color:#fff;
  padding:110px 0 95px;
  max-width:1180px;
}

.eyebrow{
  margin:0 0 18px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:800;
  color:rgba(255,255,255,.78);
}

.eyebrow.dark{
  color:var(--sage);
}

h1,h2,h3,p{
  margin-top:0;
}

h1{
  font-family:"Playfair Display",serif;
  font-size:clamp(42px,5.8vw,74px);
  line-height:1;
  letter-spacing:-.045em;
  max-width:720px;
  margin-bottom:28px;
}

h2{
  font-family:"Playfair Display",serif;
  font-size:clamp(34px,4.6vw,62px);
  line-height:1.02;
  letter-spacing:-.04em;
  margin-bottom:22px;
}

h3{
  font-size:22px;
  line-height:1.18;
  letter-spacing:-.02em;
  margin-bottom:10px;
}

.hero-copy{
  font-size:clamp(18px,2vw,22px);
  max-width:660px;
  color:rgba(255,255,255,.84);
  margin-bottom:34px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:13px;
  border:1px solid transparent;
  transition:.22s ease;
  cursor:pointer;
}

.button-primary{
  background:#fff;
  color:#111;
}

.button-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 42px rgba(0,0,0,.18);
}

.button-secondary{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.35);
  color:#fff;
}

.button-secondary:hover{
  background:rgba(255,255,255,.2);
}

.button.full{
  width:100%;
  background:#111;
  color:#fff;
  border:0;
}

.trust-strip{
  background:#111;
  color:#fff;
  padding:20px 0;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:rgba(255,255,255,.18);
  border-radius:18px;
  overflow:hidden;
}

.trust-grid div{
  background:#111;
  padding:18px 16px;
  text-align:center;
}

.trust-grid span{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:800;
  color:rgba(255,255,255,.82);
}

.section{
  padding:110px 0;
}

.two-column{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}

.intro-section{
  background:var(--cream);
}

.lead-copy{
  font-size:18px;
  color:var(--muted);
  max-width:680px;
}

.lead-copy p:last-child{
  margin-bottom:0;
}

.section-heading{
  max-width:760px;
  margin-bottom:50px;
}

.section-heading.centered{
  text-align:center;
  margin-inline:auto;
}

.section-heading p{
  color:var(--muted);
  font-size:18px;
}

.services-section{
  background:#fff;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.service-card{
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 20px 60px rgba(17,17,17,.07);
}

.service-card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}

.service-card-content{
  padding:30px;
}

.service-card p{
  color:var(--muted);
  margin-bottom:20px;
}

.service-card ul{
  padding-left:18px;
  margin:0;
  color:var(--charcoal);
}

.service-card li{
  margin:7px 0;
}

.featured-card{
  transform:translateY(0px);
}

.why-section{
  background:linear-gradient(135deg,#f8f4ed 0%,#eee7dc 100%);
}

.why-grid{
  align-items:center;
}

.why-card{
  background:#fff;
  border-radius:var(--radius);
  padding:48px;
  box-shadow:var(--shadow);
}

.why-card p{
  color:var(--muted);
}

.feature-list{
  display:grid;
  gap:22px;
}

.feature-item{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:22px;
  padding:26px;
  border-bottom:1px solid var(--line);
}

.feature-item span{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:50%;
  font-weight:800;
  color:var(--sage);
}

.feature-item p{
  color:var(--muted);
  margin:0;
}

.about-section{
  background:#111;
  color:#fff;
}

.about-grid{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:70px;
  align-items:center;
}

.about-image-wrap{
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(0,0,0,.36);
}

.about-image-wrap img{
  width:100%;
  height:680px;
  object-fit:cover;
}

.about-copy p{
  color:rgba(255,255,255,.76);
  font-size:18px;
}

.about-copy .eyebrow{
  color:rgba(255,255,255,.64);
}

.text-link{
  display:inline-flex;
  margin-top:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:13px;
  border-bottom:1px solid currentColor;
  padding-bottom:6px;
  color:#fff;
}

.areas-section{
  background:#30382f;
  color:#fff;
  position:relative;
  overflow:hidden;
}

.areas-section:before{
  content:"";
  position:absolute;
  inset:-40%;
  background:radial-gradient(circle at 20% 20%,rgba(255,255,255,.12),transparent 36%);
  pointer-events:none;
}

.areas-wrap{
  position:relative;
}

.light-heading p{
  color:rgba(255,255,255,.76);
}

.area-pills{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.area-pills span{
  border:1px solid rgba(255,255,255,.24);
  border-radius:999px;
  padding:15px 22px;
  background:rgba(255,255,255,.08);
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:13px;
}

.process-section{
  background:var(--cream);
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.process-step{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px;
}

.process-step span{
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  border-radius:50%;
  background:#111;
  color:#fff;
  font-weight:900;
  margin-bottom:22px;
}

.process-step p{
  color:var(--muted);
  margin-bottom:0;
}

.quote-section{
  background:#111;
  color:#fff;
  padding:110px 0;
}

.quote-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:start;
}

.quote-copy{
  position:sticky;
  top:132px;
}

.quote-copy p{
  font-size:18px;
  color:rgba(255,255,255,.76);
}

.contact-cards{
  display:grid;
  gap:12px;
  margin-top:32px;
}

.contact-cards a{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  padding:18px 20px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  background:rgba(255,255,255,.06);
}

.contact-cards span{
  color:rgba(255,255,255,.6);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
}

.contact-cards strong{
  font-size:15px;
}

.quote-form{
  background:#fff;
  color:#111;
  border-radius:32px;
  padding:34px;
  box-shadow:0 30px 90px rgba(0,0,0,.34);
}

.form-row.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

label{
  display:block;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(17,17,17,.66);
  margin-bottom:16px;
}

input,select,textarea{
  width:100%;
  margin-top:8px;
  border:1px solid rgba(17,17,17,.14);
  border-radius:14px;
  background:#fbfaf7;
  padding:15px 14px;
  font:inherit;
  color:#111;
  outline:none;
}

input:focus,select:focus,textarea:focus{
  border-color:#111;
  box-shadow:0 0 0 4px rgba(17,17,17,.08);
}

textarea{
  resize:vertical;
}

.hidden-field{
  display:none;
}

.form-note{
  font-size:13px;
  color:var(--muted);
  margin:16px 0 0;
  text-align:center;
}

.form-note a{
  text-decoration:underline;
  text-underline-offset:3px;
}

.site-footer{
  background:#f1eadf;
  border-top:1px solid var(--line);
  padding:42px 0;
}

.footer-inner{
  display:grid;
  grid-template-columns:130px 1fr auto;
  gap:30px;
  align-items:center;
}

.footer-brand img{
  width:120px;
}

.site-footer p{
  margin:0;
  color:var(--muted);
}

.footer-small{
  font-size:13px;
}

.footer-links{
  display:flex;
  gap:18px;
  font-weight:800;
  font-size:14px;
}

@media (max-width: 920px){
  .nav a:not(.nav-cta){
    display:none;
  }

  .hero{
    min-height:760px;
  }

  .hero-overlay{
    background:linear-gradient(90deg,rgba(13,13,12,.82),rgba(13,13,12,.38));
  }

  .two-column,
  .about-grid,
  .quote-grid{
    grid-template-columns:1fr;
    gap:42px;
  }

  .services-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

  .featured-card{
    transform:none;
  }

  .trust-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .about-image-wrap img{
    height:520px;
  }

  .quote-copy{
    position:static;
  }

  .footer-inner{
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
  }

  .footer-links{
    flex-direction:column;
    gap:8px;
  }

  .section,
  .quote-section{
    padding:82px 0;
  }
}

@media (max-width: 620px){
  .container{
    width:min(calc(100% - 28px),var(--max));
  }

  .header-inner{
    min-height:82px;
    padding:10px 0;
  }

  .brand img{
    height:58px;
  }

  .nav-cta{
    padding:11px 14px;
  }

  .hero{
    padding-top:82px;
    min-height:720px;
  }

  .hero-image{
    background-position:62% center;
  }

  .hero-overlay{
    background:linear-gradient(0deg,rgba(13,13,12,.78),rgba(13,13,12,.42));
  }

  .hero-content{
    padding:90px 0 72px;
  }

  .hero-actions .button{
    width:100%;
  }

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

  .service-card-content,
  .why-card,
  .process-step,
  .quote-form{
    padding:24px;
  }

  .feature-item{
    grid-template-columns:1fr;
    padding:22px 0;
  }

  .form-row.two{
    grid-template-columns:1fr;
    gap:0;
  }

  .about-image-wrap img{
    height:430px;
  }

  h1{
    font-size:42px;
  }

  .footer-brand img{
    width:100px;
  }
}