/*
Theme Name: Sunlit Cafe Dining
Theme URI: https://example.com/
Author: Sunlit
Description: Cafe & Dining Sunlit original WordPress theme.
Version: 1.0.0
Text Domain: sunlit
*/

:root {
  --cream: #fcf9f5;
  --sand: #ece0cf;
  --warm: #f7ead7;
  --green: #708a5f;
  --deep-green: #4f6c43;
  --brown: #523810;
  --footer: #4d3728;
  --orange: #c28953;
  --ink: #202020;
  --shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.hero {
  min-height: 100vh;
  padding: 25px clamp(22px, 4vw, 147px) 48px;
  background: var(--sand);
}

.nav {
  width: 100%;
  max-width: 1614px;
  margin: 0 auto 38px;
  min-height: 74px;
  padding: 9px 20px 11px 24px;
  border-radius: 50px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 2.2vw, 42px);
}

.brand {
  width: 114px;
  display: grid;
  grid-template-columns: 36px auto;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 2px 7px;
}

.brand-mark {
  grid-column: 1;
  grid-row: 1;
  width: 36px;
  height: 27px;
  object-fit: contain;
}

.brand-copy {
  display: contents;
}

.brand-copy strong {
  grid-column: 2;
  grid-row: 1;
  display: block;
  color: var(--deep-green);
  font-family: Chalkboard, "Comic Sans MS", cursive;
  font-size: 25px;
  line-height: 1;
}

.brand-copy small {
  grid-column: 1 / -1;
  grid-row: 2;
  display: block;
  width: 100%;
  margin-top: 2px;
  color: #000;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4.8vw, 104px);
  font-size: 18px;
  white-space: nowrap;
}

.button {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  min-height: 58px;
  padding: 10px 48px;
  border: 1px solid var(--green);
  border-radius: 50px;
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 1.7vw, 32px);
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transform: translate3d(0, 0, 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
  will-change: transform;
}

.button::after,
footer a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 70%);
  content: "";
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.button:hover,
.button.is-hovered {
  box-shadow: 0 10px 18px rgba(79, 108, 67, 0.28);
}

.button:hover::after,
.button.is-hovered::after,
footer a:hover::after,
footer a.is-hovered::after {
  transform: translateX(120%);
}

.button-small {
  min-width: 158px;
  min-height: 42px;
  padding-inline: 30px;
  font-size: clamp(17px, 1.1vw, 22px);
}

.button-light,
.button-outline {
  background: var(--cream);
  color: var(--deep-green);
}

.button-outline {
  background: #fff;
  border-color: var(--green);
}

.menu-toggle {
  display: none;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--deep-green);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero-grid {
  max-width: 1614px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(660px, 0.98fr) minmax(520px, 1.02fr);
  align-items: start;
  gap: clamp(32px, 4vw, 72px);
}

.hero-copy {
  padding-top: clamp(64px, 6vh, 92px);
}

.pill {
  width: fit-content;
  margin: 0 0 24px;
  padding: 8px 38px 8px 22px;
  border-radius: 50px;
  background: var(--orange);
  color: #fff;
  font-size: 20px;
}

.pill span {
  white-space: nowrap;
}

.pill img {
  display: inline-block;
  width: 16px;
  height: 34px;
  margin-right: 18px;
  vertical-align: middle;
}

.hero h1 {
  margin: 0 0 26px;
  font-size: clamp(50px, 4.2vw, 78px);
  font-weight: 500;
  line-height: 1.34;
}

.hero h1 span {
  color: var(--deep-green);
}

.hero-copy > p:not(.pill) {
  max-width: 766px;
  margin: 0 0 34px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  width: min(100%, 946px);
  gap: clamp(22px, 1.8vw, 34px);
  flex-wrap: nowrap;
  margin-top: 72px;
}

.hero-actions .button {
  min-width: 0;
  padding-inline: clamp(24px, 2vw, 40px);
  flex: 1 1 0;
}

.hero-media {
  position: relative;
  min-height: 820px;
}

.hero-image {
  width: min(900px, 100%);
  height: 650px;
  margin-left: auto;
  border-radius: 224px;
  object-fit: cover;
  object-position: center;
}

.open-card {
  position: absolute;
  right: 0;
  bottom: 12px;
  display: flex;
  align-items: center;
  width: min(671px, 100%);
}

.open-card img {
  width: min(306px, 45%);
  height: 229px;
  border-radius: 181px;
  object-fit: cover;
}

.open-card div {
  width: min(365px, 55%);
  min-height: 190px;
  padding: 32px 11px 28px 44px;
  background: var(--cream);
  border: 2px solid var(--green);
}

.open-card strong {
  color: var(--deep-green);
  font-family: Roboto, Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
}

.open-card p {
  margin: 1px 0 0;
  font-size: 18px;
}

