/* ══════════════════════════════════════════
   QURTÈN — Base Styles
   ══════════════════════════════════════════ */

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: var(--fw-400);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: var(--fw-500);
  line-height: 1.08;
  color: var(--clr-text);
}

p { line-height: 1.72; }

/* ── Logo ──────────────────────────────── */
.logo {
  font-family: var(--ff-display);
  font-weight: var(--fw-500);
  font-size: 1.5625rem;
  letter-spacing: 0.03em;
  color: var(--clr-logo);
  border-bottom: 1px solid var(--clr-logo-border);
  padding-bottom: 3px;
  display: inline-block;
  line-height: 1.2;
  transition: opacity var(--dur-base) var(--ease-smooth);
}
.logo:hover { opacity: 0.75; }

/* ── Section Labels ────────────────────── */
.section-label {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: var(--fw-600);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 1.25rem;
}

/* ── Section Titles ────────────────────── */
.section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: var(--fw-400);
  line-height: 1.06;
  color: var(--clr-text);
  margin-bottom: 2rem;
}

.section-header {
  margin-bottom: 3rem;
}

/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem 2.25rem;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: var(--fw-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background var(--dur-base) var(--ease-smooth),
              color var(--dur-base) var(--ease-smooth),
              border-color var(--dur-base) var(--ease-smooth),
              transform var(--dur-base) var(--ease-smooth);
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

/* Hero ghost button */
.btn--hero {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}
.btn--hero:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* Ghost button (header CTA) */
.btn--ghost {
  border: 1px solid var(--clr-logo-border);
  color: var(--clr-logo);
  background: transparent;
  font-size: 0.6875rem;
  padding: 0.625rem 1.25rem;
}
.btn--ghost:hover {
  background: var(--clr-logo);
  color: var(--clr-white);
  border-color: var(--clr-logo);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(70, 86, 65, 0.18);
}

/* Primary dark button */
.btn--primary {
  background: var(--clr-text);
  color: var(--clr-white);
  border: 1px solid var(--clr-text);
}
.btn--primary:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 154, 114, 0.25);
}
