:root {
  --color-bg: #f6f8fe;
  --color-surface: #ffffff;
  --color-surface-soft: #eef3ff;
  --color-text: #1d2740;
  --color-text-muted: #62708a;
  --color-primary: #2e5eaa;
  --color-accent: #ff8f3d;
  --color-border: rgba(31, 42, 68, 0.09);
  --shadow-soft: 0 26px 70px rgba(22, 35, 63, 0.11);
  --shadow-card: 0 18px 44px rgba(22, 35, 63, 0.09);
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(46, 94, 170, 0.12), transparent 22%),
    linear-gradient(180deg, #f9fbff 0%, #f4f7fd 100%);
}

main {
  display: block;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: #8a96ad;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.55rem;
  border-radius: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.primary-button {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 18px 34px rgba(46, 94, 170, 0.22);
}

.secondary-button {
  color: var(--color-primary);
  background: #eaf2ff;
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button:focus-visible,
.secondary-button:focus-visible,
.form-field:focus-within,
.form-field-wide:focus-within {
  outline: 3px solid rgba(100, 116, 255, 0.24);
  outline-offset: 2px;
}

.eyebrow {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section-heading {
  /* max-width: 760px; */
  margin: 0 auto 2.4rem;
  text-align: center;
}

.hotel-copy,
.tip-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-heading h2,
.quick-answer-copy h2,
.hotel-copy h2,
.enquiry-copy h2,
.cta-box h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-heading p:last-child,
.hotel-copy p,
.enquiry-copy p,
.city-card-body p,
.feature-card p,
.glance-card p,
.tip-card p,
.faq-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.enquiry-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.quick-answer-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-section {
  --hero-progress: 0;
  --hero-bg-shift: 0px;
  --hero-bg-scale: 1;
  --hero-center-y: 0px;
  --hero-center-scale: 1;
  --hero-left-x: 0px;
  --hero-right-x: 0px;
  --hero-side-blur: 0px;
  --hero-side-opacity: 1;
  --hero-rating-y: 0px;
  --hero-rating-opacity: 1;
  position: relative;
  height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: -4%;
  background:
    linear-gradient(90deg, rgba(17, 11, 9, 0.72) 0%, rgba(27, 18, 15, 0.45) 38%, rgba(18, 11, 9, 0.38) 62%, rgba(17, 11, 9, 0.68) 100%),
    url("/assets/images/blue-1.jpg") center / cover no-repeat;
  transform: translate3d(0, var(--hero-bg-shift), 0) scale(var(--hero-bg-scale));
  transform-origin: center center;
  will-change: transform;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 143, 61, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%, transparent 74%, rgba(0, 0, 0, 0.24));
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 16%, transparent 84%, rgba(0, 0, 0, 0.3));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 1280px);
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr minmax(160px, 280px) 1fr;
  align-items: start;
  gap: 1.5rem;
  overflow: hidden;
  transform: translateZ(0);
}

.hero-side {
  max-width: 420px;
  will-change: transform, opacity, filter;
}

.hero-left {
  justify-self: start;
  margin-top: 8rem;
  transform: translate3d(var(--hero-left-x), calc(var(--hero-progress) * -20px), 0);
  opacity: var(--hero-side-opacity);
}

.hero-right {
  justify-self: end;
  text-align: right;
  align-self: flex-end;
  margin-bottom: 4rem;
  transform: translate3d(var(--hero-right-x), calc(var(--hero-progress) * 24px), 0);
  opacity: var(--hero-side-opacity);
}

.hero-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-side h1,
.hero-side h2 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-copy {
  margin: 0.9rem 0 0;
  font-size: 1.4rem;
  line-height: 1.05;
  font-weight: 600;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8rem;
  height: 60vh;
  padding: 2.9rem 0 0.2rem;
  margin-top: 8rem;
  transform: translate3d(0, var(--hero-center-y), 0) scale(var(--hero-center-scale));
}

.hero-center-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-bismillah {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-logo {
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(-2.4rem);
}

.hero-button {
  background: #fff;
  color: #181818;
  min-height: 46px;
  padding-inline: 1.35rem;
  box-shadow: none;
}

.google-rating {
  position: absolute;
  left: 0;
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
}

.google-rating img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.google-rating span {
  color: #ffbf43;
  letter-spacing: 0.14em;
}

section:not(.hero-section) {
  padding: 5rem 0;
}

.quick-answer-section,
.host-overview-section,
.hotel-section,
.faq-section,
.cta-section {
  background: #fff;
}

.quick-answer-layout,
.hotel-layout,
.enquiry-layout,
.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 2rem;
  align-items: start;
}

