:root{
  --primary-50:#f0f9ff;
  --primary-100:#e0f2fe;
  --primary-600:#0284c7;
  --primary-700:#0369a1;
  --primary-900:#0c4a6e;
  --stone-50:#fafaf9;
  --stone-100:#f5f5f4;
  --stone-500:#78716c;
  --stone-600:#57534e;
  --stone-700:#44403c;
  --stone-800:#292524;
  --stone-900:#1c1917;
  --radius-xl:18px;
  --radius-2xl:24px;
  --shadow: 0 18px 45px rgba(28,25,23,.12);
  --shadow-2: 0 28px 65px rgba(28,25,23,.16);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth; font-size: calc(100% + 1pt);} 
body{margin:0; font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color:var(--stone-900); background:var(--stone-50); letter-spacing:-0.035em; overflow-x:hidden;}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}

/* Simple, lightweight reveal animations */
.reveal{opacity:0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform;}
.reveal.is-visible{opacity:1; transform: translateY(0);} 
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none;}
}

.container{width:min(1120px, calc(100% - 48px)); margin:0 auto;}

/* Header */
.site-header{position:fixed; top:0; left:0; right:0; z-index:50; padding:18px 0; transition: all .25s ease;}
.site-header.scrolled{background:rgba(255,255,255,.8); backdrop-filter: blur(10px); box-shadow: 0 6px 22px rgba(28,25,23,.08); padding:10px 0;}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:16px;}
.brand{display:flex; align-items:baseline; gap:10px;}
.brand .lumina{font-family:"Playfair Display", Georgia, serif; font-weight:700; font-size:26px; color:var(--primary-900); letter-spacing:-.02em;}
.brand .tag{font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.18em; color:var(--primary-600);}

