/* PIN-UP Landing — site3 (Copper Ember) */

:root {
  --bg: #1a1410;
  --surface: #221a14;
  --surface-2: #2a2118;
  --ink: #faf5ef;
  --muted: #a8a29e;
  --line: rgba(250, 245, 239, 0.1);
  --copper: #d97706;
  --copper-dim: rgba(217, 119, 6, 0.14);
  --amber: #fbbf24;
  --amber-dim: rgba(251, 191, 36, 0.1);
  --radius: 10px;
  --container: 1100px;
  --header-h: 70px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(217, 119, 6, 0.08), transparent),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol,
h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--copper);
  color: #1a1410;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(26, 20, 16, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 36px;
  width: auto;
}

.header__actions {
  display: flex;
  gap: 8px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

.btn--lg {
  padding: 14px 28px;
  font-size: 0.95rem;
}

.btn--copper {
  background: var(--copper);
  color: #1a1410;
}

.btn--copper:hover {
  background: #ea580c;
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--copper);
  color: var(--amber);
}

.btn--amber {
  background: var(--amber);
  color: #1a1410;
}

/* Bento hero */

.bento-hero {
  position: relative;
  padding: 40px 0 48px;
  overflow: hidden;
}

.bento-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  pointer-events: none;
}

.bento-hero__overlay {
  position: relative;
  z-index: 1;
}

.bento-hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.bento-hero__main {
  padding: 32px;
  background: rgba(34, 26, 20, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 4px solid var(--copper);
}

.bento-hero__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--copper-dim);
  border: 1px solid rgba(217, 119, 6, 0.35);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.bento-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
}

.bento-hero__lead {
  margin-top: 14px;
  color: var(--muted);
  max-width: 52ch;
}

.bento-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.bento-hero__side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
}

.bento-card {
  padding: 22px;
  background: rgba(42, 33, 24, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.bento-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--amber);
}

.bento-card span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Strip sections */

.strip {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.strip--accent {
  background: linear-gradient(180deg, rgba(217, 119, 6, 0.06), transparent);
}

.strip__head {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--copper);
}

.strip__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
}

.strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}

.strip__text {
  margin-top: 14px;
  color: var(--muted);
}

.strip__text + .strip__text {
  margin-top: 12px;
}

/* Tile grid */

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.tile {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top: 3px solid var(--copper);
}

.tile h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.tile p {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Duo layout */

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.duo__box {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.duo__box h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--amber);
}

.list {
  margin-top: 12px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.list li {
  margin-top: 6px;
}

/* Table */

.table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.table th,
.table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.table th {
  background: var(--surface-2);
  font-weight: 600;
  color: var(--amber);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

/* FAQ */

.faq {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin-top: 10px;
  font-size: 0.94rem;
  color: var(--muted);
}

/* Highlight & actions */

.highlight {
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--amber-dim);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.96rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

/* CTA band */

.cta-band {
  margin-top: 48px;
  padding: 40px 32px;
  text-align: center;
  background: linear-gradient(135deg, var(--copper-dim), var(--amber-dim));
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: var(--radius);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 600;
}

.cta-band p {
  margin-top: 10px;
  color: var(--muted);
  max-width: 48ch;
  margin-inline: auto;
}

.cta-band .btn {
  margin-top: 20px;
}

/* Footer */

.footer {
  margin-top: 48px;
  padding: 32px 0 40px;
  background: #120e0a;
  border-top: 1px solid var(--line);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
}

.footer__brand img {
  height: 32px;
  width: auto;
}

.footer__copy,
.footer__disclaimer,
.cookies-note {
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 900px) {
  .bento-hero__grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 600px) {
  .bento-hero__side {
    grid-template-columns: 1fr;
  }

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