/* No Hassle Travel — landing page
   Tokens + rationale documented in:
   company/Marketing/Landing Page Blueprint.md
   One external dependency: Google Fonts (Fraunces + Inter) —
   deliberate tradeoff for real typographic quality; falls back to
   system serif/sans below if the font fails to load. */

:root {
  --alabaster: #f6f1e7;
  --charcoal: #211f1c;
  --charcoal-soft: #3a382f;
  --slate: #585a52;
  --olive: #736f52;
  --olive-soft: #a9a488;
  --line: #ded7c4;

  --font-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Keep anchor targets clear of the sticky header. */
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--alabaster);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--slate); }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 0.92rem;
}

.site-nav a:hover { color: var(--olive); }

.nav-cta {
  border: 1px solid var(--charcoal);
  padding: 9px 20px;
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: var(--charcoal);
  color: var(--alabaster);
}

/* ---------- Hero ---------- */

.hero { padding: 15vh 0 0; }

.hero-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--olive);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  margin-bottom: 26px;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 40px;
}

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 2px;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--alabaster);
}

.btn-primary:hover { background: var(--olive); }

.hero-media {
  position: relative;
  margin-top: 72px;
  height: min(55vh, 480px);
  background: linear-gradient(135deg, var(--line), var(--alabaster));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-ai-label {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--alabaster);
  background: rgba(33, 31, 28, 0.55);
  padding: 5px 11px;
  border-radius: 2px;
  backdrop-filter: blur(2px);
  pointer-events: none;
}

/* ---------- Section shared ---------- */

section { padding: 120px 0; }

.section-heading {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 56px;
}

.section-heading-left {
  text-align: left;
  margin-bottom: 24px;
}

/* ---------- Philosophy ---------- */

.philosophy-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.philosophy-media {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--line), var(--alabaster));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.philosophy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.philosophy-copy p { font-size: 1.05rem; }

/* ---------- Pillars ---------- */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.pillar-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--olive-soft);
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.pillar p { font-size: 0.95rem; }

/* ---------- Workflow / Timeline ---------- */

.workflow { background: var(--alabaster); }

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--olive);
}

.timeline-step { position: relative; }

.timeline-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--olive);
  background: var(--alabaster);
  padding-right: 12px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.timeline-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.timeline-step p { font-size: 0.92rem; }

/* ---------- Inquiry form ---------- */

.inquiry { background: var(--alabaster); }

.inquiry-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.inquiry-sub {
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 48px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.inquiry-hidden { display: none; }

.inquiry-row { display: flex; flex-direction: column; gap: 8px; }

.inquiry-row-full { grid-column: 1 / -1; }

.inquiry-row label {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--slate);
}

.inquiry-row input,
.inquiry-row select,
.inquiry-row textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 12px 14px;
}

.inquiry-row input:focus,
.inquiry-row select:focus,
.inquiry-row textarea:focus {
  outline: none;
  border-color: var(--olive);
}

.inquiry-row textarea { resize: vertical; }

.inquiry-submit {
  grid-column: 1 / -1;
  justify-self: start;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

.inquiry-privacy {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--slate);
  margin: 0;
}

.inquiry-status {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: var(--olive);
  margin: 0;
  min-height: 1.2em;
}

/* ---------- Help widget ---------- */

.help-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
}

.help-widget details { position: relative; }

.help-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--alabaster);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 4px 16px rgba(33, 31, 28, 0.25);
  transition: background 0.2s ease;
}

.help-toggle::-webkit-details-marker { display: none; }

.help-toggle:hover { background: var(--olive); }

.help-panel {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: min(320px, 84vw);
  background: var(--alabaster);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(33, 31, 28, 0.18);
  padding: 22px;
}

.help-panel h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.help-panel dl { margin: 0 0 18px; }

.help-panel dt {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.help-panel dd {
  font-size: 0.85rem;
  color: var(--slate);
  margin: 0 0 14px;
  line-height: 1.5;
}

.help-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.help-panel-link {
  font-size: 0.85rem;
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.help-panel-link:hover { color: var(--charcoal); }

/* ---------- FAQ / Trust ---------- */

.faq { border-top: 1px solid var(--line); }

.faq-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 72px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-item dt {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.faq-item dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate);
}

.faq-item dd a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item dd a:hover { color: var(--charcoal); }

/* ---------- Sub-page hero (pricing, terms) ---------- */

.page-hero { padding: 12vh 0 56px; }

.page-hero-inner { max-width: 720px; margin: 0 auto; text-align: center; }

.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 20px; }

.lede { font-size: 1.1rem; max-width: 620px; margin: 0 auto; text-align: left; }

.page-hero-inner .lede { text-align: center; }

.terms-meta {
  font-size: 0.85rem;
  color: var(--olive-soft);
  margin: 24px 0 0;
}

