:root{
  --bg:#fafbfc;
  --bg-2:#f5f7fa;
  --text:#16181b;
  --muted:#535a61;
  --gold:#c49b3f;
  --card:#ffffff;
  --line:#e6e9ef;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:80px}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
  background:var(--bg);color:var(--text);line-height:1.7;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility; font-kerning:normal;
}

h1,h2,h3{font-family:"Playfair Display",serif}
h1{font-size:clamp(44px,6.5vw,82px);line-height:1.08;margin:0 0 16px;font-weight:700;letter-spacing:-0.02em}
h2{font-size:clamp(26px,3vw,38px);color:var(--gold);margin:0 0 12px}
h3{font-size:22px;margin:0 0 10px}

.container{max-width:1200px;margin:0 auto;padding:0 24px}

/* Header */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:20;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
.site-header .nav{
  display:flex;
  align-items:center;
  justify-content:space-between; /* keep brand left, nav right */
  min-height:72px;
}
.brand{font-weight:700;font-size:22px;color:#222}
nav{display:flex;gap:16px;align-items:center}
nav a{color:#222;text-decoration:none;font-size:15px;padding:6px}
nav a:hover{color:var(--gold)}
.btn{display:inline-block;padding:10px 18px;border-radius:12px;border:1px solid transparent;text-decoration:none;font-weight:600}
.btn-outline{border-color:#d7dce6;color:#222}
.btn-gold{background:var(--gold);color:#fff}

.hamburger{display:none;cursor:pointer;flex-direction:column;gap:4px;background:none;border:0}
.hamburger span{width:26px;height:3px;background:#333;border-radius:2px}
@media (max-width:768px){
  nav{position:absolute;top:72px;left:0;right:0;background:#fff;border-bottom:1px solid var(--line);flex-direction:column;align-items:center;display:none;padding:12px 0}
  nav.open{display:flex}
  .hamburger{display:flex}
}

/* Hero */
/* HERO — fixed stacking + click-through overlay + bottom-only fade */
.hero{
  position:relative;
  height:100vh;
  min-height:640px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  z-index:0;
  background:url('assets/hero.jpg') center center / cover no-repeat;
  background-attachment:scroll; /* reduces scaling blur on Windows */
}
.hero::after{
  content:'';
  position:absolute; inset:0;
  z-index:1;                 /* under text */
  pointer-events:none;       /* let clicks pass to button */
  background:linear-gradient(
    to bottom,
    rgba(250,251,252,0) 0%,
    rgba(250,251,252,0.75) 80%,
    rgba(250,251,252,0.95) 100%
  );
}
.hero-inner{
  position:relative;
  z-index:2;                 /* above overlay */
  max-width:720px;
  padding-top:80px;
  color:#16181b;             /* ensure readable on light fade */
}
.hero .subtitle{
  font-size:20px;
  color:#444;
  margin:10px 0 24px;
}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap}



/* Sections */
.block{padding:84px 0;background:var(--bg)}
.block-alt{background:var(--bg-2);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.lead{max-width:820px;color:#333}

/* Philosophy grid — now 4 points */
/* Philosophy grid — 4-up with premium icons */
/* Philosophy grid — 4-up with premium icons */
.cols-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:18px;
}
.point{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  padding:20px 18px;
}

.picon{
  width:56px;
  height:56px;
  margin:2px 0 10px;
  stroke:var(--gold);      /* gold accent to match brand */
  display:block;
}

/* Philosophy grid — centered like Services */
.philosophy-grid .point{
  display:flex;
  flex-direction:column;
  align-items:center;         /* center icon + text */
  text-align:center;          /* center headlines and paragraphs */
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  padding:24px;
}

.picon{
  width:64px;
  height:64px;
  margin:0 0 12px;            /* same visual rhythm as Services icons */
  stroke:var(--gold);
  display:block;
}

/* Optional: keep spacing consistent with Services cards */
.philosophy-grid h3{ margin:4px 0 8px; }
.philosophy-grid p{ margin:0; }

/* Grid columns stay 4/2/1 as before */
.cols-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:18px;
}
@media (max-width:1024px){ .cols-4{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){  .cols-4{grid-template-columns:1fr;} }


/* Responsive */
@media (max-width:1024px){
  .cols-4{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:600px){
  .cols-4{grid-template-columns:1fr;}
}

.picon {
  width:56px;
  height:56px;
  margin:2px 0 10px;
  stroke:var(--gold);   /* elegant gold accent */
  display:block;
}



/* Services */
.grid.services{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:28px}
.card{background:var(--card);border:1px solid var(--line);padding:24px;border-radius:14px;box-shadow:0 10px 24px rgba(0,0,0,.04);text-align:center}
.card .icon {
  width:72px;
  height:72px;
  margin:0 auto 14px;
  stroke:var(--gold);          /* gold accent */
  display:block;
}


.card h3{margin:2px 0 8px}

/* Why */
ul.bullets{margin:14px 0 0 0;padding-left:20px}
ul.bullets li{margin:10px 0}

/* Insights */
.two-col{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center}
.img-col{display:flex;justify-content:flex-end}
.two-col img{width:100%;max-width:620px;height:auto;border-radius:14px;border:1px solid var(--line);box-shadow:0 10px 24px rgba(0,0,0,.08)}
ul.checks{margin:12px 0 18px 0;padding-left:20px}
ul.checks li{margin:8px 0}

/* Journey */
.journey-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:16px}
.step{background:var(--card);border:1px solid var(--line);border-radius:14px;padding:18px}
.badge{display:inline-block;background:var(--gold);color:#fff;border-radius:999px;padding:4px 10px;font-weight:700;margin-bottom:6px}

/* Contact */
.contact{text-align:left}
.contact-form{margin-top:12px;background:#fff;border:1px solid var(--line);border-radius:14px;padding:18px}
.contact-form .row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px}
.contact-form input,.contact-form textarea{width:100%;padding:12px;border-radius:10px;border:1px solid #d7dce6;font:inherit;color:#222;background:#fff}
.contact-form button{margin-top:8px}

/* Footer */
.footer{padding:40px 0;text-align:center;color:#555;border-top:1px solid var(--line);background:#fff}

/* Responsive */
@media (max-width:1024px){
  .grid.services{grid-template-columns:repeat(2,1fr)}
  .journey-steps{grid-template-columns:repeat(2,1fr)}
  .cols-3{grid-template-columns:1fr 1fr}
}
@media (max-width:680px){
  .two-col{grid-template-columns:1fr}
  .img-col{justify-content:flex-start}
  .grid.services{grid-template-columns:1fr}
  .journey-steps{grid-template-columns:1fr}
  .contact-form .row{grid-template-columns:1fr}
}

.logo {
  height: 40px;         /* good for desktop nav */
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo {
    height: 32px;       /* smaller for mobile nav */
  }
}
