/* ==========================================
   ROASTER SUPPLY CO. — SHARED STYLESHEET
   v2.0 — Multi-page site
========================================== */

/* ==========================================
   CUSTOM PROPERTIES
========================================== */
:root {
  --white:        #FFFFFF;
  --black:        #111111;
  --accent:       #C97B2A;
  --cream:        #F5F0E8;
  --accent-faint: rgba(201,123,42,0.12);
  --shadow-sm:    0 1px 4px rgba(17,17,17,0.08);
  --shadow-md:    0 4px 20px rgba(17,17,17,0.10);
  --shadow-lg:    0 12px 40px rgba(17,17,17,0.13);
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius:       4px;
  --radius-lg:    10px;
  --ease:         0.25s ease;
  --max-w:        1200px;
  --pad-x:        clamp(20px, 5vw, 60px);
  --section-y:    clamp(72px, 9vw, 128px);
}

/* ==========================================
   RESET
========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ==========================================
   TYPOGRAPHY
========================================== */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 600; }
h1 { font-size: clamp(38px, 6vw, 78px); }
h2 { font-size: clamp(28px, 4vw, 50px); }
h3 { font-size: clamp(19px, 2.2vw, 26px); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ==========================================
   LAYOUT
========================================== */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--section-y) 0; }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--black); color: var(--white); }

/* ==========================================
   BUTTONS
========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .4px;
  border-radius: var(--radius);
  transition: all var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--black);
  color: var(--white);
  border: 1.5px solid var(--black);
}
.btn--primary:hover {
  background: #222;
  border-color: #222;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(17,17,17,0.28);
}
.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--ghost:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn--ghost-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.09);
}
.btn--accent {
  background: var(--accent);
  color: var(--white);
  border: 1.5px solid var(--accent);
}
.btn--accent:hover {
  background: #b5691e;
  border-color: #b5691e;
  transform: translateY(-1px);
}
.btn--full { width: 100%; }

/* ==========================================
   LOGO
========================================== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--ease);
}
.logo__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
}
.logo__text { display: flex; flex-direction: column; gap: 2px; }
.logo__name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: color var(--ease);
}
.logo__sub {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.logo--light .logo__name { color: var(--white); }
.logo--light .logo__icon { border-color: rgba(201,123,42,0.6); }

/* ==========================================
   NAVIGATION
========================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  background: rgba(17,17,17,0.96);
  padding: 14px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__links {
  display: none;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: .2px;
  transition: color var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__cta-desktop { display: none; }

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--ease);
}

.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav__mobile-overlay.open { display: flex; }
.nav__mobile-close {
  position: absolute;
  top: 22px; right: var(--pad-x);
  font-size: 30px;
  color: rgba(255,255,255,0.7);
  transition: color var(--ease);
}
.nav__mobile-close:hover { color: var(--white); }
.nav__mobile-overlay a {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--white);
  transition: color var(--ease);
}
.nav__mobile-overlay a:hover { color: var(--accent); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta-desktop { display: inline-flex; }
  .nav__burger { display: none; }
}

/* ==========================================
   HERO — Full-screen (landing pages)
========================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1c1008 0%, #0c0804 55%, #1a100a 100%);
  position: relative;
}
.hero__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 28% 65%, rgba(201,123,42,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 72% 30%, rgba(17,17,17,0.5) 0%, transparent 65%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.70);
  z-index: 1;
}
.hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px var(--pad-x) 100px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero__kicker::before,
.hero__kicker::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.55;
}
.hero__title {
  color: var(--white);
  font-size: clamp(40px, 6.5vw, 82px);
  line-height: 1.08;
  max-width: 860px;
  margin-bottom: 26px;
  font-weight: 700;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__sub {
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.72;
}
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
}
@media (min-width: 460px) {
  .hero__ctas { flex-direction: row; justify-content: center; }
}

/* ==========================================
   PAGE HERO — Interior pages (not full-screen)
========================================== */
.page-hero {
  background: var(--black);
  padding: 140px var(--pad-x) 80px;
  text-align: center;
}
.page-hero__kicker {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto 20px;
}
.page-hero__sub {
  font-size: clamp(15px, 1.7vw, 18px);
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.72;
}

/* ==========================================
   SECTION HEADER
========================================== */
.sec-head { max-width: 600px; }
.sec-head--center { margin: 0 auto; text-align: center; }
.sec-head p {
  margin-top: 18px;
  font-size: clamp(15px, 1.7vw, 17.5px);
  color: #5a5a5a;
  line-height: 1.72;
  font-weight: 300;
}
.section--dark .sec-head p { color: rgba(255,255,255,0.55); }

