/* ============================================================
   Niu Beach Hale Ohana LLC - Beach House and Tide Pool Theme
   LIGHT theme: shell-sand, tide-pool-blue, hibiscus-coral, driftwood
   ============================================================ */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #27313A;
  background-color: #FAF7F0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

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

a {
  color: #1F4658;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   GABLE-ROOF NAV
   ============================================================ */
.gable-roof-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #FAF7F0;
  box-shadow: 0 1px 0 #E7E0D4;
}

.gable-roof-nav .roofline {
  height: 26px;
  position: relative;
  overflow: hidden;
}

.gable-roof-nav .roofline .slope-left,
.gable-roof-nav .roofline .slope-right {
  position: absolute;
  top: 0;
  height: 26px;
  width: 52%;
  background-color: #1F4658;
}

.gable-roof-nav .roofline .slope-left {
  left: 0;
  transform: skewX(-14deg);
  transform-origin: top left;
}

.gable-roof-nav .roofline .slope-right {
  right: 0;
  transform: skewX(14deg);
  transform-origin: top right;
}

.gable-roof-nav .roofline .chimney {
  position: absolute;
  top: 2px;
  right: 32%;
  width: 18px;
  height: 16px;
  background-color: #D96A4E;
  z-index: 2;
}

.gable-roof-nav .nav-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.gable-roof-nav .wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #1F4658;
  text-transform: uppercase;
}

.gable-roof-nav .wordmark .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #D96A4E;
  display: inline-block;
}

.gable-roof-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gable-roof-nav .nav-links a {
  color: #27313A;
  font-weight: 600;
  padding: 4px 2px;
}

.gable-roof-nav .nav-links a:hover {
  text-decoration: none;
  box-shadow: inset 0 -2px 0 #1F4658;
}

.gable-roof-nav .nav-links .sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #D96A4E;
  display: inline-block;
}

.gable-roof-nav .nav-toggle {
  display: none;
  background: none;
  border: 1px solid #E7E0D4;
  border-radius: 6px;
  color: #1F4658;
  font-size: 20px;
  padding: 4px 12px;
  cursor: pointer;
}

@media (max-width: 720px) {
  .gable-roof-nav .roofline {
    height: 20px;
  }
  .gable-roof-nav .roofline .slope-left,
  .gable-roof-nav .roofline .slope-right {
    height: 20px;
  }
  .gable-roof-nav .nav-toggle {
    display: inline-block;
  }
  .gable-roof-nav .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 10px 0 4px;
    gap: 10px;
  }
  .gable-roof-nav .nav-links.open {
    display: flex;
  }
  .gable-roof-nav .nav-links .sep {
    display: none;
  }
}

/* ============================================================
   TIDE-POOL LEDGE HERO
   ============================================================ */
.tide-pool-hero {
  background-color: #FFF9F2;
  border-bottom: 1px solid #E7E0D4;
  position: relative;
}

.tide-pool-hero .hero-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 24px 60px;
}

.tide-pool-hero .hero-eyebrow {
  display: inline-block;
  background-color: #1F4658;
  color: #FAF7F0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.tide-pool-hero h1 {
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.08;
  color: #1F4658;
  font-weight: 800;
  margin: 0 0 22px;
}

.tide-pool-hero h1 .coral {
  color: #D96A4E;
}

.tide-pool-hero .subcopy {
  font-size: 19px;
  color: #27313A;
  max-width: 700px;
  margin: 0 auto 34px;
}

.tide-pool-hero .hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background-color: #1F4658;
  color: #FAF7F0;
}

.btn-primary:hover {
  background-color: #182F3C;
  color: #FAF7F0;
}

.btn-outline {
  background: transparent;
  color: #1F4658;
  border-color: #1F4658;
}

.btn-outline:hover {
  background-color: #1F4658;
  color: #FAF7F0;
}

/* tide pool ledge */
.ledge {
  position: relative;
  padding: 0 0 0;
  height: 220px;
}

.ledge .pool {
  position: absolute;
  border-radius: 50%;
}

.ledge .pool.one {
  left: 4%;
  bottom: 0;
  width: 42%;
  height: 180px;
}

.ledge .pool.two {
  left: 30%;
  bottom: 0;
  width: 46%;
  height: 210px;
}

.ledge .pool.three {
  left: 60%;
  bottom: 0;
  width: 38%;
  height: 170px;
}

.ledge .pool .basin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #1F4658;
}

.ledge .pool .water {
  position: absolute;
  inset: 16% 10% 12%;
  border-radius: 50%;
  background-color: #FFF9F2;
}

