/* ============================================================
   Parsons Private Safari
   Ported from the Claude Design prototype. Colour, type and
   spacing values match the source. Hover/focus states (which the
   prototype expressed via style-hover/style-focus attributes) and
   responsive rules (which the prototype lacked) are added here.
   ============================================================ */

:root {
  --accent: #9A7B3F;        /* Brass — the prototype's default accent */
  --bg: #FBF7EF;
  --ink: #26221B;
  --muted: #5e5749;
  --faint: #9a9180;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

::selection { background: #9A7B3F; color: #FBF7EF; }
input::placeholder, textarea::placeholder { color: #b3ab98; }

@keyframes pps-fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes pps-cue  { 0%, 100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(8px); opacity: 1; } }

.root {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Hanken Grotesk', sans-serif;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ---------------- NAV ---------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 247, 239, .94);
  backdrop-filter: saturate(120%) blur(6px);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  border-bottom: 1px solid rgba(38, 34, 27, .10);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 52px;
}
.brand { cursor: pointer; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 21px; letter-spacing: 9px; line-height: 1; }
.brand-sub  { font-family: 'Hanken Grotesk', sans-serif; font-size: 8px; letter-spacing: 6px; color: var(--faint); margin-top: 5px; }
.nav-links {
  display: flex; gap: 36px; align-items: center;
  font-family: 'Hanken Grotesk', sans-serif; font-size: 11px;
  letter-spacing: 1.8px; text-transform: uppercase; color: #6b6353;
}
.nav-link { cursor: pointer; transition: color .2s ease; }
.nav-link:hover { color: var(--accent); }
.nav-cta { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 3px; }

/* ---------------- HERO ---------------- */
.hero { position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.hero-home    { min-height: 86vh; background: #6f5e3e url("../images/hero-home.jpg") center 38% / cover no-repeat; }
.hero-about   { min-height: 60vh; background: #7a6a47 url("../images/hero-about.jpg") center / cover no-repeat; }
.hero-itin    { min-height: 58vh; background: #6f5e3e url("../images/hero-itinerary.jpg") center 30% / cover no-repeat; }
.hero-contact { min-height: 46vh; background: #7a6a47 url("../images/hero-contact.jpg") center 60% / cover no-repeat; }

.hero-overlay-1 { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,10,.40) 0%, rgba(20,16,10,.04) 32%, rgba(20,16,10,.60) 100%); }
.hero-overlay-2 { position: absolute; inset: 0; background: radial-gradient(85% 60% at 28% 30%, rgba(255,226,182,.26), transparent 60%); }
.hero-overlay-flat { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,10,.35), rgba(20,16,10,.55)); }
.hero-itin .hero-overlay-flat { background: linear-gradient(180deg, rgba(20,16,10,.35), rgba(20,16,10,.58)); }
.hero-contact .hero-overlay-flat { background: linear-gradient(180deg, rgba(20,16,10,.32), rgba(20,16,10,.55)); }

.hero-content { position: relative; width: 100%; padding: 0 52px 64px; }
.hero-about .hero-content, .hero-itin .hero-content, .hero-contact .hero-content { width: auto; }
.hero-about .hero-content { padding-bottom: 60px; }
.hero-itin .hero-content { padding-bottom: 58px; }
.hero-contact .hero-content { padding-bottom: 54px; }

.hero-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 104px; line-height: .96; letter-spacing: -1px;
  color: var(--bg); max-width: 960px; margin: 0;
}
.hero-title-sm { font-size: 80px; line-height: 1.0; max-width: 840px; }
.hero-title-md { font-size: 76px; line-height: 1.0; max-width: 840px; }
.hero-contact .hero-title { font-size: 72px; }
.hero-title .i { font-style: italic; }

.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 38px; }

.caption-hero {
  position: absolute; bottom: 22px; right: 52px;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 14px; color: rgba(251, 247, 239, .72);
}
.scroll-cue {
  position: absolute; top: 30px; right: 54px; width: 18px; height: 30px;
  border: 1px solid rgba(251, 247, 239, .5); border-radius: 9px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-cue span { width: 2px; height: 6px; background: rgba(251, 247, 239, .7); animation: pps-cue 1.8s ease-in-out infinite; }

/* ---------------- SHARED TYPE ---------------- */
.eyebrow { font-family: 'Hanken Grotesk', sans-serif; text-transform: uppercase; }
.eyebrow-light  { font-size: 11px; letter-spacing: 5px; color: rgba(251, 247, 239, .85); margin-bottom: 22px; }
.eyebrow-accent { font-size: 11px; letter-spacing: 4px; color: var(--accent); margin-bottom: 22px; }
.center { text-align: center; }

.h-display { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 50px; line-height: 1.06; margin: 0; }
.h-name { font-size: 54px; line-height: 1.04; }
.body-text { font-family: 'Hanken Grotesk', sans-serif; font-size: 15px; line-height: 1.85; color: var(--muted); }
.body-text-lh { line-height: 1.9; }

.btn {
  cursor: pointer; display: inline-block;
  font-family: 'Hanken Grotesk', sans-serif; text-transform: uppercase;
  transition: opacity .2s ease, background .2s ease, color .2s ease;
}
.btn-light  { background: var(--bg); color: var(--ink); font-size: 11px; letter-spacing: 2.5px; padding: 16px 34px; }
.btn-dark   { background: var(--ink); color: var(--bg); font-size: 11px; letter-spacing: 3px; padding: 17px 42px; border: none; }
.btn-outline{ border: 1px solid var(--ink); padding: 15px 30px; font-size: 11px; letter-spacing: 2.5px; margin-top: 30px; }
.btn-light:hover, .btn-dark:hover { opacity: .88; }
.btn-outline:hover { background: var(--ink); color: var(--bg); }

.link-serif { cursor: pointer; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 19px; color: rgba(251, 247, 239, .9); transition: opacity .2s ease; }
.link-serif:hover { opacity: .75; }
.link-serif-accent { color: var(--accent); margin-top: 30px; display: inline-block; }

/* ---------------- HOME: philosophy ---------------- */
.philosophy { padding: 120px 60px; max-width: 860px; margin: 0 auto; text-align: center; }
.philosophy-narrow { max-width: 820px; }
.philosophy-itin { padding: 96px 60px 40px; max-width: 780px; }
.lead { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 40px; line-height: 1.5; margin: 0; }
.lead-sm { font-size: 38px; }
.lead-md { font-size: 30px; line-height: 1.5; color: #3a342a; }
.lead-xs { font-size: 36px; line-height: 1.45; }
.rule-v { width: 1px; height: 56px; background: var(--accent); margin: 48px auto 0; opacity: .6; }
.rule-h { width: 48px; height: 1px; background: var(--accent); margin: 26px 0; }

/* ---------------- HOME: pillars ---------------- */
.pillars-wrap { padding: 0 60px 110px; max-width: 1280px; margin: 0 auto; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(38, 34, 27, .14); }
.pillar { padding: 48px 40px 0 40px; border-right: 1px solid rgba(38, 34, 27, .14); }
.pillar:first-child { padding-left: 0; padding-right: 40px; }
.pillar:last-child { padding-right: 0; border-right: none; }
.pillar-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 20px; color: var(--accent); margin-bottom: 16px; }
.pillar-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 30px; line-height: 1.12; margin: 0 0 16px; }
.pillar-body { font-family: 'Hanken Grotesk', sans-serif; font-size: 14px; line-height: 1.8; color: var(--muted); margin: 0; }

/* ---------------- SPLIT sections ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-bordered { align-items: stretch; border-top: 1px solid rgba(38, 34, 27, .10); border-bottom: 1px solid rgba(38, 34, 27, .10); }
.split-center { align-items: center; }
.split-text { padding: 90px 70px; display: flex; flex-direction: column; justify-content: center; }
.split-img { position: relative; min-height: 520px; background-size: cover; background-position: center; background-repeat: no-repeat; }
/* bottom scrim so the italic captions stay legible over photography */
.split-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20, 16, 10, .55)); pointer-events: none; }
.split-img-1 { background-color: #9c8a63; background-image: url("../images/tracking-on-foot.jpg"); }
.split-img-2 { min-height: 580px; background-color: #857452; background-image: url("../images/henry-host.jpg"); background-position: center 30%; }
.split-img-3 { background-color: #857452; background-image: url("../images/henry-guiding.jpg"); }

.caption { font-family: 'Cormorant Garamond', serif; font-style: italic; }
.caption-bl { position: absolute; bottom: 18px; left: 22px; z-index: 1; font-size: 14px; color: rgba(255, 250, 240, .92); text-shadow: 0 1px 6px rgba(0, 0, 0, .45); }
.caption-center { text-align: center; font-size: 14px; color: var(--faint); padding: 18px 0 0; }

/* ---------------- HOME: triptych ---------------- */
.triptych-wrap { padding: 90px 60px 0; }
.triptych { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
.trip { height: 320px; background-size: cover; background-position: center; background-repeat: no-repeat; }
.trip-1 { background-color: #c4b48f; background-image: url("../images/trip-eagle.jpg"); }
.trip-2 { background-color: #b09a6f; background-image: url("../images/trip-rainbow.jpg"); }
.trip-3 { background-color: #caa878; background-image: url("../images/trip-birds.jpg"); }

/* ---------------- testimonial ---------------- */
.testimonial { padding: 120px 60px; text-align: center; }
.quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: 46px; line-height: 1.38; max-width: 860px; margin: 0 auto; }
.quote-sm { font-size: 44px; line-height: 1.4; max-width: 840px; }
.attrib { font-family: 'Hanken Grotesk', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--faint); margin-top: 34px; }

/* ---------------- bands ---------------- */
.band { background: #F1E9DA; padding: 100px 60px; }
.band-inner { max-width: 1100px; margin: 0 auto; }
.band-narrow { max-width: 780px; margin: 0 auto; }
.band-included { padding: 110px 60px; margin-top: 40px; }

/* journey teaser */
.teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.teaser-days { display: flex; flex-direction: column; }
.teaser-row { display: flex; gap: 20px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid rgba(38, 34, 27, .12); }
.teaser-row-last { border-bottom: none; }
.teaser-day { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--accent); font-size: 18px; min-width: 54px; }
.teaser-label { font-family: 'Cormorant Garamond', serif; font-size: 24px; }

/* ---------------- cta box ---------------- */
.cta-wrap { padding: 120px 60px; }
.cta-wrap-tight { padding: 0 60px 120px; }
.cta-box { border: 1px solid var(--accent); padding: 88px 60px; text-align: center; max-width: 1100px; margin: 0 auto; }
.cta-box .h-display { font-size: 54px; line-height: 1.08; }
.cta-sub { max-width: 460px; margin: 20px auto 0; line-height: 1.7; }
.cta-box .btn { margin-top: 36px; }

/* ---------------- ABOUT: values ---------------- */
.values { padding: 120px 60px; max-width: 1180px; margin: 0 auto; }
.values .eyebrow-accent { margin-bottom: 14px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.value-title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: var(--accent); margin-bottom: 14px; }
.values .h-display { font-size: 46px; line-height: 1.1; }

/* ---------------- ITINERARY: timeline ---------------- */
.timeline { padding: 50px 60px 30px; max-width: 980px; margin: 0 auto; }
.day { display: grid; grid-template-columns: 120px 1fr; gap: 40px; padding: 42px 0; border-top: 1px solid rgba(38, 34, 27, .14); }
.day-last { border-bottom: 1px solid rgba(38, 34, 27, .14); }
.day-num { font-family: 'Hanken Grotesk', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); }
.day-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; color: var(--faint); margin-top: 6px; }
.day-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 34px; line-height: 1.1; margin: 0 0 14px; }
.day-body .body-text { max-width: 560px; }

/* ITINERARY: included grid */
.included-inner { max-width: 1080px; margin: 0 auto; }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(38, 34, 27, .12); }
.incl { background: #F1E9DA; padding: 30px 28px; }
.incl-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; }
.incl-body { font-family: 'Hanken Grotesk', sans-serif; font-size: 13px; line-height: 1.7; color: var(--muted); margin-top: 8px; }

/* ---------------- CONTACT ---------------- */
.contact-wrap { padding: 100px 60px 120px; }
.contact-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.25fr .85fr; gap: 80px; align-items: start; }
.h-form { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 38px; line-height: 1.15; margin: 0 0 12px; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 40px; }
.field-block { margin-top: 32px; }
.field-label { display: block; font-family: 'Hanken Grotesk', sans-serif; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.optional { color: #b3ab98; }
.field {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(38, 34, 27, .25); padding: 10px 0;
  font-family: 'Hanken Grotesk', sans-serif; font-size: 15px; color: var(--ink);
  outline: none; transition: border-bottom-color .2s ease;
}
.field:focus { border-bottom-color: var(--accent); }
.field-textarea { min-height: 120px; resize: vertical; line-height: 1.7; }
.field-error { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: #a8572f; margin-top: 7px; }
#enquiry-form .btn { margin-top: 44px; padding-left: 46px; padding-right: 46px; }

/* ---- Cambrian-one embed: style injected form to match the site ---- */
.embed-form { min-height: 120px; }
/* inputs / selects / textareas the embed injects */
.embed-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
.embed-form select,
.embed-form textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(38, 34, 27, .25); padding: 10px 0;
  font-family: 'Hanken Grotesk', sans-serif; font-size: 15px; color: var(--ink);
  outline: none; border-radius: 0; transition: border-bottom-color .2s ease;
}
.embed-form textarea { min-height: 120px; resize: vertical; line-height: 1.7; }
.embed-form input:focus, .embed-form select:focus, .embed-form textarea:focus { border-bottom-color: var(--accent); }
.embed-form label {
  font-family: 'Hanken Grotesk', sans-serif; font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
}
.embed-form button,
.embed-form input[type="submit"],
.embed-form [type="button"] {
  cursor: pointer; display: inline-block; border: none;
  background: var(--ink); color: var(--bg);
  font-family: 'Hanken Grotesk', sans-serif; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; padding: 17px 46px; border-radius: 0;
  transition: opacity .2s ease;
}
.embed-form button:hover, .embed-form input[type="submit"]:hover { opacity: .88; }
.embed-form iframe { width: 100%; border: none; }

/* CONTACT side panel */
.side-panel { background: #F1E9DA; padding: 48px 44px; }
.steps { display: flex; flex-direction: column; gap: 28px; }
.step { display: flex; gap: 18px; }
.step-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: var(--accent); line-height: 1; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 21px; line-height: 1.2; }
.step-body { font-family: 'Hanken Grotesk', sans-serif; font-size: 13px; line-height: 1.7; color: var(--muted); margin-top: 5px; }
.side-rule { height: 1px; background: rgba(38, 34, 27, .14); margin: 36px 0; }
.contact-line { display: block; font-family: 'Cormorant Garamond', serif; font-size: 22px; line-height: 1.5; transition: color .2s ease; }
.contact-line:hover { color: var(--accent); }

/* ---------------- FOOTER ---------------- */
.footer { background: var(--ink); color: #E7DECB; padding: 84px 56px 44px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; align-items: start; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 24px; letter-spacing: 8px; }
.footer-sub { font-family: 'Hanken Grotesk', sans-serif; font-size: 9px; letter-spacing: 6px; color: #a59a82; margin-top: 5px; }
.footer-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; line-height: 1.4; color: #d8cdb6; margin-top: 26px; max-width: 340px; }
.footer-head { font-family: 'Hanken Grotesk', sans-serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #a59a82; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; font-family: 'Hanken Grotesk', sans-serif; font-size: 14px; color: #d8cdb6; }
.footer-link { cursor: pointer; transition: color .2s ease; }
.footer-link:hover { color: var(--bg); }
.footer-bottom { max-width: 1180px; margin: 56px auto 0; padding-top: 24px; border-top: 1px solid rgba(231, 222, 203, .16); display: flex; justify-content: space-between; font-family: 'Hanken Grotesk', sans-serif; font-size: 11px; letter-spacing: 1px; color: #8f836c; }

/* ============================================================
   RESPONSIVE — the prototype was desktop-only. These breakpoints
   keep the live site usable on tablet and phone without altering
   the desktop composition.
   ============================================================ */
@media (max-width: 900px) {
  .nav-inner { padding: 16px 24px; }
  .nav-links { gap: 20px; font-size: 10px; letter-spacing: 1.2px; }

  .hero-content { padding: 0 24px 44px; }
  .hero-title { font-size: 60px; }
  .hero-title-sm, .hero-title-md, .hero-contact .hero-title { font-size: 48px; }
  .caption-hero { right: 24px; }
  .scroll-cue { right: 24px; }

  .philosophy, .philosophy-narrow { padding: 80px 24px; }
  .philosophy-itin { padding: 64px 24px 24px; }
  .lead { font-size: 30px; }
  .lead-sm, .lead-xs { font-size: 28px; }
  .lead-md { font-size: 24px; }

  .pillars-wrap { padding: 0 24px 70px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar, .pillar:first-child, .pillar:last-child {
    padding: 36px 0; border-right: none; border-top: 1px solid rgba(38, 34, 27, .14);
  }
  .pillar:first-child { border-top: none; }

  .split, .split-center { grid-template-columns: 1fr; }
  .split-text { padding: 56px 24px; }
  .split-img { min-height: 320px; }
  .split-img-2, .split-img-3 { min-height: 320px; }
  .h-display { font-size: 38px; }
  .h-name { font-size: 42px; }
  /* keep image above text on the "henry intro" split */
  .split-center .split-text { order: 2; }
  .split-center .split-img { order: 1; }

  .triptych-wrap { padding: 56px 24px 0; }
  .triptych { grid-template-columns: 1fr; }
  .trip { height: 220px; }

  .testimonial { padding: 80px 24px; }
  .quote { font-size: 32px; }
  .quote-sm { font-size: 30px; }

  .band, .band-included { padding: 72px 24px; }
  .teaser { grid-template-columns: 1fr; gap: 36px; }
  .cta-wrap { padding: 80px 24px; }
  .cta-wrap-tight { padding: 0 24px 80px; }
  .cta-box { padding: 56px 28px; }
  .cta-box .h-display { font-size: 38px; }

  .values { padding: 80px 24px; }
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .values .h-display { font-size: 34px; }

  .timeline { padding: 30px 24px; }
  .day { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .day-title { font-size: 28px; }

  .included-grid { grid-template-columns: 1fr; }

  .contact-wrap { padding: 64px 24px 80px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .field-grid { grid-template-columns: 1fr; }
  .h-form { font-size: 30px; }

  .footer { padding: 56px 24px 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 46px; }
  .hero-title-sm, .hero-title-md, .hero-contact .hero-title { font-size: 38px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
}
