/* ========== block 0 from index.html ========== */

/* =========================================================
   PedagogyVentures — Paper & Origami edition
   ========================================================= */

/* fonts loaded by tokens.css */

:root {
  /* Brand palette */
  --pv-blue-900: #2e3d7d;
  --pv-blue-700: #3749a0;
  --pv-blue:     #4256ac;     /* navy — FOOTER + body text only */
  --pv-blue-200: #b8c2e6;
  --pv-blue-100: #e2e7f4;

  --pv-green-700: #2a504b;
  --pv-green:     #3d7068;    /* primary accent everywhere else */
  --pv-green-400: #6d9892;
  --pv-green-100: #dbe7e4;
  --pv-green-50:  #eff4f3;

  /* Paper tones */
  --paper:       #fdfbf4;   /* warm cream, the page */
  --paper-2:     #f7f3e8;   /* darker cream, alt sections */
  --paper-kraft: #ede4d2;   /* kraft tint, strip backgrounds */
  --cream:       #fdfcf8;
  --white:       #ffffff;

  /* Artifact tones (paper ephemera: passports, flight maps, crew rosters) */
  --artifact-ink:   #2a3b3a;   /* dark green-slate for mono labels on paper artifacts */
  --kraft-border:   #d7c9a8;   /* kraft / manilla tag border */

  /* Text */
  --ink:    #0e1226;
  --ink-2:  #2a2e4a;
  --slate:  #5a5f7a;
  --muted:  #8a8fa3;
  --rule:   rgba(14,18,38,.10);
  --rule-ink: rgba(14,18,38,.18);

  --fg-1: var(--ink);
  --fg-2: var(--ink-2);
  --fg-3: var(--slate);

  /* Primary accent follows the logo: PV blue.
     Green is reserved for secondary accents. */
  --accent: var(--pv-blue);
  --accent-hover: var(--pv-blue-700);

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Archivo', system-ui, sans-serif;
  --font-hand:    'Caveat', 'Brush Script MT', cursive;
  --font-mono: 'JetBrains Mono', Menlo, monospace;
  /* Motion */
  --ease: cubic-bezier(.2,.6,.2,1);
  --ease-glide: cubic-bezier(.25,.46,.45,.94);
  --dur: 260ms;

  --r-1: 4px; --r-2: 6px;
  --container: 1240px;
  --gutter: 32px;
  --nav-h: 76px;
}

*{box-sizing:border-box}

html,body{margin:0;padding:0}