.ledge .pool.two .water {
  background-color: #FAF7F0;
}

.ledge .palm {
  position: absolute;
  left: 2%;
  bottom: 8%;
  width: 90px;
  height: 90px;
  z-index: 3;
}

.ledge .palm .frond {
  position: absolute;
  width: 60px;
  height: 18px;
  background-color: #8C7F72;
  border-radius: 60% 40% 40% 60%;
  transform-origin: left center;
}

.ledge .palm .frond.f1 { left: 10px; bottom: 0; transform: rotate(-30deg); }
.ledge .palm .frond.f2 { left: 0; bottom: 20px; transform: rotate(-80deg); }
.ledge .palm .frond.f3 { left: 24px; bottom: 4px; transform: rotate(12deg); }
.ledge .palm .trunk {
  position: absolute;
  left: 40px;
  bottom: 0;
  width: 10px;
  height: 56px;
  background-color: #1F4658;
  border-radius: 4px;
}

.ledge .star {
  position: absolute;
  left: 22%;
  top: 42%;
  width: 0;
  height: 0;
  z-index: 4;
}

.ledge .star span {
  position: absolute;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%) rotate(0deg);
}

.ledge .star .point {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 34px solid #D96A4E;
  transform-origin: bottom center;
}

.ledge .star .p1 { transform: translate(-50%, -50%) translateY(-12px); }
.ledge .star .p2 { transform: translate(-50%, -50%) translateY(-12px) rotate(72deg); }
.ledge .star .p3 { transform: translate(-50%, -50%) translateY(-12px) rotate(144deg); }
.ledge .star .p4 { transform: translate(-50%, -50%) translateY(-12px) rotate(216deg); }
.ledge .star .p5 { transform: translate(-50%, -50%) translateY(-12px) rotate(288deg); }

.ledge .shell {
  position: absolute;
  right: 22%;
  top: 46%;
  width: 52px;
  height: 52px;
  z-index: 4;
  border-radius: 50%;
  background: #8C7F72;
}