.hero-note {
  max-width: 766px;
  margin: 0;
  padding-top: 82px;
  font-size: 18px;
}

.section {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.panel {
  background: var(--cream);
  padding: 110px 50px 144px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
}

.section-heading span {
  width: 9px;
  min-height: 81px;
  background: var(--green);
}

.section-heading p {
  margin: 0 0 8px;
  color: var(--orange);
  font-family: Chalkboard, "Comic Sans MS", cursive;
  font-size: 24px;
  font-weight: 700;
}

.section-heading h2 {
  margin: 0;
  color: var(--brown);
  font-size: 32px;
  line-height: 1.25;
}

.lead {
  margin: 0;
  font-size: 18px;
}

.concept-cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.concept-cards article {
  min-height: 398px;
  padding: 26px 22px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.concept-cards h3 {
  margin: 0 0 42px;
  color: var(--deep-green);
  font-size: 20px;
  white-space: nowrap;
}

.concept-cards p {
  margin: 0 auto 24px;
  width: min(220px, 100%);
  font-size: 16px;
}

.concept-cards img {
  width: 163px;
  height: 163px;
  margin-top: auto;
  border-radius: 999px;
  object-fit: cover;
}

.menu-section {
  padding: 96px 0 142px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.52)),
    url("./assets/menu-bg.jpg") center/cover fixed;
}

.menu-inner {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.menu-block {
  min-height: 237px;
  margin-top: 40px;
  padding: 6px 26px 31px 16px;
  background: var(--green);
  color: #fff;
  display: grid;
  grid-template-columns: 182px 1fr;
  gap: 26px;
  align-items: center;
}

.menu-photo {
  text-align: center;
}

.menu-photo em {
  display: block;
  font-family: "Pinyon Script", Georgia, serif;
  font-size: 36px;
  line-height: 1.1;
}

.menu-photo strong {
  display: block;
  margin-bottom: 8px;
  font-family: Roboto, Arial, sans-serif;
  font-size: 20px;
}

.menu-photo img {
  width: 182px;
  aspect-ratio: 4096 / 2731;
  border-radius: 30px;
  object-fit: cover;
}

.menu-list {
  display: grid;
  gap: 24px;
}

.menu-list p {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(210px, 1.4fr) auto;
  gap: 28px;
  align-items: start;
  font-size: 18px;
  line-height: 1.45;
}

.menu-list strong {
  font-family: Roboto, Arial, sans-serif;
  font-size: 20px;
}

.promise {
  width: min(960px, calc(100% - 40px));
  padding-bottom: 114px;
}

.promise-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 387px 1fr;
  gap: 36px;
  align-items: center;
}

.promise-grid > img {
  width: 387px;
  height: 384px;
  border-radius: 30px;
  object-fit: cover;
}

.promise-list {
  display: grid;
  gap: 13px;
}

.promise-list article {
  min-height: 127px;
  padding: 18px 38px;
  border: 1px solid var(--green);
  border-radius: 30px;
  background: #fff;
}

.promise-list b {
  color: var(--deep-green);
  font-family: Roboto, Arial, sans-serif;
  font-size: 24px;
}

.promise-list h3 {
  display: inline;
  margin: 0 0 0 7px;
  color: var(--deep-green);
  font-size: 20px;
}

.promise-list p {
  margin: 4px 0 0;
  font-size: 18px;
}

@media (min-width: 761px) {
  .menu-block:last-child .menu-list {
    transform: translateY(14px);
  }
}

.reservation {
  min-height: 785px;
  padding: 149px 0 128px;
  color: #fff;
  background:
    linear-gradient(rgba(40, 81, 27, 0.82), rgba(40, 81, 27, 0.82)),
    url("./assets/reservation-bg.jpg") center/cover;
}

