@charset "UTF-8";
/* ==========================================================================
   TRAVELNEST — Our team
   Loaded after style.css and destination.css: tokens, top bar, breadcrumb,
   the "Four answers" enquiry block and the footer come from those two.
   The page has no hero and no letterhead strip on purpose — it opens straight
   on the first section heading.
   --------------------------------------------------------------------------
   01. Page tokens and shared section furniture
   02. The whole office, named
   03. Twelve guides, one table — the Porto frame
   04. Responsive — 1500 / 1200 / 1000 / 760 / 430
   --------------------------------------------------------------------------
   Authored in fixed pixels at any width (only the nav and footer scale).
   ========================================================================== */

/* ==========================================================================
   01. Page tokens and shared section furniture
   ========================================================================== */

.crumbs--team { margin-top: -8px; padding-top: 0; }

.page-team {
  /* unfilled years on the tenure meter */
  --ot-seg-off: rgba(var(--ink-rgb), 0.16);
  /* the ink band that closes the office section */
  --ot-band: #17435A;
  --ot-band-ink: #FBF6EC;
  /* the agenda card laid over the photograph */
  --ot-card: rgba(251, 246, 236, 0.95);
  --ot-card-ink: #17435A;
  --ot-card-rule: rgba(23, 67, 90, 0.35);
}

[data-theme="dark"] .page-team {
  --ot-seg-off: rgba(var(--ink-rgb), 0.18);
  --ot-band: rgba(16, 16, 16, 0.72);
  --ot-band-ink: #EDE3D3;
  --ot-card: rgba(237, 227, 211, 0.95);
  --ot-card-ink: #1A1A1A;
  --ot-card-rule: rgba(26, 26, 26, 0.35);
}

/* on dark paper the structural ink rules soften to 45% */
[data-theme="dark"] .pstrip { border-top-color: rgba(var(--ink-rgb), 0.45); }

[data-theme="dark"] .ocard { border-color: rgba(var(--ink-rgb), 0.45); }

[data-theme="dark"] .ocard--hot { border-color: var(--accent); }

/* the enquiry block is the Europe planner frozen at the 1920 reference */
.page-team .planner { --u: 19.2px; }

@media (max-width: 1500px) {
  .page-team .planner { --u: 1.28vw; }
}

/* every section opens the same way: heading pair, script, right-hand note */
.secthead {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 var(--gutter);
  padding: 42px 0 26px;
}

.secthead__stack {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  flex-wrap: wrap;
  min-width: 0;
}

.secthead .display--about { font-size: 92px; }

.secthead .script--about {
  font-size: 66px;
  padding-top: 0;
  padding-bottom: 18px;
}

.secthead__note {
  margin: 0 0 0 auto;
  max-width: 380px;
  padding-bottom: 10px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
  text-align: right;
  opacity: 0.8;
  text-wrap: pretty;
}

/* four figures under the heading */
.pstrip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 var(--gutter) 22px;
  padding: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid rgba(var(--ink-rgb), 0.22);
  list-style: none;
}

.pcell2 {
  flex: 1 1 180px;
  display: flex;
  align-items: baseline;
  gap: 11px;
  padding: 13px 20px;
  border-left: 1px solid rgba(var(--ink-rgb), 0.22);
}

.pcell2:first-child { padding-left: 0; border-left: 0; }
.pcell2:last-child { padding-right: 0; }

.pcell2__value {
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
}

.pcell2__label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ==========================================================================
   02. The whole office, named
   ========================================================================== */

.office { padding: 0 0 64px; }

.ocards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 var(--gutter);
  padding: 0;
  list-style: none;
}

.ocard {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
}

/* the on-call planner is the one card that carries the accent */
.ocard--hot {
  border: 3px solid var(--accent);
  background: rgba(192, 82, 27, 0.05);
}

.ocard__frame {
  position: relative;
  height: 430px;
  overflow: hidden;
}

.ocard__photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* index tag, top left of every portrait */
.ocard__tag {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(192, 82, 27, 0.94);
  padding: 4px 11px;
  color: #FFFFFF;
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  pointer-events: none;
}

.ocard--hot .ocard__tag {
  background: var(--ot-tag-paper, #FFFFFF);
  color: var(--accent);
}

[data-theme="dark"] .ocard--hot .ocard__tag { --ot-tag-paper: #EDE3D3; }

/* full-width band across the bottom of her frame */
.ocard__band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(192, 82, 27, 0.94);
  padding: 8px 20px;
  color: #FFFFFF;
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 0.2em;
  pointer-events: none;
}

.ocard__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px 20px;
}

