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

html {
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #F5ECD7;
  color: #4A3728;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ===== SKIP LINK ===== */
.skip-link-wrap {
  position: relative;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #C0622F;
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus {
  left: 16px;
}

/* ===== HEADER ===== */
.site-header {
  background: #4A3728;
  color: #F5ECD7;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 60px;
  max-width: 100%;
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F5ECD7;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 2px solid #F5ECD7;
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  margin-left: auto;
}
.toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #F5ECD7;
  border-radius: 2px;
  transition: all 0.2s;
}

.header-ctas {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
}
.cta-signup {
  background: #C0622F;
  color: #fff;
  border: 2px solid #C0622F;
}
.cta-signup:hover {
  opacity: 0.88;
}
.cta-login {
  background: transparent;
  color: #F5ECD7;
  border: 2px solid #F5ECD7;
}
.cta-login:hover {
  background: rgba(245,236,215,0.12);
}

/* ===== PRIMARY NAV ===== */
.primary-nav {
  background: #3a2a1c;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  width: 100%;
}
.primary-nav.is-open {
  max-height: 600px;
}

.primary-nav dl {
  margin: 0;
  padding: 8px 16px 16px;
}
.primary-nav dt {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #C0622F;
  text-transform: uppercase;
  padding: 8px 0 4px;
}
.primary-nav dd {
  margin: 0;
}
.primary-nav dd a {
  display: block;
  color: #F5ECD7;
  text-decoration: none;
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(245,236,215,0.1);
  min-height: 44px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.primary-nav dd a:hover {
  color: #C0622F;
}

/* Desktop nav */
@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
  .primary-nav {
    max-height: none;
    background: #3a2a1c;
  }
  .primary-nav dl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    padding: 0 24px;
  }
  .primary-nav dt {
    display: none;
  }
  .primary-nav dd {
    margin: 0;
  }
  .primary-nav dd a {
    padding: 12px 14px;
    border-bottom: none;
    font-size: 0.875rem;
    white-space: nowrap;
  }
  .header-inner {
    padding: 0 24px;
  }
}

/* ===== MAIN LAYOUT ===== */
main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.content-wrap {
  display: flex;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px;
  width: 100%;
}

.content-main {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

/* ===== SIDEBAR ===== */
.sidebar {
  width: 260px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .content-wrap {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }
  .sidebar {
    width: 100%;
  }
}

.sidebar-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #C0622F;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sidebar hr {
  border: none;
  border-top: 2px solid #C0622F;
  margin: 0 0 12px;
}
.sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-links li {
  border-bottom: 1px solid rgba(74,55,40,0.15);
}
.sidebar-links li a {
  display: block;
  padding: 10px 0;
  color: #4A3728;
  text-decoration: underline;
  font-size: 0.9rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.sidebar-links li a:hover {
  color: #C0622F;
}
.sidebar-cta {
  margin-top: 20px;
  background: #fff8f0;
  border: 1px solid #C0622F;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}
.sidebar-cta p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 600;
}
.sidebar-cta-btn {
  width: 100%;
  justify-content: center;
}

/* ===== BODY COPY ===== */
.body-copy {
  font-size: 1rem;
  line-height: 1.7;
  color: #4A3728;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}
.body-copy h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.25rem;
  color: #4A3728;
}
.body-copy h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.25rem;
  color: #C0622F;
}
.body-copy a {
  color: #C0622F;
  text-decoration: underline;
}
.body-copy a:hover {
  opacity: 0.8;
}
.body-copy p {
  margin: 0 0 1rem;
}
.body-copy ul, .body-copy ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}
.body-copy li {
  margin-bottom: 0.4rem;
}
.body-copy table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.body-copy table thead {
  background: #4A3728;
  color: #F5ECD7;
}
.body-copy table th,
.body-copy table td {
  padding: 10px 12px;
  text-align: left;
  border: 1px solid rgba(74,55,40,0.2);
}
.body-copy table tr:nth-child(even) {
  background: rgba(192,98,47,0.06);
}
.body-copy img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.body-copy pre {
  max-width: 100%;
  overflow-x: auto;
  background: #f0e8da;
  padding: 12px;
  border-radius: 6px;
  font-size: 0.875rem;
}
.body-copy blockquote {
  border-left: 4px solid #C0622F;
  margin: 1.5rem 0;
  padding: 8px 16px;
  background: rgba(192,98,47,0.06);
  border-radius: 0 6px 6px 0;
}
.body-copy hr {
  border: none;
  border-top: 2px dashed rgba(74,55,40,0.2);
  margin: 2rem 0;
}

