@charset "UTF-8";

/* =========================================================
   Echo 80s — Site Styles (Full Regeneration)
   Fix applied: top nav is now FIXED (bulletproof) + body padding + scroll offset
   ========================================================= */

:root{
  --bg: #312F32;
  --bg2: #2B2A2D;   /* darker top */
  --bg3: #242327;   /* darker bottom */
  --accent: #EE4921;

  --line: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --faint: rgba(255,255,255,.52);

  --radius: 18px;
  --radius2: 28px;

  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --shadow2: 0 12px 34px rgba(0,0,0,.26);

  --max: 1120px;
  --pad: 20px;

  --focus: 0 0 0 3px rgba(238,73,33,.35), 0 0 0 6px rgba(255,255,255,.10);

  /* Top bar height compensation (fixed header) */
  --topH: 72px; /* tweak to 68/76 if needed */
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  min-height:100%;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height: 1.55;

  /* Seamless 3-color base gradient (no bands) */
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 45%, var(--bg3) 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;

  /* FIXED TOP BAR: reserve space so content doesn't sit under the nav */
  padding-top: var(--topH);
}

/* Fixed glow layer (prevents scroll repeat artifacts) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(1100px 620px at 10% 0%, rgba(238,73,33,.17), transparent 60%),
    radial-gradient(900px 520px at 90% 18%, rgba(255,255,255,.06), transparent 62%),
    radial-gradient(1100px 720px at 30% 100%, rgba(238,73,33,.10), transparent 62%);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }
img{ max-width: 100%; height: auto; }

.wrap{
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

/* Anchor offset so headings aren’t hidden under the fixed top bar */
section,
header.hero{
  scroll-margin-top: calc(var(--topH) + 14px);
}

/* =========================================================
   Skip link
   ========================================================= */
.skip{
  position:absolute; left:-9999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px;
  background: rgba(0,0,0,.75);
  border:1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 99999;
}

/* =========================================================
   Top bar (FIXED)
   ========================================================= */
.top{
  position: fixed; /* was sticky; fixed is bulletproof */
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  background: linear-gradient(to bottom, rgba(49,47,50,.78), rgba(49,47,50,.56));
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.top-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;

  /* Helps keep the bar’s size stable relative to --topH */
  min-height: calc(var(--topH) - 24px);
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand .mark{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.22);
  display:grid;
  place-items:center;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  overflow:hidden;
}
.brand .mark img{
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: .98;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.45));
}
.brand .text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand .text strong{
  font-size: .98rem;
  letter-spacing: .2px;
}
.brand .text span{
  font-size: .80rem;
  color: var(--muted);
}

nav ul{
  list-style:none;
  display:flex;
  gap: 10px;
  padding:0;
  margin:0;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
}
nav a{
  display:inline-block;
  padding: 8px 10px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing:.2px;
  border: 1px solid transparent;
}
nav a:hover{
  color: var(--text);
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  text-decoration:none;
}
nav a:focus{ outline:none; box-shadow: var(--focus); }

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  color: var(--text);
  font-weight: 900;
  letter-spacing:.2px;
  box-shadow: var(--shadow2);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer;
  text-decoration:none !important;
  white-space: nowrap;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.22);
}
.btn:focus{ outline:none; box-shadow: var(--focus); }

.btn.primary{
  background: linear-gradient(135deg, rgba(238,73,33,.85), rgba(238,73,33,.55));
  border-color: rgba(238,73,33,.75);
  color: rgba(255,255,255,.96);
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}
.btn.primary:hover{
  background: linear-gradient(135deg, rgba(238,73,33,.95), rgba(238,73,33,.62));
  border-color: rgba(238,73,33,.95);
}
.btn.ghost{ background: rgba(255,255,255,.05); }

/* Small button variant */
.btn-sm{
  padding: 8px 12px;
  font-size: .85rem;
  border-radius: 14px;
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top: 10px;
}

/* =========================================================
   Sections + headings
   ========================================================= */
section{ padding: 26px 0; }

.section-head{
  gap: 14px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid rgba(238,73,33,.65);
}

.section-head h2{
  margin: 0;
}

.section-head p{
  margin-top: 6px;
}

/* =========================================================
   Hero
   ========================================================= */
header.hero{ padding: 42px 0 22px; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}

.hero-card{
  border-radius: var(--radius2);
  background:
    radial-gradient(900px 460px at 15% 10%, rgba(238,73,33,.18), transparent 55%),
    rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-card::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    linear-gradient(135deg, rgba(238,73,33,.28), transparent 40%),
    linear-gradient(315deg, rgba(255,255,255,.10), transparent 45%);
  opacity:.55;
  pointer-events:none;
}
.hero-card .inner{ position:relative; padding: 26px; }

.lockup{
  display:flex;
  align-items:flex-start;
  gap: 18px;
  margin-bottom: 10px;
}
.lockup img{
  width: 115px;
  height: 115px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.55));
}

h1{
  margin: 8px 0 10px;
  font-size: clamp(1.85rem, 2.9vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: .2px;
}

/* Hero value/subhead spacing */
.value-line{
  margin: 0 0 10px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  letter-spacing: .1px;
  max-width: 62ch;
}
.subhead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 68ch;
}

