
:root {
  --ink: #171917;
  --muted: #646a64;
  --green: #5f982f;
  --green-dark: #3f7420;
  --green-deep: #173e11;
  --cream: #f7f5ef;
  --soft: #f5f7f3;
  --line: #dfe3dc;
  --white: #ffffff;
  --gold: #f6df9f;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.site-shell { width: min(100% - 32px, var(--max)); margin: 0 auto; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-row {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.menu-link,
.header-search-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 700;
}
.header-search-link { justify-self: end; }
.icon-lines,
.icon-search {
  width: 26px;
  height: 26px;
  position: relative;
  flex: 0 0 auto;
}
.icon-lines::before,
.icon-lines::after,
.icon-lines span {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  height: 2px;
  background: var(--ink);
}
.icon-lines::before { top: 5px; }
.icon-lines span { top: 12px; }
.icon-lines::after { top: 19px; }
.icon-search {
  border: 3px solid var(--ink);
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.icon-search::after {
  content: "";
  width: 9px;
  height: 3px;
  background: var(--ink);
  position: absolute;
  right: -7px;
  bottom: -3px;
  transform: rotate(45deg);
  border-radius: 3px;
}
.home-logo img { width: 228px; height: auto; }

.destination-hero {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.22)),
    url("../images/destinations/new-orleans/hero.webp") center/cover no-repeat;
}
.hero-inner {
  width: min(100% - 32px, 860px);
  text-align: center;
}
.hero-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.search-form {
  display: flex;
  background: rgba(255,255,255,.97);
  border-radius: 18px;
  box-shadow: 0 12px 38px rgba(0,0,0,.24);
  overflow: hidden;
}
.search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 23px 22px;
  font-size: 1.05rem;
}
.search-form button {
  border: 0;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  padding: 0 26px;
  cursor: pointer;
}
.hero-promise {
  display: inline-block;
  margin: 14px 0 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.93);
  font-size: .86rem;
  font-weight: 700;
}

.home-main { padding: 38px 0 48px; }
.intro {
  max-width: 760px;
  margin-bottom: 26px;
}
.eyebrow {
  margin: 0 0 5px;
  color: var(--green-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.intro h1,
.section-heading {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}
.intro p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.topic-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 32px;
}
.topic-chips a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
}
.topic-chips a:hover,
.topic-chips a:focus { border-color: var(--green); color: var(--green-dark); }

.questions-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .8fr);
  gap: 30px;
  align-items: start;
}
.question-list {
  margin-top: 16px;
  border-top: 1px solid var(--line);
}
.question-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 2px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 1.02rem;
}
.question-link span:last-child {
  color: var(--green);
  font-size: 1.55rem;
}
.view-all {
  display: inline-block;
  margin-top: 17px;
  color: var(--green-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}

.trust-explainer {
  border-radius: 18px;
  padding: 22px;
  background: var(--soft);
}
.trust-explainer img {
  width: 88px;
  margin-bottom: 16px;
}
.trust-explainer h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}
.trust-explainer p {
  margin: 0;
  color: var(--muted);
}

.trusted-section {
  margin-top: 42px;
  padding: 30px;
  border-radius: 18px;
  background: var(--gold);
}
.trusted-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.trusted-header img { width: 66px; }
.trusted-header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}
.trusted-header p {
  margin: 3px 0 0;
  color: #5e522e;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.partner-card {
  padding: 18px;
  border: 1px solid rgba(92,76,25,.22);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
}
.partner-card h3 { margin: 0 0 6px; }
.partner-card p { margin: 0 0 12px; color: var(--muted); }
.partner-card a {
  color: var(--green-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}
.recommendation-standard {
  display: inline-block;
  margin-top: 16px;
  color: #514515;
  font-weight: 800;
  text-underline-offset: 3px;
}

.library-cta {
  margin-top: 34px;
  padding: 24px;
  border-radius: 16px;
  background: var(--green-deep);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.library-cta h2 { margin: 0 0 5px; }
.library-cta p { margin: 0; color: #d9e6d5; }
.library-cta a {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-deep);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 30px;
  color: var(--muted);
  font-size: .82rem;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a { text-decoration: none; }

.search-page { padding: 34px 0 50px; }
.search-results { margin-top: 24px; }
.result-card {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.result-card h2 { margin: 0 0 5px; font-size: 1.2rem; }
.result-card a { color: var(--green-dark); }
.result-meta { color: var(--muted); font-size: .82rem; font-weight: 700; }
.result-card p { margin: 7px 0 0; color: var(--muted); }
.no-results {
  padding: 18px;
  border-radius: 12px;
  background: var(--cream);
}

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

@media (max-width: 760px) {
  .header-row {
    min-height: 88px;
    grid-template-columns: auto 1fr auto;
  }
  .home-logo img { width: 178px; }
  .menu-link span:last-child,
  .header-search-link span:last-child { display: none; }
  .destination-hero { min-height: 210px; }
  .questions-layout { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .library-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .home-logo img { width: 150px; }
  .search-form input { padding: 18px 16px; }
  .search-form button { padding: 0 16px; }
  .trusted-section { padding: 22px 18px; }
  .trusted-header { align-items: flex-start; }
}
