/* assets/css/styles.css */

/* =========================
   Fonts
========================= */

@font-face{
  font-family:'Inter';
  src:url('/assets/fonts/inter-400.woff2') format('woff2');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Inter';
  src:url('/assets/fonts/inter-500.woff2') format('woff2');
  font-weight:500;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Inter';
  src:url('/assets/fonts/inter-600.woff2') format('woff2');
  font-weight:600;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Inter';
  src:url('/assets/fonts/inter-700.woff2') format('woff2');
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Inter';
  src:url('/assets/fonts/inter-800.woff2') format('woff2');
  font-weight:800;
  font-style:normal;
  font-display:swap;
}

/* =========================
   Design tokens
========================= */

:root{
  --bg:#0a0a0a;
  --bg2:#101010;

  --surface:#171717;
  --surface-elevated:#1d1d1d;
  --surface-soft:rgba(255,255,255,.03);

  --stroke:#2a2a2a;
  --stroke-strong:rgba(212,165,116,.28);

  --text:#e6e6e6;
  --muted:#b7b7b7;
  --muted-2:#8c8c8c;

  --accent:#d4a574;
  --accent-strong:#c49564;
  --accent-soft:rgba(212,165,116,.12);

  --success:#b7f7c0;
  --error:#ffb3b3;

  --shadow-lg:0 18px 48px rgba(0,0,0,.62);
  --shadow-md:0 10px 28px rgba(0,0,0,.45);

  --radius-lg:16px;
  --radius-md:12px;
  --radius-pill:999px;

  --container:min(1120px, 92%);
  --measure:72ch;
  --measure-wide:80ch;
  --font:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* =========================
   Reset / base
========================= */

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:88px;
}

body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  line-height:1.55;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(212,165,116,.08), transparent 60%),
    radial-gradient(700px 420px at 85% 20%, rgba(255,255,255,.04), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

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

h1,h2,h3{
  margin:0;
  font-weight:800;
  letter-spacing:-.02em;
}

@supports (text-wrap: balance){
  h1,h2,h3{
    text-wrap:balance;
  }
}

p{
  margin:.5rem 0 1rem;
}

a{
  color:var(--accent);
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
}

button,
input,
select,
textarea{
  font:inherit;
}

button{
  color:inherit;
}

.container{
  width:var(--container);
  margin:0 auto;
}

.section{
  padding:76px 0;
}

.section.alt{
  background:linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0));
  border-top:1px solid #222;
  border-bottom:1px solid #222;
}

.section + .section{
  padding-top:0;
}

.muted{ color:var(--muted); }
.small{ font-size:.92rem; }
.fineprint{ color:var(--muted); margin-top:18px; }

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

/* =========================
   Focus states
========================= */

:focus{
  outline:none;
}

:focus-visible{
  outline:3px solid rgba(212,165,116,.85);
  outline-offset:3px;
  border-radius:10px;
}

/* =========================
   Header / nav
========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(10,10,10,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #222;
}

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

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  color:var(--text);
  flex-shrink:0;
}

.brand:hover{
  text-decoration:none;
}

.brand-wordmark{
  gap:0;
}

.brand-wordmark .brand-text{
  display:flex;
  align-items:baseline;
  gap:.45ch;
  font-size:1.05rem;
  line-height:1;
}

.brand-wordmark .brand-name{
  font-weight:850;
  letter-spacing:-.025em;
}

.brand-wordmark .brand-divider{
  font-weight:650;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:.72em;
  opacity:.86;
  margin-left:.12ch;
}

.nav{
  position:relative;
}

.nav-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:none;
  gap:18px;
  align-items:center;
}

.nav-menu a{
  color:var(--text);
  font-weight:700;
  font-size:.95rem;
  padding:10px 10px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  transition:color .2s ease, background-color .2s ease, border-color .2s ease;
}

.nav-menu a:hover{
  background:rgba(255,255,255,.06);
  color:var(--accent);
  text-decoration:none;
}

.nav-menu a.active{
  background:rgba(255,255,255,.05);
  border:1px solid var(--stroke);
  color:var(--accent);
}

.nav-toggle{
  background:transparent;
  border:0;
  cursor:pointer;
  display:inline-flex;
  flex-direction:column;
  gap:5px;
  padding:10px;
  border-radius:12px;
}

.nav-toggle:hover{
  background:rgba(255,255,255,.06);
}

.nav-toggle-bar{
  width:24px;
  height:2px;
  background:rgba(230,230,230,.92);
}

@media (min-width:860px){
  .nav-toggle{ display:none; }
  .nav-menu{ display:flex; }
}

.nav-menu.open{
  display:grid;
  gap:8px;
  padding:10px;
}

@media (max-width:859px){
  .nav-menu{
    position:absolute;
    right:0;
    top:52px;
    background:rgba(10,10,10,.98);
    border:1px solid var(--stroke);
    border-radius:14px;
    box-shadow:var(--shadow-lg);
    min-width:220px;
    max-width:min(88vw, 320px);
  }

  .nav-menu a{
    padding:12px;
  }
}

/* =========================
   Buttons
========================= */

