/* ===== Design tokens ===== */
:root {
  --navy:      #2a1d22;
  --navy-700:  #382730;
  --navy-600:  #46323d;
  --accent:    #8b1c2c;
  --accent-600:#6f1623;
  --accent-light:#e8a7b0;
  --ink:       #1a2230;
  --slate:     #51607a;
  --line:      #e3e7ee;
  --bg:        #ffffff;
  --bg-soft:   #f5f7fa;
  --bg-card:   #ffffff;
  --white:     #ffffff;
  --ok:        #1f8a4c;
  --err:       #c0392b;
  --radius:    14px;
  --radius-sm: 10px;
  --shadow:    0 14px 40px rgba(15, 39, 64, 0.10);
  --shadow-sm: 0 4px 16px rgba(15, 39, 64, 0.07);
  --maxw:      1140px;
  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.18rem; font-weight: 700; }
p  { margin: 0 0 1rem; }
a  { color: var(--accent-600); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin: 0 0 .6rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: #a51f33; color: #fff; box-shadow: 0 8px 22px rgba(165,31,51,.40); }
.btn-primary:hover { background: #b9243b; }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 90px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-logo { display: block; height: 72px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); font-weight: 800; }
.brand-text em { font-style: normal; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-600); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--navy-700); }
.main-nav a:hover { color: var(--accent-600); text-decoration: none; }
.main-nav .nav-cta {
  background: var(--navy); color: #fff; padding: .55rem 1.1rem; border-radius: var(--radius-sm);
}
.main-nav .nav-cta:hover { background: var(--navy-700); color: #fff; }

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(139,28,44,.28), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
  color: #f1eaeb;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.hero-grid { display: grid; grid-template-columns: 1.35fr .9fr; gap: 3rem; align-items: center; }
.hero-copy .eyebrow { color: var(--accent-light); }
.hero h1 { color: #fff; }
.hero .lead { font-size: 1.18rem; color: #d7c9cc; max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.8rem 0 1.4rem; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 1.4rem; padding: 0; margin: 0; }
.hero-badges li { position: relative; padding-left: 1.4rem; font-size: .92rem; color: #ccbcc0; font-weight: 500; }
.hero-badges li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent-light);
  font-weight: 800;
}

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 1.8rem;
  backdrop-filter: blur(4px);
}
.hero-card h2 { color: #fff; font-size: 1.4rem; }
.hero-card > p { color: #d7c9cc; }
.hero-stats { display: grid; gap: 1rem; margin: 1.4rem 0; }
.hero-stats div { display: flex; flex-direction: column; gap: .1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero-stats div:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-stats dt { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--accent-light); }
.hero-stats dd { margin: 0; font-size: .9rem; color: #cdbec2; }

/* ===== Trust strip ===== */
.trust-strip { background: var(--navy-700); color: #ddd0d3; }
.trust-inner {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center;
  padding: 1rem 24px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; letter-spacing: .01em;
}
.trust-inner span[aria-hidden] { color: var(--accent-light); }

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 42rem; margin: 0 auto 2.6rem; text-align: center; }
.section-sub { color: var(--slate); font-size: 1.1rem; }

/* ===== Service cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d3dae6; }
.card-icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  color: var(--accent); background: var(--bg-soft); border-radius: 12px; margin-bottom: 1rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card p { color: var(--slate); margin: 0; }

/* ===== Why grid ===== */
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: start; }
.why-copy { position: sticky; top: 90px; }
.why-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.2rem; }
.why-list li {
  background: var(--bg-card); border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm); padding: 1.3rem 1.5rem; box-shadow: var(--shadow-sm);
}
.why-list h3 { margin-bottom: .3rem; }
.why-list p { margin: 0; color: var(--slate); }

/* ===== Steps ===== */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step;
}
.step { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.step-num {
  display: grid; place-items: center; width: 40px; height: 40px;
  background: var(--navy); color: #fff; border-radius: 50%;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; margin-bottom: .9rem;
}
.step p { color: var(--slate); margin: 0; }

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 880px; margin: 0 auto; }
.team-card {
  display: flex; gap: 1.3rem; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm);
}
.team-avatar {
  flex: 0 0 auto; width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; object-position: center;
  background: var(--bg-soft);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--accent);
}
.team-role { color: var(--accent-600); font-weight: 700; font-family: var(--font-head); margin: 0 0 .5rem; }
.team-desc { color: var(--slate); font-size: .96rem; margin-bottom: .9rem; }
.team-contact { display: flex; flex-direction: column; gap: .3rem; }
.team-contact a { font-weight: 600; color: var(--navy-700); font-size: .96rem; }
.team-contact a:hover { color: var(--accent-600); }

/* ===== Contact / form ===== */
.section-contact {
  background:
    radial-gradient(900px 400px at 10% 0%, rgba(139,28,44,.18), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #f1eaeb;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.section-contact .eyebrow { color: var(--accent-light); }
.section-contact h2 { color: #fff; }
.section-contact .section-sub { color: #d7c9cc; text-align: left; }
.section-contact a { color: var(--accent-light); }
.contact-points { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .35rem; color: #ddd0d3; }
.contact-points strong { color: #fff; }

.map-embed {
  margin-top: 1.4rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 240px; border: 0; display: block; filter: saturate(1.05); }
.map-link { display: inline-block; margin-top: .7rem; font-family: var(--font-head); font-weight: 600; font-size: .9rem; }

.lead-form {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; display: flex; flex-direction: column; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: .35rem; }
.field label span[aria-hidden] { color: var(--accent-600); }
.optional { color: var(--slate); font-weight: 500; }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,28,44,.15);
}
.field textarea { resize: vertical; }
.field input.invalid, .field textarea.invalid { border-color: var(--err); box-shadow: 0 0 0 3px rgba(192,57,43,.12); }

/* Honeypot hidden offscreen */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { margin: 1rem 0 0; font-weight: 600; font-family: var(--font-head); min-height: 1.2em; }
.form-note.ok  { color: var(--ok); }
.form-note.err { color: var(--err); }
.form-fineprint { margin: .6rem 0 0; font-size: .82rem; color: var(--slate); }
#submit-btn[disabled] { opacity: .65; cursor: not-allowed; transform: none; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #ccbcc0; padding: 3rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.4fr; gap: 1.6rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong { font-family: var(--font-head); font-size: 1.2rem; color: #fff; font-weight: 800; }
.footer-brand span { font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-light); }
.footer-col p { margin: 0; }
.footer-col a { color: #ddd0d3; }
.footer-col a:hover { color: #fff; }
.footer-contacts p { margin: 0 0 .6rem; font-size: .92rem; }
.footer-contacts strong { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.2rem; font-size: .85rem; }
.footer-bottom a { color: #ddd0d3; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-copy { position: static; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .main-nav { gap: .9rem; }
  .main-nav a:not(.nav-cta) { display: none; }
  .cards, .steps, .team-grid, .form-row, .footer-inner { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
  .footer-bottom { flex-direction: column; gap: .6rem; }
}
