/* =========================
   HoneyWay — styles.css (Clean White / Modern / Square Corners)
   - No border-radius anywhere
   - White background
   - Subtle borders & spacing
   ========================= */

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #0b1220;
  --muted: #5b6470;
  --border: rgba(15, 23, 42, 0.12);

  --accent: #f4b63f; /* honey */
  --accent-ink: #0b1220;

  --container: 1120px;
  --header-height: 68px;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-radius: 0 !important; /* enforce square corners */
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

/* Desktop nav */
.nav {
  display: none;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(11, 18, 32, 0.78);
}

.nav a {
  padding: 8px 2px;
}

.nav a.active {
  color: rgba(11, 18, 32, 0.92);
  border-bottom: 2px solid rgba(11, 18, 32, 0.8);
}

/* Header actions */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: rgba(11, 18, 32, 0.92);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background-color 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.btn:hover {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.18);
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  border-color: rgba(11, 18, 32, 0.18);
  color: var(--accent-ink);
}

.btn-primary:hover {
  background: #f7c55b;
}

.btn-secondary {
  background: #ffffff;
}

.btn-ghost {
  background: transparent;
}

.btn-block {
  width: 100%;
}

/* =========================
   Mobile menu
   ========================= */

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle:hover {
  background: rgba(15, 23, 42, 0.03);
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
}

.nav-mobile[data-open="true"] {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  color: rgba(11, 18, 32, 0.9);
}

.nav-mobile a.active {
  background: rgba(244, 182, 63, 0.12);
  border-left: 3px solid rgba(244, 182, 63, 1);
}

/* Prevent background scroll when menu open */
html.nav-open,
html.nav-open body {
  overflow: hidden;
}

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

.hero-clean {
  padding: 56px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.kicker {
  font-size: 12px;
  font-weight: 800;
  color: rgba(91, 100, 112, 0.92);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0 0 18px;
  max-width: 62ch;
  font-size: 18px;
  color: rgba(91, 100, 112, 0.92);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-item {
  padding: 8px 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.78);
}

/* =========================
   Panels / Cards
   ========================= */

.panel {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 18px;
}

.panel-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(11, 18, 32, 0.9);
  letter-spacing: -0.01em;
}

.panel-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.panel-row:last-child {
  border-bottom: none;
}

.panel-label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(91, 100, 112, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.panel-value {
  color: rgba(11, 18, 32, 0.9);
}

.panel-actions {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.panel-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(91, 100, 112, 0.95);
}

/* =========================
   Sections
   ========================= */

.section {
  padding: 64px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: rgba(91, 100, 112, 0.95);
  max-width: 75ch;
}

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

.grid-3 {
  grid-template-columns: 1fr;
}

.card {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 18px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: rgba(91, 100, 112, 0.95);
}

.card-accent {
  border-color: rgba(244, 182, 63, 0.65);
}

/* Center helper */
.center {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-simple {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
}

.footer-meta {
  color: rgba(91, 100, 112, 0.95);
  font-size: 13px;
}

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

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-simple {
    grid-template-columns: auto 1fr;
    gap: 22px;
  }

  .brand-logo {
    height: 42px;
  }
}

@media (max-width: 520px) {
  /* optional: keep header tight on phones */
  .header-cta .btn-secondary {
    display: none;
  }
}