.btn,
.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  font-weight:800;
  border:1px solid transparent;
  transition:transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, opacity .2s ease;
}

.btn{
  background:linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color:var(--bg);
  box-shadow:0 10px 22px rgba(212,165,116,.16);
}

.btn:hover{
  transform:translateY(-1px);
  text-decoration:none;
  box-shadow:0 14px 28px rgba(212,165,116,.18);
}

.btn:active{
  transform:translateY(0);
}

.btn-ghost{
  background:rgba(255,255,255,.02);
  border-color:rgba(212,165,116,.55);
  color:var(--accent);
}

.btn-ghost:hover{
  background:rgba(212,165,116,.08);
  text-decoration:none;
  transform:translateY(-1px);
  border-color:var(--accent-strong);
  color:var(--accent);
}

.btn-small{
  padding:10px 14px;
  border-radius:12px;
}

.btn[disabled],
.btn-ghost[disabled],
button[disabled]{
  opacity:.58;
  cursor:not-allowed;
  transform:none !important;
  box-shadow:none !important;
}

.nav-menu a.btn,
.nav-menu a.btn:hover{
  background:linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color:var(--bg);
  border:1px solid transparent;
  text-decoration:none;
}

/* =========================
   Generic UI
========================= */

.card{
  position:relative;
  background:linear-gradient(180deg, rgba(24,24,24,1), rgba(18,18,18,1));
  border:1px solid var(--stroke);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
  overflow:hidden;
  transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.card:hover{
  border-color:rgba(212,165,116,.26);
}

.card-body{
  padding:22px;
}

.card-body h2{
  font-size:1.5rem;
  line-height:1.12;
}

.card-body h3{
  font-size:1.12rem;
  line-height:1.18;
}

.card-body .muted{
  line-height:1.62;
}

.section-head{
  margin-bottom:28px;
}

.section-head h1{
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.06;
  letter-spacing:-.025em;
  max-width:16ch;
}

.section-head h2{
  font-size:2rem;
}

.section-head p{
  max-width:var(--measure);
}

.section-head .muted{
  font-size:1.02rem;
}

.grid{
  display:grid;
  gap:18px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:var(--radius-pill);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text);
  background:rgba(255,255,255,.05);
  border:1px solid var(--stroke);
}

.bullets{
  margin:12px 0 0;
  padding-left:18px;
  color:rgba(230,230,230,.92);
}

.bullets li{
  margin:8px 0;
}

.card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-top:16px;
}

.services-grid .card .badge{
  margin-bottom:4px;
}

.services-grid .card h2,
.services-grid .card h3{
  margin-bottom:8px;
}

.services-grid .card p:last-child,
.services-grid .card ul:last-child{
  margin-bottom:0;
}

/* =========================
   Hero
========================= */

.hero-title{
  font-size:clamp(2.2rem, 4.2vw, 4rem);
  line-height:1.04;
  margin-top:14px;
  margin-bottom:14px;
  max-width:13ch;
}

.hero-accent{
  color:var(--accent);
}

.hero-lead{
  color:var(--muted);
  font-size:1.05rem;
  max-width:58ch;
  margin-top:12px;
}

.badge-obsidian{
  letter-spacing:.18em;
}

.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:20px 0 10px;
}

.hero-trust{
  margin-top:16px;
}

.hero-caption{
  margin-top:10px;
}