/* Badges */
.badge-row{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  align-items:center;
  margin: 6px 0 12px;
}
.hero-primary{
  gap: 12px;
  margin-bottom: 12px;
}
.hero-primary .badge{
  font-size: .92rem;
  padding: 8px 14px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-weight: 800;
  font-size: .86rem;
  letter-spacing:.15px;
}
.badge.accent-strong{
  border-color: rgba(238,73,33,.65);
  background: rgba(238,73,33,.20);
  color: #fff;
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: none;
}
.badge.hot{
  border-color: rgba(238,73,33,.55);
  background: rgba(238,73,33,.16);
  color: rgba(255,255,255,.92);
  font-weight: 900;
}
.badge.hot.soft{
  background: rgba(238,73,33,.12);
  border-color: rgba(238,73,33,.35);
  color: var(--text);
  font-weight: 700;
  text-transform: none;
}
.badge.subtle{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.10);
  color: var(--faint);
}

/* Tiny, tasteful pulse */
.badge.pulse{
  position: relative;
  animation: badgePulse 2.8s ease-in-out infinite;
}
@keyframes badgePulse{
  0%, 100%{ box-shadow: 0 0 0 rgba(238,73,33,0); transform: translateY(0); }
  50%{ box-shadow: 0 0 22px rgba(238,73,33,.18); transform: translateY(-1px); }
}

.facts{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.fact{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 12px;
  min-height: 78px;
}
.fact .k{
  color: var(--faint);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing:.2px;
  text-transform: uppercase;
}
.fact .v{
  margin-top: 6px;
  font-weight: 950;
  letter-spacing:.2px;
}

/* =========================================================
   Cards
   ========================================================= */
.side{ display:grid; gap: 12px; }

.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  padding: 20px;
}

@media (max-width: 560px){
  .card{ padding: 16px; }
}

.card h2, .card h3, .card h4{ margin: 0 0 10px; letter-spacing:.2px; }
.card p{ margin: 0 0 10px; color: var(--muted); }

p.muted{ color: var(--muted); }
p.lead{ color: var(--muted); }

.epk-list{
  list-style:none;
  margin: 0;
  padding: 0;
  display:grid;
  gap: 10px;
}
.epk-list li{
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.epk-list .label{
  color: var(--faint);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing:.2px;
  margin-bottom: 3px;
}
.epk-list .value{
  font-weight: 950;
  letter-spacing:.2px;
}

.hero-social{
  margin-top:16px;
  color: var(--muted);
  font-weight:700;
  font-size:.95rem;
}

/* Booking snapshot: tighter list rows (scope to the first card in the aside) */
.side .card.card-booking{
  padding: 16px;
}
.side .card.card-booking .epk-list{ gap: 8px; }
.side .card.card-booking .epk-list li{
  padding: 10px 12px;
  align-items: center;
}
.side .card.card-booking .cta-row{ margin-top: 8px; }
.side .card.card-booking .pill-row{ margin-top: 8px; }

/* Pills */
.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 10px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-weight: 900;
  font-size: .86rem;
}
.pill.accent{
  border-color: rgba(238,73,33,.50);
  background: rgba(238,73,33,.14);
  color: rgba(255,255,255,.92);
}

.booking-trust{
  margin-top: 12px;
}

/* =========================================================
   Band Photo (optional section)
   ========================================================= */
.band-photo{
  padding: 10px 0 36px;
  position: relative;
}
.band-photo img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.band-photo::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* =========================================================
   Videos
   ========================================================= */