body{
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* =========================================================
   PAPER TEXTURE — applied to body + large sections.
   A subtle fiber pattern + a very soft vignette.
   ========================================================= */

.paper-texture,
body {
  background-color: var(--paper);
  background-image:
    /* fiber flecks */
    radial-gradient(circle at 20% 30%, rgba(61,112,104,0.035) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 60%, rgba(61,112,104,0.03) 0 1px, transparent 2px),
    radial-gradient(circle at 45% 80%, rgba(14,18,38,0.025) 0 1px, transparent 2px),
    /* broad warm wash */
    linear-gradient(180deg, #fdfbf4 0%, #f9f5e9 100%);
  background-size: 180px 180px, 240px 240px, 300px 300px, 100% 100%;
  background-attachment: fixed;
}

/* =========================================================
   TYPE
   ========================================================= */

/* =========================================================
   BUTTONS
   ========================================================= */

.btn-primary:hover {
  background: var(--pv-blue-200);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(66,86,172,.28);
}

/* =========================================================
   NAV CTA — folded paper note
   A small green paper card with a folded-down top-right corner
   (real triangular flap) and a deckle/torn bottom edge. The
   logo plane sits beside the label like a stamp.
   ========================================================= */

/* Underside of the fold — a small darker triangle tucked into the
   chamfered corner, showing the back of the paper facing inward. */

/* =========================================================
   PAPER CARD — the base building block
   ========================================================= */

/* The folded flap in the top-left corner */

/* =========================================================
   STAMPS — rubber-stamp-style small label
   ========================================================= */

/* Hand-written accent text */

/* =========================================================
   NAV
   ========================================================= */

.pv-nav .links a:not(.btn) {
  position: relative;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2); text-decoration: none;
  padding: 4px 0;
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}

.pv-nav .links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background-image: radial-gradient(circle, var(--pv-blue) 1px, transparent 1.2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: left center;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  pointer-events: none;
}

.pv-nav .links a:not(.btn):hover::after,
.pv-nav .links a.active:not(.btn)::after {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   HERO
   ========================================================= */

/* Index hero: tuck the plane into the top-right corner so it reads as a
   departing flight, not a mid-hero focal point. */

.pv-hero .hero-plane {
  right: 5%;
  top: 14%;
  opacity: 0.85;
  filter: drop-shadow(0 12px 16px rgba(14,18,38,0.08));
}

@media (max-width: 900px) {
  .pv-hero .hero-plane { display: none; }
}

.pv-hero .pv-display { max-width: 22ch; }

.pv-hero .pv-lede { margin: 0 0 40px; max-width: 62ch; }

.hero-display { margin-bottom: 32px !important; }

/* ---- Flight search widget ---- */

.flight-search {
  position: relative;
  z-index: 3;
  margin-top: 8px;
  max-width: 1100px;
}

.flight-search-row {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr auto;
  gap: 0;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(14,18,38,0.03),
    0 18px 40px rgba(14,18,38,0.10);
  overflow: hidden;
}

.flight-field {
  appearance: none;
  background: transparent;
  border: 0;
  border-right: 1px dashed var(--rule-ink);
  padding: 14px 18px 14px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  font-family: inherit;
  color: inherit;
  transition: background var(--dur) var(--ease);
  min-height: 78px;
  justify-content: center;
}

.flight-field:hover { background: rgba(61,112,104,0.05); }

.flight-field:focus-visible { outline: 2px solid var(--pv-green); outline-offset: -3px; }

.flight-field-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  pointer-events: none;
}

.flight-field-value {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.15;
  color: var(--fg-3);
  font-weight: 400;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flight-field.is-set .flight-field-value {
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
}

.flight-field-text {
  cursor: text;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
}

.flight-field-input {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.15;
  color: var(--ink);
  width: 100%;
  min-width: 0;
  letter-spacing: -0.005em;
}

.flight-field-input::placeholder {
  color: var(--fg-3);
  font-weight: 400;
  font-style: normal;
}

.flight-field-input:focus { outline: none; }

.flight-field-input:not(:placeholder-shown) {
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}

.flight-search-cta {
  appearance: none;
  border: 0;
  background: var(--pv-blue);
  color: var(--cream);
  padding: 0 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  min-height: 78px;
}

.flight-search-cta span { text-decoration: none; }

.flight-search-cta:hover { background: var(--pv-blue-200); color: var(--ink); transform: translateX(2px); }

.flight-search-cta svg { width: 18px; height: 18px; }

.flight-itinerary {
  margin-top: 14px;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--fg-3);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: baseline;
  border-left: 2px solid var(--pv-green);
  background: rgba(61,112,104,0.04);
  white-space: nowrap;
}

.flight-itinerary > span { white-space: nowrap; }

.flight-itinerary.is-filled { color: var(--ink); }

.itin-tag {
  font-weight: 700;
  color: var(--pv-green);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.itin-dot { color: var(--rule-ink); }

.itin-arrow { color: var(--pv-green); font-weight: 600; }

.itin-subject {
  font-family: var(--font-hand);
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0;
  color: var(--pv-blue);
  transform: translateY(1px);
}

.itin-empty {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10.5px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .flight-search-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .flight-field { border-right: 1px dashed var(--rule-ink); border-bottom: 1px dashed var(--rule-ink); }
  .flight-field:nth-child(2n) { border-right: none; }
  .flight-field:first-child { grid-column: 1 / -1; border-right: none; }
  .flight-search-cta { grid-column: 1 / -1; justify-content: center; padding: 16px; }
}

@media (max-width: 560px) {
  .flight-search-row { grid-template-columns: 1fr; }
  .flight-field { border-right: none; }
}

/* =========================================================
   ETHICS BOOK — flight itinerary / trip confirmation document
   ========================================================= */

.pv-ethics.vfi-section { padding: 0; background: var(--cream); }
.pv-ethics.vfi-section::before { display: none; }

.vfi-wrap { padding: 68px 0 60px; }
.vfi-doc {
  max-width: 1120px;
  margin: 0 auto;
  background-color: #fbf7eb;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(61,112,104,0.035) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 64%, rgba(66,86,172,0.03) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 86%, rgba(14,18,38,0.025) 0 1px, transparent 2px),
    linear-gradient(180deg, #fdfcf5 0%, #f7f2e4 100%);
  background-size: 180px 180px, 240px 240px, 300px 300px, 100% 100%;
  padding: 40px 44px 32px;
  border: 1px solid rgba(14,18,38,0.12);
  border-radius: var(--r-2);
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(14,18,38,0.04), 0 20px 40px rgba(14,18,38,0.08);
  position: relative;
}
.vfi-doc::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; height: 16px;
  background: var(--pv-blue);
  border-top-left-radius: var(--r-2);
  border-top-right-radius: var(--r-2);
}
.vfi-doc::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 16px; height: 16px;
  background: var(--pv-green);
}

.vfi-head {
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 20px;
  margin-top: 10px;
}
.vfi-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pv-green);
  font-weight: 700;
}

