/* Hôtel ABACA Vevey — demo rebuild
   Brand: red #E30613 (logo pixel), ink #1D1D1B (logo "hôtel"), white.
   Display face: Oswald (condensed grotesque, close to the logo lettering). */

:root {
  --red: #E30613;
  --red-deep: #B00510;
  --ink: #1D1D1B;
  --paper: #FFFFFF;
  --cream: #F6F4F0;
  --line: #E6E0DA;
  --grey: #6B6560;
  --wrap: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--red);
  color: #fff;
  font-size: 12px;
}
.topbar__in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  justify-content: space-between;
}
.topbar a { color: #fff; }
.topbar a:hover { text-decoration: underline; color: #fff; }

/* ---------- header / nav ---------- */
.header { background: var(--paper); border-bottom: 1px solid var(--line); }
.header__in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo img { height: 44px; width: auto; }
.nav { display: none; } /* default hidden: prevents mid-width flex overflow */
.burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.burger span { width: 26px; height: 3px; background: var(--red); }

.nav a {
  display: block;
  padding: 10px 14px;
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 3px solid transparent;
}
.nav a:hover, .nav a.on { color: var(--red); border-bottom-color: var(--red); }
.nav a.nav-cta {
  background: var(--red);
  color: #fff;
  margin-left: 8px;
  border-bottom: 0;
}
.nav a.nav-cta:hover { background: var(--red-deep); color: #fff; }

.drawer { display: none; background: var(--paper); border-bottom: 1px solid var(--line); }
.drawer.open { display: block; }
.drawer a {
  display: block;
  padding: 13px 20px;
  border-top: 1px solid var(--line);
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink);
}
.drawer a.nav-cta { color: var(--red); }

@media (min-width: 900px) {
  .nav { display: flex; align-items: center; }
  .burger, .drawer { display: none !important; }
}

/* ---------- hero ---------- */
.hero { background: var(--cream); }
.hero__in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 48px 20px 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 820px) {
  .hero__in { grid-template-columns: minmax(0,1.25fr) minmax(0,.75fr); gap: 48px; }
}
.kicker {
  display: inline-block;
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 5.4vw, 52px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.hero h1 .accent { color: var(--red); }
.hero__dist {
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.hero__dist li {
  width: 100%;
  max-width: 260px;
  padding: 8px 14px;
  background: var(--paper);
  border-left: 4px solid var(--red);
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .04em;
}
.hero__dist b { color: var(--red); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  transition: background .2s ease, border-color .2s ease;
}
.btn:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

.hero__media { max-width: 420px; justify-self: center; }
@media (min-width: 820px) { .hero__media { justify-self: end; } }
.hero__frame { position: relative; }
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: var(--red);
  z-index: 0;
}
.hero__frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
}
.hero__cap {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  font-size: 12px;
  color: var(--grey);
  font-style: italic;
}

/* ---------- sections ---------- */
.section { padding: 56px 0; }
.section--cream { background: var(--cream); }
.section__head { margin-bottom: 32px; }
.rule {
  width: 64px;
  height: 5px;
  background: var(--red);
  margin-bottom: 14px;
  transform-origin: left center;
}
.section h2 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.section .lede { max-width: 720px; color: var(--grey); margin-top: 10px; }

/* ---------- rooms ---------- */
.rooms__media { margin-bottom: 34px; display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center; }
@media (min-width: 760px) { .rooms__media { grid-template-columns: minmax(0,1fr) minmax(0,1.4fr); } }
.rooms__media img { border: 1px solid var(--line); background: #fff; }
.rooms__note { font-size: 14px; color: var(--grey); }
.rooms__note b { color: var(--ink); }

.room-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .room-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.room {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.room h3 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.room p { font-size: 14px; color: var(--grey); margin: 10px 0 18px; flex: 1; }
.room__price { border-top: 1px solid var(--line); padding-top: 14px; }
.room__price small {
  display: block;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
}
.room__price .num {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--red);
}

/* ---------- quick facts ---------- */
.facts { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) { .facts { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 980px) { .facts { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.fact {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px;
  min-width: 0;
}
.fact h3 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.fact p { font-size: 14px; }

/* ---------- contact band ---------- */
.contact { background: var(--red); color: #fff; }
.contact .wrap { padding-top: 44px; padding-bottom: 44px; }
.contact h2 { color: #fff; font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif; text-transform: uppercase; font-size: 26px; margin-bottom: 18px; }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .contact__grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.contact a { color: #fff; text-decoration: underline; }
.contact a:hover { color: #fff; }
.contact .lbl { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; display: block; margin-bottom: 4px; }
.contact .val { font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif; font-size: 18px; letter-spacing: .02em; }

/* ---------- page hero (interior) ---------- */
.pagehead { background: var(--cream); border-bottom: 1px solid var(--line); }
.pagehead .wrap { padding-top: 40px; padding-bottom: 36px; }
.pagehead h1 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 42px);
  text-transform: uppercase;
  line-height: 1.1;
}
.pagehead .lede { color: var(--grey); margin-top: 8px; max-width: 760px; }

/* ---------- map ---------- */
.map-embed {
  position: relative;
  width: 100%;
  height: 420px;
  border: 1px solid var(--line);
  background: var(--cream);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- prose / info blocks ---------- */
.prose { max-width: 820px; }
.prose p { margin: 0 0 14px; }
.prose h2 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 34px 0 12px;
}
.prose h2:first-child { margin-top: 0; }
.prose ul { margin: 0 0 14px 18px; }
.prose li { margin-bottom: 8px; }
.legal p, .legal li { overflow-wrap: anywhere; }

.blocks { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 980px; }
@media (min-width: 760px) { .blocks { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.block {
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  background: var(--paper);
  padding: 20px 22px;
  min-width: 0;
}
.block h3 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.block p { font-size: 14px; color: var(--grey); }
.block p b { color: var(--ink); }

/* ---------- price list (info) ---------- */
.tarifs { max-width: 820px; border: 1px solid var(--line); }
.tarif {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.tarif:last-child { border-bottom: 0; }
.tarif h3 { font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif; font-size: 17px; text-transform: uppercase; letter-spacing: .03em; width: 100%; }
.tarif .desc { font-size: 13px; color: var(--grey); flex: 1 1 320px; min-width: 0; }
.tarif .prix { font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif; font-size: 24px; font-weight: 600; color: var(--red); white-space: nowrap; }
.tarif .prix small { font-size: 13px; color: var(--grey); font-family: Arial, Helvetica, sans-serif; font-weight: normal; }
.tarifs-note { max-width: 820px; font-size: 13px; color: var(--grey); margin-top: 10px; }

/* ---------- links page ---------- */
.linkcols { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 760px) { .linkcols { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.linkgroup { border: 1px solid var(--line); padding: 20px 22px; background: var(--paper); min-width: 0; }
.linkgroup h3 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.linkgroup ul { list-style: none; }
.linkgroup li { padding: 4px 0; font-size: 14px; }
.linkgroup a { overflow-wrap: anywhere; }
.meteo { margin-bottom: 28px; max-width: 460px; }
.meteo img { border: 1px solid var(--line); background: #fff; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #cfcac5; font-size: 13px; }
.footer .wrap { padding-top: 36px; padding-bottom: 30px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer h4 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  color: #fff;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer a { color: #cfcac5; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 5px; }
.footer__brand img { height: 34px; width: auto; margin-bottom: 10px; background: #fff; padding: 4px; }
.footer__legal {
  border-top: 1px solid #3a3835;
  margin-top: 26px;
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
  font-size: 12px;
}

/* ---------- motion (distinct mechanisms, no uniform fade-up) ----------
   All hidden initial states are scoped under html.js: without JavaScript
   every element stays fully visible. */
@media (prefers-reduced-motion: no-preference) {
  /* 1. hero headline: line mask rise */
  .line { display: block; overflow: hidden; }
  .js .line > span { display: block; transform: translateY(112%); transition: transform .7s cubic-bezier(.2,.7,.2,1); }
  .js.ready .line > span { transform: translateY(0); }
  .js.ready .line:nth-child(2) > span { transition-delay: .12s; }
  .js.ready .line:nth-child(3) > span { transition-delay: .24s; }

  /* 2. hero media: clip reveal */
  .js .clip-reveal { clip-path: inset(0 0 100% 0); transition: clip-path .8s cubic-bezier(.65,0,.35,1) .25s; }
  .js.ready .clip-reveal { clip-path: inset(0 0 0% 0); }

  /* 3. section rules: grow from left */
  .js .rule { transform: scaleX(0); transition: transform .6s cubic-bezier(.65,0,.35,1); }
  .js .in .rule { transform: scaleX(1); }

  /* 4. blocks/cards: bottom-up mask reveal (not opacity fade) */
  .js .mask-reveal { clip-path: inset(0 0 100% 0); transition: clip-path .65s cubic-bezier(.65,0,.35,1); }
  .js .in .mask-reveal { clip-path: inset(0 0 0% 0); }
  .js .in .mask-reveal:nth-child(2) { transition-delay: .1s; }
  .js .in .mask-reveal:nth-child(3) { transition-delay: .2s; }
  .js .in .mask-reveal:nth-child(4) { transition-delay: .3s; }

  /* 5. contact band: horizontal wipe */
  .js .wipe { clip-path: inset(0 100% 0 0); transition: clip-path .7s cubic-bezier(.65,0,.35,1); }
  .js .in .wipe, .js .in.wipe { clip-path: inset(0 0% 0 0); }
}

/* ---------- misc ---------- */
.textlink { text-decoration: underline; }
.pdf-note { font-size: 13px; color: var(--grey); }