/* ==========================================
   SOLUTION CARDS (homepage — Who We Serve)
========================================== */
.sol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 60px;
}
@media (min-width: 640px) {
  .sol-grid { grid-template-columns: 1fr 1fr; }
}
.sol-card {
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(17,17,17,0.1);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.sol-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sol-card--dark {
  background: var(--black);
  border-color: rgba(201,123,42,0.25);
}
.sol-card--cream {
  background: var(--cream);
  border-color: rgba(17,17,17,0.1);
}
.sol-card__accent-bar {
  height: 3px;
  background: linear-gradient(to right, var(--accent), rgba(201,123,42,0.3));
}
.sol-card__body {
  padding: 40px 36px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sol-card__tag {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.sol-card__title {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  margin-bottom: 16px;
}
.sol-card--dark  .sol-card__title { color: var(--white); }
.sol-card--cream .sol-card__title { color: var(--black); }
.sol-card__text {
  font-size: 15px;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 32px;
}
.sol-card--dark  .sol-card__text { color: rgba(255,255,255,0.62); }
.sol-card--cream .sol-card__text { color: #575757; }

/* ==========================================
   PRODUCTS CARDS
========================================== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 60px;
}
@media (min-width: 620px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
}
.p-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(17,17,17,0.09);
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
}
.section--cream .p-card { box-shadow: var(--shadow-lg); }
.p-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(17,17,17,0.14); }

.p-card__img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.p-card__img--dark  { background: linear-gradient(150deg, #1c1008 0%, #0d0904 100%); }
.p-card__img--light { background: linear-gradient(150deg, #f8f3ea 0%, #e9ddc8 100%); }

.bag { display: flex; flex-direction: column; align-items: center; }
.bag__shape {
  width: 98px;
  height: 128px;
  border-radius: 7px 7px 11px 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  position: relative;
  overflow: hidden;
}
.bag__shape::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30%;
  background: rgba(255,255,255,0.04);
}
.bag__shape--dark  { background: linear-gradient(170deg, #2c2c2c 0%, #181818 100%); border: 1px solid rgba(201,123,42,0.25); }
.bag__shape--cream { background: linear-gradient(170deg, #f8f4ec 0%, #ece3d2 100%); border: 1px solid rgba(201,123,42,0.35); }
.bag__weight { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--accent); line-height: 1; }
.bag__brand { font-family: var(--font-head); font-size: 9px; letter-spacing: 1px; text-align: center; padding: 0 10px; line-height: 1.4; }
.bag__shape--dark  .bag__brand { color: rgba(255,255,255,0.7); }
.bag__shape--cream .bag__brand { color: rgba(17,17,17,0.7); }
.bag__sub { font-size: 7.5px; letter-spacing: 2px; text-transform: uppercase; }
.bag__shape--dark  .bag__sub { color: rgba(255,255,255,0.4); }
.bag__shape--cream .bag__sub { color: rgba(17,17,17,0.45); }

.p-badge {
  position: absolute;
  top: 15px; right: 15px;
  background: var(--accent);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.p-card__body { padding: 28px 28px 32px; }
.p-card__tag { display: block; font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 9px; }
.p-card__title { font-family: var(--font-head); font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.p-card__desc { font-size: 14.5px; color: #575757; line-height: 1.68; margin-bottom: 22px; }
.p-card__list { display: flex; flex-direction: column; gap: 9px; }
.p-card__item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #444; }
.check-icon {
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--accent-faint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 10px; height: 10px; stroke: var(--accent); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ==========================================
   WHY SECTION
========================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 60px;
}
@media (min-width: 600px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card__icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-lg);
  background: var(--accent-faint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card__icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.why-card__title { font-family: var(--font-head); font-size: 19.5px; font-weight: 600; margin-bottom: 10px; }
.why-card__text { font-size: 14.5px; color: #585858; line-height: 1.68; }

/* ==========================================
   HOW IT WORKS — STEPS
========================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  margin-top: 68px;
  position: relative;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(16.6% + 28px);
    right: calc(16.6% + 28px);
    height: 1px;
    background: linear-gradient(to right, var(--accent), rgba(201,123,42,0.18), var(--accent));
    z-index: 0;
  }
}
.step { display: flex; flex-direction: column; align-items: flex-start; position: relative; z-index: 1; padding: 0 28px; }
@media (min-width: 760px) { .step { align-items: center; text-align: center; } }
.step__num {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.step__title { font-family: var(--font-head); font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.step__text { font-size: 14.5px; color: #575757; line-height: 1.7; }

/* ==========================================
   PRICING
========================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; max-width: 860px; margin-left: auto; margin-right: auto; }
}
.tier {
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(17,17,17,0.1);
  padding: 36px 28px;
  background: var(--white);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier__label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.tier__name { font-family: var(--font-head); font-size: 24px; margin-bottom: 6px; }
.tier__vol { font-size: 13px; color: #888; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid rgba(17,17,17,0.08); }
.tier__feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.tier__feat { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #444; }
.tier__feat svg { width: 15px; height: 15px; flex-shrink: 0; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ==========================================
   CONTACT / FORM
========================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-top: 60px;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1.65fr; align-items: start; }
}
.contact-left { display: flex; flex-direction: column; gap: 32px; }
.contact-headline { font-family: var(--font-head); font-size: clamp(28px, 3.8vw, 44px); font-weight: 600; line-height: 1.12; color: var(--white); }
.contact-headline em { font-style: italic; color: var(--accent); }
.contact-desc { font-size: 15px; color: rgba(255,255,255,0.58); line-height: 1.72; }
.contact-details { display: flex; flex-direction: column; gap: 15px; }
.contact-detail { display: flex; align-items: center; gap: 13px; font-size: 14.5px; color: rgba(255,255,255,0.65); }
.contact-detail svg { width: 17px; height: 17px; stroke: var(--accent); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.form-box {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 48px);
}
.form-stack { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 460px) { .form-row { grid-template-columns: 1fr 1fr; } }
.f-field { display: flex; flex-direction: column; gap: 7px; }
.f-field label { font-size: 11px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.f-field input,
.f-field select,
.f-field textarea {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius);
  padding: 12px 15px;
  font-size: 14.5px;
  color: var(--white);
  outline: none;
  transition: border-color var(--ease), background var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.f-field input::placeholder,
.f-field textarea::placeholder { color: rgba(255,255,255,0.22); }
.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus { border-color: var(--accent); background: rgba(255,255,255,0.075); }
.f-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.38)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255,255,255,0.055);
  padding-right: 36px;
  cursor: pointer;
}
.f-field select option { background: #1a1a1a; color: var(--white); }
.f-field textarea { resize: vertical; min-height: 116px; }

.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success.show { display: block; }
.form-success__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,123,42,0.13);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success__icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { color: var(--white); font-size: 22px; margin-bottom: 10px; }
.form-success p { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.65; }

/* ==========================================
   LEGAL PAGES
========================================== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--section-y) var(--pad-x);
}
.legal-content h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 14px;
  margin-top: 56px;
  color: var(--black);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.78;
  margin-bottom: 18px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 18px;
}
.legal-content ul li {
  font-size: 15px;
  color: #555;
  line-height: 1.78;
  margin-bottom: 8px;
}
.legal-updated {
  display: inline-block;
  font-size: 12px;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 48px;
  padding: 6px 14px;
  border: 1px solid rgba(17,17,17,0.1);
  border-radius: var(--radius);
}

/* ==========================================
   CLIENT PORTAL
========================================== */
.portal-wrap {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 80px);
  margin-top: 80px;
}
@media (min-width: 860px) {
  .portal-wrap { grid-template-columns: 220px 1fr; }
}
.portal-sidebar {
  background: var(--cream);
  border-right: 1px solid rgba(17,17,17,0.08);
  padding: 40px 0;
}
.portal-sidebar__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #aaa;
  padding: 0 24px;
  margin-bottom: 12px;
}
.portal-nav { display: flex; flex-direction: column; }
.portal-nav__item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  border-left: 2px solid transparent;
  transition: all var(--ease);
  cursor: default;
}
.portal-nav__item svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.portal-nav__item--active { color: var(--black); border-left-color: var(--accent); background: rgba(201,123,42,0.06); }
.portal-nav__item--soon::after {
  content: 'Soon';
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-faint);
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: auto;
}
.portal-main {
  padding: clamp(32px, 5vw, 60px) clamp(24px, 5vw, 56px);
}
.portal-placeholder {
  background: var(--cream);
  border: 1.5px dashed rgba(17,17,17,0.14);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  max-width: 560px;
}
.portal-placeholder__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: var(--accent-faint);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.portal-placeholder__icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.portal-placeholder h3 { font-size: 20px; margin-bottom: 10px; }
.portal-placeholder p { font-size: 14px; color: #777; line-height: 1.7; }

/* ==========================================
   FOOTER
========================================== */
.footer {
  background: var(--cream);
  padding: 52px 0;
  border-top: 1px solid rgba(17,17,17,0.08);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__inner { flex-direction: row; justify-content: space-between; align-items: flex-start; text-align: left; gap: 48px; }
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__brand .logo__name { color: var(--black); }
.footer__tagline { font-size: 12.5px; color: #999; max-width: 200px; line-height: 1.6; }
.footer__cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media (min-width: 768px) { .footer__cols { justify-content: flex-end; } }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--black); margin-bottom: 4px; }
.footer__col a { font-size: 13.5px; color: #888; transition: color var(--ease); }
.footer__col a:hover { color: var(--black); }
.footer__bottom {
  border-top: 1px solid rgba(17,17,17,0.08);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
@media (min-width: 600px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__copy { font-size: 12.5px; color: #aaa; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12.5px; color: #aaa; transition: color var(--ease); }
.footer__legal a:hover { color: var(--black); }

/* ==========================================
   SCROLL ANIMATIONS
========================================== */
.anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.anim.in {
  opacity: 1;
  transform: none;
}