.vfi-title-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px;
  padding-bottom: 22px;
  margin-bottom: 8px;
}
.vfi-title-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.vfi-title-row h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: none;
  text-wrap: nowrap;
}
@media (max-width: 720px) { .vfi-title-row h2 { text-wrap: pretty; } }
.vfi-title-row h2 em { color: var(--pv-blue); font-style: italic; }
.vfi-book .bookimg {
  height: 180px;
  width: auto;
  display: block;
  transform: rotate(3deg);
  filter: drop-shadow(0 8px 16px rgba(14,18,38,0.18));
}

.vfi-title-meta {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.vfi-meta-block { display: flex; flex-direction: column; gap: 2px; }
.vfi-meta-center { align-items: center; text-align: center; }
.vfi-meta-right { align-items: flex-end; text-align: right; }
.vfi-meta-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.vfi-meta-val {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.vfi-meta-val b { color: var(--pv-blue); font-weight: 700; }
.vfi-meta-val-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
}
.vfi-meta-val-iso { letter-spacing: 0.01em; }
.vfi-meta-val-iso b { color: var(--ink); font-weight: 500; font-style: italic; }
.vfi-meta-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-3);
}

.vfi-route {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0 22px;
}
.vfi-route-head {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.vfi-leg-no {
  background: var(--pv-blue);
  color: var(--cream);
  padding: 4px 8px 3px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.vfi-leg-flight {
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}
.vfi-leg-status {
  margin-left: auto;
  border: 1px solid currentColor;
  padding: 3px 8px;
  letter-spacing: 0.16em;
  color: var(--pv-green);
}
.vfi-route-stat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-left: auto;
}
.vfi-route-stat + .vfi-leg-status { margin-left: 12px; }
.vfi-route-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 4px 0 0;
}
.vfi-stop { min-width: 0; text-align: center; }
.vfi-route-body > .vfi-stop:first-child { text-align: left; }
.vfi-route-body > .vfi-stop:last-child { text-align: right; }
.vfi-stop-time {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pv-green);
  font-weight: 700;
}
.vfi-stop-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1;
  margin: 2px 0 2px;
}
.vfi-stop-city {
  font-family: var(--font-display);
  font-size: 13.5px;
  color: var(--ink-2);
  font-style: italic;
  line-height: 1.35;
}
.vfi-rail {
  display: flex; align-items: center; justify-content: center;
  color: var(--pv-blue);
  min-width: 60px;
}
.vfi-rail svg { width: 100%; max-width: 120px; height: 20px; }

