:root{
  /* Light, modern base */
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef2f6;
  --text: #111827;
  --muted: rgba(17,24,39,.74);
  --muted-2: rgba(17,24,39,.58);

  --brand-900: #1f2a32; /* deep slate */
  --brand-700: #2f3f4b;
  --brand-500: #5d6c78; /* blue-gray */

  /* Softer, more professional accent (still matches the logo) */
  --accent: #c78164; /* softened terracotta */
  --accent-2: #e2a58b;

  --ring: rgba(199,129,100,.35);
  --border: rgba(17,24,39,.12);

  --shadow: 0 24px 70px rgba(17,24,39,.14);
  --shadow-soft: 0 14px 34px rgba(17,24,39,.10);

  --radius: 18px;
  --radius-sm: 14px;

  --container: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 520px at 10% -10%, rgba(93,108,120,.16), transparent 60%),
    radial-gradient(800px 700px at 90% 0%, rgba(199,129,100,.14), transparent 62%),
    linear-gradient(180deg, var(--bg), #ffffff 60%, #f3f6fa);
  line-height:1.55;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  border:0;
}

.skip-link{
  position:absolute;
  left:12px; top:12px;
  transform:translateY(-140%);
  background:var(--surface);
  border:1px solid var(--border);
  padding:10px 12px;
  border-radius:12px;
  z-index:1000;
}
.skip-link:focus{transform:translateY(0); outline:2px solid var(--ring); outline-offset:2px}

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

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(17,24,39,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width:0}
.brand-logo{
  border-radius:14px;
  background:rgba(255,255,255,.9);
  box-shadow: 0 10px 22px rgba(17,24,39,.10);
}
.brand-text{display:flex; flex-direction:column; min-width:0}
.brand-name{font-weight:800; letter-spacing:.2px; font-size:15px; line-height:1.1; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.brand-tag{font-weight:600; color:var(--muted-2); font-size:12px}

.site-nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-link{
  font-weight:700;
  font-size:13px;
  padding:10px 12px;
  border-radius:12px;
  color:rgba(17,24,39,.92);
  border:1px solid transparent;
}
.nav-link:hover{background:rgba(17,24,39,.05)}
.nav-link:focus-visible{outline:2px solid var(--ring); outline-offset:2px}
.nav-link.is-active{background:rgba(17,24,39,.06); border-color:rgba(17,24,39,.10)}
.nav-cta{
  background:linear-gradient(180deg, rgba(199,129,100,.95), rgba(184,116,90,.95));
  color:#ffffff;
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 12px 24px rgba(199,129,100,.18);
}
.nav-cta:hover{filter:brightness(1.04)}
.nav-phone{color:rgba(17,24,39,.78)}

.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(17,24,39,.04);
  border:1px solid rgba(17,24,39,.10);
  color:var(--text);
}
.nav-toggle:focus-visible{outline:2px solid var(--ring); outline-offset:2px}
.nav-toggle-bars{
  width:18px; height:12px; position:relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after,
.nav-toggle-bars{display:block}
.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:2px;
  background:rgba(17,24,39,.84);
  border-radius:99px;
}
.nav-toggle-bars::before{top:0}
.nav-toggle-bars::after{bottom:0}
.nav-toggle-bars{
  background:rgba(17,24,39,.84);
  height:2px;
  border-radius:99px;
  top:5px;
}

/* Hero */
.hero{
  position:relative;
  min-height: calc(100svh - 78px);
  padding: clamp(34px, 4vw, 54px) 0;
  display:flex;
  align-items:center;
  overflow:hidden;
  /* Keep hero readable on top of imagery even in a light theme */
  color:#ffffff;
}
.hero-media{
  position:absolute;
  inset:-24px;
  background-image:url("../img/hero.png");
  background-size:cover;
  background-position:center;
  /* Slight lift so the image reads clearly behind the overlay */
  filter:saturate(1.08) contrast(1.03) brightness(1.08);
  transform:scale(1.02);
}
.hero-overlay{
  position:absolute;
  inset:0;
  /* Lighter overlay so more of the hero image is visible (but still keeps white text readable) */
  background:
    radial-gradient(900px 600px at 15% 20%, rgba(15,20,24,.04), rgba(15,20,24,.48) 58%, rgba(15,20,24,.62)),
    linear-gradient(90deg, rgba(15,20,24,.56), rgba(15,20,24,.22) 55%, rgba(15,20,24,.52));
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.45fr .85fr;
  gap:28px;
  align-items:stretch;
}
.eyebrow{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(238,243,247,.92);
  opacity:.92;
  margin:0 0 12px;
}
.hero-title{
  margin:0 0 10px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.02;
  letter-spacing:-.02em;
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}
.hero-subtitle{
  margin:0 0 18px;
  max-width: 58ch;
  color:rgba(255,255,255,.88);
  font-size: clamp(16px, 1.35vw, 18px);
  text-shadow: 0 10px 24px rgba(0,0,0,.42);
}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  letter-spacing:.01em;
  border:1px solid transparent;
  transition: transform .14s ease, filter .14s ease, background-color .14s ease, border-color .14s ease;
}
.btn:focus-visible{outline:2px solid var(--ring); outline-offset:2px}
.btn:hover{transform: translateY(-1px)}
.btn-full{width:100%}

