:root {
  --green: #073c31;
  --green-dark: #052d25;
  --red: #8d1b17;
  --red-dark: #66110f;
  --gold: #c89643;
  --gold-light: #efd08f;
  --cream: #f7edd8;
  --paper: #fff9ed;
  --ink: #2d251b;
  --muted: #6c604f;
  --line: #d5b980;
  --content: 1180px;
  --shadow: 0 12px 30px rgba(63, 36, 10, .14);
  --font-display: Cambria, "Times New Roman", serif;
  --font-body: "Segoe UI", Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #e9ddc6;
  font-family: var(--font-body);
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3 { font-family: var(--font-display); }

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 999;
  padding: 10px 15px;
  background: white;
  color: var(--green);
}
.skip-link:focus { top: 10px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 78px;
  background: rgba(255, 250, 239, .98);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid #cdb17a;
  box-shadow: 0 5px 18px rgba(55, 34, 13, .12);
}
.header-inner {
  max-width: var(--content);
  height: 100%;
  margin: auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  position: relative;
  z-index: 2;
  flex: 0 0 106px;
  align-self: flex-start;
}
.brand img {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #a31d1b;
  box-shadow: 0 4px 12px rgba(66, 27, 6, .25);
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  padding: 27px 0 9px;
  border-bottom: 2px solid transparent;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .025em;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
  border-color: var(--red);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
}
.button {
  display: inline-flex;
  min-height: 44px;
  padding: 11px 23px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .035em;
  transition: transform .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.button-red {
  color: #fff4df;
  background: linear-gradient(#981f1b, #79120f);
  border-color: #5d0d0b;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}
.button-green {
  color: #ffe9bc;
  background: linear-gradient(#0a4a3a, #06362b);
  border-color: #062a22;
}
.button-gold {
  color: #5f241b;
  background: #f0d092;
  border-color: #9a6829;
  min-width: 180px;
}
.button-outline {
  color: white;
  border-color: rgba(255,255,255,.8);
  background: rgba(0,0,0,.22);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  max-width: var(--content);
  height: 455px;
  margin: auto;
  overflow: hidden;
  color: white;
}
.hero-slides,
.hero-slide,
.hero-overlay { position: absolute; inset: 0; }
.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .8s ease, transform 5s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 10, 8, .92) 0%, rgba(7, 10, 7, .68) 43%, rgba(8, 8, 5, .08) 76%),
    linear-gradient(0deg, rgba(0,0,0,.45), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(790px, 76%);
  padding: 65px 0 30px 68px;
}
.hero-eyebrow {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}
.hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(46px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-shadow: 0 3px 9px rgba(0, 0, 0, 0.75);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 span + span {
  margin-top: 6px;
}
.hero-description { margin: 0 0 21px; font-size: 17px; }
.hero-buttons { display: flex; gap: 12px; }
.hero-facts {
  display: flex;
  gap: 25px;
  margin-top: 29px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.28);
}
.hero-facts > div { display: flex; align-items: center; gap: 9px; }
.fact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(240,208,142,.8);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 18px;
}
.hero-facts p { margin: 0; font-size: 11px; line-height: 1.3; }
.hero-facts strong { display: block; color: var(--gold-light); font-size: 15px; }
.slider-arrow {
  position: absolute;
  z-index: 4;
  top: 45%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  color: white;
  background: rgba(0,0,0,.3);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.slider-arrow.prev { left: 22px; }
.slider-arrow.next { right: 22px; }
.slider-dots {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 17px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid white;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.slider-dots button.active { background: white; }

.paper-section {
  position: relative;
  max-width: var(--content);
  margin: auto;
  padding: 44px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 10% 15%, rgba(177, 128, 43, .08), transparent 22%),
    radial-gradient(circle at 92% 88%, rgba(177, 128, 43, .08), transparent 24%);
}
.decorated::before,
.decorated::after {
  position: absolute;
  top: 6px;
  color: #c5a365;
  font-size: 20px;
}
.decorated::before { content: "⌜"; left: 8px; }
.decorated::after { content: "⌝"; right: 8px; }
.section-heading { margin-bottom: 25px; text-align: center; }
.section-heading h2,
.story-copy h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(29px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
}
.section-heading p { margin: 4px 0 0; color: #544a3c; font-size: 16px; }
.heading-mark {
  display: block;
  margin: 8px 0 0;
  color: var(--red);
  font-size: 11px;
}
.heading-mark::before,
.heading-mark::after {
  content: "";
  display: inline-block;
  width: 65px;
  height: 1px;
  margin: 0 9px;
  vertical-align: middle;
  background: #d3b67e;
}

.story-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 46px;
  align-items: start;
}
.story-copy { padding: 12px 0 0 35px; }
.story-copy h2 { white-space: nowrap; }
.story-copy .heading-mark { margin: 13px 0 20px; text-align: left; }
.story-copy p { color: var(--muted); font-size: 14px; line-height: 1.75; }
.story-copy .button { margin-top: 12px; }
.story-photo img {
  width: 100%;
  aspect-ratio: 1.58;
  object-fit: cover;
  border: 4px solid white;
  border-radius: 18px 5px 18px 5px;
  outline: 1px solid #c7a361;
  box-shadow: var(--shadow);
}

.cuisine-section { padding-top: 26px; }
.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.menu-panel {
  padding: 0 16px 20px;
  border: 1px solid #c4a160;
  text-align: center;
  background: #fff9ec;
}
.menu-panel h3 {
  margin: 0 -16px 14px;
  padding: 11px;
  color: #f0d39a;
  background: var(--green);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .015em;
}
.alacarte-panel h3 { background: var(--red); }
.set-photo img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}
.group-badge {
  position: relative;
  display: inline-block;
  margin: -22px auto 9px;
  padding: 9px 17px;
  color: var(--green);
  border: 1px solid #bd9552;
  background: #fff5dd;
  font-size: 14px;
  font-weight: 700;
}
.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 8px 0 16px;
  padding: 0;
  list-style: none;
}
.benefit-list li {
  color: #5f5548;
  border-right: 1px solid #d8c096;
  font-size: 12px;
  line-height: 1.35;
}
.benefit-list li:last-child { border-right: 0; }
.benefit-list span { display: block; color: var(--green); font-size: 23px; }
.dish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.dish-grid figure { margin: 0; border: 1px solid #d5b67c; background: white; }
.dish-grid img { width: 100%; height: 128px; object-fit: cover; }
.dish-grid figcaption {
  min-height: 35px;
  padding: 7px 4px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}
.alacarte-panel > p { margin: 12px 0; color: #5b5042; font-size: 14px; }
.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  padding: 13px 0;
  color: var(--green);
  border-top: 1px solid #d3b77f;
  border-bottom: 1px solid #d3b77f;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.service-strip span + span { border-left: 1px solid #d4bc8d; }

.spaces-section { padding-top: 24px; }
.space-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.space-card {
  overflow: hidden;
  border: 2px solid #fff2d1;
  outline: 1px solid #c59e58;
  background: white;
}
.space-card img { width: 100%; height: 170px; object-fit: cover; transition: transform .35s ease; }
.space-card:hover img { transform: scale(1.04); }
.space-card div { padding: 11px; color: #f5d28d; background: var(--green); text-align: center; }
.space-card h3,
.space-card p { margin: 0; }
.space-card h3 { font-size: 17px; font-weight: 500; }
.space-card p { font-size: 14px; }

.news-section { padding-top: 24px; }
.news-card {
  border: 1px solid #d0b27a;
  background: #fffaf0;
  box-shadow: 0 7px 18px rgba(72, 44, 13, .09);
}
.news-card img { width: 100%; height: 155px; object-fit: cover; }
.news-card div { padding: 14px; }
.news-card h3 {
  min-height: 48px;
  margin: 0 0 10px;
  color: #2e271e;
  font-size: 16px;
  line-height: 1.35;
}
.news-card p { margin: 0; color: #786a58; font-size: 10px; }

.booking-band {
  max-width: calc(var(--content) - 50px);
  margin: auto;
  padding: 24px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: white;
  border: 6px solid #ead7ae;
  outline: 1px solid #815323;
  background: linear-gradient(105deg, var(--green) 0 68%, var(--red) 68%);
}
.booking-band h2 { margin: 0; color: #dfb763; font-size: 29px; font-weight: 500; }
.booking-band p { margin: 3px 0 0; color: #e2d7c4; }

.site-footer {
  color: #ecdfc8;
  border-top: 2px solid #c49b55;
  background: var(--green-dark);
}
.footer-inner {
  max-width: var(--content);
  margin: auto;
  padding: 34px 32px;
  display: grid;
  grid-template-columns: .75fr 1fr 1.6fr;
  gap: 45px;
}
.site-footer h2 { margin: 0 0 14px; color: #dcb76a; font-size: 14px; }
.site-footer a { display: block; margin: 7px 0; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer p { margin: 8px 0; font-size: 14px; line-height: 1.55; }
.site-footer p a { display: inline; }
.map-column iframe {
  width: 100%;
  height: 185px;
  border: 3px solid #d7ba7c;
}
.copyright {
  margin: 0;
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #bbae99;
  text-align: center;
  font-size: 10px;
  letter-spacing: .12em;
}
.floating-book {
  display: none;
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid #e7c276;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 7px 20px rgba(0,0,0,.3);
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .main-nav { gap: 16px; }
  .main-nav a { font-size: 11px; }
  .languages { display: none; }
  .story-section { gap: 32px; }
  .space-grid,
  .news-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .site-header { height: 68px; }
  .header-inner { padding: 0 14px; gap: 10px; }
  .brand { flex-basis: 76px; }
  .brand img { width: 76px; height: 76px; }
  .menu-toggle {
    display: block;
    margin-left: auto;
    padding: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px;
    background: var(--green);
  }
  .main-nav {
    position: absolute;
    top: 67px;
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 16px;
    background: #fff8e9;
    box-shadow: 0 12px 22px rgba(0,0,0,.18);
  }
  .main-nav.open { display: grid; }
  .main-nav a {
    padding: 11px;
    border: 1px solid #dfc99f;
    text-align: center;
  }
  .header-actions .button { min-height: 37px; padding: 8px 12px; font-size: 10px; }
  .hero { height: 590px; }
  .hero-content { width: 100%; padding: 100px 28px 40px; }
  .hero h1 { font-size: 44px; }
  .hero-description { max-width: 440px; font-size: 16px; }
  .hero-facts { gap: 12px; }
  .slider-arrow { display: none; }
  .story-section,
  .menu-columns { grid-template-columns: 1fr; }
  .story-copy { padding: 0 10px; }
  .story-section { gap: 26px; }
  .set-photo img { height: 315px; }
  .dish-grid img { height: 180px; }
  .booking-band {
    max-width: 100%;
    padding: 24px;
    align-items: flex-start;
    flex-direction: column;
    background: var(--green);
  }
  .booking-band h2 { font-size: 25px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .map-column { grid-column: 1 / 3; }
  .floating-book { display: flex; }
}

.zoomable-image {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.88);
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox img {
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border: 4px solid #fff4dc;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.65);
  animation: zoomImage 0.25s ease;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 25px;
  width: 48px;
  height: 48px;
  padding: 0;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  font-size: 38px;
  line-height: 42px;
  cursor: pointer;
}

.lightbox-close:hover {
  color: #efd08f;
  border-color: #efd08f;
}

body.lightbox-open {
  overflow: hidden;
}
/* ẢNH VÀ VIDEO TRONG BANNER */

.hero-slide {
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.hero-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Video YouTube dạng nền */

.hero-slide-youtube {
  background-position: center;
  background-size: cover;
}

.hero-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

/* ICON LIÊN HỆ CỐ ĐỊNH BÊN PHẢI */

.social-float {
  position: fixed;
  z-index: 9997;
  right: 18px;
  bottom: 25px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
}

.social-item {
  position: relative;
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
}

.social-icon {
  position: relative;
  z-index: 2;
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.social-icon svg {
  width: 27px;
  height: 27px;
}

.social-item:hover .social-icon {
  transform: scale(1.1);
  box-shadow: 0 9px 25px rgba(0, 0, 0, 0.38);
}

/* Tên hiện ra khi đưa chuột vào */

.social-tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 11px);
  z-index: 1;
  padding: 8px 12px;
  color: white;
  border-radius: 4px;
  background: rgba(27, 27, 27, 0.94);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translate(8px, -50%);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.social-tooltip::after {
  position: absolute;
  top: 50%;
  left: 100%;
  content: "";
  border: 5px solid transparent;
  border-left-color: rgba(27, 27, 27, 0.94);
  transform: translateY(-50%);
}

.social-item:hover .social-tooltip,
.social-item:focus-visible .social-tooltip {
  visibility: visible;
  opacity: 1;
  transform: translate(0, -50%);
}

/* Màu từng icon */

.social-map .social-icon {
  background: #ef4836;
}

.social-messenger .social-icon {
  background:
    linear-gradient(
      135deg,
      #00b2ff,
      #006aff 52%,
      #9b38ff
    );
}

.social-zalo .social-icon {
  background: #0068ff;
}

.social-phone .social-icon {
  background: #f9b900;
}

.social-top .social-icon {
  color: white;
  background: #caa875;
}

.zalo-text {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

/* Điện thoại */

@media (max-width: 820px) {
  .social-float {
    right: 10px;
    bottom: 92px;
    gap: 9px;
  }

  .social-item,
  .social-icon {
    width: 46px;
    height: 46px;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }

  .social-tooltip {
    display: none;
  }

  .zalo-text {
    font-size: 12px;
  }
}


@keyframes zoomImage {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 560px) {
  .hero { height: 620px; }
  .hero-content { padding: 105px 21px 38px; }
  .hero h1 { font-size: clamp(26px, 8.3vw, 38px); letter-spacing: -.035em; }
  .hero-buttons { width: 280px; flex-direction: column; }
  .hero-facts { flex-wrap: wrap; }
  .hero-facts > div { width: calc(50% - 8px); }
  .paper-section { padding: 42px 17px; }
  .section-heading h2,
  .story-copy h2 { font-size: 28px; }
  .story-photo img { aspect-ratio: 1.2; }
  .menu-panel { padding-inline: 10px; }
  .menu-panel h3 { margin-inline: -10px; font-size: 21px; }
  .set-photo img { height: 220px; }
  .benefit-list { grid-template-columns: 1fr; gap: 8px; }
  .benefit-list li { padding: 8px; border-right: 0; border-bottom: 1px solid #d8c096; }
  .dish-grid img { height: 125px; }
  .service-strip { grid-template-columns: 1fr; gap: 10px; }
  .service-strip span + span { padding-top: 10px; border-top: 1px solid #d4bc8d; border-left: 0; }
  .space-grid,
  .news-grid { grid-template-columns: 1fr; }
  .space-card img { height: 230px; }
  .news-card img { height: 220px; }
  .news-card h3 { min-height: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .map-column { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  /* BANNER FULL TOÀN BỘ CHIỀU NGANG MÀN HÌNH */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.hero {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: none;
  height: clamp(520px, 42vw, 760px);
  margin-right: 0;
  margin-left: -50vw;
  overflow: hidden;
}

/* Ảnh và video phủ kín banner */

.hero-slide,
.hero-slide img,
.hero-slide video,
.hero-media {
  width: 100%;
  height: 100%;
}

.hero-slide img,
.hero-slide video,
.hero-media {
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Giữ phần chữ thẳng với nội dung trang */

.hero-content {
  position: relative;
  z-index: 2;
  width: calc(100% - 48px);
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(70px, 6vw, 105px) 40px 35px;
}

.hero-content > * {
  max-width: 790px;
}

/* Mũi tên nằm sát hai cạnh màn hình */

.slider-arrow.prev {
  left: 25px;
}

.slider-arrow.next {
  right: 25px;
}

/* MÁY TÍNH BẢNG VÀ ĐIỆN THOẠI */

@media (max-width: 820px) {
  .hero {
    width: 100vw;
    height: min(720px, calc(100svh - 68px));
    min-height: 590px;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 95px 28px 40px;
  }

  .hero-content > * {
    max-width: 100%;
  }
}

/* ĐIỆN THOẠI NHỎ */

@media (max-width: 560px) {
  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 100px 21px 38px;
  }

  .hero h1 span {
    white-space: normal;
  }
}

}