.vfi-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  margin-top: 10px;
  border-top: 1px dashed var(--rule-ink);
  gap: 18px;
  flex-wrap: wrap;
}
.vfi-foot-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--fg-3);
}
.vfi-foot-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 4px;
}
.vfi-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--pv-blue);
  padding: 12px 18px;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  border-radius: var(--r-2);
}
.vfi-cta:hover { background: var(--pv-blue-700, #3749a0); }

@media (max-width: 960px) {
  .vfi-title-row { flex-direction: column; align-items: center; text-align: center; gap: 18px; }
  .vfi-title-col { align-items: center; text-align: center; }
  .vfi-title-row h2 { text-align: center; }
  .vfi-title-meta { grid-template-columns: 1fr; gap: 16px; justify-items: center; text-align: center; }
  .vfi-meta-block,
  .vfi-meta-center,
  .vfi-meta-right { align-items: center; text-align: center; }
  .vfi-book { order: -1; }
  .vfi-route-body { grid-template-columns: 1fr; gap: 10px; }
  .vfi-route-body .vfi-rail { transform: rotate(90deg); min-width: 0; }
  .vfi-route-body > .vfi-stop { text-align: center !important; }
  .vfi-route-head { justify-content: center; }
  .vfi-route-stat,
  .vfi-route-stat + .vfi-leg-status { margin-left: 0; }
  .vfi-foot { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 560px) {
  .vfi-wrap { padding: 40px 0 36px; }
  .vfi-doc { padding: 22px 20px 24px; }
  .vfi-title-row h2 { font-size: clamp(28px, 8vw, 40px); text-wrap: pretty; }
  .vfi-book .bookimg { height: 120px; }
  .vfi-route-head { gap: 10px 12px; }
  .vfi-leg-no { font-size: 10px; padding: 3px 8px; }
  .vfi-leg-flight { font-size: 11px; }
  .vfi-route-stat { font-size: 9.5px; }
  .vfi-stop-code { font-size: 28px; }
  .vfi-stop-city { font-size: 13px; }
  .vfi-foot { gap: 14px; }
  .vfi-cta { align-self: center; }
}

/* ---- In-flight magazine feature ---- */

.ethics-strip { grid-template-columns: 280px 1fr; align-items: start; gap: 48px; max-width: 1200px; margin: 0 auto; }

.flightmag-left { display: flex; flex-direction: column; gap: 18px; min-width: 0; }

.flightmag-masthead {
  border-top: 4px double var(--ink);
  border-bottom: 1px solid var(--rule-ink);
  padding: 12px 0 10px;
}

.flightmag-masthead-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.flightmag-masthead-sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.flightmag-book {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.flightmag-book .ethics-book-flat {
  height: 260px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(14,18,38,0.18));
}

.flightmag-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  color: var(--fg-3);
  border-top: 1px solid var(--rule);
  padding-top: 8px;
  max-width: 280px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.flightmag-caption em { font-family: var(--font-display); font-style: italic; font-size: 12.5px; color: var(--ink); }

.flightmag-figtag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pv-green);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.flightmag-article {
  position: relative;
  min-width: 0;
  padding-top: 4px;
  display: flex;
  flex-direction: column;
}

.flightmag-article .flightmag-masthead { margin-bottom: 18px; }

.flightmag-folio {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 8px;
}

.flightmag-folio > span { white-space: nowrap; }

.flightmag-dot { color: var(--rule-ink); }

.flightmag-kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pv-green);
  font-weight: 600;
  margin: 10px 0 8px;
}