.ocard__id {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ocard__name {
  margin: 0;
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.ocard--hot .ocard__name { color: var(--accent); }

.ocard__role {
  margin: 0;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ocard__tenure {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* fifteen segments = the agency's fifteen years, filled for years served */
.tmeter {
  display: flex;
  gap: 3px;
}

.tmeter__seg {
  flex: 1;
  height: 8px;
  background: var(--ot-seg-off);
}

.tmeter__seg.is-on { background: var(--accent); }

.ocard__since {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}

.ocard__label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

.ocard__yrs {
  margin-left: auto;
  color: var(--accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 21px;
  font-weight: 500;
}

.ocard__quote {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.82;
  text-wrap: pretty;
}

.ocard__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 13px;
  border-top: 2px dotted rgba(var(--ink-rgb), 0.35);
}

.ocard--hot .ocard__foot { border-top-color: rgba(192, 82, 27, 0.5); }

.ometrics {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ometric {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

.ometric:first-child { padding-right: 14px; }

.ometric:last-child {
  padding-left: 14px;
  border-left: 1px solid rgba(var(--ink-rgb), 0.35);
}

.ocard--hot .ometric:last-child { border-left-color: rgba(192, 82, 27, 0.5); }

.ometric__value {
  color: var(--accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.ometric__label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

.ocard__where {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.5;
  text-wrap: pretty;
}

/* the ink band that closes the section */
.oclose {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin: 30px var(--gutter) 0;
  background: var(--ot-band);
  padding: 24px 30px;
  color: var(--ot-band-ink);
}

.oclose__pair {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}

.oclose__figure {
  color: var(--ab-panel-accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}

.oclose__text {
  max-width: 520px;
  font-size: 20px;
  font-weight: 500;
  opacity: 0.9;
  text-wrap: pretty;
}

.oclose__cta {
  margin-left: auto;
  background: var(--ab-panel-cta);
  padding: 15px 32px;
  color: var(--ab-panel-cta-ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.16s ease-out, color 0.16s ease-out;
}

.oclose__cta:hover,
.oclose__cta:focus-visible {
  background: var(--ab-panel-accent);
  color: var(--ab-panel-cta-ink);
}

/* ==========================================================================
   03. Twelve guides, one table — the Porto frame
   ========================================================================== */

.porto { padding: 40px var(--gutter) 46px; }

.portoframe {
  position: relative;
  height: 680px;
  overflow: hidden;
}

.portoframe__photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portoframe__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.28) 52%, transparent 80%);
  pointer-events: none;
}

.portoframe__scrim--foot {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.55) 0%, transparent 28%);
}

/* letterhead across the top of the photograph */
.letterband {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: none;
}

.letterband__place {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ab-panel-accent);
}

.letterband__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentcolor;
}

.letterband__week { opacity: 0.7; }

.letterband__credit {
  margin-left: auto;
  opacity: 0.7;
}

.portotext {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  max-width: 960px;
  color: #FFFFFF;
}

.portotext__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.portotext__line {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.portotext .display--about {
  font-size: 92px;
  line-height: 0.9;
}

.outline--white { -webkit-text-stroke: 2px #FFFFFF; }

.portotext__script {
  padding-top: 0;
  padding-bottom: 16px;
  font-weight: 400;
  color: var(--ab-panel-accent);
  font-size: 68px;
}

.portotext__lead {
  margin: 0;
  max-width: 580px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.92;
  text-wrap: pretty;
}

/* three figures bounded by white rules, over the photograph */
.figstrip3 {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  max-width: 780px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  list-style: none;
}

.figstrip3__cell {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 15px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.figstrip3__cell:first-child { padding-left: 0; border-left: 0; }
.figstrip3__cell:last-child { padding-right: 0; }

.figstrip3__value {
  color: var(--ab-panel-accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.figstrip3__label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* the week's agenda, bottom right of the photograph */
.agenda {
  position: absolute;
  right: 40px;
  bottom: 34px;
  width: 330px;
  background: var(--ot-card);
  padding: 0 0 20px;
  color: var(--ot-card-ink);
  pointer-events: none;
}

.agenda__tab {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  background: var(--accent);
  padding: 9px 20px;
  color: #FFFFFF;
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.agenda__len { margin-left: auto; }

.agenda__rows {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 16px 20px 0;
  list-style: none;
}

.agenda__row {
  display: flex;
  align-items: baseline;
  gap: 11px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--ot-card-rule);
}

.agenda__row:last-child { border-bottom: 0; }

.agenda__day {
  color: var(--accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 15px;
}

.agenda__what {
  font-size: 18px;
  font-weight: 600;
}

/* caption figures under the photograph */
.capstrip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(var(--ink-rgb), 0.22);
  list-style: none;
}

.capcell {
  flex: 1 1 220px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 24px;
  border-left: 1px solid rgba(var(--ink-rgb), 0.22);
}

.capcell:first-child { padding-left: 0; border-left: 0; }

.capcell__value {
  color: var(--accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.capcell__label {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}

.capcell--script {
  display: block;
  flex: 0 1 auto;
  padding: 18px 0 18px 24px;
}

.capcell__script {
  color: var(--accent);
  font-family: "Caramel", "Segoe Script", cursive;
  font-size: 46px;
  line-height: 0.5;
  white-space: nowrap;
}

/* ==========================================================================
   04. Responsive
   ========================================================================== */

@media (max-width: 1500px) {
  .secthead .display--about { font-size: 74px; }
  .portotext .display--about { font-size: 74px; }
  .portotext__script { font-size: 58px; padding-bottom: 12px; }
}

@media (max-width: 1200px) {
  .ocards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portoframe { height: 620px; }
  .portotext { max-width: 620px; }

  /* the script closes the strip on its own line once the figures fill the row */
  .capcell--script {
    flex: 1 1 100%;
    padding: 14px 0 16px;
    border-left: 0;
    border-top: 1px solid rgba(var(--ink-rgb), 0.22);
  }
  .portotext__lead { font-size: 21px; }
  .agenda { width: 300px; bottom: 26px; }
}

@media (max-width: 1000px) {
  .office { padding-bottom: 40px; }
  .porto { padding: 28px var(--gutter) 34px; }

  .secthead { padding: 26px 0 20px; gap: 14px; }

  .secthead__note {
    margin-left: 0;
    padding-bottom: 0;
    text-align: left;
    font-size: 18px;
  }

  .pcell2 { flex: 1 1 150px; padding: 10px 14px; }
  .pcell2__label { font-size: 14px; }

  .oclose { gap: 14px; padding: 18px 20px; }
  .oclose__cta { margin-left: 0; padding: 13px 24px; font-size: 16px; }

  /* the overlaid text and the agenda card become normal blocks */
  .portoframe { height: auto; }

  .portoframe__photo {
    position: static;
    height: 420px;
  }

  .portoframe__scrim { inset: 0 0 auto; height: 420px; }
  .portoframe__scrim--foot { top: 0; }

  .letterband {
    left: 20px;
    right: 20px;
    top: 20px;
  }

  .portotext {
    position: static;
    max-width: none;
    gap: 18px;
    padding: 22px 0 0;
    color: var(--ink);
  }

  .portotext .display--about { font-size: 54px; }
  .outline--white { -webkit-text-stroke: 2px var(--ink); }
  .portotext__lead { max-width: none; }

  /* off the photograph the sand accents would not carry, so they go terracotta */
  .portotext__script {
    font-size: 46px;
    padding-bottom: 8px;
    color: var(--accent);
  }

  .figstrip3__value { color: var(--accent); }

  .figstrip3 {
    max-width: none;
    border-color: rgba(var(--ink-rgb), 0.35);
  }

  .figstrip3__cell { border-left-color: rgba(var(--ink-rgb), 0.22); }

  .agenda {
    position: static;
    width: auto;
    margin-top: 22px;
  }

  .capcell { flex: 1 1 180px; padding: 14px 16px; }
  .capcell__value { font-size: 28px; }
  .capcell__label { font-size: 15px; }

}

@media (max-width: 760px) {
  .ocards { grid-template-columns: minmax(0, 1fr); }
  .portoframe__photo { height: 320px; }
  .portoframe__scrim { height: 320px; }

  .figstrip3__cell { padding: 12px 14px; }
  .figstrip3__value { font-size: 32px; }
  .figstrip3__label { font-size: 14px; }

  /* stacked cells are divided top to bottom, never by a stray left rule */
  .pstrip { display: block; }

  .pcell2 {
    padding: 10px 0;
    border-left: 0;
    border-top: 1px solid rgba(var(--ink-rgb), 0.22);
  }

  .pcell2:first-child { border-top: 0; }

  .capstrip {
    flex-direction: column;
    align-items: stretch;
  }

  .capcell {
    padding: 12px 0;
    border-left: 0;
    border-top: 1px solid rgba(var(--ink-rgb), 0.22);
  }

  .capcell:first-child { border-top: 0; }
  .capcell--script { padding: 14px 0 16px; }
}

@media (max-width: 430px) {
  .figstrip3 { flex-direction: column; }

  .figstrip3__cell {
    padding: 12px 0;
    border-left: 0;
    border-top: 1px solid rgba(var(--ink-rgb), 0.22);
  }

  .figstrip3__cell:first-child { border-top: 0; }

  .secthead .display--about { font-size: clamp(30px, 8.5vw, 48px); }
  .secthead .script--about { font-size: clamp(30px, 9vw, 46px); }
  .portotext .display--about { font-size: clamp(30px, 8.5vw, 48px); }
  .portotext__script { font-size: clamp(30px, 9vw, 46px); }
  .letterband { font-size: 12px; letter-spacing: 0.14em; gap: 10px; flex-wrap: wrap; }
  .letterband__credit { margin-left: 0; }
  .oclose__pair { flex-wrap: wrap; }
  .capcell__script { font-size: 38px; }
}