.ledge .shell .ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid #FAF7F0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ledge .shell .r1 { width: 34px; height: 34px; }
.ledge .shell .r2 { width: 22px; height: 22px; }
.ledge .shell .r3 { width: 10px; height: 10px; background: #FAF7F0; }

.ledge .fish {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 4;
}

.ledge .fish .body {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 20px solid #1F4658;
}

.ledge .fish .tail {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 12px solid #1F4658;
}

.ledge .fish.one { left: 40%; top: 52%; }
.ledge .fish.one .body { left: 0; top: -8px; }
.ledge .fish.one .tail { left: -10px; top: -6px; }
.ledge .fish.two { left: 47%; top: 60%; }
.ledge .fish.two .body { left: 0; top: -7px; border-top-width: 7px; border-bottom-width: 7px; border-left-width: 16px; }
.ledge .fish.two .tail { left: -9px; top: -5px; }

.ledge .umbrella {
  position: absolute;
  right: 8%;
  top: 0;
  width: 110px;
  height: 120px;
  z-index: 3;
}

.ledge .umbrella .canopy {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 34px;
  border-radius: 110px 110px 0 0;
  background: repeating-linear-gradient(
    90deg,
    #D96A4E 0 14px,
    #FAF7F0 14px 28px
  );
}

.ledge .umbrella .pole {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 70px;
  background-color: #1F4658;
  border-radius: 3px;
}

@media (max-width: 720px) {
  .tide-pool-hero .hero-wrap {
    padding: 70px 24px 40px;
  }
  .ledge {
    height: 150px;
  }
  .ledge .pool.one, .ledge .pool.three { height: 120px; }
  .ledge .pool.two { height: 140px; }
  .ledge .umbrella, .ledge .palm { display: none; }
}

/* ============================================================
   HALE-ROWS sections
   ============================================================ */
.hale-rows {
  background-color: #FAF7F0;
  padding: 90px 0 40px;
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.section-intro .kicker {
  font-size: 13px;
  color: #D96A4E;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin: 0 0 10px;
}

.section-intro h2 {
  font-size: clamp(30px, 4.5vw, 42px);
  color: #1F4658;
  margin: 0 0 14px;
  font-weight: 800;
  line-height: 1.15;
}

.section-intro p {
  color: #27313A;
  margin: 0;
}

.hale-row {
  display: flex;
  align-items: center;
  gap: 28px;
  background-color: #FFF9F2;
  border: 1px solid #E7E0D4;
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 14px;
}

.hale-row .cottage {
  flex: 0 0 30%;
  text-align: center;
}

.hale-row .cottage .house {
  position: relative;
  width: 150px;
  height: 130px;
  margin: 0 auto;
}

.hale-row .cottage .accent {
  position: absolute;
  background-color: #1F4658;
}

.hale-row .cottage .roof {
  position: absolute;
  top: 0;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 75px solid transparent;
  border-right: 75px solid transparent;
  border-bottom: 55px solid #1F4658;
}

.hale-row .cottage .body {
  position: absolute;
  top: 50px;
  left: 10px;
  width: 130px;
  height: 80px;
  background-color: #FAF7F0;
  border: 2px solid #1F4658;
  border-top: none;
  border-radius: 0 0 6px 6px;
}

.hale-row .cottage .door {
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 42px;
  background-color: #D96A4E;
  border-radius: 4px 4px 0 0;
}

.hale-row .cottage .window {
  position: absolute;
  top: 68px;
  width: 24px;
  height: 24px;
  background-color: #8C7F72;
  border-radius: 3px;
}

.hale-row .cottage .window.l { left: 24px; }
.hale-row .cottage .window.r { right: 24px; }

.hale-row.coral .cottage .roof { border-bottom-color: #D96A4E; }
.hale-row.coral .cottage .window { background-color: #1F4658; }
.hale-row.brown .cottage .roof { border-bottom-color: #8C7F72; }
.hale-row.brown .cottage .window { background-color: #D96A4E; }
.hale-row.blue .cottage .window { background-color: #D96A4E; }

.hale-row .row-body {
  flex: 1 1 auto;
}

.hale-row .row-body h3 {
  font-size: 26px;
  color: #1F4658;
  margin: 0 0 12px;
  font-weight: 800;
}

.hale-row .row-body p {
  color: #27313A;
  margin: 0;
}

.hale-row .guest {
  flex: 0 0 25%;
  text-align: right;
}

.hale-row .guest .capacity {
  font-size: 15px;
  font-weight: 700;
  color: #27313A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.hale-row .guest .waves {
  height: 10px;
  background: repeating-linear-gradient(
    -4deg,
    transparent 0 6px,
    #1F4658 6px 8px,
    transparent 8px 14px
  );
  margin-bottom: 12px;
}

.hale-row .guest .details {
  display: inline-block;
  border: 2px solid #D96A4E;
  color: #D96A4E;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 999px;
}

.hale-row .guest .details:hover {
  background-color: #D96A4E;
  color: #FAF7F0;
  text-decoration: none;
}

@media (max-width: 820px) {
  .hale-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hale-row .cottage { flex: 0 0 auto; }
  .hale-row .guest { flex: 0 0 auto; text-align: left; width: 100%; }
}

/* ============================================================
   METRIC BAND
   ============================================================ */
.metric-band {
  background-color: #1F4658;
  padding: 70px 24px;
}

.metric-band .metrics {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.metric-band .metric {
  flex: 1 1 20%;
  text-align: center;
  padding: 0 20px;
}

.metric-band .metric + .metric {
  border-left: 1px solid #FFF9F2;
}

.metric-band .metric .num {
  font-size: 46px;
  font-weight: 800;
  color: #FAF7F0;
}

.metric-band .metric .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFF9F2;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .metric-band .metric { flex: 1 1 46%; margin-bottom: 24px; }
  .metric-band .metric + .metric { border-left: none; }
}

/* ============================================================
   STATEMENT BAND
   ============================================================ */
.statement-band {
  background-color: #FFF9F2;
  padding: 90px 24px;
}

.statement-band .statement {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  border-left: 4px solid #D96A4E;
  padding: 8px 0 8px 28px;
}

.statement-band .statement p {
  font-size: 26px;
  line-height: 1.5;
  color: #1F4658;
  font-weight: 600;
  margin: 0 0 18px;
}

.statement-band .statement .attribution {
  font-size: 15px;
  color: #27313A;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background-color: #FAF7F0;
  text-align: center;
  padding: 90px 24px;
}

.cta-band h2 {
  font-size: clamp(30px, 4.5vw, 42px);
  color: #1F4658;
  margin: 0 0 14px;
  font-weight: 800;
}

.cta-band p {
  color: #27313A;
  max-width: 680px;
  margin: 0 auto 30px;
}

/* ============================================================
   WAVE SCALLOP divider utility
   ============================================================ */
.wave-scallop {
  height: 18px;
  background: repeating-radial-gradient(
    circle at 50% 100%,
    #1F4658 0 10px,
    transparent 10px 22px
  );
  margin: 0 -24px;
}

/* ============================================================
   BOARDWALK-POSTS FOOTER
   ============================================================ */
.boardwalk-posts-footer {
  background-color: #1F4658;
  color: #FAF7F0;
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.boardwalk-posts-footer .boardwalk-edge {
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    #FAF7F0 0 16px,
    #FFF9F2 16px 34px
  );
}

.boardwalk-posts-footer .footer-inner {
  text-align: center;
  padding: 56px 24px 40px;
}

.boardwalk-posts-footer .torches {
  font-size: 34px;
  line-height: 1;
  letter-spacing: 26px;
  margin-bottom: 8px;
}

.boardwalk-posts-footer .footer-wordmark {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #FAF7F0;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.boardwalk-posts-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}

.boardwalk-posts-footer .footer-links a {
  color: #FAF7F0;
  font-size: 15px;
  font-weight: 600;
}

.boardwalk-posts-footer .footer-links a:hover {
  text-decoration: underline;
}

.boardwalk-posts-footer .wave-line {
  width: 160px;
  height: 10px;
  background: repeating-linear-gradient(
    -8deg,
    transparent 0 8px,
    #FFF9F2 8px 10px,
    transparent 10px 16px
  );
  margin: 18px auto 16px;
}

.boardwalk-posts-footer .legal-line {
  font-size: 14px;
  color: #FFF9F2;
  margin: 0;
  line-height: 1.8;
}

.boardwalk-posts-footer .legal-line a {
  color: #FFF9F2;
}

.boardwalk-posts-footer .legal-line a:hover {
  text-decoration: underline;
}

/* ============================================================
   CONTACT & SERVICES page shared
   ============================================================ */
.page-hero {
  background-color: #1F4658;
  color: #FAF7F0;
  padding: 70px 24px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 14px;
  color: #FAF7F0;
  font-weight: 800;
}

.page-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #FFF9F2;
  font-size: 18px;
}

.page-section {
  padding: 80px 24px;
}

.page-section.alt {
  background-color: #FFF9F2;
}

.page-section .sec-title {
  font-size: clamp(28px, 4vw, 38px);
  color: #1F4658;
  margin: 0 0 16px;
  text-align: center;
  font-weight: 800;
}

.page-section .sec-kicker {
  text-align: center;
  font-size: 13px;
  color: #D96A4E;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin: 0 0 40px;
}

/* services rows on services.html */
.service-item {
  display: flex;
  gap: 26px;
  background-color: #FFF9F2;
  border: 1px solid #E7E0D4;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 18px;
}

.service-item .badge {
  flex: 0 0 52px;
  height: 52px;
  border-radius: 12px;
  background-color: #1F4658;
  color: #FAF7F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.service-item .body { flex: 1; }

.service-item h3 {
  color: #1F4658;
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
}

.service-item p { color: #27313A; margin: 0; }

@media (max-width: 720px) {
  .service-item { flex-direction: column; }
}

/* process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.process-step {
  background-color: #FFF9F2;
  border: 1px solid #E7E0D4;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.process-step .step-num {
  font-size: 30px;
  color: #D96A4E;
  font-weight: 800;
}

.process-step h4 {
  color: #1F4658;
  margin: 10px 0 8px;
  font-size: 18px;
}

.process-step p { color: #27313A; margin: 0; font-size: 15px; }

/* contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.contact-form .field {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1F4658;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid #E7E0D4;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  color: #27313A;
  background-color: #FFF9F2;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1F4658;
}

.contact-form .status {
  margin-top: 12px;
  font-size: 14px;
  color: #D96A4E;
  min-height: 20px;
}

.contact-info .info-card {
  background-color: #FFF9F2;
  border: 1px solid #E7E0D4;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 18px;
}

.contact-info .info-card h4 {
  color: #1F4658;
  margin: 0 0 10px;
  font-size: 18px;
}

.contact-info .info-card p {
  color: #27313A;
  margin: 0 0 6px;
  line-height: 1.6;
}

.contact-info .info-card a { color: #1F4658; font-weight: 600; }

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border: 1px solid #E7E0D4;
  border-radius: 12px;
  background-color: #FFF9F2;
  margin-bottom: 12px;
}

.faq-item .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 700;
  color: #1F4658;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item .faq-q .arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
  color: #D96A4E;
}

.faq-item.open .faq-q .arrow {
  transform: rotate(180deg);
}

.faq-item .faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 22px 18px;
}

.faq-item .faq-a p {
  color: #27313A;
  margin: 0;
}

/* fade-up reveal */
.fade-up {
  opacity: 1;
  transform: none;
}

.noscript-fallback {
  display: none;
}