.btn-primary{
  background:linear-gradient(180deg, rgba(199,129,100,.98), rgba(184,116,90,.98));
  color:#ffffff;
  box-shadow: 0 18px 40px rgba(199,129,100,.22);
}
.btn-primary:hover{filter:brightness(1.04)}
.btn-secondary{
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,248,252,.98));
  color:#111827;
  border-color: rgba(17,24,39,.12);
}
.btn-secondary:hover{filter:brightness(1.02)}
.btn-ghost{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.22);
  color:rgba(255,255,255,.96);
}
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.38);
  color:rgba(255,255,255,.95);
}
.btn-outline:hover{background:rgba(255,255,255,.10)}

.trust-row{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
.trust-item{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.22);
  border-radius:16px;
  padding:12px 12px;
}
.trust-strong{display:block; font-weight:800; font-size:13px; color:#ffffff; text-shadow: 0 2px 8px rgba(0,0,0,.35)}
.trust-muted{display:block; color:rgba(255,255,255,.90); font-weight:600; font-size:12px; text-shadow: 0 2px 6px rgba(0,0,0,.30)}

.hero-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.hero-card-title{margin:0 0 4px; font-size:18px; letter-spacing:-.01em; color:#ffffff; text-shadow: 0 2px 8px rgba(0,0,0,.40)}
.hero-card-sub{margin:0; color:rgba(255,255,255,.92); font-weight:600; text-shadow: 0 2px 6px rgba(0,0,0,.35)}
.hero-card-actions{display:grid; gap:10px; margin-top:14px}
.hero-card-footnote{
  margin:14px 0 0;
  color:rgba(255,255,255,.80);
  font-weight:600;
  font-size:12px;
  line-height:1.5;
}

/* Sections */
.section{padding: clamp(46px, 5.4vw, 76px) 0}
.section-surface{background: var(--surface-2); border-top:1px solid rgba(17,24,39,.06); border-bottom:1px solid rgba(17,24,39,.06)}
.section-white{
  background: var(--surface);
  border-top: 1px solid rgba(17,24,39,.06);
  border-bottom: 1px solid rgba(17,24,39,.06);
}
.section-head{max-width: 76ch; margin-bottom: 22px}
.section-title{margin:0 0 8px; font-size: clamp(22px, 2.4vw, 30px); letter-spacing:-.01em}
.section-subtitle{margin:0; color:var(--muted); font-weight:600}
.inline-link{
  color: var(--brand-900);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero .inline-link{
  color: rgba(255,255,255,.96);
}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:center;
}
.split-reverse{grid-template-columns: .95fr 1.05fr}
.split-reverse > :first-child{order:2}
.split-reverse > :last-child{order:1}
.split-media{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(17,24,39,.10);
  box-shadow: var(--shadow-soft);
  background: var(--surface);
}
.img-cover{width:100%; height:100%; object-fit:cover}
.inline-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.center-actions{display:flex; justify-content:center; margin-top:18px}

.checklist{
  margin:16px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.checklist li{
  position:relative;
  padding-left:28px;
  color:rgba(17,24,39,.88);
  font-weight:600;
}
.checklist li::before{
  content:"";
  position:absolute;
  left:0; top:7px;
  width:16px; height:16px;
  border-radius:6px;
  background:linear-gradient(180deg, rgba(199,129,100,.98), rgba(184,116,90,.98));
  box-shadow: 0 10px 22px rgba(199,129,100,.18);
}

/* Cards + sliders */
.cards,
.gallery,
.quotes,
.projects-grid,
.ig{
  position:relative;
}
.cards-track{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap:12px;
}
.card{
  background: var(--surface);
  border:1px solid rgba(17,24,39,.12);
  border-radius: var(--radius-sm);
  padding:16px;
  box-shadow: var(--shadow-soft);
}
.card-title{margin:0 0 6px; font-size:16px; letter-spacing:-.01em}
.card-body{margin:0; color:var(--muted); font-weight:600; font-size:14px}

.slider-controls{
  display:none;
  justify-content:center;
  gap:10px;
  margin-top:14px;
}
.slider-btn{
  width:46px; height:44px;
  border-radius:14px;
  background:rgba(17,24,39,.04);
  border:1px solid rgba(17,24,39,.10);
  color:rgba(17,24,39,.88);
  font-size:24px;
  line-height:0;
}
.slider-btn:hover{background:rgba(17,24,39,.06)}
.slider-btn:focus-visible{outline:2px solid var(--ring); outline-offset:2px}

.gallery-track{
  display:grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap:12px;
}
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid rgba(17,24,39,.10);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.gallery-item img{width:100%; height:240px; object-fit:cover; transition: transform .25s ease}
.gallery-item:hover img{transform: scale(1.03)}
.gallery-label{
  position:absolute;
  left:12px; bottom:12px;
  padding:8px 10px;
  border-radius: 999px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(17,24,39,.10);
  color:rgba(17,24,39,.92);
  font-weight:800;
  font-size:12px;
}

.quotes-track{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.quote{
  margin:0;
  background: var(--surface);
  border:1px solid rgba(17,24,39,.12);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow-soft);
}
.quote blockquote{margin:0 0 12px; font-weight:700; font-size:15px; color:rgba(17,24,39,.92)}
.quote figcaption{color:var(--muted-2); font-weight:700; font-size:13px}
.muted-note{margin:16px 0 0; color:var(--muted-2); font-weight:600}

/* Pills + CTA panel */
.pill-list{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.pill{
  padding:8px 10px;
  border-radius: 999px;
  background:rgba(17,24,39,.04);
  border:1px solid rgba(17,24,39,.10);
  color:rgba(17,24,39,.88);
  font-weight:700;
  font-size:13px;
}

.cta-panel{
  background:linear-gradient(180deg, rgba(199,129,100,.14), rgba(255,255,255,.92));
  border:1px solid rgba(17,24,39,.12);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow-soft);
}
.cta-panel-title{margin:0 0 8px; font-size:18px; color:var(--text)}
.cta-panel-body{margin:0 0 14px; color:rgba(17,24,39,.82); font-weight:600}
.cta-panel-foot{margin:12px 0 0; color:var(--muted-2); font-weight:700; font-size:12px}

/* Page hero */
.page-hero{padding: 42px 0 18px}
.page-hero-compact{padding: 34px 0 12px}
.page-hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.page-title{margin:0 0 8px; font-size: clamp(30px, 3.4vw, 44px); line-height:1.06; letter-spacing:-.02em}
.page-subtitle{margin:0; color:var(--muted); font-weight:600; max-width: 70ch}
.badge-card{
  background: var(--surface);
  border:1px solid rgba(17,24,39,.12);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow-soft);
}
.badge-title{margin:0 0 6px; font-weight:900}
.badge-body{margin:0 0 10px; color:rgba(238,243,247,.88); font-weight:700}
.badge-muted{margin:0; color:var(--muted-2); font-weight:600}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.mini-card{
  background: var(--surface);
  border:1px solid rgba(17,24,39,.12);
  border-radius: var(--radius);
  padding:18px;
}
.mini-card h3{margin:0 0 6px; font-size:16px}
.mini-card p{margin:0; color:var(--muted); font-weight:600}

.steps{
  margin:16px 0 0;
  padding-left:18px;
  color:rgba(238,243,247,.88);
  font-weight:600;
  display:grid;
  gap:10px;
}

.faq{display:grid; gap:10px}
.faq-item{
  background: var(--surface);
  border:1px solid rgba(17,24,39,.12);
  border-radius: var(--radius);
  padding:14px 16px;
}
.faq-item summary{cursor:pointer; font-weight:800}
.faq-item p{margin:10px 0 0; color:var(--muted); font-weight:600}

/* Form */
.form{display:grid; gap:12px}
.form-row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
label{display:grid; gap:6px; font-weight:800; font-size:13px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(17,24,39,.14);
  background: rgba(255,255,255,.92);
  color:var(--text);
  font:inherit;
  font-weight:650;
}
textarea{resize:vertical}
input:focus-visible, textarea:focus-visible{outline:2px solid var(--ring); outline-offset:2px}
.req{color:var(--accent-2)}
.form-actions{display:grid; gap:10px; align-items:start; margin-top:6px}
.form-muted{margin:0; color:var(--muted-2); font-weight:600; font-size:12px}
.form-success{
  margin:0;
  padding:12px 14px;
  border-radius: 14px;
  background:rgba(199,129,100,.14);
  border:1px solid rgba(199,129,100,.22);
  font-weight:750;
}

/* Projects grid + lightbox */
.projects-track{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}

/* Instagram embeds */
.ig-track{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  align-items:start;
}
.ig-item{
  background: var(--surface);
  border:1px solid rgba(17,24,39,.12);
  border-radius: var(--radius);
  padding:10px;
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
/* Instagram injects its own layout; constrain it to our container */
.ig-item .instagram-media{
  width:100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}
.ig-fallback{
  margin:10px 6px 4px;
  color:var(--muted-2);
  font-weight:650;
  font-size:12px;
}
.ig-fallback a{color: var(--brand-900); text-decoration: underline; text-underline-offset: 3px;}
.project-tile{
  padding:0;
  border:none;
  background:transparent;
  cursor:pointer;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(17,24,39,.10);
  box-shadow: var(--shadow-soft);
}
.project-tile:focus-visible{outline:2px solid var(--ring); outline-offset:2px}
.project-tile img{width:100%; height:260px; object-fit:cover; transition: transform .25s ease}
.project-tile:hover img{transform: scale(1.03)}

.lightbox{
  position:fixed;
  inset:0;
  z-index:1000;
}
.lightbox-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.62);
}
.lightbox-dialog{
  position:relative;
  width:min(1000px, calc(100% - 24px));
  margin: 4vh auto;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(17,24,39,.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.lightbox-img{width:100%; height:auto; display:block}
.lightbox-close{
  position:absolute;
  right:10px;
  top:10px;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(17,24,39,.12);
  background:rgba(17,24,39,.04);
  color:rgba(17,24,39,.88);
  font-size:22px;
  cursor:pointer;
}
.lightbox-close:hover{background:rgba(17,24,39,.06)}
.lightbox-close:focus-visible{outline:2px solid var(--ring); outline-offset:2px}

/* Footer */
.site-footer{
  padding: 36px 0 20px;
  border-top:1px solid rgba(17,24,39,.08);
  background: rgba(255,255,255,.70);
}
.footer-inner{
  display:grid;
  grid-template-columns: 1fr 1.4fr;
  gap:18px;
  align-items:start;
}
.footer-brand{display:flex; gap:12px; align-items:flex-start}
.footer-title{margin:0; font-weight:900}
.footer-muted{margin:4px 0 0; color:var(--muted-2); font-weight:600; font-size:13px}
.footer-cols{display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:14px}
.footer-heading{margin:0 0 10px; font-weight:900; font-size:13px; letter-spacing:.02em}
.footer-link{
  display:block;
  padding:8px 0;
  color:rgba(17,24,39,.86);
  font-weight:700;
}
.footer-link:hover{text-decoration:underline}
.footer-bottom{margin-top:18px; padding-top:14px; border-top:1px solid rgba(238,243,247,.08)}
.footer-bottom{margin-top:18px; padding-top:14px; border-top:1px solid rgba(17,24,39,.08)}

/* Responsive: mobile sliders + hamburger */
@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr; gap:14px}
  .trust-row{display:none}
  .split, .split-reverse{grid-template-columns:1fr}
  .split-reverse > :first-child, .split-reverse > :last-child{order:initial}
  .page-hero-inner{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .footer-cols{grid-template-columns:1fr}

  .nav-toggle{display:inline-flex}
  .site-nav{
    position:fixed;
    left:14px;
    right:14px;
    top:74px;
    flex-direction:column;
    align-items:stretch;
    padding:12px;
    border-radius: 18px;
    background:rgba(255,255,255,.94);
    border:1px solid rgba(17,24,39,.12);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition: opacity .14s ease, transform .14s ease;
  }
  .site-nav.is-open{
    opacity:1;
    transform: translateY(0);
    pointer-events:auto;
  }
  .nav-link{padding:12px 14px; border-radius:14px}

  /* Mobile slider behavior: show 1 at a time, swipeable */
  .cards, .gallery, .quotes, .projects-grid, .ig{
    overflow:hidden;
  }
  .cards-track, .gallery-track, .quotes-track, .projects-track, .ig-track{
    display:flex;
    gap:0;
    transition: transform .32s ease;
    will-change: transform;
  }
  .card, .quote, .gallery-item, .project-tile, .ig-item{
    flex: 0 0 100%;
  }
  .gallery-item img{height:240px}
  .project-tile img{height: 280px}
  .slider-controls{display:flex}

  .form-row{grid-template-columns:1fr}
}

/* Parallax only on large screens (better performance) */
@media (min-width: 981px){
  .hero-media{background-attachment: fixed}
}