.media-frame-obsidian{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border:1px solid rgba(212,165,116,.2);
  border-radius:18px;
  box-shadow:0 0 0 1px rgba(212,165,116,.06), 0 16px 40px rgba(0,0,0,.32);
  overflow:hidden;
  padding:12px;
}

.media-inner{
  border:1px solid var(--stroke);
  border-radius:14px;
  overflow:hidden;
  background:rgba(0,0,0,.35);
}

/* home hero */
body.home .hero{
  padding-top:72px;
  padding-bottom:72px;
}

body.home .hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  align-items:center;
}

body.home .proof{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

body.home .proof li{
  font-size:.92rem;
  color:rgba(230,230,230,.92);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.035);
  border:1px solid var(--stroke);
}

body.home .hero-media{
  justify-self:center;
  width:min(560px, 100%);
}

@media (min-width:980px){
  body.home .hero-grid{
    grid-template-columns:1.08fr .92fr;
    gap:34px;
  }

  body.home .hero-media{
    justify-self:end;
  }

  body.home .hero-copy{
    position:relative;
  }

  body.home .hero-copy::before{
    content:"";
    position:absolute;
    left:-18px;
    top:6px;
    bottom:6px;
    width:1px;
    background:rgba(212,165,116,.2);
  }
}

/* =========================
   Authority strip
========================= */

.authority-strip{
  padding-top:10px;
  padding-bottom:10px;
}

.authority-strip .proof{
  margin:0;
  padding:10px 12px;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.025);
  border-radius:14px;
}

.authority-strip .proof li{
  margin:0;
  padding:0;
  font-size:.9rem;
  line-height:1;
  color:rgba(230,230,230,.84);
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.authority-strip .proof li::before{
  content:"•";
  color:rgba(212,165,116,.85);
  font-weight:900;
}

.authority-strip .proof li:first-child::before{
  content:"";
}

@media (max-width:720px){
  .authority-strip .proof{
    flex-wrap:nowrap;
    overflow-x:auto;
    justify-content:flex-start;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  .authority-strip .proof::-webkit-scrollbar{
    display:none;
  }

  .authority-strip .proof li{
    white-space:nowrap;
  }
}

/* =========================
   About insert
========================= */

body.home .about-insert{
  padding-top:0;
}

body.home .about-card{
  border-color:rgba(212,165,116,.22);
  background:
    radial-gradient(520px 200px at 0% 0%, rgba(212,165,116,.08), transparent 60%),
    linear-gradient(180deg, #181818 0%, #111111 100%);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
  padding:22px;
  overflow:hidden;
}

body.home .about-top{
  margin:0 0 14px;
}

body.home .about-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--bg);
  background:var(--accent);
  border:1px solid var(--accent-strong);
}

body.home .about-badge::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--bg);
  box-shadow:0 0 0 3px rgba(0,0,0,.18);
}

body.home .about-grid{
  display:grid;
  gap:18px;
  align-items:start;
  grid-template-columns:1fr;
}

body.home .about-avatar{
  width:56px;
  height:56px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:900;
  letter-spacing:-.02em;
  color:var(--bg);
  background:linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow:0 14px 28px rgba(212,165,116,.16);
}

body.home .about-hi{
  font-size:1.6rem;
  margin:2px 0 10px;
}

body.home .about-text{
  margin:0 0 10px;
  max-width:74ch;
}

body.home .about-contact{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin:14px 0 0;
}

body.home .about-contact .link{
  font-weight:900;
}

body.home .about-contact .btn-ghost{
  border-color:rgba(212,165,116,.42);
}

@media (min-width:968px){
  body.home .about-grid{
    grid-template-columns:72px 1fr;
    gap:20px;
    align-items:start;
  }
}

/* =========================
   Content grids / cards
========================= */

@media (min-width:900px){
  .services-grid{ grid-template-columns:repeat(3, 1fr); }
  .pricing-grid{ grid-template-columns:repeat(2, 1fr); }
}

@media (min-width:1100px){
  .pricing-grid{ grid-template-columns:repeat(3, 1fr); }
}

.services-grid .card:hover{
  transform:translateY(-4px);
  border-color:rgba(212,165,116,.42);
  box-shadow:var(--shadow-lg);
}