.terms-meta a { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Pricing tiers ---------- */

.tiers-section { padding: 0 0 24px; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.tier {
  background: var(--card, #fffdf8);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tier-featured {
  border: 2px solid var(--olive);
  position: relative;
}

.tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: var(--alabaster);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-name { font-size: 1.4rem; text-align: center; margin-bottom: 6px; }

.tier-for {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive);
  text-align: center;
  margin-bottom: 20px;
  min-height: 2.4em;
}

.tier-price {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--charcoal);
  text-align: center;
  margin: 0 0 4px;
}

.tier-basis {
  font-size: 0.8rem;
  color: var(--olive-soft);
  text-align: center;
  margin-bottom: 24px;
}

.tier-list { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }

.tier-list li {
  font-size: 0.92rem;
  color: var(--slate);
  padding: 9px 0 9px 20px;
  border-top: 1px solid var(--line);
  position: relative;
}

.tier-list li:first-child { border-top: none; }

.tier-list li em { font-style: italic; color: var(--charcoal-soft); }

.tier-list li:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 6px;
  height: 6px;
  background: var(--olive-soft);
  border-radius: 50%;
}

.tier-cta { align-self: stretch; text-align: center; }

.btn-ghost-dark {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

.btn-ghost-dark:hover { background: var(--charcoal); color: var(--alabaster); }

/* ---------- How it works (pricing) ---------- */

.howitworks { padding: 88px 0; }

.howitworks-inner { max-width: 860px; margin: 0 auto; }

.howitworks-lede {
  text-align: center;
  max-width: 620px;
  margin: -28px auto 48px;
  font-size: 1.02rem;
}

.step-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step { text-align: center; }

.step-n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--alabaster);
  font-family: var(--font-serif);
  margin: 0 auto 14px;
}

.step p { font-size: 0.9rem; margin: 0; }

/* ---------- Terms: contents + clauses ---------- */

.toc-wrap { padding-bottom: 8px; }

.toc {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px 28px;
  background: #fffdf8;
}

.toc-title {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 12px;
}

.toc ol { margin: 0; padding-left: 1.3em; }

.toc li { font-size: 0.92rem; margin-bottom: 6px; color: var(--slate); }

.toc a { color: var(--slate); text-decoration: none; }

.toc a:hover { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }

.terms-body { padding: 40px 0 24px; }

.clause {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.clause:first-of-type { border-top: none; padding-top: 8px; }

.clause h2 { font-size: 1.35rem; margin-bottom: 18px; }

.clause-n { color: var(--olive); margin-right: 6px; }

.clause p { font-size: 1rem; }

.clause ul { margin: 0 0 1em; padding-left: 1.2em; color: var(--slate); }

.clause li { margin-bottom: 0.6em; font-size: 0.98rem; }

.clause a { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }

.clause a:hover { color: var(--charcoal); }

.callout {
  background: #fffdf8;
  border-left: 3px solid var(--olive);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.98rem;
}

/* ---------- Shared fineprint ---------- */

.fineprint {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 96px;
}

.fineprint p {
  font-size: 0.85rem;
  color: var(--olive-soft);
  line-height: 1.75;
  text-align: center;
  margin: 0;
}

.fineprint a { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }

.fineprint a:hover { color: var(--charcoal); }

/* ---------- Funnel CTA ---------- */

.funnel {
  background: var(--charcoal);
  color: var(--alabaster);
  padding: 140px 0;
}

.funnel-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.funnel-heading {
  color: var(--alabaster);
  margin-bottom: 16px;
}

.funnel-sub {
  color: var(--olive-soft);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.btn-cta {
  background: var(--olive);
  color: var(--alabaster);
  padding: 16px 40px;
}

.btn-cta:hover { background: var(--olive-soft); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--slate);
}

.footer-note { font-style: italic; }

.footer-links a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover { color: var(--charcoal); }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .philosophy-inner { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .tier-grid { grid-template-columns: 1fr; gap: 32px; }
  .tier-featured { margin-top: 8px; }
  .tier-for { min-height: 0; }
  .step-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .page-hero { padding-top: 8vh; }
  .pillar-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline { grid-template-columns: 1fr; gap: 36px; }
  .timeline::before { display: none; }
  .inquiry-form { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 0; }
  /* The stacked header is tall; keeping it sticky would eat ~20% of the
     viewport on every scroll, so it scrolls away on small screens. */
  .site-header { position: static; }
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
  }
  .logo { font-size: 1.1rem; text-align: center; }
  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    font-size: 0.82rem;
  }
  .nav-cta { order: 5; margin-top: 2px; }
  section { padding: 72px 0; }
  .help-widget { right: 12px; bottom: 12px; }
  .help-toggle { width: 44px; height: 44px; font-size: 1.05rem; }
  .help-panel { right: -4px; bottom: 54px; width: min(280px, 88vw); padding: 18px; }
  .hero { padding-top: 10vh; }
}
