
:root {
  --bg: #0A0A0A;
  --fg: #ffffff;
  --muted: #BABABA;
  --accent: #C9C1AA;
  --card: #121212;
  --line: #1E1E1E;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
a { color: var(--fg); text-decoration: none; }
a.text-link { color: var(--accent); }
.container { width: min(1100px, 92%); margin: 0 auto; }

.logo { display: flex; align-items: center; gap: .6rem; font-weight: 700; letter-spacing: .2px; }
.logo-text { font-weight: 700; }
.logo-mark { font-weight: 700; font-size: 1.5rem; }
/* --- Logo sizing fix --- */
.logo-img { 
  height: 28px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}
.logo-img.small { 
  height: 22px; 
  width: auto; 
  max-width: 140px;
}

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(10,10,10,0.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav a { margin-left: 1rem; opacity: .9; }
.menu-toggle { display:none; background:transparent; border:1px solid var(--line); color:var(--fg); padding:.4rem .6rem; border-radius:8px; }

.site-footer { border-top: 1px solid var(--line); margin-top: 64px; padding: 32px 0; }
.footer-inner { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-logo { display:flex; align-items:center; gap:.5rem; margin-bottom: .5rem; }
.site-footer h4 { margin: 0 0 .5rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: .25rem 0; }
.site-footer .tiny { opacity: .7; font-size: .85rem; padding-top: 6px; }

.content { min-height: 70vh; }
.hero { padding: 72px 0 32px; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; margin: 0 0 12px; }
.hero .sub { color: var(--muted); max-width: 780px; }
.cta-row { display: flex; gap: .75rem; margin-top: 16px; flex-wrap: wrap; }
.trust { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; color: var(--muted); }
.trust span { border:1px solid var(--line); padding:.35rem .55rem; border-radius: 8px; font-size:.9rem; }

/* Home hero trust replacement: intro + chips */
.trust-intro { color: var(--muted); max-width: 780px; font-size: 0.98rem; }
.trust-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.chip { border:1px solid var(--line); padding:.35rem .7rem; border-radius: 10px; font-size:.92rem; background: transparent; color: var(--fg); opacity: 0.95; }

.btn { display: inline-block; padding: .7rem 1rem; border-radius: 10px; border: 1px solid var(--line); }
.btn-primary { background: var(--accent); color: #0A0A0A; }
.btn-secondary { background: transparent; }

.split { padding: 32px 0 44px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.card { background: var(--card); border: 1px solid var(--line); padding: 20px; border-radius: 14px; }
.cards { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; padding: 24px 0 40px; }

.page-hero { padding: 44px 0 12px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.page-hero h1 { margin: 0 0 8px; }
.features { padding: 20px 0; }
.feature { background: var(--card); border:1px solid var(--line); padding:16px; border-radius:12px; }
.callout { background: linear-gradient(180deg, rgba(201,193,170,0.12), rgba(201,193,170,0.06)); border:1px dashed var(--line); border-radius:14px; padding:24px; margin: 24px 0 48px; text-align:center; }

/* Ensure when callout is used together with .container it keeps the container width and stays centered */
.container.callout { width: min(1100px, 92%); max-width: 1100px; margin-left: auto; margin-right: auto; box-sizing: border-box; }

/* debug helpers removed */

.checklist { padding-left: 1.25rem; }
.checklist li { margin: .4rem 0; }

.contact-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap: 1rem; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin:.35rem 0 1rem; padding:.7rem .8rem; border-radius:10px; border:1px solid var(--line); background:#0F0F0F; color:var(--fg); }
.contact-form button { width: 100%; }

@media (max-width: 840px) {
  .grid-2, .contact-grid, .footer-inner { grid-template-columns: 1fr; }
  .menu-toggle { display:block; }
  .nav { display:none; position:absolute; top:64px; right:0; background: rgba(10,10,10,0.98); border-left:1px solid var(--line); border-bottom:1px solid var(--line); padding: .75rem; border-bottom-left-radius:12px; }
  .nav a { display:block; padding:.5rem .75rem; margin:0; }
  .nav.open { display:block; }
}

/* Hero images inserted from Unsplash (remote) for visual polish */
.hero-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: block;
  margin: 18px 0 8px;
}
.image-credit { font-size: 0.78rem; color: var(--muted); text-align: right; margin: 0 0 18px; }
.image-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }

@media (max-width: 640px) {
  .hero-photo { height: 180px; }
}