.work-card--split{
  display:grid;
  grid-template-columns:1fr;
}

.work-media{
  background:rgba(0,0,0,.35);
  border-bottom:1px solid var(--stroke);
}

.work-img{
  width:100%;
  height:auto;
  max-height:520px;
  object-fit:cover;
}

.work-card--split .card-body{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.work-card--split .card-body > p.muted:first-of-type{
  margin-top:6px;
  margin-bottom:12px;
  font-size:.94rem;
  color:var(--muted-2);
}

@media (min-width:980px){
  .work-card--split{
    grid-template-columns:1fr 1fr;
    align-items:stretch;
  }

  .work-media{
    border-bottom:0;
    border-right:1px solid var(--stroke);
  }

  .work-img{
    height:100%;
    max-height:none;
    object-fit:cover;
  }
}

/* =========================
   Process / checklist / FAQ
========================= */

.process-grid-new{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:20px;
  margin-top:30px;
}

.process-step-new{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:24px;
  position:relative;
}

.step-number-new{
  color:var(--accent);
  font-size:14px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:12px;
  display:block;
}

.checklist-card{
  background:linear-gradient(145deg, #161616, #0d0d0d);
  border:1px solid var(--stroke);
  border-left:4px solid var(--accent);
  border-radius:16px;
  padding:32px;
  box-shadow:0 12px 40px rgba(0,0,0,.42);
  margin-top:24px;
}

.check-list{
  margin:24px 0 0;
  padding:0;
  list-style:none;
}

.check-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:16px;
  font-size:16px;
  font-weight:500;
}

.check-box{
  width:22px;
  height:22px;
  border:2px solid var(--accent);
  border-radius:6px;
  flex-shrink:0;
  margin-top:2px;
  background:rgba(212,165,116,.10);
  position:relative;
  transition:background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.interactive-check:checked + .check-box{
  background:rgba(212,165,116,.22);
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(212,165,116,.10);
}

.interactive-check:checked + .check-box::after{
  content:"";
  position:absolute;
  left:5px;
  top:1px;
  width:6px;
  height:12px;
  border:solid var(--accent);
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}

.interactive-check:focus-visible + .check-box{
  outline:3px solid rgba(212,165,116,.85);
  outline-offset:3px;
}

.checklist-warning{
  margin-top:24px;
  padding-top:16px;
  border-top:1px solid var(--stroke);
  color:var(--muted);
  font-size:14px;
}

.faq-grid{
  grid-template-columns:1fr;
  gap:12px;
}

.faq{
  overflow:hidden;
}

.faq > summary{
  cursor:pointer;
  list-style:none;
  padding:18px 22px;
  font-weight:900;
  color:rgba(230,230,230,.96);
}

.faq > summary::-webkit-details-marker{
  display:none;
}

.faq > summary::after{
  content:"+";
  float:right;
  color:var(--accent);
  font-weight:900;
}

.faq[open] > summary::after{
  content:"–";
}

.faq-a{
  padding-top:0;
}

/* =========================
   Contact / forms
========================= */

.contact-grid{
  display:grid;
  gap:18px;
  align-items:start;
}

.contact-left{
  display:grid;
  gap:18px;
}

@media (min-width:980px){
  .contact-grid{
    grid-template-columns:1fr 1fr;
  }
}

.field{
  margin-bottom:16px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

label{
  font-weight:800;
  color:rgba(230,230,230,.96);
  font-size:.95rem;
}

input, select, textarea{
  width:100%;
  min-height:50px;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(0,0,0,.42);
  color:rgba(230,230,230,.96);
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

textarea{
  min-height:140px;
  resize:vertical;
}

input:hover,
select:hover,
textarea:hover{
  border-color:rgba(212,165,116,.26);
}

input:focus,
select:focus,
textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(212,165,116,.16);
}

.form.card{
  border-color:rgba(212,165,116,.26);
  background:
    radial-gradient(600px 240px at 100% 0%, rgba(212,165,116,.08), transparent 60%),
    linear-gradient(180deg, rgba(24,24,24,1), rgba(18,18,18,1));
}

.form .card-body{
  padding:24px;
}

.form .btn{
  width:100%;
  margin-top:6px;
  min-height:52px;
  font-size:1rem;
  box-shadow:0 12px 28px rgba(212,165,116,.18);
}

.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

#formStatus[data-type="success"]{ color:var(--success); }
#formStatus[data-type="error"]{ color:var(--error); }
#formStatus[data-type="info"]{ color:rgba(230,230,230,.85); }

/* =========================
   Testimonials
========================= */

.testimonials-top{
  display:grid;
  gap:18px;
  margin-bottom:18px;
}

@media (min-width:900px){
  .testimonials-top{
    grid-template-columns:1fr 1fr;
    align-items:stretch;
  }
}

.rating-row{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.rating-score{
  font-weight:900;
  font-size:1.8rem;
  line-height:1;
}

.rating-stars{
  display:inline-flex;
  gap:4px;
}

.star{
  width:18px;
  height:18px;
  display:inline-block;
  border-radius:4px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--stroke);
  position:relative;
  overflow:hidden;
}

.star.fill::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.testimonials-grid{
  grid-template-columns:1fr;
  margin-bottom:18px;
}

@media (min-width:900px){
  .testimonials-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

.testimonial-card .card-body{
  display:grid;
  gap:10px;
}

.testimonial-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

.testimonial-who{
  font-weight:900;
}

.testimonial-meta{
  font-size:.9rem;
  color:var(--muted);
}

.testimonial-text{
  margin:0;
  color:rgba(230,230,230,.96);
}

/* =========================
   Local pages
========================= */

body.local .section{
  padding:76px 0;
}

.local-hero{
  padding-top:64px;
  padding-bottom:64px;
}

.local-hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  align-items:start;
}

@media (min-width:980px){
  .local-hero-grid{
    grid-template-columns:1.15fr .85fr;
    gap:26px;
    align-items:stretch;
  }
}

.local-panel-title{
  margin:0 0 10px;
  font-size:1.1rem;
}

.local-panel-list{
  margin:0;
  padding-left:18px;
  color:rgba(230,230,230,.92);
}

.local-panel-list li{
  margin:6px 0;
}

.local-icons-grid{
  grid-template-columns:1fr;
}

@media (min-width:900px){
  .local-icons-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

.icon-card .icon-row{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:8px;
}

.icon-badge{
  width:40px;
  height:40px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(212,165,116,.10);
  border:1px solid rgba(212,165,116,.35);
  box-shadow:0 12px 28px rgba(0,0,0,.25);
}

.icon-badge svg{
  width:22px;
  height:22px;
  stroke:var(--accent);
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* =========================
   Page shell / breadcrumbs
========================= */

.page-wrap{
  min-height:calc(100vh - 80px);
  display:flex;
  flex-direction:column;
}

.page-main{
  flex:1;
}

.crumbs{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 18px;
  color:var(--muted);
  font-weight:700;
  font-size:.95rem;
  flex-wrap:wrap;
}

.crumb{
  color:rgba(230,230,230,.86);
}

.crumb:hover{
  text-decoration:none;
  color:var(--accent);
}

.crumb-sep{
  color:rgba(230,230,230,.35);
}

.current{
  color:var(--text);
}

/* =========================
   Footer
========================= */

.site-footer{
  background:var(--bg2);
  border-top:1px solid #222;
  padding:22px 0;
}

.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px 20px;
  flex-wrap:wrap;
}

.footer-inner > p{
  margin:0;
  max-width:42ch;
}

.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  max-width:760px;
}

.link{
  color:#e6e6e6;
  font-weight:800;
  transition:color .2s ease;
}

.link:hover{
  color:var(--accent);
  text-decoration:none;
}

/* =========================
   Cookie consent
========================= */

body.consent-lock{
  overflow:hidden;
}

.consent-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:9999;
  padding:14px;
  display:none;
}

.consent-banner.is-open{
  display:block;
}

.consent-card{
  width:min(1120px, 92%);
  margin:0 auto;
  background:rgba(15,15,15,.92);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  box-shadow:0 18px 48px rgba(0,0,0,.70);
  backdrop-filter:blur(10px);
  overflow:hidden;
}

.consent-inner{
  display:grid;
  gap:12px;
  padding:16px;
}

.consent-title{
  margin:0;
  font-weight:900;
  letter-spacing:-.01em;
}

.consent-text{
  margin:0;
  color:rgba(230,230,230,.86);
  max-width:95ch;
  font-size:.95rem;
}

.consent-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.consent-actions .btn,
.consent-actions .btn-ghost{
  padding:10px 14px;
  border-radius:12px;
}

.consent-overlay{
  position:fixed;
  inset:0;
  z-index:10000;
  background:rgba(0,0,0,.72);
  display:none;
}

.consent-overlay.is-open{
  display:grid;
  place-items:center;
  padding:14px;
}

.consent-modal{
  width:min(760px, 96vw);
  background:linear-gradient(180deg, rgba(26,26,26,1), rgba(18,18,18,1));
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  box-shadow:0 18px 48px rgba(0,0,0,.75);
  overflow:hidden;
}

.consent-modal-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  padding:16px 18px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.consent-modal-head h2{
  margin:0;
  font-size:1.2rem;
  font-weight:900;
}

.consent-close{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(230,230,230,.92);
  width:42px;
  height:42px;
  border-radius:14px;
  cursor:pointer;
  display:inline-grid;
  place-items:center;
  transition:transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.consent-close:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(212,165,116,.35);
  transform:translateY(-1px);
}

.consent-close:active{
  transform:translateY(0);
}

.consent-modal-body{
  padding:16px 18px 6px;
}

.consent-rows{
  display:grid;
  gap:12px;
  margin:14px 0 6px;
}

.consent-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  align-items:center;
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}

.consent-row-title{
  margin:0 0 4px;
  font-weight:900;
}

.consent-row-desc{
  margin:0;
  color:rgba(230,230,230,.80);
  font-size:.92rem;
}

.consent-toggle{
  display:inline-flex;
  align-items:center;
  gap:10px;
  user-select:none;
}

.consent-toggle input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.consent-switch{
  width:46px;
  height:28px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  position:relative;
  transition:background-color .2s ease, border-color .2s ease;
}

.consent-switch::after{
  content:"";
  position:absolute;
  top:3px;
  left:3px;
  width:22px;
  height:22px;
  border-radius:999px;
  background:rgba(230,230,230,.92);
  transition:transform .2s ease, background-color .2s ease;
}

.consent-toggle input:checked + .consent-switch{
  background:rgba(212,165,116,.20);
  border-color:rgba(212,165,116,.55);
}

.consent-toggle input:checked + .consent-switch::after{
  transform:translateX(18px);
  background:var(--accent);
}

.consent-toggle input:focus-visible + .consent-switch{
  outline:3px solid rgba(212,165,116,.85);
  outline-offset:3px;
}

.consent-toggle input:disabled + .consent-switch{
  opacity:.65;
  cursor:not-allowed;
}

.consent-toggle-note{
  font-size:.85rem;
  color:rgba(230,230,230,.70);
  font-weight:800;
}

.consent-modal-foot{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
  padding:14px 18px 18px;
  border-top:1px solid rgba(255,255,255,.08);
}

.consent-modal-foot .btn,
.consent-modal-foot .btn-ghost{
  padding:10px 14px;
  border-radius:12px;
}

/* =========================
   Case study
========================= */

.case-summary{
  margin-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:14px;
}

.case-summary-grid{
  display:grid;
  gap:12px;
}

.case-summary-item{
  display:grid;
  gap:6px;
}

.case-k{
  font-weight:900;
  letter-spacing:.02em;
  color:rgba(230,230,230,.92);
}

.case-v{
  color:var(--muted);
}

.caseStudy .caseGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
  align-items:start;
}