/* ===== BYLINE ===== */
.byline {
  font-size: 0.875rem;
  color: #7a6254;
  margin: 8px 0 16px;
}
.byline time {
  font-style: italic;
}

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C0622F;
  margin-bottom: 8px;
  background: rgba(192,98,47,0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ===== STAGE LABEL ===== */
.stage-label {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
  margin-left: 8px;
}
.stage-awareness { background: #eaf4e8; color: #2d6a2d; }
.stage-consideration { background: #fef3e2; color: #8a5a00; }
.stage-decision { background: #fde8e8; color: #922; }

/* ===== HOME PAGE ===== */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(135deg, #4A3728 60%, #C0622F 100%);
  color: #F5ECD7;
  padding: 40px 24px;
  align-items: center;
  width: 100%;
}

.hero-figure {
  position: relative;
  flex: 0 0 auto;
  margin: 0 24px 0 0;
}
.hero-figure .hero-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: #C0622F;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hero-aside {
  flex: 1;
  min-width: 0;
}
.hero-aside h1 {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  margin: 0 0 12px;
  color: #F5ECD7;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .hero-section {
    flex-direction: column;
    padding: 24px 16px;
  }
  .hero-figure {
    margin: 0 0 20px;
  }
  .hero-figure .hero-img {
    width: 120px;
    height: 120px;
  }
}

.page-body {
  position: relative;
}
.content-aside {
  background: #fff8f0;
  border: 1px solid rgba(192,98,47,0.3);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.aside-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: #C0622F;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.toc-list li a {
  color: #4A3728;
  text-decoration: underline;
  font-size: 0.9rem;
  display: block;
  padding: 4px 0;
}
.toc-list li a:hover {
  color: #C0622F;
}

/* Child table on home */
.home-children {
  margin-top: 32px;
}
.home-children h2 {
  font-size: 1.2rem;
  color: #4A3728;
  margin: 0 0 4px;
}
.child-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.child-table tbody tr {
  border-bottom: 1px solid rgba(74,55,40,0.15);
}
.child-table tbody tr:hover {
  background: rgba(192,98,47,0.05);
}
.child-table td {
  padding: 12px 8px;
  vertical-align: top;
  font-size: 0.9rem;
}
.child-table td a {
  color: #C0622F;
  text-decoration: underline;
  font-weight: 600;
}
.child-table .child-desc {
  color: #7a6254;
  font-size: 0.85rem;
}

/* ===== RANKING PAGE ===== */
.ranking-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(135deg, #3a2a1c 55%, #C0622F 100%);
  color: #F5ECD7;
  padding: 40px 24px;
  align-items: flex-start;
  width: 100%;
}
.ranking-figure {
  position: relative;
  flex: 0 0 auto;
  margin: 0 24px 0 0;
}
.ranking-hero-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.ranking-hero-placeholder {
  width: 140px;
  height: 140px;
  background: rgba(245,236,215,0.15);
  border-radius: 10px;
  border: 2px dashed rgba(245,236,215,0.4);
}
.ranking-badge {
  display: block;
  margin-top: 8px;
  background: #C0622F;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-align: center;
  letter-spacing: 0.05em;
}
.ranking-intro-aside {
  flex: 1;
  min-width: 0;
}
.ranking-intro-aside h1 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin: 8px 0 12px;
  color: #F5ECD7;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .ranking-hero {
    flex-direction: column;
    padding: 24px 16px;
  }
  .ranking-figure {
    margin: 0 0 16px;
  }
  .ranking-hero-img,
  .ranking-hero-placeholder {
    width: 100px;
    height: 100px;
  }
}

