/* BREGUET — Link in Bio V1
   Direction: white/black, contemporary renewal, image-first.
   Replace assets/images/*.jpg with final campaign images.
*/

:root {
  --white: #f7f7f4;
  --paper: #ffffff;
  --black: #050505;
  --ink: #111111;
  --muted: #6f6f69;
  --line: #d8d8d2;
  --soft: #ededeb;
  --radius: 0px;
  --serif: "SangBleuKingdom-Regular-WebS";
  --sans: "SuisseScreen-Regular-WebS";
  --speed: 420ms;
}
@font-face {
  font-family: "SangBleuKingdom-Regular-WebS";
  src:
    url("fonts/SangBleuKingdom-Regular-WebXL.woff2") format("woff2"),
    url("fonts/SangBleuKingdom-Regular-WebXL.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SuisseScreen-Regular-WebS";
  src:
    url("fonts/SuisseScreen-Monitor-WebXL.woff2") format("woff2"),
    url("fonts/SuisseScreen-Monitor-WebXL.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
 

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(0,0,0,.06), transparent 28rem),
    var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.bio-shell {
  width: min(100%, 520px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--paper);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  overflow: hidden;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 96px;
  display: grid;
  grid-template-columns: 96px 1fr 96px;
  align-items: center;
  padding: 16px 22px;
  background: rgba(255,255,255,.91);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  grid-column: 2;
  justify-self: center;
}

.brand img {
  width: 136px;
  height: auto;
}

.menu-button {
  grid-column: 1;
  justify-self: start;
  height: 34px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0;
  color: var(--black);
  cursor: pointer;
}

.menu-label {
	font-family: var(--sans);
  display: block;
  font-size: 12px;
  line-height: 1;
 
  font-weight: 500;
  transform: translateY(1px);
}

.menu-plus {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.menu-plus::before,
.menu-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--black);
  transform: translate(-50%, -50%);
  transition: transform var(--speed) cubic-bezier(.76,0,.24,1);
}

.menu-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.menu-button:hover .menu-plus::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.menu-button:hover .menu-plus::after {
  transform: translate(-50%, -50%) rotate(270deg);
}

.menu-button.is-open .menu-plus::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-button.is-open .menu-plus::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

/* HERO */

.hero {
  background: var(--paper);
}

.hero-media {
  position: relative;
  width: 100%;
  height: clamp(260px, 62vw, 380px);
  border: 0;
  display: block;
  cursor: pointer;
  overflow: hidden;
  background: var(--black);
  padding: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  transform: scale(1.02);
  transition: transform var(--speed) ease;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
  
    linear-gradient(to right, rgba(0,0,0,.45), transparent 65%);
}

.hero-media:hover img {
  transform: scale(1.055);
}

.play {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 50%;
  background: rgba(0,0,0,.25);
}

.play::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 22px;
  border-left: 19px solid white;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.hero-cta {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 34px;
  color: white;
  text-align: center;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 500;
}

.hero-copy {
  padding: 42px 28px 34px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--muted);
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 11vw, 64px);
  line-height: .95;
  letter-spacing: .02em;
  font-weight: 500;
}

.hero-copy p:last-child {
  margin: 18px auto 0;
  max-width: 320px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  line-height: 1.5;
}

/* DESTINATIONS */

.destinations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 2px;
  background: var(--paper);
}

.card {
  position: relative;
  min-height: 182px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: white;
  isolation: isolate;
  background: var(--black);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
 
  transform: scale(1.02);
  transition: transform var(--speed) ease, opacity var(--speed) ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.08) 70%),
    linear-gradient(to right, rgba(0,0,0,.45), rgba(0,0,0,0));
}

.card:hover::before {
  transform: scale(1.08);
  opacity: .82;
}

.card span {
  display: block;
  max-width: 12ch;
  font-size: 14px;
  line-height: 1.18;
  letter-spacing: .12em;
  font-weight: 500;
}

.card i {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
}

.card-wide {
  grid-column: span 2;
  min-height: 240px;
}

.card-wide span {
  max-width: 16ch;
  font-size: 15px;
}

.card.tall {
  grid-row: span 2;
  min-height: 366px;
}

/* STORIES */

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 34px 24px 18px;
}

.section-title h2 {
  margin: 0;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 600;
}

.section-title a {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
}

.story-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 42%;
  gap: 10px;
  padding: 0 24px 34px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.story-track::-webkit-scrollbar {
  display: none;
}

.story-card {
  min-height: 246px;
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--black);
  color: white;
  display: flex;
  align-items: flex-end;
}

.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.08));
}

.story-card div {
  position: relative;
  z-index: 2;
  padding: 16px;
}

.story-card small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.72);
  font-size: 9px;
  letter-spacing: .13em;
}

.story-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.08;
  font-weight: 400;
}

.story-card p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* QUICK ACTIONS */

.quick-actions {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: .16em;
}

.quick-actions a:first-child {
  border-top: 0;
}

.quick-actions a::after {
  content: "→";
  font-size: 18px;
  letter-spacing: 0;
}

/* FOOTER */

.footer {
  display: grid;
  place-items: center;
  padding: 36px 24px 44px;
  background: var(--paper);
}

.footer img {
  width: 118px;
  opacity: .86;
}

/* MENU PANEL */

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(255,255,255,.98);
  color: var(--black);
  padding: 28px;
  transform: translateY(-100%);
  transition: transform var(--speed) cubic-bezier(.76,0,.24,1);
}

.menu-panel.is-open {
  transform: translateY(0);
}

.close-menu {
  display: block;
  margin-left: auto;
  border: 0;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  cursor: pointer;
}

.menu-panel nav {
  display: grid;
  gap: 0;
  margin-top: 78px;
  border-top: 1px solid var(--line);
}

.menu-panel nav a {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(16px, 8vw, 22px);
  line-height: 1;
}

/* VIDEO MODAL */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--speed) ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(10px);
}

.video-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 960px);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  border: 0;
  background: transparent;
  color: white;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  cursor: pointer;
}

/* DESKTOP PRESENTATION MODE */

@media (min-width: 860px) {
  body {
    display: grid;
    place-items: start center;
    padding: 48px 0;
  }

  .bio-shell {
    border: 1px solid var(--line);
    box-shadow: 0 26px 80px rgba(0,0,0,.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}


.video-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--speed) ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(10px);
}

.video-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 960px);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
}

.video-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  border: 0;
  background: transparent;
  color: white;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  cursor: pointer;
}