.caseStudy .caseShot,
.caseStudy .lighthousePanel{
  width:100%;
}

.caseStudy .caseShot picture,
.caseStudy .caseShot img,
.caseStudy .lighthousePanel img{
  display:block;
  width:100%;
}

.caseStudy .caseShot img,
.caseStudy .lighthousePanel img{
  height:auto;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.caseStudy .caseShot__cap{
  margin-top:10px;
  font-size:.95rem;
  opacity:.8;
  line-height:1.4;
}

@media (max-width:980px){
  .caseStudy .caseGrid{
    grid-template-columns:1fr;
  }
}

/* =========================
   FAQ page improvements
========================= */

.hard-faq-container{
  display:grid;
  gap:12px;
  max-width:800px;
}

.hard-faq-container > h2{
  margin-top:28px !important;
  margin-bottom:4px !important;
  font-size:1.05rem !important;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--accent) !important;
}

.hard-faq-container details{
  background:linear-gradient(180deg, rgba(24,24,24,1), rgba(17,17,17,1));
  border:1px solid var(--stroke);
  border-radius:14px;
  overflow:hidden;
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.hard-faq-container details:hover{
  border-color:rgba(212,165,116,.32);
}

.hard-faq-container details[open]{
  border-color:rgba(212,165,116,.42);
  box-shadow:0 12px 30px rgba(0,0,0,.28);
}

.hard-faq-container summary{
  cursor:pointer;
  list-style:none;
  padding:18px 20px;
  font-weight:850;
  color:rgba(230,230,230,.98);
  position:relative;
}

.hard-faq-container summary::-webkit-details-marker{
  display:none;
}

.hard-faq-container summary::after{
  content:"+";
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  color:var(--accent);
  font-size:1.15rem;
  font-weight:900;
}

.hard-faq-container details[open] summary::after{
  content:"–";
}

.hard-faq-answer{
  padding:0 20px 18px;
  color:var(--muted);
  line-height:1.65;
}

/* =========================
   Pricing page improvements
========================= */

.pricing-grid{
  align-items:stretch;
}

.pricing-card{
  height:100%;
  display:flex;
  flex-direction:column;
}

.pricing-card .card-body{
  display:flex;
  flex-direction:column;
  height:100%;
}

.pricing-card .price{
  margin:10px 0 6px;
  font-size:1.05rem;
}

.pricing-card .price strong{
  display:block;
  font-size:2rem;
  line-height:1;
  color:var(--text);
  letter-spacing:-.03em;
}

.pricing-card .btn,
.pricing-card .btn-ghost{
  margin-top:auto;
}

.pricing-card.featured{
  border-color:rgba(212,165,116,.58);
  box-shadow:
    0 0 0 1px rgba(212,165,116,.10),
    0 18px 48px rgba(0,0,0,.62);
  background:
    radial-gradient(500px 180px at 50% 0%, rgba(212,165,116,.10), transparent 65%),
    linear-gradient(180deg, rgba(28,23,18,1), rgba(18,18,18,1));
}

.pricing-card.featured::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}