/* ===== REVIEW PAGE ===== */
.review-header-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(135deg, #4A3728 50%, #8b3d1c 100%);
  color: #F5ECD7;
  padding: 40px 24px;
  align-items: flex-start;
  width: 100%;
}
.review-figure {
  position: relative;
  flex: 0 0 auto;
  margin: 0 24px 0 0;
}
.review-hero-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.review-hero-placeholder {
  width: 140px;
  height: 140px;
  background: rgba(245,236,215,0.12);
  border-radius: 10px;
  border: 2px dashed rgba(245,236,215,0.35);
}
.review-badge {
  display: block;
  margin-top: 8px;
  background: #C0622F;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-align: center;
}
.review-meta-aside {
  flex: 1;
  min-width: 0;
}
.review-meta-aside h1 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin: 8px 0 12px;
  color: #F5ECD7;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .review-header-section {
    flex-direction: column;
    padding: 24px 16px;
  }
  .review-figure {
    margin: 0 0 16px;
  }
  .review-hero-img,
  .review-hero-placeholder {
    width: 100px;
    height: 100px;
  }
}

/* ===== COMPARE PAGE ===== */
.compare-intro-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(135deg, #4A3728 50%, #a04820 100%);
  color: #F5ECD7;
  padding: 40px 24px;
  align-items: flex-start;
  width: 100%;
}
.compare-figure {
  position: relative;
  flex: 0 0 auto;
  margin: 0 24px 0 0;
}
.compare-hero-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.compare-hero-placeholder {
  width: 140px;
  height: 140px;
  background: rgba(245,236,215,0.12);
  border-radius: 10px;
  border: 2px dashed rgba(245,236,215,0.35);
}
.compare-badge {
  display: block;
  margin-top: 8px;
  background: #C0622F;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-align: center;
}
.compare-intro-aside {
  flex: 1;
  min-width: 0;
}
.compare-intro-aside h1 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin: 8px 0 12px;
  color: #F5ECD7;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .compare-intro-section {
    flex-direction: column;
    padding: 24px 16px;
  }
  .compare-figure {
    margin: 0 0 16px;
  }
  .compare-hero-img,
  .compare-hero-placeholder {
    width: 100px;
    height: 100px;
  }
}

/* ===== FAQ PAGE ===== */
.faq-header-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(135deg, #4A3728 55%, #C0622F 100%);
  color: #F5ECD7;
  padding: 40px 24px;
  align-items: flex-start;
  width: 100%;
}
.faq-figure {
  position: relative;
  flex: 0 0 auto;
  margin: 0 24px 0 0;
}
.faq-hero-deco {
  width: 100px;
  height: 100px;
  background: rgba(245,236,215,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(245,236,215,0.4);
}
.faq-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #F5ECD7;
  text-align: center;
  padding: 4px;
  line-height: 1.3;
}
.faq-intro-aside {
  flex: 1;
  min-width: 0;
}
.faq-intro-aside h1 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin: 8px 0 12px;
  color: #F5ECD7;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .faq-header-section {
    flex-direction: column;
    padding: 24px 16px;
  }
  .faq-figure {
    margin: 0 0 16px;
  }
}

.faq-copy details {
  border: 1px solid rgba(74,55,40,0.2);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-copy details summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 600;
  background: rgba(192,98,47,0.06);
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.faq-copy details[open] summary {
  background: rgba(192,98,47,0.12);
}
.faq-copy details > *:not(summary) {
  padding: 12px 16px;
}

/* ===== INNER PAGES (about / privacy) ===== */
.inner-header-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(135deg, #4A3728 60%, #C0622F 100%);
  color: #F5ECD7;
  padding: 32px 24px;
  align-items: center;
  width: 100%;
}
.inner-figure {
  flex: 0 0 auto;
  margin: 0 24px 0 0;
}
.inner-hero-deco {
  width: 80px;
  height: 80px;
  background: rgba(245,236,215,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(245,236,215,0.4);
}
.inner-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #F5ECD7;
  text-align: center;
}
.inner-intro-aside {
  flex: 1;
  min-width: 0;
}
.inner-intro-aside h1 {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  margin: 0;
  color: #F5ECD7;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .inner-header-section {
    flex-direction: column;
    padding: 20px 16px;
    gap: 12px;
  }
  .inner-figure {
    margin: 0;
  }
}