.flightmag-title {
  font-family: var(--font-display) !important;
  font-size: clamp(26px, 2.4vw, 36px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.018em !important;
  margin: 0 0 14px !important;
  color: var(--ink) !important;
  white-space: nowrap;
}

.flightmag-title em { font-style: italic; color: var(--pv-green); }

.flightmag-dek {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0 0 20px;
  max-width: none;
  text-wrap: pretty;
}

.flightmag-byline {
  display: inline;
  margin-top: 0;
  margin-left: 4px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.flightmag-cta { padding: 10px 18px !important; font-size: 13px !important; }

.flightmag-preorder {
  display: inline-block;
  margin-left: 6px;
  color: var(--pv-green);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.flightmag-preorder:hover { color: var(--ink); }

.flightmag-endnote {
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  color: var(--fg-3);
}

.flightmag-endnote em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12.5px;
  color: var(--ink);
}

.flightmag-stamp {
  position: absolute;
  top: 120px;
  right: 0;
  transform: rotate(-6deg);
  border: 2px solid var(--pv-green);
  color: var(--pv-green);
  padding: 6px 12px 5px;
  text-align: center;
  background: rgba(61,112,104,0.03);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.3;
  opacity: 0.9;
}

.flightmag-stamp strong {
  display: inline-block;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.flightmag-divider {
  display: flex; align-items: center; justify-content: center;
  margin: 14px 0;
  color: var(--pv-green);
}

.flightmag-divider::before,
.flightmag-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule-ink);
}

.flightmag-divider-glyph {
  padding: 0 12px;
  font-size: 10px;
}

.flightmag-board {
  display: grid;
  gap: 2px;
  background: transparent;
  color: var(--ink);
  padding: 10px 0 6px;
  border-top: 1px solid var(--rule-ink);
  border-bottom: 1px solid var(--rule-ink);
  box-shadow: none;
  font-family: var(--font-mono);
  margin-top: 4px;
}

.flightmag-board-row {
  display: grid;
  grid-template-columns: 92px 1fr 80px 100px 100px;
  gap: 0 14px;
  align-items: baseline;
  padding: 4px 0;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.flightmag-board-head {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 6px;
  margin-bottom: 2px;
}

.flightmag-flightno {
  color: var(--pv-green);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
}

.flightmag-book-title em {
  font-style: italic;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 15px;
}

.flightmag-gate {
  color: var(--pv-blue);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(46,61,125,0.35);
  padding-bottom: 1px;
  transition: color 0.15s ease;
}

.flightmag-gate:hover { color: var(--pv-blue-900); border-bottom-color: var(--pv-blue-900); }

.flightmag-stamp {
  position: absolute;
  top: 8px;
  right: 6px;
  transform: rotate(-6deg);
  border: 2px solid var(--pv-green);
  color: var(--pv-green);
  padding: 5px 10px 4px;
  text-align: center;
  background: rgba(61,112,104,0.03);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.3;
  opacity: 0.85;
}

.flightmag-stamp strong {
  display: inline-block;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

/* =========================================================
   OUR PROJECTS
   ========================================================= */

/* =========================================================
   LUGGAGE TAG — proper shape with rounded notch + string
   ========================================================= */

.luggage-body {
  position: relative;
  width: 300px;
  height: 190px;
  background: var(--cream);
  /* True luggage-tag shape: pentagonal with a rounded pointed tip on the LEFT. */
  clip-path: path('M 4 95 L 44 14 Q 50 4 62 4 L 292 4 Q 300 4 300 12 L 300 178 Q 300 186 292 186 L 62 186 Q 50 186 44 176 Z');
  box-shadow:
    0 2px 0 rgba(14,18,38,0.05),
    0 18px 28px rgba(14,18,38,0.10);
}

.luggage-grommet-hole {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--kraft-border);
  box-shadow:
    inset 0 0 0 1.5px var(--muted),
    inset 0 1.5px 2px rgba(0,0,0,0.24);
}

/* =========================================================
   EXPERTISE MEETS
   ========================================================= */

/* =========================================================
   EXPERTISE MEETS — Flight Plan
   ========================================================= */

.expertise-title {
  max-width: 20ch;
  margin: 0 0 20px;
  line-height: 1.02;
  padding: 0;
}

.expertise-lede {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg-3);
  max-width: 58ch;
  margin: 0;
  text-wrap: pretty;
}

.expertise-lede em {
  font-style: italic;
  color: var(--pv-green);
  font-weight: 500;
}

/* ---- Phonetic-alphabet principle cards ---- */

.phonetic-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}

