/* ===== Winplugged — brand stylesheet ===== */

:root {
  --maroon: #b11f2a;
  --maroon-dark: #8c1821;
  --orange: #ed6c23;
  --orange-light: #f4915a;
  --ink: #201c1c;
  --grey: #6b6462;
  --grey-light: #928c8a;
  --bg: #ffffff;
  --bg-soft: #faf7f6;
  --bg-band: #f4ede9;
  --border: #e7e0dd;
  --radius: 6px;
  --max-width: 1140px;
  --shadow: 0 10px 30px rgba(40, 20, 15, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; color: var(--grey); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.text-maroon { color: var(--maroon); }
.text-orange { color: var(--orange); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--maroon); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-dark {
  background: var(--maroon);
  color: #fff;
}
.btn-dark:hover { background: var(--maroon-dark); transform: translateY(-2px); }

/* ===== Header / Nav ===== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 34px; width: auto; }
.brand-word { height: 22px; width: auto; }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--orange);
  border-color: var(--orange);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-cta .btn { padding: 10px 20px; font-size: 0.88rem; background: var(--maroon); color: #fff; }
.nav-cta .btn:hover { background: var(--orange); }

.nav-toggle { display: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--maroon) 0%, var(--maroon-dark) 42%, var(--orange) 100%);
  color: #fff;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 110px;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}
.hero-shapes span {
  position: absolute;
  border: 10px solid rgba(255,255,255,0.12);
}
.hero-shapes .s1 { width: 260px; height: 260px; right: -60px; top: -60px; }
.hero-shapes .s2 { width: 180px; height: 180px; right: 220px; bottom: -70px; border-color: rgba(255,255,255,0.09); }
.hero-shapes .s3 { width: 120px; height: 120px; right: 60px; bottom: 30px; border-color: rgba(255,255,255,0.15); }

.hero h1 { max-width: 760px; }
.hero .lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-tagline {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

/* Small hero (interior pages) */
.hero-small { padding: 0; }
.hero-small .container { padding-top: 64px; padding-bottom: 64px; }
.hero-small .lead { margin-bottom: 0; }

/* ===== Sections ===== */
section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-band { background: var(--bg-band); }

.section-head {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }

/* ===== Cards / grids ===== */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }

.card .icon-bar {
  width: 42px;
  height: 6px;
  background: var(--orange);
  border-radius: 3px;
  margin-bottom: 18px;
}

.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label {
  font-size: 0.85rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

/* ===== Services listing ===== */
.service-group {
  margin-bottom: 56px;
}
.service-group-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
  border-bottom: 3px solid var(--maroon);
  padding-bottom: 12px;
}
.service-group-head h3 { margin: 0; color: var(--maroon); }
.service-group-head span {
  font-size: 0.82rem;
  color: var(--grey-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.96rem;
}
.service-list li::before {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-top: 6px;
  background: var(--orange);
  border-radius: 2px;
}

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(100deg, var(--maroon), var(--maroon-dark));
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== About page ===== */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.value-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.value-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: #fff;
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.value-list b { display: block; margin-bottom: 4px; color: var(--maroon); }

.founder-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  display: flex;
  gap: 28px;
  align-items: center;
}
.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--orange));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
  box-shadow: 0 8px 22px rgba(177, 31, 42, 0.28);
}
.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}
.founder-card h3 { margin-bottom: 2px; }
.founder-role { color: var(--orange); font-weight: 700; font-size: 0.92rem; margin-bottom: 10px; }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-info-card {
  background: var(--maroon);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 34px;
}
.contact-info-card h3 { color: #fff; }
.contact-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.85rem;
}
.contact-row .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.65); margin-bottom: 2px; }
.contact-row a, .contact-row div.value { font-weight: 700; }

form.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--grey);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.96rem;
  background: var(--bg-soft);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 130px; }

.map-note {
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--grey-light);
}

/* ===== Footer ===== */
footer.site-footer {
  background: #1c1414;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--orange); }
.footer-brand img { height: 30px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: 320px; }
.footer-tagline {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  font-size: 0.82rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: block; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .about-hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-2, .service-list, .stats { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .hero .container { padding-top: 60px; padding-bottom: 70px; }
  .founder-card { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta .btn span { display: none; }
}