.nav{display:flex; align-items:center; gap:22px;}
.nav a{font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.14em; color:var(--stone-600);}
.nav a:hover{color:var(--primary-600)}
.btn{display:inline-flex; align-items:center; justify-content:center; gap:10px; border-radius:999px; padding:10px 18px; font-weight:700; transition:all .2s ease;}
.btn-primary{background:var(--primary-600); color:#fff; box-shadow: 0 10px 20px rgba(2,132,199,.22);} 
.btn-primary:hover{background:var(--primary-700); transform: translateY(-1px);}

/* Mobile */
.menu-btn{display:none; border:none; background:transparent; padding:10px; border-radius:12px; cursor:pointer;}
.menu-btn:focus{outline:2px solid rgba(2,132,199,.35)}
.mobile-nav{display:none; position:absolute; left:0; right:0; top:100%; background:#fff; border-top:1px solid var(--stone-100); padding:18px 24px; box-shadow: var(--shadow);} 
.mobile-nav.open{display:flex; flex-direction:column; gap:14px;}
.mobile-nav a{font-weight:700; color:var(--stone-700)}

/* Sections */
.section{padding:96px 0;}
.section.light{background:#fff}
.section.muted{background:var(--stone-50)}
.section-title{margin:0 0 8px; font-family:"Playfair Display", Georgia, serif; font-size:42px; line-height:1.05; letter-spacing:-.02em;}
.section-kicker{margin:0; color:var(--primary-600); font-weight:800; text-transform:uppercase; letter-spacing:.18em; font-size:12px;}
.section-lede{margin:14px 0 0; color:var(--stone-500); font-size:18px; line-height:1.6;}

/* Hero */
.hero{padding-top:120px; min-height:100vh; display:flex; align-items:center; position:relative; overflow:hidden; background:var(--stone-50);} 
.hero::before{content:""; position:absolute; inset:-160px auto auto -160px; width:420px; height:420px; background:var(--primary-100); border-radius:999px; filter: blur(60px); opacity:.45;}

@media(min-width:980px){.hero-grid{position:relative; z-index:1;} .hero-media::before{content:""; position:absolute; top:-70px; right:-70px; bottom:-70px; left:80px; background:var(--primary-50); border-radius: 70px; z-index:-1;}}
.hero-grid{display:grid; gap:44px; align-items:center;}
@media(min-width:980px){.hero-grid{grid-template-columns: 1.05fr .95fr;}}
.pill{display:inline-block; background:var(--primary-100); color:var(--primary-700); font-weight:900; text-transform:uppercase; letter-spacing:.18em; font-size:12px; padding:8px 14px; border-radius:999px;}
.hero h1{margin:0; font-family:"Playfair Display", Georgia, serif; font-size:54px; line-height:1.02; letter-spacing:-.02em;}
@media(min-width:980px){.hero h1{font-size:72px;}}
.hero h1 em{color:var(--primary-600); font-style:italic;}
.hero p{margin:14px 0 0; font-size:20px; color:var(--stone-600); line-height:1.6; max-width:560px;}
.hero-actions{display:flex; flex-wrap:wrap; gap:14px; margin-top:26px;}
.btn-hero{border-radius: var(--radius-xl); padding:14px 20px; font-size:16px; font-weight:900;}
.btn-dark{background:var(--stone-900); color:#fff; box-shadow: var(--shadow);} 
.btn-dark:hover{background:var(--stone-800); box-shadow: var(--shadow-2);} 
.btn-outline{border:2px solid var(--primary-600); color:var(--primary-600); background:transparent;}
.btn-outline:hover{background:var(--primary-50)}

.hero-media{position:relative;}
.hero-photo{border-radius: 28px; overflow:hidden; box-shadow: var(--shadow-2); transform: rotate(1deg); transition: transform .35s ease;}
.hero-photo:hover{transform: rotate(0deg)}
.hero-photo img{height:560px; width:100%; object-fit:cover;}
.badge{position:absolute; right:-10px; bottom:-10px; background:#fff; border:1px solid var(--stone-100); border-radius: 20px; padding:18px; box-shadow: var(--shadow); display:none;}
@media(min-width:720px){.badge{display:block}}
.badge strong{display:block; font-size:32px; color:var(--primary-600)}
.badge span{display:block; font-size:11px; color:var(--stone-500); font-weight:700; text-transform:uppercase; letter-spacing:.06em;}

.avatar-row{display:flex; align-items:center; gap:12px; margin-top:18px;}
.avatars{display:flex;}
.avatars img{width:40px; height:40px; border-radius:999px; border:2px solid #fff; margin-left:-10px; box-shadow: 0 6px 18px rgba(28,25,23,.10);} 
.avatars img:first-child{margin-left:0}
.avatar-row p{margin:0; font-size:13px; color:var(--stone-500)}
.avatar-row b{color:var(--stone-900)}

/* Services */
.services-top{display:flex; flex-direction:column; gap:18px; align-items:flex-start; justify-content:space-between; margin-bottom:42px;}
@media(min-width:980px){.services-top{flex-direction:row; align-items:flex-end}}
.services-grid{display:grid; gap:18px;}
@media(min-width:820px){.services-grid{grid-template-columns: repeat(3, 1fr); gap:22px;}}
.card{background:var(--stone-50); border-radius: 40px; padding:34px; border:1px solid transparent; transition: all .25s ease; box-shadow:none; height:100%; display:flex; flex-direction:column;}
.card:hover{background:#fff; border-color: var(--primary-100); box-shadow: var(--shadow-2); transform: translateY(-2px);} 
.icon{width:56px; height:56px; border-radius:18px; background:#fff; border:1px solid var(--stone-100); display:grid; place-items:center; box-shadow: 0 10px 20px rgba(28,25,23,.06); margin-bottom:18px;}
.card h3{margin:0 0 8px; font-family:"Playfair Display", Georgia, serif; font-size:22px;}
.card p{margin:0; color:var(--stone-600); line-height:1.65; font-size:16px;}
.card .grow{flex:1}
.card .link{margin-top:18px; color:var(--primary-600); font-weight:900; display:inline-flex; align-items:center; gap:10px;}
.card .link:hover{transform: translateX(2px)}

.callout{margin-top:32px; background:var(--primary-600); color:#fff; border-radius: 48px; padding:28px; position:relative; overflow:hidden; box-shadow: var(--shadow-2);} 
.callout::after{content:""; position:absolute; right:-120px; top:-120px; width:340px; height:340px; background:rgba(255,255,255,.12); border-radius:999px; filter: blur(40px);} 
.callout-inner{position:relative; display:flex; flex-direction:column; gap:16px; align-items:center; text-align:center;}
@media(min-width:820px){.callout-inner{flex-direction:row; justify-content:space-between; text-align:left}}
.callout .btn{border-radius: 20px; padding:14px 22px; background:#fff; color:var(--primary-600); font-weight:900;}
.callout .btn:hover{background:var(--stone-50)}

/* About */
.about-grid{display:grid; gap:34px; align-items:center;}
@media(min-width:980px){.about-grid{grid-template-columns: 1.05fr .95fr; gap:60px;}}
.about-photos{display:grid; grid-template-columns: repeat(2, 1fr); gap:12px; position:relative;}
.about-photos .col{display:flex; flex-direction:column; gap:12px;}
.about-photos .col.offset{padding-top:34px}
.about-photos img{border-radius: 18px; height:260px; object-fit:cover; box-shadow: 0 14px 30px rgba(28,25,23,.10);} 
.about-photos img.tall{height:320px}
.about-blob{position:absolute; inset:auto; left:50%; top:50%; width:200px; height:200px; transform: translate(-50%,-50%); background: rgba(2,132,199,.15); border-radius:999px; filter: blur(50px); z-index:-1;}
.about-copy p{margin:0 0 14px; color:var(--stone-600); font-size:18px; line-height:1.7;}
.quote{font-family:"Playfair Display", Georgia, serif; font-style:italic;}
.bullets{display:grid; grid-template-columns: 1fr; gap:14px; margin-top:10px;}
@media(min-width:620px){.bullets{grid-template-columns: 1fr 1fr;}}
.bullet{display:flex; gap:12px; align-items:flex-start;}
.check{width:34px; height:34px; border-radius:12px; background:var(--primary-50); display:grid; place-items:center; flex:0 0 auto;}
.bullet h5{margin:0; font-size:16px}
.bullet small{display:block; margin-top:4px; color:var(--stone-500); font-size:13px; line-height:1.4}

/* Testimonials */
.center{text-align:center}
.testimonials-grid{display:grid; gap:18px; margin-top:34px;}
@media(min-width:820px){.testimonials-grid{grid-template-columns: repeat(3,1fr); gap:22px;}}
.tcard{background:#fff; border:1px solid var(--stone-100); border-radius: 40px; padding:34px; box-shadow: var(--shadow); transition: all .25s ease; display:flex; flex-direction:column;}
.tcard:hover{box-shadow: var(--shadow-2); transform: translateY(-2px)}
.stars{display:flex; gap:4px; margin-bottom:14px; color:#facc15;}
.tcard blockquote{margin:0; color:var(--stone-600); font-size:17px; line-height:1.7; font-style:italic; flex:1;}
.tperson{display:flex; align-items:center; gap:12px; margin-top:22px;}
.tperson img{width:56px; height:56px; border-radius:999px; border:2px solid var(--primary-100); box-shadow: 0 10px 20px rgba(28,25,23,.10);} 
.tperson b{display:block}
.tperson small{display:block; color:var(--stone-500); margin-top:2px}

/* Contact */
.contact-grid{display:grid; gap:30px;}
@media(min-width:980px){.contact-grid{grid-template-columns: 1fr 1fr; gap:60px; align-items:flex-start;}}
.info-row{display:flex; gap:14px; align-items:center;}
.info-ic{width:56px; height:56px; border-radius: 18px; background:var(--primary-50); display:grid; place-items:center; transition: background .2s ease;}
.info-row:hover .info-ic{background:var(--primary-100)}
.info-row .label{font-size:12px; font-weight:900; color: #a8a29e; text-transform:uppercase; letter-spacing:.18em; margin:0;}
.info-row .value{margin:4px 0 0; font-weight:900; font-size:18px;}
.form-card{background:var(--stone-50); border:1px solid var(--stone-100); border-radius: 40px; padding:28px; box-shadow: var(--shadow);} 
@media(min-width:720px){.form-card{padding:40px}}
.form-grid{display:grid; gap:14px;}
@media(min-width:720px){.form-grid{grid-template-columns: 1fr 1fr; gap:18px;}}
label{display:block; font-size:12px; font-weight:900; color:var(--stone-700); text-transform:uppercase; letter-spacing:.12em; margin-bottom:8px;}
input, select, textarea{width:100%; padding:14px 16px; border-radius: 16px; border:1px solid #e7e5e4; font: inherit; background:#fff; letter-spacing:-.02em;}
textarea{min-height:140px; resize:vertical}
input:focus, select:focus, textarea:focus{outline:none; box-shadow: 0 0 0 3px rgba(2,132,199,.22); border-color: transparent;}
.submit{width:100%; border:none; cursor:pointer; padding:16px 18px; border-radius: 20px; font-weight:900; font-size:16px; background:var(--primary-600); color:#fff; box-shadow: var(--shadow);} 
.submit:hover{background:var(--primary-700); box-shadow: var(--shadow-2)}
.fineprint{margin:10px 0 0; text-align:center; font-size:11px; color:#a8a29e; font-weight:900; text-transform:uppercase; letter-spacing:.16em;}
.featured{margin-top:26px; padding-top:20px; border-top:1px solid var(--stone-100);}
.featured .logos{display:flex; flex-wrap:wrap; gap:22px; opacity:.45; filter: grayscale(1);} 
.featured .logos span{font-family:"Playfair Display", Georgia, serif; font-weight:700; font-size:20px;}

/* Footer */
.footer{background:var(--stone-900); color:#fff; padding:72px 0; border-top:1px solid var(--stone-800);} 
.footer-grid{display:grid; gap:28px; margin-bottom:40px;}
@media(min-width:920px){.footer-grid{grid-template-columns: 2fr 1fr 1fr; gap:48px;}}
.footer p{color:#a8a29e; line-height:1.7}
.footer a{color:#a8a29e}
.footer a:hover{color:#fff}
.footer h5{margin:0 0 12px; font-size:18px}
.footer ul{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.footer-bottom{border-top:1px solid var(--stone-800); padding-top:22px; display:flex; flex-direction:column; gap:10px; align-items:flex-start; justify-content:space-between;}
@media(min-width:820px){.footer-bottom{flex-direction:row; align-items:center;}}
.heart{color:#ef4444}

/* Utilities */
.spacer-8{height:8px}
.sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;}

/* Responsive */
@media(max-width:820px){
  .nav{display:none}
  .menu-btn{display:inline-flex}
}

/* --- HERO PANEL FIX (subtle blue panel behind the photo only) --- */
.hero-grid{position:relative; z-index:1;}
.hero-media{position:relative;}
@media(min-width:980px){
  .hero-media::before{content:""; position:absolute; z-index:-1;
    top:-28px; bottom:-28px; left:56px; right:-32px;
    background: var(--primary-50);
    border-radius: 40px;
  }
}

.hamburger{font-size:22px; line-height:1; display:block;}
.emoji{font-size:20px; line-height:1;}
.checkmark{font-size:18px; line-height:1; display:inline-block;}

/* --- Overrides: subfolder-friendly, no SVG, hero panel fix --- */
.hero{background:var(--stone-50);} 
/* Remove the big right-side panel that was causing odd cropping */
.hero::after{display:none !important;}
/* Add a contained soft panel behind the hero image instead */
.hero-media{position:relative;}
@media(min-width:980px){
  .hero-media::before{
    content:"";
    position:absolute;
    inset:-26px -26px -26px 26px;
    background: var(--primary-50);
    border-radius: 44px;
    z-index:0;
  }
  .hero-photo, .badge{position:relative; z-index:1;}
}

/* Emoji/icon styling */
.hamburger{font-size:22px; line-height:1; display:inline-block;}
.icon .emoji, .info-ic .emoji, .checkmark{display:inline-block; font-size:18px;}