.pricing-card.featured .badge{
  background:rgba(212,165,116,.12);
  border-color:rgba(212,165,116,.45);
  color:var(--accent);
}

.pricing-card.featured .price strong{
  color:var(--accent);
}

/* =========================
   CTA section polish
========================= */

#cta{
  position:relative;
}

#cta .section-head{
  max-width:760px;
}

#cta .card-actions{
  max-width:760px;
}

#cta::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(700px 180px at 50% 0%, rgba(212,165,116,.07), transparent 65%);
}

/* =========================
   Responsive tightening
========================= */

@media (max-width:899px){
  .card-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .card-actions .btn,
  .card-actions .btn-ghost{
    width:100%;
  }

  .section-head h1{
    max-width:14ch;
  }
}

@media (max-width:520px){
  .consent-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .consent-actions .btn,
  .consent-actions .btn-ghost{
    width:100%;
  }
}

@media (max-width:479px){
  html{
    scroll-padding-top:78px;
  }

  .section{
    padding:54px 0;
  }

  body.home .hero,
  .local-hero{
    padding-top:54px;
    padding-bottom:54px;
  }

  .section-head{
    margin-bottom:18px;
  }

  .section-head h2{
    font-size:1.65rem;
  }

  .card-body,
  body.home .about-card{
    padding:18px;
  }

  body.home .about-grid{
    gap:12px;
  }

  .faq > summary{
    padding:16px 18px;
  }

  .pricing-card .price strong{
    font-size:1.72rem;
  }

  .hard-faq-container summary{
    padding:16px 18px;
  }

  .hard-faq-answer{
    padding:0 18px 16px;
  }

  .footer-links{
    gap:10px 14px;
  }
}

/* =========================
   Reduced motion
========================= */

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  *{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }

  .consent-close,
  .consent-switch,
  .consent-switch::after{
    transition:none !important;
  }
}