/* =====================================================
   US Consumer Protections — styles.css
   Palette: #f6f3ec bg | #131c24 slate | #b7941b gold | #639ef7 blue
   Font: Georgia / system serif — no web fonts loaded
   ===================================================== */

:root {
  --bg:        #f6f3ec;
  --bg-2:      #efeae0;
  --ink:       #0a0a0a;
  --ink-2:     #2a2a2a;
  --muted:     #5e5b54;
  --rule:      #d8d2c4;
  --slate:     #131c24;
  --gold:      #b7941b;
  --gold-deep: #9a7c14;
  --blue:      #639ef7;
  --maxw:      1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .wrap { padding: 0 22px; } }

/* ---- Eyebrow label ---- */
.eyebrow {
  font-family: Georgia, serif;
  font-variant: small-caps;
  letter-spacing: .18em;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* =====================================================
   NAV
   ===================================================== */
.nav {
  background: var(--slate);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #1f2a35;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { height: 38px; width: auto; display: block; }
.brand-name {
  font-size: 15px;
  letter-spacing: .06em;
  color: #f3eee2;
  white-space: nowrap;
}
.brand-name b { font-weight: normal; color: #fff; }
.brand-name .sub {
  display: block;
  font-size: 11px;
  letter-spacing: .22em;
  color: #9a9385;
  font-variant: small-caps;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #d6d2c5;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover { color: #fff; border-color: var(--gold); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font: inherit;
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--slate);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 18px;
    border-top: 1px solid #1f2a35;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 32px; border-bottom: 1px solid #1a242e; }
  .nav-toggle { display: inline-block; }
  .brand-name .sub { display: none; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: var(--slate);
  color: #f3eee2;
  position: relative;
  overflow: hidden;
}

/* Thin gold gradient hairline at bottom of hero */
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: .5;
  z-index: 3;
}

/* Figure: line-art illustration, upper right, fades left + bottom */
.hero-figure {
  position: absolute;
  top: 0;
  right: 4%;
  width: 42%;
  max-width: 600px;
  min-width: 340px;
  height: 100%;
  background: url('assets/figure.png') no-repeat top center;
  background-size: auto 110%;
  opacity: .32;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(to left,   #000 70%, transparent 100%),
    linear-gradient(to bottom, #000 80%, transparent 100%);
  mask-image:
    linear-gradient(to left,   #000 70%, transparent 100%),
    linear-gradient(to bottom, #000 80%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  z-index: 1;
}
@media (max-width: 820px) {
  .hero-figure { width: 60%; max-width: 360px; right: -2%; opacity: .18; }
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 140px 32px 160px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  color: var(--gold);
  font-variant: small-caps;
  letter-spacing: .28em;
  font-size: 13px;
  font-style: normal;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.hero h1 {
  font-family: Georgia, serif;
  font-weight: normal;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 28px;
  max-width: 14ch;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lede {
  font-size: 18px;
  line-height: 1.65;
  color: #cfc9bb;
  max-width: 62ch;
  margin: 0;
}
.hero-cta { align-self: end; text-align: right; position: relative; z-index: 3; }

@media (max-width: 820px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 80px 32px 90px;
    gap: 36px;
  }
  .hero-cta { text-align: left; }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0a;
  padding: 16px 28px;
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-gold:hover { background: #caa827; }

/* =====================================================
   SECTION FRAME
   ===================================================== */
section {
  padding: 110px 0;
  border-top: 1px solid var(--rule);
}
section:first-of-type { border-top: 0; }

.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.section-head .label { padding-top: 6px; }
.section-head h2 {
  font-family: Georgia, serif;
  font-weight: normal;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.005em;
  text-wrap: balance;
  max-width: 22ch;
}

@media (max-width: 780px) {
  section { padding: 72px 0; }
  .section-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 40px; }
}

/* =====================================================
   ABOUT
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
}
.about-grid .body { max-width: 62ch; }
.about-grid p { margin: 0 0 22px; font-size: 18px; line-height: 1.7; }
.about-grid p:last-of-type { margin-bottom: 0; }

.section-h2 {
  font-weight: normal;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
  margin: 0 0 28px;
  letter-spacing: -.005em;
  max-width: 22ch;
  text-wrap: balance;
}

.disclaimer {
  margin-top: 36px !important;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 780px) {
  .about-grid { grid-template-columns: 1fr; gap: 0; }
}

/* =====================================================
   SERVICES (TABS)
   ===================================================== */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  background: none;
  border: 0;
  padding: 18px 0;
  margin-right: 48px;
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.tab .num {
  font-variant: small-caps;
  color: var(--gold);
  margin-right: 12px;
  font-size: 12px;
  letter-spacing: .2em;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--gold); }
.tab:last-child { margin-right: 0; }

.panel {
  display: none;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.panel[data-active="true"] { display: grid; }
.panel h3 {
  font-family: Georgia, serif;
  font-weight: normal;
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.2;
  margin: 0;
  text-wrap: balance;
  max-width: 18ch;
}
.panel p { margin: 0; font-size: 18px; line-height: 1.7; max-width: 62ch; }
.panel .meta {
  font-variant: small-caps;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 14px;
}

@media (max-width: 780px) {
  .panel { grid-template-columns: 1fr; gap: 18px; }
  .tabs { margin-bottom: 36px; }
  .tab { margin-right: 28px; font-size: 14px; }
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-grid .intro h2 {
  font-family: Georgia, serif;
  font-weight: normal;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin: 0 0 24px;
  text-wrap: balance;
}
.contact-grid .intro p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 42ch;
  margin: 0 0 36px;
}
.contact-meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.contact-meta .row { display: flex; gap: 14px; align-items: baseline; }
.contact-meta .k {
  flex: 0 0 90px;
  font-variant: small-caps;
  letter-spacing: .16em;
  color: var(--gold);
  font-size: 11.5px;
}

/* Form */
form .field { margin-bottom: 22px; display: flex; flex-direction: column; }
form label {
  font-variant: small-caps;
  letter-spacing: .16em;
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 8px;
}
form label .opt { color: var(--rule); margin-left: 6px; font-style: italic; }

form input,
form select,
form textarea {
  font-family: Georgia, serif;
  font-size: 16px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #c8c2b2;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
form input:focus,
form select:focus,
form textarea:focus { border-bottom-color: var(--gold); }

form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 14px) 18px, calc(100% - 8px) 18px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
  cursor: pointer;
}
form textarea {
  min-height: 96px;
  resize: vertical;
  border: 1px solid #c8c2b2;
  padding: 12px 14px;
}
form textarea:focus { border-color: var(--gold); }

.form-submit {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
#form-status {
  font-style: italic;
  font-size: 13.5px;
  color: var(--muted);
}
#form-status.success { color: #2a6e2a; }
#form-status.error   { color: #c0392b; }

.form-disclaimer {
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
  max-width: 60ch;
}
.form-disclaimer a { color: var(--ink); border-bottom: 1px solid var(--rule); }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--slate);
  color: #a8a293;
  padding: 60px 0 36px;
  font-size: 13.5px;
  line-height: 1.7;
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid #1f2a35;
}
.foot-brand { display: flex; gap: 14px; align-items: center; color: #e8e2d3; }
.foot-brand img { height: 34px; width: auto; display: block; }
.foot-brand .nm { font-size: 15px; letter-spacing: .05em; }
.foot-brand .nm small {
  display: block;
  font-size: 11px;
  letter-spacing: .22em;
  color: #7a7466;
  font-variant: small-caps;
  margin-top: 2px;
}
.foot-links { display: flex; gap: 28px; align-items: center; }
.foot-links a {
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #a8a293;
  border-bottom: 1px solid transparent;
  padding: 2px 0;
}
.foot-links a:hover { color: #fff; border-color: var(--gold); }
.foot-bottom {
  margin-top: 28px;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.foot-bottom .copy { color: #7a7466; font-size: 12.5px; letter-spacing: .04em; }
.foot-bottom .legal {
  color: #6e6859;
  font-style: italic;
  font-size: 12.5px;
  max-width: 62ch;
  line-height: 1.65;
}

@media (max-width: 680px) {
  .foot-top { grid-template-columns: 1fr; }
  .foot-links { flex-wrap: wrap; gap: 18px; }
}

/* =====================================================
   COOKIE BANNER
   ===================================================== */
.cookie {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  background: #0a0a0a;
  color: #e8e2d3;
  border: 1px solid #2a2a2a;
  border-top: 2px solid var(--gold);
  padding: 18px 22px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.5);
  max-width: 720px;
  margin: 0 auto;
  transform: translateY(0);
  transition: transform .35s ease, opacity .35s ease;
}
.cookie.hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }
.cookie p { margin: 0; font-size: 13.5px; line-height: 1.55; color: #cfc9bb; flex: 1; }
.cookie p a { color: #fff; border-bottom: 1px solid #555; }
.cookie .btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie button {
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid #2a2a2a;
  background: transparent;
  color: #cfc9bb;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.cookie button.accept { background: var(--gold); color: #000; border-color: var(--gold); }
.cookie button.accept:hover { background: #caa827; }
.cookie button.decline:hover { color: #fff; border-color: #555; }

@media (max-width: 640px) {
  .cookie {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }
  .cookie .btns { justify-content: flex-end; }
}

/* =====================================================
   INNER PAGES (privacy.html, tos.html)
   ===================================================== */
.page-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 32px 6rem;
}
.page-body h1 {
  font-weight: normal;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -.005em;
}
.page-body .effective {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}
.page-body h2 {
  font-weight: normal;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 2.2rem 0 0.5rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
}
.page-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 1rem;
}
.page-body a { color: var(--gold-deep); }
.page-body a:hover { border-bottom: 1px solid var(--gold); }

@media (max-width: 640px) { .page-body { padding-left: 22px; padding-right: 22px; } }
