/* ==========================================================
   Billy Summers — Travel Advisor
   Image-led editorial design
   ========================================================== */

:root {
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --paper: #faf7f2;
  --paper-warm: #f3ede2;
  --rule: #d9d0bf;
  --accent: #b85c38;          /* terracotta — sunset / safari */
  --accent-soft: #e9d5c6;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;
  --max: 1200px;
  --max-narrow: 680px;
  --topbar-h: 64px;
}

/* Reset + base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; }

/* Containers */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: var(--max-narrow); }
.container--two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ==========================================================
   IMAGE SLOTS (placeholders + final images/videos)
   Drop in:
     <div class="image-slot ...">
       <img src="..." alt="...">          ← or
       <video src="..." muted autoplay loop playsinline></video>
     </div>
   When media is present, the placeholder label hides.
   ========================================================== */
.image-slot {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #d9c7ad 0%, #b8a081 60%, #9a8568 100%);
  border-radius: 2px;
}
.image-slot::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  pointer-events: none;
}
.image-slot::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255,255,255,0.4);
  pointer-events: none;
}
.image-slot:has(img),
.image-slot:has(video) {
  background: var(--ink);
}
.image-slot:has(img)::before,
.image-slot:has(video)::before,
.image-slot:has(img)::after,
.image-slot:has(video)::after { display: none; }
.image-slot img,
.image-slot video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slot variants */
.image-slot--hero { width: 100%; height: 100vh; min-height: 600px; }
.image-slot--portrait { aspect-ratio: 4 / 3; width: 100%; }
.image-slot--gallery { aspect-ratio: 1 / 1; }
.image-slot--card { aspect-ratio: 4 / 3; width: 100%; }

/* ==========================================================
   TOPBAR (small wordmark + always-visible CTA)
   ========================================================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  z-index: 50;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.topbar__mark, .topbar__cta { pointer-events: auto; }
.topbar__mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--paper);
  text-decoration: none;
  mix-blend-mode: difference;
}
.topbar__cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.topbar__cta:hover {
  background: rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.85);
  color: var(--paper);
}

/* ==========================================================
   HERO — image-led, full-bleed
   ========================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 8% 8%;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.0) 30%,
    rgba(0,0,0,0.5) 100%
  );
  color: var(--paper);
  z-index: 2;
}
.hero__eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
  opacity: 0.95;
}
.hero__tagline {
  font-family: var(--serif);
  font-size: clamp(28px, 5.5vw, 64px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
  max-width: 820px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.hero__cta:hover {
  background: var(--accent);
  color: var(--paper);
  transform: translateY(-1px);
}

/* ==========================================================
   SECTIONS
   ========================================================== */
.section { padding: 120px 0; }
/* ==========================================================
   CTA — three paths section
   ========================================================== */
/* ==========================================================
   CREDIBILITY strip — under hero, above why-work-with-me
   ========================================================== */
.credibility {
  background: var(--paper);
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
}
.credibility__line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45;
  color: var(--ink);
  text-align: center;
  margin: 0;
  letter-spacing: 0.005em;
}
.credibility__line a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* ==========================================================
   FAQ
   ========================================================== */
.section--faq { background: var(--paper); padding-bottom: 100px; }
.faq { border-top: 1px solid var(--rule); }
.faq__item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 40px 24px 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  position: relative;
  transition: color 0.2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--ink-soft);
  transition: transform 0.25s ease, color 0.2s ease;
}
.faq__item[open] summary::after {
  content: "−";
  color: var(--accent);
}
.faq__item summary:hover { color: var(--accent); }
.faq__item p {
  margin: 0 40px 28px 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

/* ==========================================================
   FORM — progressive disclosure
   ========================================================== */
.intake__more {
  margin: 8px 0 24px;
}
.intake__more summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}
.intake__more summary::-webkit-details-marker { display: none; }
.intake__more-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--rule);
}
.intake__more summary:hover .intake__more-label {
  color: var(--accent);
  text-decoration-color: var(--accent);
}
.intake__more[open] .intake__more-label::after {
  content: " — hide";
}
.intake__more:not([open]) .intake__more-label::after {
  content: " +";
  font-style: normal;
}
.intake__more[open] > .intake__group:first-of-type {
  border-top: 1px solid var(--rule);
  padding-top: 32px;
  margin-top: 8px;
}

.section--cta {
  background: var(--paper-warm);
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
}
.cta__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink-soft);
  text-align: center;
  margin: -24px auto 64px;
  letter-spacing: 0.01em;
}
.cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 36px 32px 32px;
  text-decoration: none;
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.cta-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}
.cta-card__num {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.cta-card h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
.cta-card p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  flex-grow: 1;
}
.cta-card__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.cta-card:hover .cta-card__action {
  color: var(--accent);
  border-color: var(--accent);
}
.cta-card--share {
  border-style: dashed;
}

.cta__scope {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.cta__scope-col p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.cta__scope-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cta__scope-list li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding: 6px 0 6px 18px;
  position: relative;
}
.cta__scope-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--rule);
}
.cta__scope-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px !important;
  font-weight: 500;
  color: var(--ink) !important;
  margin-bottom: 8px !important;
  letter-spacing: 0.005em;
}
.cta__scope-col:first-child .cta__scope-label span { color: var(--accent); }
.cta__scope-col:last-child .cta__scope-label span { color: var(--ink-soft); }