/* ===== DATA PAGE ===== */
.data-header-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(135deg, #4A3728 55%, #C0622F 100%);
  color: #F5ECD7;
  padding: 32px 24px;
  align-items: center;
  width: 100%;
}
.data-figure {
  flex: 0 0 auto;
  margin: 0 24px 0 0;
}
.data-hero-deco {
  width: 80px;
  height: 80px;
  background: rgba(245,236,215,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(245,236,215,0.4);
}
.data-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #F5ECD7;
  text-align: center;
}
.data-intro-aside {
  flex: 1;
  min-width: 0;
}
.data-intro-aside h1 {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  margin: 8px 0 12px;
  color: #F5ECD7;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .data-header-section {
    flex-direction: column;
    padding: 20px 16px;
    gap: 12px;
  }
  .data-figure {
    margin: 0;
  }
}

/* ===== ABOUT PAGE ===== */
.author-section {
  margin-top: 32px;
  background: #fff8f0;
  border: 1px solid rgba(192,98,47,0.3);
  border-radius: 10px;
  padding: 24px;
}
.author-section h2 {
  font-size: 1.1rem;
  color: #4A3728;
  margin: 0 0 4px;
}
.author-card {
  margin-top: 12px;
}
.author-name {
  display: block;
  font-size: 1.1rem;
  color: #4A3728;
  margin-bottom: 4px;
}
.author-credentials {
  display: block;
  font-size: 0.85rem;
  color: #C0622F;
  margin-bottom: 10px;
  font-style: italic;
}
.author-bio {
  font-size: 0.95rem;
  color: #5a4535;
  line-height: 1.6;
  margin: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #4A3728;
  color: #F5ECD7;
  margin-top: 48px;
  width: 100%;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px 24px;
}

.footer-address {
  flex: 1;
  min-width: 200px;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-address strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #F5ECD7;
}
.footer-address a {
  color: #C0622F;
  text-decoration: underline;
}

.footer-nav {
  flex: 1;
  min-width: 200px;
}
.footer-nav dl {
  margin: 0;
  padding: 0;
}
.footer-nav dt {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C0622F;
  margin-bottom: 8px;
}
.footer-nav dd {
  margin: 0;
}
.footer-nav dd a {
  display: block;
  color: #F5ECD7;
  text-decoration: none;
  padding: 5px 0;
  font-size: 0.875rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(245,236,215,0.08);
}
.footer-nav dd a:hover {
  color: #C0622F;
}

.footer-trust {
  flex: 0 0 auto;
}
.footer-trust ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-trust ul li a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: #F5ECD7;
  text-decoration: underline;
  font-size: 0.875rem;
  padding: 4px 0;
}
.footer-trust ul li a:hover {
  color: #C0622F;
}

.footer-rg {
  background: rgba(0,0,0,0.2);
  padding: 12px 16px;
  text-align: center;
}
.footer-rg p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(245,236,215,0.75);
  line-height: 1.5;
}

.footer-copy {
  border-top: 1px solid rgba(245,236,215,0.1);
  padding: 12px 16px;
  text-align: center;
}
.footer-copy p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(245,236,215,0.55);
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    padding: 24px 16px 16px;
  }
  .footer-nav dl {
    display: flex;
    flex-direction: column;
  }
}

/* ===== HR DECORATION ===== */
h2 + hr, h3 + hr {
  border: none;
  border-top: 2px solid rgba(192,98,47,0.4);
  margin: 0 0 16px;
}
hr {
  border: none;
  border-top: 1px solid rgba(74,55,40,0.15);
  margin: 16px 0;
}

/* ===== IMAGES ===== */
img {
  max-width: 100%;
  height: auto;
}

/* ===== UTILITIES ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Ensure no element causes overflow */
div, section, article, aside, figure, figcaption, nav, footer, header {
  max-width: 100%;
}

a[data-cta],button[aria-controls]{min-height:44px;min-width:44px;box-sizing:border-box}main p a{text-decoration:underline}.tbl-scroll{overflow-x:auto;max-width:100%}