.reservation-inner {
  width: min(850px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 436px;
  gap: 36px;
  align-items: start;
}

.section-heading-light span {
  min-height: 155px;
  background: #fff;
}

.section-heading-light h2 {
  color: #fff;
}

.reservation-copy {
  grid-column: 1;
  display: grid;
  gap: 28px;
  font-size: 20px;
}

.reservation-card {
  grid-column: 2;
  grid-row: 2;
  min-height: 423px;
  padding: 52px 56px 29px;
  border-radius: 30px;
  background: var(--cream);
  color: var(--ink);
  text-align: center;
}

.reservation-card h3 {
  margin: 0 0 50px;
  font-size: 28px;
  font-weight: 500;
}

.reservation-card .button {
  width: 100%;
  margin-bottom: 50px;
  border-radius: 30px;
  font-size: 24px;
}

.reservation-card p {
  margin: 0;
  font-size: 16px;
}

.access-wrap,
.faq {
  background: var(--cream);
}

.access {
  padding: 142px 0 96px;
}

.access-grid {
  display: grid;
  grid-template-columns: 368px 1fr;
  gap: 16px;
  margin-top: 56px;
}

.shop-card {
  min-height: 381px;
  padding: 38px 20px;
  border: 1px solid var(--green);
  border-radius: 30px;
  background: #fff;
}

.shop-card h3 {
  margin: 0 0 20px;
  color: var(--brown);
  font-size: 24px;
  text-align: center;
}

dl {
  margin: 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px 14px;
  font-size: 20px;
}

dt {
  color: var(--deep-green);
  font-weight: 700;
}

dd {
  margin: 0;
  font-weight: 500;
}

.map {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 381px;
  background: #fff;
}

.map-image,
.map-embed {
  width: 100%;
  height: 100%;
}

.map-image {
  display: none;
  object-fit: cover;
}

.map-embed {
  display: block;
  border: 0;
}

.parking {
  margin-top: 30px;
  padding: 20px 21px 26px;
  border-radius: 20px;
  background: var(--warm);
}

.parking h3 {
  margin: 0 0 14px;
  color: var(--deep-green);
  font-size: 20px;
}

.parking p {
  margin: 0;
  font-size: 16px;
}

.faq {
  padding: 0 0 110px;
}

.faq-list {
  display: grid;
  gap: 28px;
  margin-top: 44px;
}

.faq-list article {
  min-height: 124px;
  padding: 20px 40px;
  border: 1px solid var(--green);
  border-radius: 30px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0 12px;
}

.faq-list b,
.faq-list strong {
  font-family: Chalkboard, "Comic Sans MS", cursive;
  font-size: 32px;
  line-height: 1.1;
}

.faq-list b {
  color: var(--deep-green);
}

.faq-list strong {
  color: var(--orange);
  font-weight: 400;
}

.faq-list h3,
.faq-list p {
  margin: 0;
  font-size: 20px;
}

.faq-list h3 {
  color: var(--deep-green);
}

.faq-list p {
  font-weight: 500;
}

footer {
  min-height: 303px;
  padding: 48px clamp(24px, 7vw, 147px) 18px;
  background: var(--footer);
  color: #fff;
  text-align: center;
}

footer strong {
  display: block;
  margin-bottom: 38px;
  font-family: Chalkboard, "Comic Sans MS", cursive;
  font-size: 24px;
}

footer p {
  margin: 0 0 28px;
  font-size: 20px;
}

footer a {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  min-width: 184px;
  min-height: 43px;
  padding: 7px 22px;
  border-radius: 50px;
  background: var(--warm);
  color: var(--footer);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transform: translate3d(0, 0, 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

footer a:hover,
footer a.is-hovered {
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1024px) {
  .nav {
    align-items: flex-start;
    border-radius: 34px;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 18px;
    font-size: 20px;
  }

  .hero-grid,
  .reservation-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
  }

  .open-card {
    position: static;
    margin-top: 20px;
    justify-content: center;
  }

  .reservation-card,
  .reservation-copy {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (min-width: 1025px) and (max-width: 1400px) {
  .hero {
    padding-inline: clamp(18px, 3vw, 48px);
  }

  .nav {
    min-height: 68px;
    padding: 8px 14px 10px 18px;
    gap: clamp(12px, 1.6vw, 20px);
    flex-wrap: nowrap;
    align-items: center;
  }

  .nav-links {
    flex: 1 1 auto;
    gap: clamp(14px, 2.2vw, 44px);
    font-size: clamp(18px, 1.7vw, 24px);
  }

  .button-small {
    min-width: 128px;
    min-height: 40px;
    padding-inline: clamp(22px, 2.4vw, 34px);
    font-size: clamp(16px, 1.35vw, 20px);
  }

  .hero-grid {
    grid-template-columns: minmax(570px, 1fr) minmax(420px, 0.82fr);
    gap: clamp(20px, 2.4vw, 34px);
  }

  .pill {
    padding: 8px 28px 8px 22px;
    font-size: clamp(16px, 1.45vw, 19px);
  }

  .hero h1 {
    font-size: clamp(42px, 4.4vw, 62px);
    line-height: 1.28;
  }

  .hero-copy {
    padding-top: clamp(48px, 5vh, 66px);
  }

  .hero-copy > p:not(.pill),
  .hero-note {
    font-size: clamp(15px, 1.4vw, 17px);
  }

  .hero-copy > p:not(.pill) {
    margin-bottom: 28px;
  }

  .hero-note {
    margin-top: 0;
    padding-top: 66px;
  }

  .hero-actions {
    width: min(100%, 760px);
    gap: clamp(12px, 1.5vw, 22px);
    margin-top: 56px;
    flex-direction: row;
    justify-content: flex-start;
  }

  .hero-actions .button {
    min-height: 62px;
    padding-inline: clamp(14px, 1.6vw, 24px);
    font-size: clamp(17px, 1.55vw, 22px);
  }

  .hero-media {
    min-height: 680px;
  }

  .hero-image {
    height: clamp(510px, 46vw, 610px);
  }

  .open-card img {
    height: clamp(168px, 16vw, 200px);
  }

  .open-card div {
    min-height: clamp(150px, 14vw, 168px);
    padding: 22px 12px 18px 24px;
  }

  .open-card strong {
    font-size: clamp(21px, 2vw, 25px);
  }

  .open-card p {
    font-size: clamp(14px, 1.35vw, 17px);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 0;
    overflow: hidden;
    padding: 6px 12px 32px;
  }

  .nav {
    width: 100%;
    min-height: 51px;
    margin-bottom: 34px;
    padding: 7px 20px 6px 15px;
    border-radius: 50px;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .brand {
    width: auto;
    grid-template-columns: 26px auto;
    gap: 1px 4px;
  }

  .brand-mark {
    width: 26px;
    height: 20px;
    margin-top: 2px;
    flex: 0 0 auto;
  }

  .brand-copy strong {
    font-size: 20px;
    line-height: 1;
  }

  .brand-copy small {
    margin-top: 1px;
    font-size: 11px;
    line-height: 1;
  }

  .nav-links {
    display: none;
  }

  .button-small {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-menu {
    position: fixed;
    z-index: 20;
    top: 68px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(112, 138, 95, 0.38);
    border-radius: 28px;
    background: rgba(252, 249, 245, 0.98);
    box-shadow: 0 16px 34px rgba(77, 55, 40, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .mobile-menu a:not(.button) {
    padding: 10px 14px;
    color: var(--deep-green);
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-menu .button {
    min-height: 48px;
    margin-top: 6px;
    font-size: 18px;
  }

  body.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
  }

  .hero-copy,
  .hero-media {
    display: contents;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .pill {
    order: 1;
    width: min(329px, calc(100vw - 48px));
    height: 30px;
    margin: 0 auto 22px;
    padding: 5px 18px;
    font-size: clamp(13px, 3.7vw, 15px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    line-height: 1;
  }

  .pill img {
    width: 12px;
    height: 20px;
    margin: 0;
  }

  .hero h1 {
    order: 2;
    width: 324px;
    margin: 0 auto 26px;
    font-size: 36px;
    line-height: 1.25;
  }

  .hero-copy > p:not(.pill) {
    order: 4;
    width: 323px;
    margin: 18px auto 22px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-image {
    order: 3;
    width: min(349px, calc(100vw - 40px));
    max-width: none;
    height: 258px;
    margin: 0 auto;
    border-radius: 224px;
    object-fit: cover;
  }

  .open-card {
    order: 5;
    width: 100%;
    margin: 0 auto 35px;
    align-items: stretch;
    flex-direction: row-reverse;
    justify-content: center;
  }

  .open-card img {
    width: 167px;
    height: 125px;
    border-radius: 181px;
  }

  .open-card div {
    width: 194px;
    min-height: 107px;
    padding: 14px 0 17px 15px;
  }

  .open-card strong {
    font-size: 16px;
  }

  .open-card p {
    width: 179px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-actions {
    order: 6;
    width: 357px;
    margin: 0 auto;
    gap: 21px;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    flex: none;
    flex-basis: auto;
    min-height: 68px;
    padding-inline: 20px;
    font-size: 20px;
  }

  .hero-note {
    order: 7 !important;
    width: 245px;
    margin: 21px auto 0;
    padding-top: 0;
    font-size: 13px;
    line-height: 1.55;
    text-align: left;
  }

  .panel {
    width: 100%;
    padding: 33px 22px 73px;
  }

  .section {
    width: 100%;
  }

  .section-heading {
    gap: 9px;
    margin-bottom: 18px;
  }

  .section-heading span {
    width: 5px;
    min-height: 81px;
    border-radius: 5px;
  }

  .section-heading p {
    margin-bottom: 3px;
    font-size: 16px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .lead {
    width: 322px;
    margin-inline: auto;
    font-size: 13px;
    line-height: 1.55;
  }

  .concept-cards,
  .promise-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .concept-cards {
    margin-top: 38px;
    gap: 31px;
  }

  .concept-cards article {
    min-height: 209px;
    padding: 20px 14px;
    box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 122px 1fr;
    gap: 8px 15px;
    align-items: center;
  }

  .concept-cards h3 {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 20px;
  }

  .concept-cards p {
    width: auto;
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .concept-cards img {
    grid-column: 1;
    grid-row: 2;
    width: 122px;
    height: 122px;
  }

  .menu-section {
    padding: 37px 0 59px;
    background-attachment: scroll;
  }

  .menu-inner {
    width: calc(100% - 38px);
  }

  .menu-block {
    grid-template-columns: 1fr;
    min-height: 275px;
    margin-top: 29px;
    padding: 16px 17px 19px;
    gap: 11px;
  }

  .menu-photo {
    display: grid;
    grid-template-columns: 1fr 123px;
    grid-template-rows: auto auto;
    column-gap: 20px;
    align-items: center;
    text-align: left;
  }

  .menu-photo em {
    align-self: end;
    padding-left: 31px;
    font-size: 32px;
  }

  .menu-photo strong {
    align-self: start;
    padding-left: 31px;
    font-size: 16px;
  }

  .menu-photo img {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 123px;
    height: 82px;
    border-radius: 30px;
  }

  .menu-list p {
    grid-template-columns: 1fr auto;
    gap: 0 10px;
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 14px;
    line-height: 1.35;
  }

  .menu-list b {
    color: #fdd5a5;
  }

  .menu-list span {
    grid-column: 1;
  }

  .menu-list strong {
    grid-column: 2;
    grid-row: 1;
    font-size: 15px;
  }

  .promise {
    padding-bottom: 34px;
  }

  .promise-grid {
    margin-top: 22px;
    gap: 28px;
  }

  .promise-grid > img {
    width: 302px;
    height: 300px;
    margin: 0 auto;
  }

  .promise-list {
    gap: 21px;
  }

  .promise-list article {
    min-height: 119px;
    padding: 16px 26px;
  }

  .promise-list b {
    font-size: 24px;
  }

  .promise-list h3 {
    font-size: 18px;
  }

  .promise-list p {
    font-size: 14px;
  }

  .reservation-card {
    padding: 38px 9px 28px;
  }

  .reservation {
    min-height: 785px;
    padding: 63px 0 37px;
  }

  .reservation-inner {
    width: calc(100% - 48px);
    gap: 24px;
  }

  .section-heading-light span {
    min-height: 122px;
  }

  .reservation-copy {
    gap: 29px;
    font-size: 13px;
  }

  .reservation-card {
    min-height: 347px;
  }

  .reservation-card h3 {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .reservation-card .button {
    min-height: 58px;
    margin-bottom: 28px;
    font-size: 20px;
  }

  .reservation-card p {
    font-size: 13px;
  }

  .access {
    padding: 49px 24px 50px;
  }

  .access-grid {
    margin-top: 38px;
    gap: 26px;
  }

  .shop-card {
    min-height: 288px;
    padding: 22px 31px;
  }

  .shop-card h3 {
    font-size: 18px;
  }

  dl {
    grid-template-columns: 70px 1fr;
    gap: 9px 13px;
    font-size: 14px;
  }

  .map {
    width: min(304px, 100%);
    height: 229px;
    margin: 0 auto;
    border-radius: 0;
  }

  .map-image {
    display: block;
  }

  .map-embed {
    display: none;
  }

  .parking {
    width: 304px;
    min-height: 133px;
    margin: 25px auto 0;
    padding: 13px 32px 18px;
  }

  .parking h3 {
    font-size: 16px;
  }

  .parking p {
    font-size: 13px;
  }

  .faq {
    padding-bottom: 42px;
  }

  .faq .section {
    padding-inline: 20px;
  }

  .faq-list {
    gap: 18px;
    margin-top: 37px;
  }

  .faq-list article {
    min-height: 97px;
    padding: 11px 20px;
    grid-template-columns: 23px 1fr;
    border-radius: 30px;
  }

  .faq-list b,
  .faq-list strong {
    font-size: 18px;
  }

  .faq-list h3,
  .faq-list p {
    font-size: 13px;
  }

  footer a {
    margin-left: 0;
  }

  footer {
    min-height: 157px;
    padding-top: 18px;
  }

  footer strong {
    margin-bottom: 18px;
    font-size: 16px;
  }

  footer p {
    margin-bottom: 7px;
    font-size: 11px;
  }

  footer a {
    min-width: 134px;
    min-height: 33px;
    margin-top: 22px;
    padding: 6px 16px;
    font-size: 13px;
  }
}


/* Mobile overflow correction 2026-05-22 */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero,
  main,
  section,
  footer {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav,
  .hero-grid,
  .menu-inner,
  .reservation-inner,
  .access-grid,
  .faq-list {
    max-width: 100%;
  }

  .hero-copy > p:not(.pill) {
    width: min(323px, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .open-card {
    width: min(361px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    overflow: visible;
  }

  .open-card div {
    width: auto;
    flex: 1 1 54%;
    min-width: 0;
    padding-left: 14px;
    padding-right: 8px;
  }

  .open-card img {
    width: auto;
    flex: 0 1 46%;
    min-width: 0;
  }

  .hero-actions {
    width: min(357px, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
  }

  .hero-actions .button,
  .reservation-card .button,
  .mobile-menu .button {
    max-width: 100%;
  }

  .section-heading,
  .lead,
  .concept-cards,
  .promise-list,
  .faq-list {
    width: min(346px, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading h2,
  .lead,
  .concept-cards p,
  .promise-list p,
  .reservation-copy,
  .parking p,
  .faq-list p {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .section-heading h2 {
    font-size: clamp(22px, 6.2vw, 24px);
    line-height: 1.45;
  }

  .concept-cards article,
  .promise-list article,
  .faq-list article {
    width: 100%;
    max-width: 100%;
  }

  .menu-inner {
    width: min(351px, calc(100vw - 40px));
    margin-left: auto;
    margin-right: auto;
  }

  .menu-block {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-left: 14px;
    padding-right: 14px;
  }

  .menu-photo {
    grid-template-columns: minmax(0, 1fr) minmax(112px, 38%);
    column-gap: 14px;
  }

  .menu-photo em,
  .menu-photo strong {
    padding-left: 24px;
  }

  .menu-photo img {
    width: 100%;
    min-width: 0;
  }

  .menu-list p {
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 0 8px;
    font-size: 13.5px;
  }

  .menu-list b,
  .menu-list span {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .menu-list strong {
    white-space: nowrap;
    font-size: 14px;
  }

  .promise-list article {
    padding-left: 20px;
    padding-right: 20px;
  }

  .promise-list h3 {
    font-size: 17px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .reservation-inner {
    width: min(341px, calc(100vw - 48px));
    margin-left: auto;
    margin-right: auto;
  }

  .reservation-card {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .access {
    padding-left: 20px;
    padding-right: 20px;
  }

  .shop-card,
  .map,
  .parking {
    width: min(342px, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
  }

  .parking {
    padding-left: 24px;
    padding-right: 24px;
  }
}


/* Mobile and FV refinement 2026-05-22 */
@media (max-width: 760px) {
  .open-card {
    width: min(351px, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    justify-content: center;
    align-items: center;
    gap: 0;
    overflow: visible;
  }

  .open-card div {
    width: auto;
    min-width: 0;
    min-height: 118px;
    padding: 13px 10px 14px 16px;
  }

  .open-card img {
    width: 150px;
    height: 112px;
    min-width: 0;
  }

  .open-card strong {
    display: block;
    font-size: 16px;
    line-height: 1.25;
    white-space: normal;
  }

  .open-card p {
    width: auto;
    max-width: 100%;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .promise-list h3 {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: clamp(15px, 4.35vw, 17px);
    line-height: 1.4;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .promise-list b {
    flex: 0 0 auto;
    font-size: clamp(21px, 6vw, 24px);
  }

  .reservation {
    padding-left: 0;
    padding-right: 0;
  }

  .reservation-inner {
    width: min(343px, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
    margin-inline: auto;
    transform: none;
  }

  .reservation .section-heading,
  .reservation-copy,
  .reservation-card {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading-light h2,
  .reservation-copy p {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .section-heading-light h2 {
    font-size: clamp(27px, 7.3vw, 34px);
    line-height: 1.45;
  }

  .reservation-copy {
    font-size: 13px;
    line-height: 1.65;
  }

  .reservation-card {
    box-sizing: border-box;
    padding-left: 18px;
    padding-right: 18px;
  }

  .reservation-card .button {
    width: 100%;
    min-width: 0;
    font-size: clamp(20px, 5.6vw, 24px);
    white-space: nowrap;
  }
}

@media (min-width: 1025px) {
  .hero-grid {
    grid-template-columns: minmax(580px, 0.9fr) minmax(620px, 1.1fr);
    gap: clamp(18px, 2vw, 38px);
  }

  .hero-copy {
    padding-top: clamp(52px, 5vh, 76px);
  }

  .hero-copy > p:not(.pill),
  .hero-note {
    max-width: 720px;
  }

  .hero-media {
    min-height: 760px;
  }

  .hero-image {
    width: min(980px, 100%);
    height: clamp(610px, 46vw, 720px);
  }
}


/* Mobile alignment follow-up 2026-05-22 */
@media (max-width: 760px) {
  .open-card div {
    grid-column: 1;
    grid-row: 1;
  }

  .open-card img {
    grid-column: 2;
    grid-row: 1;
  }

  .reservation-copy p {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}


/* Responsive correction follow-up 2026-05-22 late */
@media (min-width: 1025px) {
  .hero {
    overflow-x: clip;
  }

  .hero-grid {
    width: min(100%, 1320px);
    max-width: calc(100vw - 36px);
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
    gap: clamp(18px, 2.2vw, 36px);
    align-items: start;
  }

  .hero-copy {
    min-width: 0;
  }

  .pill {
    max-width: 520px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(46px, 4.2vw, 68px);
  }

  .hero-copy > p:not(.pill),
  .hero-note {
    max-width: 620px;
  }

  .hero-media {
    min-width: 0;
    min-height: 700px;
  }

  .hero-image {
    width: min(760px, 100%);
    height: clamp(540px, 44vw, 660px);
    margin-left: auto;
  }

  .open-card {
    width: min(610px, 100%);
    right: 0;
  }
}

@media (max-width: 760px) {
  .open-card {
    width: min(348px, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    grid-template-columns: minmax(0, 1fr) 132px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .open-card div {
    min-width: 0;
    min-height: 118px;
    padding: 12px 10px 13px 14px;
  }

  .open-card img {
    width: 132px;
    height: 99px;
    justify-self: end;
  }

  .open-card strong {
    font-size: 15px;
    line-height: 1.25;
  }

  .open-card p {
    width: 100%;
    max-width: 100%;
    font-size: 12.5px;
    line-height: 1.48;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .promise-list article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 8px;
    align-items: baseline;
    padding-left: 22px;
    padding-right: 22px;
  }

  .promise-list b {
    grid-column: 1;
    grid-row: 1;
    line-height: 1.2;
  }

  .promise-list h3 {
    grid-column: 2;
    grid-row: 1;
    display: block;
    min-width: 0;
    margin: 0;
    font-size: clamp(15px, 4.25vw, 16px);
    line-height: 1.3;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .promise-list p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
  }

  .reservation {
    overflow-x: hidden;
    padding: 48px 0 36px;
  }

  .reservation-inner {
    display: block;
    width: min(344px, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
    margin: 0 auto;
  }

  .reservation .section-heading {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 5px minmax(0, 1fr);
    gap: 16px;
    margin: 0 0 36px;
  }

  .reservation .section-heading > div {
    min-width: 0;
  }

  .reservation .section-heading span {
    width: 5px;
    min-height: 150px;
  }

  .reservation .section-heading p {
    font-size: 16px;
    line-height: 1.2;
  }

  .section-heading-light h2,
  .reservation .section-heading h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(25px, 6.7vw, 30px);
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .reservation-copy {
    width: 100%;
    max-width: 100%;
    margin: 0 0 34px;
    gap: 24px;
    font-size: 13px;
    line-height: 1.7;
  }

  .reservation-copy p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .reservation-card {
    width: 100%;
    max-width: 100%;
    min-height: 330px;
    padding: 36px 18px 28px;
    border-radius: 30px;
  }
}


/* Promise and tablet access alignment 2026-05-22 */
@media (max-width: 760px) {
  .promise-list article {
    align-items: start;
  }

  .promise-list b {
    line-height: 1;
  }

  .promise-list h3 {
    align-self: start;
    padding-top: 1px;
    line-height: 1.12;
  }
}

@media (min-width: 761px) and (max-width: 1024px) {
  .access {
    padding-left: 24px;
    padding-right: 24px;
  }

  .access-grid {
    width: min(680px, 100%);
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .shop-card,
  .map {
    width: 100%;
    max-width: 680px;
  }

  .parking {
    width: min(680px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
}


/* Wider tablet access centering 2026-05-22 */
@media (min-width: 761px) and (max-width: 1200px) {
  .access {
    width: min(760px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .access-grid {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .shop-card,
  .map,
  .parking {
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* Force tablet access center alignment 2026-05-22 */
@media (min-width: 761px) and (max-width: 1400px) {
  .section.access {
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px;
    padding-right: 24px;
  }

  .section.access .access-grid {
    box-sizing: border-box;
    display: grid !important;
    grid-template-columns: minmax(0, 680px) !important;
    justify-content: center !important;
    justify-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section.access .shop-card,
  .section.access .map,
  .section.access .parking {
    box-sizing: border-box;
    width: min(680px, 100%) !important;
    max-width: 680px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* Final access responsive split 2026-05-22 */
@media (min-width: 761px) and (max-width: 1199px) {
  .section.access {
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .section.access .access-grid {
    box-sizing: border-box;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: min(680px, calc(100vw - 48px)) !important;
    max-width: calc(100vw - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
    justify-items: center !important;
  }

  .section.access .shop-card,
  .section.access .map,
  .section.access .parking {
    box-sizing: border-box;
    width: min(680px, calc(100vw - 48px)) !important;
    max-width: calc(100vw - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 1200px) {
  .section.access {
    width: min(900px, calc(100% - 40px)) !important;
    max-width: min(900px, calc(100% - 40px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .section.access .access-grid {
    display: grid !important;
    grid-template-columns: 368px minmax(0, 1fr) !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: stretch !important;
    justify-items: stretch !important;
  }

  .section.access .shop-card {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .section.access .map {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .section.access .parking {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}


/* Touch tablet access centering fallback 2026-05-22 */
@media (hover: none) and (pointer: coarse) and (min-width: 761px) {
  .section.access {
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .section.access .access-grid {
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section.access .shop-card,
  .section.access .map,
  .section.access .parking {
    box-sizing: border-box;
    width: min(680px, calc(100vw - 48px)) !important;
    max-width: min(680px, calc(100vw - 48px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* Access grid item centering fallback 2026-05-22 */
.section.access .shop-card,
.section.access .map,
.section.access .parking {
  justify-self: center;
}

@media (max-width: 1199px) {
  .section.access .access-grid {
    justify-items: center !important;
  }

  .section.access .shop-card,
  .section.access .map,
  .section.access .parking {
    justify-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 1200px) {
  .section.access .shop-card,
  .section.access .map {
    justify-self: stretch !important;
  }

  .section.access .parking {
    justify-self: stretch !important;
  }
}


/* Stable desktop FV layout 2026-05-23 */
@media (min-width: 1200px) {
  .hero {
    overflow-x: clip;
    padding-inline: clamp(40px, 4vw, 96px);
  }

  .hero-grid {
    width: min(1680px, calc(100vw - 96px)) !important;
    max-width: calc(100vw - 96px) !important;
    grid-template-columns: minmax(620px, 0.92fr) minmax(560px, 1fr) !important;
    gap: clamp(28px, 2.4vw, 56px) !important;
    align-items: start;
  }

  .hero-copy {
    min-width: 0;
    padding-top: clamp(48px, 5vh, 76px);
  }

  .pill {
    max-width: 600px;
    font-size: clamp(18px, 1.35vw, 22px);
  }

  .hero h1 {
    width: min(760px, 100%);
    max-width: 760px !important;
    margin-bottom: 28px;
    font-size: clamp(50px, 3.35vw, 64px) !important;
    line-height: 1.28;
    letter-spacing: 0;
  }

  .hero-copy > p:not(.pill) {
    max-width: 720px !important;
    font-size: clamp(16px, 1.05vw, 18px);
    line-height: 1.65;
  }

  .hero-actions {
    width: min(720px, 100%) !important;
    gap: clamp(16px, 1.6vw, 28px);
    margin-top: clamp(52px, 6vh, 76px);
  }

  .hero-actions .button {
    min-height: 58px;
    padding-inline: clamp(20px, 1.6vw, 30px) !important;
    font-size: clamp(18px, 1.35vw, 22px) !important;
    white-space: nowrap;
  }

  .hero-note {
    max-width: 720px !important;
    padding-top: clamp(52px, 6vh, 72px);
    font-size: clamp(16px, 1.05vw, 18px);
  }

  .hero-media {
    min-width: 0;
    min-height: clamp(820px, 52vw, 900px) !important;
  }

  .hero-image {
    width: min(780px, 100%) !important;
    height: clamp(560px, 40vw, 660px) !important;
    margin-left: auto;
    border-radius: 224px;
  }

  .open-card {
    width: min(610px, 100%) !important;
    right: 0;
    bottom: 0 !important;
    align-items: center;
  }

  .open-card img {
    width: min(260px, 43%) !important;
    height: clamp(178px, 13vw, 210px) !important;
  }

  .open-card div {
    width: min(350px, 57%) !important;
    min-height: clamp(160px, 11vw, 186px) !important;
    padding: clamp(22px, 1.7vw, 30px) 18px clamp(20px, 1.5vw, 28px) clamp(28px, 2vw, 40px) !important;
  }

  .open-card strong {
    font-size: clamp(22px, 1.65vw, 26px) !important;
    white-space: nowrap;
  }

  .open-card p {
    font-size: clamp(15px, 1.1vw, 18px) !important;
    line-height: 1.55;
  }
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .hero-grid {
    width: min(1320px, calc(100vw - 64px)) !important;
    max-width: calc(100vw - 64px) !important;
    grid-template-columns: minmax(540px, 0.92fr) minmax(500px, 1fr) !important;
  }

  .hero h1 {
    max-width: 660px !important;
    font-size: clamp(46px, 3.6vw, 56px) !important;
  }

  .hero-actions {
    width: min(660px, 100%) !important;
  }

  .hero-actions .button {
    font-size: clamp(17px, 1.35vw, 20px) !important;
  }
}


/* Desktop FV left spacing restore 2026-05-23 */
@media (min-width: 1200px) {
  .hero-copy {
    padding-top: clamp(72px, 7vh, 104px) !important;
  }

  .pill {
    margin-bottom: clamp(28px, 3vh, 40px) !important;
  }

  .hero h1 {
    margin-bottom: clamp(44px, 5vh, 68px) !important;
  }

  .hero-copy > p:not(.pill) {
    margin-bottom: 0 !important;
  }

  .hero-actions {
    margin-top: clamp(58px, 6.5vh, 84px) !important;
  }

  .hero-note {
    padding-top: clamp(58px, 6.5vh, 84px) !important;
  }
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .hero-copy {
    padding-top: clamp(62px, 6vh, 84px) !important;
  }

  .hero h1 {
    margin-bottom: clamp(34px, 4vh, 52px) !important;
  }

  .hero-actions {
    margin-top: clamp(48px, 5.5vh, 66px) !important;
  }

  .hero-note {
    padding-top: clamp(48px, 5.5vh, 66px) !important;
  }
}