.quick-answer-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.quick-answer-visual {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.quick-answer-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-answer-badge {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  background: rgba(10, 25, 52, 0.84);
  backdrop-filter: blur(12px);
  color: #fff;
  text-align: center;
}

.quick-answer-badge strong,
.quick-answer-badge span,
.hotel-point strong,
.hotel-point span,
.contact-chip strong,
.contact-chip span,
.action-card strong,
.action-card span {
  display: block;
}

.why-book-section,
.top-cities-section,
.enquiry-section {
  background:
    radial-gradient(circle at top right, rgba(255, 143, 61, 0.12), transparent 18%),
    linear-gradient(180deg, #f7f9fe 0%, #eef4ff 100%);
}

.why-book-grid,
.glance-grid,
.tips-grid,
.faq-grid,
.top-city-grid {
  display: grid;
  gap: 1.35rem;
}

.why-book-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glance-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.feature-card,
.glance-card,
.tip-card,
.faq-card,
.country-card,
.city-card,
.enquiry-form-wrap {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.feature-card,
.glance-card,
.tip-card,
.faq-card,
.country-card {
  padding: 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.contact-strip,
.enquiry-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.enquiry-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-chip,
.action-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  background: #2e5eaa;
  color: #fff;
}

.glance-card {
  text-align: center;
}

.glance-value {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 800;
  color: #2e5eaa;
}

.host-country-grid {
  display: grid;
  grid-template-columns: 0.75fr 0.85fr 1.4fr;
  gap: 1.35rem;
}

.country-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 246, 255, 0.92) 100%);
}

.country-card-top h3,
.city-card-body h3,
.feature-card h3,
.glance-card h3,
.tip-card h3,
.faq-card h3 {
  margin: 0.5rem 0 0.7rem;
  font-size: 1.25rem;
}

.country-flag {
  display: inline-flex;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.city-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.city-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.city-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent);
}

.city-list-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.top-city-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.city-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
}

.city-card img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.city-card-body {
  padding: 1.35rem;
}

.hotel-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
}

.hotel-point {
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: #f4f7ff;
  border: 1px solid rgba(46, 94, 170, 0.1);
}

.hotel-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hotel-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.hotel-gallery-grid img:first-child {
  grid-column: 1 / -1;
  min-height: 290px;
}

