*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #272727;
  --darker: #1C1C1C;
  --orange: #E8891A;
  --orange-light: #F0A040;
  --white: #FFFFFF;
  --off: #F2F2F0;
  --muted: #666666;
}

html { scroll-behavior: smooth; }
body {
  font-family: Georgia, serif;
  background: var(--off);
  color: var(--dark);
  overflow-x: hidden;
}

body, input, textarea, select, button { -webkit-font-smoothing: antialiased; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 5%;
  background: var(--darker);
  border-bottom: 1px solid rgba(232,137,26,0.25);
}

.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; }
.nav-logo .first { color: var(--white); font-size: 1rem; letter-spacing: 0.06em; }
.nav-logo .last { color: var(--orange); font-weight: 700; font-size: 1rem; letter-spacing: 0.06em; }
.nav-links { display: flex; gap: 1.35rem; align-items: center; }
.nav-links a,
.nav-trigger {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: sans-serif;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-links a:hover,
.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger { color: var(--orange); }
.nav-item { position: relative; padding: 0.4rem 0; }
.dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 250px;
  padding: 0.65rem;
  background: #202020;
  border: 1px solid rgba(232,137,26,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.75rem 0.85rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.dropdown a:hover { background: rgba(232,137,26,0.08); color: var(--orange); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--orange);
  font-size: 1.4rem;
  line-height: 1;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--darker);
  border-bottom: 1px solid rgba(232,137,26,0.2);
  max-height: calc(100vh - 54px);
  overflow: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: sans-serif;
  padding: 1rem 5%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-label {
  color: var(--orange);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: sans-serif;
  padding: 1rem 5% 0.35rem;
}

.hero {
  min-height: 72vh;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(232,137,26,0.12) 0%, transparent 66%);
  pointer-events: none;
}
.hero-inner,
.section-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-family: sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
}
h1 {
  max-width: 820px;
  font-size: clamp(2.25rem, 6vw, 4.35rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-copy {
  max-width: 760px;
  color: rgba(255,255,255,0.62);
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.cta-row { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  font-family: sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: var(--darker); }
.btn-primary:hover { background: var(--orange-light); }
.btn-outline { border: 1px solid rgba(155,78,0,0.65); color: #9B4E00; }
.btn-outline:hover { border-color: #9B4E00; }

section { padding: 5.5rem 5%; }
.section-tag {
  color: #9B4E00;
  font-family: sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
h2 {
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  line-height: 1.16;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.17rem;
  line-height: 1.35;
  margin-bottom: 0.55rem;
}
.divider {
  width: 60px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 2rem;
}
.lead {
  max-width: 780px;
  color: var(--muted);
  font-family: sans-serif;
  font-size: 0.98rem;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}
.page-meta {
  color: rgba(255,255,255,0.58);
  font-family: sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
  margin: -0.75rem 0 1.7rem;
}
.page-meta a { color: rgba(255,255,255,0.82); text-decoration-color: rgba(232,137,26,0.55); }
.answer-card {
  max-width: 880px;
  background: var(--white);
  border-left: 4px solid var(--orange);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 1.4rem 1.6rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.card {
  background: var(--white);
  border-top: 3px solid var(--orange);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 1.6rem;
}
.card p,
.card li,
.body-copy p,
.body-copy li {
  color: var(--muted);
  font-family: sans-serif;
  font-size: 0.92rem;
  line-height: 1.85;
}
.body-copy p { margin-bottom: 1rem; }
.body-copy ul,
.card ul { padding-left: 1.15rem; }
.body-copy li,
.card li { margin-bottom: 0.45rem; }
.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 1.6rem;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.04);
  font-family: sans-serif;
  font-size: 0.9rem;
}
.comparison-table th,
.comparison-table td {
  border: 1px solid rgba(232,137,26,0.22);
  padding: 0.95rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}
.comparison-table th {
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.author-card {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 1.6rem;
  align-items: center;
  background: var(--white);
  border-top: 3px solid var(--orange);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 1.6rem;
}
.author-photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
}
.author-card p {
  color: var(--muted);
  font-family: sans-serif;
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: 0.8rem;
}
.author-card a { color: #9B4E00; font-family: sans-serif; font-weight: 700; }
.dark-section {
  background: var(--dark);
  color: var(--white);
}
.dark-section .section-tag { color: var(--orange); }
.dark-section .lead,
.dark-section .card p,
.dark-section .card li { color: rgba(255,255,255,0.64); }
.dark-section .card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,137,26,0.2);
  border-top: 3px solid var(--orange);
}
.faq {
  background: var(--white);
}
.faq-item {
  border-top: 2px solid var(--orange);
  padding-top: 1.25rem;
}
.faq-item p {
  color: var(--muted);
  font-family: sans-serif;
  font-size: 0.91rem;
  line-height: 1.8;
}
.breadcrumb {
  color: rgba(255,255,255,0.45);
  font-family: sans-serif;
  font-size: 0.78rem;
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.86); text-decoration: underline; text-decoration-color: rgba(232,137,26,0.75); text-underline-offset: 0.18em; }
.breadcrumb a:hover { color: var(--orange); }

footer {
  background: var(--darker);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(232,137,26,0.2);
}
.footer-logo { display: flex; align-items: center; gap: 0.45rem; }
.footer-logo img { width: 28px; height: 28px; object-fit: contain; }
.footer-logo span { font-family: Georgia; font-size: 0.95rem; letter-spacing: 0.06em; }
.footer-logo .first { color: var(--white); }
.footer-logo .last { color: var(--orange); font-weight: 700; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255,255,255,0.72); font-size: 0.78rem; font-family: sans-serif; text-decoration: none; }
.footer-links a:hover { color: var(--orange); }
footer p { color: rgba(255,255,255,0.72); font-size: 0.78rem; font-family: sans-serif; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }
  section { padding: 4rem 5%; }
  .author-card { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}