.phonetic-card {
  position: relative;
  padding: 24px 24px 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-height: 300px;
}

.phonetic-card + .phonetic-card { border-left: 1px dashed var(--rule-ink); }

.phonetic-index {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.phonetic-idx-num { font-weight: 600; color: var(--ink); }

.phonetic-idx-sep {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.phonetic-idx-phon { color: var(--pv-green); font-weight: 600; }

.phonetic-letter {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(110px, 11vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--pv-green);
  align-self: center;
  justify-self: center;
  position: relative;
}

.phonetic-letter::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 38px;
  height: 2px;
  background: var(--ink);
}

.phonetic-body { min-width: 0; }

.phonetic-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 6px;
}

.phonetic-text {
  font-family: var(--font-display);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg-3);
  margin: 0;
  text-wrap: pretty;
}

@media (max-width: 960px) {
  .phonetic-grid { grid-template-columns: repeat(2, 1fr); }
  .phonetic-card + .phonetic-card { border-left: none; }
  .phonetic-card:nth-child(n+2) { border-top: 1px dashed var(--rule-ink); }
  .phonetic-card:nth-child(odd) { border-right: 1px dashed var(--rule-ink); }
}

@media (max-width: 560px) {
  .phonetic-grid { grid-template-columns: 1fr; }
  .phonetic-card:nth-child(odd) { border-right: none; }
}

/* projects headline */

/* (old rules retained below for backwards-compat if referenced) */

/* =========================================================
   CASES — home-page scrapbook (shared styles live in components.css)
   ========================================================= */

.pv-cases { padding: 80px 0 100px; }

.cases-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* =========================================================
   TRUSTED BY — kraft strip
   ========================================================= */

/* =========================================================
   CLIENTS SAY — paper cards on a pinboard
   ========================================================= */

.testimonial-card {
  position: relative;
  background: var(--cream);
  padding: 40px 36px 32px;
  margin: 0;
  border: 1px solid var(--rule);
  box-shadow:
    0 2px 0 rgba(14,18,38,0.04),
    0 18px 36px rgba(14,18,38,0.10),
    0 32px 60px rgba(14,18,38,0.06);
  transition: transform var(--dur) var(--ease);
}

.testimonial-card::before {
  /* red thumbtack */
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--pv-green-400), var(--pv-blue));
  box-shadow: 0 3px 6px rgba(14,18,38,0.3);
  transform: translateX(-50%);
}

/* =========================================================
   READY CTA — boarding-pass-style paper ticket
   ========================================================= */

.ticket {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  background: var(--cream);
  position: relative;
  box-shadow:
    0 2px 0 rgba(14,18,38,0.05),
    0 20px 40px rgba(14,18,38,0.12),
    0 40px 80px rgba(14,18,38,0.08);
  border: 1px solid var(--rule);
  overflow: hidden;
}

/* =========================================================
   FOOTER
   ========================================================= */

@media (max-width: 900px) {
  .ethics-grid, .expertise-grid, .projects-grid,
  .case-row, .case-row.flip, .ticket { grid-template-columns: 1fr; gap: 40px; }
  .ethics-strip { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .flightmag-article { padding-left: 0; border-left: none; border-top: 1px solid var(--rule); padding-top: 20px; }
  .flightmag-board-row { grid-template-columns: 1fr 1fr; gap: 4px 14px; }
  .flightmag-stamp { position: static; margin-top: 16px; display: inline-block; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 32px; }
  .case-row.flip .case-photo-wrap, .case-row.flip .case-body { order: initial; }
  .cases-header { padding-right: 0; }
  .cases-header-tag { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