@media (max-width: 900px) {
  .cta-cards { grid-template-columns: 1fr; gap: 16px; }
  .section--cta { padding: 80px 0; }
  .cta__scope { grid-template-columns: 1fr; gap: 28px; margin-top: 48px; padding-top: 32px; }
}

.section--about { background: var(--paper); }
.section--value { background: var(--ink); color: var(--paper); }
.section--specialties { background: var(--paper-warm); }
.section--process { background: var(--paper); }
.section--form { background: var(--paper-warm); padding-bottom: 140px; }

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 48px;
}
.section__title--centered { text-align: center; }

/* About / two-col */
.two-col__media { width: 100%; }
.two-col__text .section__title { margin-top: 0; }
.prose p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 22px;
  color: var(--ink);
}
.prose p:last-child { margin-bottom: 0; }
.prose__footnote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px !important;
  color: var(--ink-soft);
  opacity: 0.75;
  margin-top: 32px !important;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

/* ==========================================================
   GALLERY band
   ========================================================== */
.gallery__heading {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--ink-soft);
  text-align: center;
  margin: 0;
  padding: 80px 28px 0;
  letter-spacing: 0.01em;
}
.gallery__heading + .gallery { padding-top: 32px; }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 80px 28px;
  background: var(--paper);
  max-width: var(--max);
  margin: 0 auto;
}
.gallery__item { margin: 0; }
.gallery .image-slot { border-radius: 0; }
.gallery figcaption {
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ==========================================================
   VALUE PROP — dark band
   ========================================================== */
.value__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: rgba(250, 247, 242, 0.75);
  text-align: center;
  max-width: 720px;
  margin: -24px auto 64px;
}
.value {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 64px;
}
.value::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 1px;
  background: rgba(250, 247, 242, 0.32);
}
.value li {
  position: relative;
  padding-top: 8px;
}
.value__num {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.value h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--paper);
}
.value p {
  margin: 0;
  color: rgba(250, 247, 242, 0.72);
  font-size: 16px;
  line-height: 1.6;
  max-width: 460px;
}

/* ==========================================================
   SPECIALTY CARDS — image-led
   ========================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; gap: 24px; }
}
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.card .image-slot { border-radius: 0; }
.card__body { padding: 28px; }
.card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

/* ==========================================================
   PROCESS
   ========================================================== */
.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 56px;
}
.process li { position: relative; }
.process__num {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.process h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 12px;
}
.process p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

/* ==========================================================
   FORM
   ========================================================== */
.form__intro {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 48px;
  line-height: 1.5;
  text-align: center;
}

.intake { display: block; }

.intake__group {
  border: 0;
  border-top: 1px solid var(--rule);
  padding: 40px 0;
  margin: 0;
}
.intake__group:first-of-type { border-top: 0; padding-top: 0; }

.intake__group legend {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 0;
  margin-bottom: 28px;
}

.field {
  display: block;
  margin-bottom: 24px;
}
.field:last-child { margin-bottom: 0; }

.field__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field__label em {
  font-style: normal;
  color: var(--accent);
  margin-left: 2px;
}
.field__hint {
  display: inline;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-left: 4px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-soft);
  opacity: 0.5;
}
.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--accent);
  border-bottom-width: 2px;
}
.field textarea { resize: vertical; line-height: 1.5; }

/* Radios */
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 4px;
}
.radio-row--stack { flex-direction: column; }
.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.radio-row label:hover { border-color: var(--ink); }
.radio-row input[type="radio"] {
  accent-color: var(--accent);
  margin: 0;
}
.radio-row label:has(input:checked) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

/* Chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--ink); }
.chip input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chip:has(input:checked) {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* Submit */
.submit {
  margin-top: 16px;
  width: 100%;
  padding: 20px 32px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.submit:hover:not(:disabled) { background: var(--accent); }
.submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form__status {
  margin-top: 20px;
  font-size: 15px;
  text-align: center;
  min-height: 1.5em;
}
.form__status.form__status--ok { color: var(--accent); }
.form__status.form__status--err { color: #b00020; }

/* Honeypot */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==========================================================
   FOOTER — name lives here
   ========================================================== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0 80px;
  text-align: center;
}
.footer .container { max-width: var(--max-narrow); }
.footer__name {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 24px;
}
.footer__line {
  margin: 4px 0;
  color: rgba(250, 247, 242, 0.7);
  font-size: 15px;
}
.footer__line a { color: var(--paper); }
.footer__line a:hover { color: var(--accent); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 900px) {
  .container--two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 60px 22px;
  }
  .value {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .container { padding: 0 22px; }
  .topbar { padding: 0 22px; }
  .hero__overlay { padding: 0 28px 60px; }
  .prose p { font-size: 17px; }
  .intake__group { padding: 32px 0; }
  .intake__group legend { font-size: 24px; }
  .image-slot--hero { min-height: 520px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