.video-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: stretch;
}
.video-grid > .seo-booking{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-grid-bottom{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;

  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
  position: relative;
}
.video-grid-bottom::before{
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 140px;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
}
.video-grid-bottom-title{
  grid-column: 1 / -1;
  margin: 0 0 6px;
  color: var(--text);
  font-weight: 950;
  letter-spacing: .2px;
  font-size: 1.05rem;
}
.video-grid-bottom-title span{
  color: var(--faint);
  font-weight: 800;
  font-size: .92rem;
  margin-left: 8px;
}

figure.v{ margin: 0; }

.video{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  box-shadow: 0 18px 55px rgba(0,0,0,.32);
}
.video iframe{
  width:100%;
  aspect-ratio: 16 / 9;
  border:0;
  display:block;
}

.caption{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.35;
}
.caption strong{
  color: var(--text);
  letter-spacing:.15px;
}
.caption .meta{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
  color: var(--faint);
  font-size: .90rem;
}
.caption .meta a{
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Booking-ready box */
.seo-booking{
  border-radius: 16px;
  border: 1px solid rgba(238,73,33,.28);
  background: rgba(238,73,33,.10);
  padding: 14px;
  color: var(--muted);
}
.seo-booking h3{
  margin: 0 0 6px;
  color: var(--text);
}
.seo-booking p{ margin: 0 0 10px; }
.seo-booking ul{ margin: 0; padding-left: 18px; }
.seo-booking li{ margin: 6px 0; }
.seo-booking a{
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =========================================================
   Members
   ========================================================= */
.members{
  list-style:none;
  margin: 0;
  padding: 0;
  display:grid;
  gap: 10px;
}
.members.two-col{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 30px;
  margin-top: 12px;
}
.members.two-col li{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

/* =========================================================
   Set list + search
   ========================================================= */
.tools{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  justify-content: space-between;
  align-items:center;
  margin-bottom: 12px;
}

.search{
  flex: 1 1 280px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}
.search input{
  width:100%;
  border:0;
  outline:none;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
}
.search input::placeholder{ color: rgba(255,255,255,.45); }

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.setlist{
  columns: 2;
  column-gap: 18px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.setlist li{
  break-inside: avoid;
  margin: 0 0 10px 0;
  padding: 7px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}

/* Linked set list songs: white + semi-bold + 🎬 */
.setlist a.has-video{
  color: rgba(255,255,255,.96);
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: text-shadow .15s ease, text-decoration-color .15s ease;
}
.setlist a.has-video:hover{
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.65);
  text-shadow: 0 0 18px rgba(255,255,255,.15);
}
.setlist a.has-video::after{
  content: " 🎬";
  font-size: .92em;
  opacity: .85;
}
.setlist a.has-video:focus{
  outline: none;
  box-shadow: var(--focus);
  border-radius: 10px;
}

/* Accessible search highlight */
.setlist li.match{
  color: rgba(255,255,255,.96);
  font-weight: 950;
  background: transparent;
  border-color: transparent;
}
.setlist li.match a.has-video{
  color: rgba(255,255,255,.96);
  text-shadow: none;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq details{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 12px 14px;
  margin: 12px 0;
}
.faq summary{
  cursor: pointer;
  font-weight: 850;
  color: rgba(255,255,255,.92);
  list-style: none;
  padding-right: 10px;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content: "+";
  float: right;
  color: rgba(255,255,255,.55);
  font-weight: 900;
}
.faq details[open] summary::after{
  content: "–";
}
.faq .faq-a{
  margin-top: 10px;
  color: var(--muted);
}
.faq .faq-a p{ margin: 0; }

/* =========================================================
   Booking grid + form
   ========================================================= */
.booking-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: stretch;
}

.booking-form{ margin-top: 14px; }

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-grid label{
  display:flex;
  flex-direction: column;
  font-size: .85rem;
  font-weight: 800;
  color: var(--faint);
  gap: 6px;
}
.form-grid input,
.form-grid select,
.form-grid textarea{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: var(--text);
  font-size: .95rem;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus{
  outline:none;
  box-shadow: var(--focus);
}
.form-grid .full{ grid-column: 1 / -1; }

@media (max-width: 800px){
  .form-grid{ grid-template-columns: 1fr; }
}

.form-actions{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: 8px;
}
.form-hint{
  margin: 0;
  color: var(--faint);
  font-size: .92rem;
  line-height: 1.35;
}
@media (max-width: 720px){
  .form-actions{
    flex-direction: column;
    align-items: stretch;
  }
  .form-hint{ font-size: .9rem; }
}

.epk-download{
  margin-top: 14px;
  display: grid;
  gap: 6px;
}

/* Micro-EPK as spec sheet */
.micro-epk{
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 14px;
}
.micro-epk h4{ margin: 0 0 10px; }
.micro-epk ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.micro-epk li{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.78);
}
.micro-epk li strong{ color: rgba(255,255,255,.92); }

.tiny{ color: var(--faint); font-size: .9rem; }

/* =========================================================
   Footer
   ========================================================= */
footer{
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 26px;
  padding: 18px 0 28px;
  color: var(--muted);
  font-size: .95rem;
}
.foot{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap:wrap;
}
.foot-title{ color: var(--text); letter-spacing:.2px; }

footer a[href="#top"]{
  opacity: .85;
  text-decoration: underline;
  text-underline-offset: 2px;
}
footer a[href="#top"]:hover{ opacity: 1; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px){
  section{ padding: 20px 0; }
  .hero-grid{ grid-template-columns: 1fr; }
  .facts{ grid-template-columns: 1fr; }

  .video-grid{ grid-template-columns: 1fr; }
  .video-grid > .seo-booking{ justify-content: flex-start; }
  .video-grid-bottom{ grid-template-columns: 1fr; }

  .booking-grid{ grid-template-columns: 1fr; }
  .setlist{ columns: 1; }
}

@media (max-width: 640px){
  .members.two-col{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  nav{ display:none; }
  .brand{ min-width: 0; }
  .lockup img{ width: 96px; height: 96px; }
  header.hero{ padding-top: 28px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .btn{ transition:none; }
  .badge.pulse{ animation: none; }
}

.mobile-book{
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  padding: 14px 22px;
  border-radius: 999px;

  background: linear-gradient(135deg, rgba(238,73,33,.95), rgba(238,73,33,.70));
  color: white;
  font-weight: 900;
  letter-spacing: .3px;

  border: 1px solid rgba(238,73,33,.85);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);

  text-decoration: none;
}

/* Desktop hide */
@media (min-width: 700px){
  .mobile-book{
    display:none;
  }
}