.tips-section {
  background: linear-gradient(180deg, #0b1730 0%, #102242 100%);
  color: #fff;
}

.tips-section .section-heading h2,
.tips-section .tip-card h3 {
  color: #fff;
}

.tips-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tip-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.tip-card p,
.tips-section .section-heading p:last-child,
.tips-section .eyebrow,
.cta-section .eyebrow,
.cta-box p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.tip-number {
  display: inline-flex;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.enquiry-form-wrap,
.cta-box {
  padding: 1.7rem;
  border-radius: 30px;
  background: #fff;
}

.enquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field,
.form-field-wide {
  display: grid;
  gap: 0.5rem;
}

.form-field label,
.form-field-wide label {
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field-wide textarea {
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(31, 42, 68, 0.12);
  border-radius: 16px;
  background: #f8fbff;
  color: var(--color-text);
}

.form-field-wide {
  margin-top: 1rem;
}

.form-field-wide textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin: 1rem 0 1.2rem;
  color: var(--color-text-muted);
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-card a {
  color: var(--color-primary);
  font-weight: 700;
}

.cta-section {
  padding-top: 0;
}

.cta-box {
  grid-template-columns: minmax(0, 1fr) auto;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.cta-actions {
  justify-content: flex-end;
}

.cta-actions .secondary-button {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.reveal-up {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 1.5rem;
    height: auto;
    min-height: 100svh;
    padding: 8.5rem 0 6rem;
  }

  .hero-left,
  .hero-right {
    margin: 0;
    max-width: 760px;
    justify-self: center;
    text-align: center;
  }

  .hero-center {
    order: -1;
    height: auto;
    gap: 2rem;
    margin: 0;
    padding-top: 0;
  }

  .google-rating {
    position: static;
    margin-top: 1rem;
  }

  .quick-answer-layout,
  .hotel-layout,
  .enquiry-layout,
  .cta-box,
  .host-country-grid,
  .top-city-grid,
  .faq-grid,
  .tips-grid,
  .why-book-grid,
  .glance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-answer-layout,
  .hotel-layout,
  .enquiry-layout,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  section:not(.hero-section) {
    padding: 4rem 0;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

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

  .hero-content {
    width: min(calc(100% - 1.25rem), 1280px);
    padding: 7.7rem 0 4.5rem;
  }

  .hero-side h1,
  .hero-side h2 {
    font-size: 2.5rem;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-bismillah {
    font-size: 1rem;
    text-align: center;
  }

  .hero-logo {
    font-size: 2rem;
    transform: none;
  }

  .quick-answer-visual {
    min-height: 320px;
  }

  .contact-strip,
  .enquiry-options,
  .host-country-grid,
  .top-city-grid,
  .faq-grid,
  .tips-grid,
  .why-book-grid,
  .glance-grid,
  .enquiry-form-grid,
  .city-list-wide,
  .hotel-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hotel-gallery-grid img:first-child {
    grid-column: auto;
  }

  .feature-card,
  .glance-card,
  .tip-card,
  .faq-card,
  .country-card,
  .city-card,
  .enquiry-form-wrap,
  .quick-answer-visual,
  .cta-box {
    border-radius: 22px;
  }

  .quick-answer-actions,
  .cta-actions {
    flex-direction: column;
  }

  .quick-answer-actions a,
  .cta-actions a {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .hero-section {
    height: 100svh;
    min-height: 100svh;
  }

  .hero-content {
    height: 100svh;
    min-height: 100svh;
    padding-top: 6.6rem;
    padding-bottom: 2rem;
    align-content: space-between;
    justify-items: stretch;
    text-align: initial;
  }

  .hero-left {
    justify-self: start;
    text-align: left;
    max-width: 100%;
  }

  .hero-right {
    justify-self: end;
    text-align: right;
    max-width: 100%;
  }

  .hero-side h1,
  .hero-side h2 {
    font-size: clamp(2rem, 8.2vw, 2.55rem);
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 0.96rem;
    line-height: 1.38;
    max-width: 23ch;
  }

  .hero-center {
    gap: 4rem;
    margin-top: 0.5rem;
  }

  .hero-bismillah {
    font-size: 0.94rem;
    margin-bottom: 0.5rem;
  }

  .hero-logo {
    font-size: 1.7rem;
  }

  .google-rating {
    position: absolute;
    left: 0;
    bottom: 1.1rem;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .hero-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    align-items: center;
    text-align: center;
    gap: 1.1rem;
    padding-top: 6rem;
    padding-bottom: 1.35rem;
  }

  .hero-left {
    justify-self: center;
    text-align: center;
    width: min(100%, 24rem);
    max-width: 100%;
  }

  .hero-right {
    display: none;
  }

  .hero-copy {
    max-width: 24ch;
    margin-inline: auto;
  }

  .google-rating {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 0.9rem;
    padding-top: 6rem;
    padding-bottom: 1.35rem;
  }

  .hero-left,
  .hero-right {
    width: min(100%, 23rem);
    margin: 0;
    padding: 1rem 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(11, 20, 39, 0.44), rgba(11, 20, 39, 0.2));
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  }

  .hero-kicker {
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .hero-side h1,
  .hero-side h2 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    line-height: 1;
  }

  .hero-copy {
    margin-top: 0.55rem;
    font-size: 0.92rem;
    line-height: 1.35;
    max-width: none;
  }

  .hero-center {
    width: 100%;
    gap: 1.5rem;
    height: auto;
    min-height: 0;
    padding: 0;
    margin-top: 0.5rem;
  }

  .hero-center-stack {
    gap: 0.45rem;
    padding: 1rem 1.1rem;
    border-radius: 28px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
  }

  .hero-bismillah {
    font-size: 0.88rem;
    margin-bottom: 0;
  }

  .hero-logo {
    font-size: 1.55rem;
    letter-spacing: 0.16em;
  }

  .hero-button {
    min-height: 48px;
    width: min(100%, 12rem);
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.16);
  }

  .google-rating {
    left: 50%;
    bottom: 0.7rem;
    transform: translateX(-50%);
    width: fit-content;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(7, 17, 35, 0.45);
    backdrop-filter: blur(10px);
    white-space: nowrap;
  }

  .google-rating strong,
  .google-rating span {
    font-size: 0.82rem;
  }
}

@media (max-width: 760px) {
  .hero-section {
    height: auto;
    min-height: 100svh;
  }

  .hero-content {
    width: min(calc(100% - 1.25rem), 1280px);
    min-height: 100svh;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "center";
    align-content: start;
    justify-items: center;
    gap: 10rem;
    padding-top: 9rem;
    padding-bottom: 2rem;
    text-align: center;
  }

  .hero-left {
    grid-area: left;
    width: min(100%, 24rem);
    max-width: 100%;
    justify-self: center;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    text-align: center;
  }

  .hero-right,
  .google-rating {
    display: none;
  }

  .hero-side h1,
  .hero-side h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 0.98;
  }

  .hero-kicker {
    margin-bottom: 0.55rem;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .hero-copy {
    margin-inline: auto;
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .hero-center {
    grid-area: center;
    width: 100%;
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
    transform: none;
  }

  .hero-center-stack {
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
  }

  .hero-logo {
    font-size: 1.9rem;
    letter-spacing: 0.14em;
    transform: none;
  }

  .hero-button {
    width: min(100%, 12rem);
    min-height: 48px;
    border-radius: 999px;
  }
}
