:root {
  --ink:         #1E2430;
  --bg:          #F7F6F3;
  --surface:     #FFFFFF;
  --accent:      #B45309;
  --accent-soft: #F59E0B;
  --text:        #2B303B;
  --muted:       #6B7280;
  --line:        #E5E2DB;
  --max:         960px;

  --skunk:    #9333EA;
  --narwhal:  #0EA5B7;
  --qr:       #4F46E5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ── Header ─────────────────────────────────────────── */

.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(247, 246, 243, 0.9);
  backdrop-filter: blur(8px);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-mark {
  width: clamp(68px, 10vw, 132px);
  height: clamp(68px, 10vw, 132px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark img,
.brand-mark svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.3px;
  line-height: 1;
}

.w-primary { color: var(--ink); }
.w-accent  { color: var(--accent); }

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.site-nav a:hover { color: var(--accent); }

a { color: var(--accent); }

/* ── Hero ────────────────────────────────────────────── */

.hero {
  padding: 5.5rem 0 4.5rem;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 600;
  margin: 0 0 0.9rem;
}

h1,
h2 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--ink);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin: 0 0 1.1rem;
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

.lead {
  max-width: 55ch;
  color: var(--muted);
  font-size: 1rem;
}

.section-lead {
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ── Sections ────────────────────────────────────────── */

.section {
  padding: 3.75rem 0;
}

.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

/* ── Cards ───────────────────────────────────────────── */

.card-grid {
  list-style: none;
  padding: 0;
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.card-accent-skunk   { border-top-color: var(--skunk); }
.card-accent-narwhal { border-top-color: var(--narwhal); }
.card-accent-qr      { border-top-color: var(--qr); }

.card-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-bottom: 0.6rem;
}

.card-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.card-title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.card-desc {
  margin: 0 0 0.75rem;
}

.card-cta {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.card-cta:hover { color: var(--accent-soft); }

.card-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ── Contact form ────────────────────────────────────── */

.contact-form {
  margin-top: 1.75rem;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--ink);
}

.form-row input,
.form-row textarea {
  font: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 0.65rem 0.8rem;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--accent-soft);
  outline-offset: 1px;
}

.form-row-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.btn-submit {
  align-self: flex-start;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--surface);
  background: var(--accent);
  border: none;
  border-radius: 0.5rem;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
}

.btn-submit:hover { background: var(--accent-soft); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-status {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.875rem;
}

.form-status-success { color: #15803D; }
.form-status-error { color: #B91C1C; }

/* ── Footer ──────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: underline;
}

.site-footer a:hover { color: var(--accent); }

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.link-button {
  font: inherit;
  font-size: inherit;
  color: var(--muted);
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.link-button:hover { color: var(--accent); }

/* ── Cookie banner ───────────────────────────────────── */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.cookie-banner-inner p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--bg);
  max-width: 60ch;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn-cookie {
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 0.5rem;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-cookie-accept {
  color: var(--surface);
  background: var(--accent);
  border-color: var(--accent);
}

.btn-cookie-accept:hover { background: var(--accent-soft); border-color: var(--accent-soft); }

.btn-cookie-reject {
  color: var(--bg);
  background: transparent;
  border-color: var(--muted);
}

.btn-cookie-reject:hover { border-color: var(--bg); }

@media (max-width: 760px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 760px) {
  .site-header .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
}
