:root {
  --white: #fff;
  --cream: #fff8ee;
  --paper: #fffdf8;
  --mint: #9bd8cc;
  --mint-dark: #3aa997;
  --gold: #c9943f;
  --caramel: #a9652b;
  --espresso: #24140e;
  --cocoa: #4a2c20;
  --rose: #8e2d3d;
  --muted: #6f5a4b;
  --line: rgba(36, 20, 14, 0.14);
  --shadow: 0 18px 45px rgba(36, 20, 14, 0.16);
  --shadow-strong: 0 30px 80px rgba(36, 20, 14, 0.22);
  --radius: 8px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  color: var(--espresso);
  background:
    linear-gradient(90deg, rgba(155, 216, 204, 0.16), transparent 18%, transparent 82%, rgba(201, 148, 63, 0.12)),
    var(--cream);
  font-family: "Manrope", "Segoe UI", Roboto, Arial, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0;
  overflow-x: hidden;
}

:lang(ar),
.site-ar {
  font-family: "Noto Kufi Arabic", "Tajawal", "Cairo", "Segoe UI", Tahoma, Arial, system-ui, sans-serif;
}

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

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

button {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(58, 169, 151, 0.5);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  inset-block-start: 1rem;
  inset-inline-start: 1rem;
  z-index: 200;
  transform: translateY(-160%);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--white);
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell,
.header-inner,
.footer-inner,
.footer-bottom {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.top-ribbon {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.42rem 1rem;
  background: var(--mint);
  color: var(--espresso);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 850;
}

.top-ribbon a {
  border-bottom: 1px solid currentColor;
  font-weight: 950;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(36, 20, 14, 0.12);
}

.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  direction: ltr;
  min-height: 58px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid var(--mint);
  background: var(--espresso);
  color: var(--cream);
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(36, 20, 14, 0.18);
}

.brand-text {
  min-width: 0;
  display: grid;
  gap: 0.16rem;
  line-height: 1;
  align-content: center;
}

.site-ar .brand-text {
  direction: rtl;
  text-align: right;
}

.site-en .brand-text {
  direction: ltr;
  text-align: left;
}

.brand-text strong {
  color: var(--espresso);
  font-size: 1.06rem;
  font-weight: 950;
  line-height: 1.08;
  white-space: nowrap;
}

.site-ar .brand-text strong {
  font-family: "Aref Ruqaa", "Noto Kufi Arabic", serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.05;
  white-space: nowrap;
}

.main-nav {
  position: fixed;
  inset-block-start: 130px;
  inset-inline: 1rem;
  display: none;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.main-nav.is-open {
  display: grid;
  gap: 0.18rem;
}

.main-nav a {
  display: block;
  padding: 0.68rem 0.8rem;
  border-radius: var(--radius);
  color: var(--espresso);
  font-size: 0.92rem;
  font-weight: 850;
}

.main-nav a:hover {
  background: var(--cream);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.language-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--espresso);
  font-size: 0.85rem;
  font-weight: 900;
  white-space: nowrap;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--espresso);
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 0.78rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--espresso);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(36, 20, 14, 0.22);
}

.btn-secondary {
  border-color: rgba(36, 20, 14, 0.22);
  background: var(--white);
  color: var(--espresso);
}

.btn-small {
  min-height: 40px;
  padding: 0.52rem 0.9rem;
  font-size: 0.84rem;
}

.site-header .btn-small {
  display: none;
}

.hero {
  position: relative;
  min-height: 660px;
  isolation: isolate;
  background: var(--espresso);
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 115px;
  z-index: 1;
  background: var(--cream);
  clip-path: ellipse(75% 72% at 50% 100%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(255, 255, 255, 0.12) 70%),
    linear-gradient(180deg, rgba(36, 20, 14, 0.1), rgba(36, 20, 14, 0.22));
}

.site-ar .hero-photo::after {
  background:
    linear-gradient(270deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(255, 255, 255, 0.12) 70%),
    linear-gradient(180deg, rgba(36, 20, 14, 0.1), rgba(36, 20, 14, 0.22));
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 2rem));
  min-height: 520px;
  display: grid;
  align-content: center;
  margin-inline: auto;
  padding: 2.4rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 0 96px 0 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 238, 0.55)),
    rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 70px rgba(36, 20, 14, 0.14);
}

.site-en .hero-card {
  margin-inline-start: max(1rem, calc((100vw - var(--max)) / 2));
  margin-inline-end: auto;
}

.site-ar .hero-card {
  margin-inline-end: max(1rem, calc((100vw - var(--max)) / 2));
  margin-inline-start: auto;
  border-radius: 96px 0 0 0;
}

.hero-card::before {
  content: "";
  width: 112px;
  height: 3px;
  margin-block-end: 1rem;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--mint-dark), var(--gold), var(--rose));
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--rose);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-ar .eyebrow {
  text-transform: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--espresso);
  line-height: 1.1;
  letter-spacing: 0;
}

.site-en h1,
.site-en h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

.site-ar h1,
.site-ar h2 {
  font-family: "Aref Ruqaa", "Noto Kufi Arabic", serif;
  line-height: 1.23;
  font-weight: 700;
}

h1 {
  font-size: 2.55rem;
  font-weight: 950;
}

h2 {
  font-size: 2.1rem;
  font-weight: 950;
}

h3 {
  font-size: 1.08rem;
  font-weight: 950;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-card p:not(.eyebrow) {
  max-width: 560px;
  margin-block-start: 1rem;
  color: var(--cocoa);
  font-size: 1.06rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block-start: 1.45rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.35rem 0 0;
  list-style: none;
}

.hero-badges li,
.tag {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--espresso);
  font-size: 0.84rem;
  font-weight: 900;
}

.promo-strip {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 1rem;
  margin-block-start: -3.5rem;
  padding-block-end: 2.8rem;
}

.promo-tile,
.signature-card,
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.promo-tile {
  min-height: 245px;
  display: grid;
  align-content: end;
  padding: 1rem;
  color: var(--white);
  border-radius: 46px 8px 8px 8px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

[dir="rtl"] .promo-tile {
  border-radius: 8px 46px 8px 8px;
}

.promo-tile:nth-child(even) {
  transform: translateY(22px);
}

.promo-tile:hover,
.signature-card:hover,
.gallery-grid figure:hover,
.feature-card:hover,
.mini-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.promo-tile:nth-child(even):hover {
  transform: translateY(16px);
}

.promo-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.promo-tile:hover img {
  transform: scale(1.04);
}

.promo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(36, 20, 14, 0.74));
}

.promo-tile span,
.promo-tile strong {
  position: relative;
  z-index: 1;
}

.promo-tile span {
  width: fit-content;
  margin-block-end: 0.45rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--espresso);
  font-size: 0.8rem;
  font-weight: 950;
}

.promo-tile strong {
  max-width: 330px;
  font-size: 1.35rem;
  line-height: 1.16;
}

.section-block {
  padding-block: 3.2rem;
}

.section-heading {
  max-width: 720px;
  position: relative;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  position: relative;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 82px;
  height: 3px;
  margin-block-start: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint-dark), var(--gold));
}

.section-heading.centered h2::after {
  margin-inline: auto;
}

.section-heading h2 + p,
.section-heading p + .btn,
.section-heading p + .hours-card,
.section-heading p + a {
  margin-block-start: 1rem;
}

.split-layout,
.digital-layout,
.location-layout,
.reservation-panel {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.feature-grid,
.clean-grid,
.signature-grid,
.reservation-grid,
.event-grid,
.review-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.mini-card,
.review-card,
.hours-card,
.menu-item,
.reservation-panel,
.phone-mockup {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.feature-card,
.mini-card,
.review-card {
  padding: 1.05rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-card span {
  display: block;
  margin-block-end: 0.65rem;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 950;
}

.feature-card h3,
.mini-card h3,
.review-card h3,
.signature-card h3 {
  margin-block-end: 0.42rem;
}

.calm-section {
  width: min(1420px, calc(100% - 2rem));
  margin-inline: auto;
  padding-inline: 1rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.76), transparent 28%),
    linear-gradient(135deg, rgba(155, 216, 204, 0.46), rgba(255, 255, 255, 0.76) 50%, rgba(201, 148, 63, 0.16)),
    var(--white);
  box-shadow: inset 0 0 0 1px rgba(36, 20, 14, 0.06);
}

.clean-grid,
.signature-grid,
.review-grid {
  margin-block-start: 1.35rem;
}

.menu-tabs {
  display: grid;
  gap: 0.64rem;
  margin-block: 1.45rem 1rem;
}

.menu-tab {
  min-height: 52px;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--espresso);
  font-weight: 950;
  line-height: 1.25;
}

.menu-tab:hover,
.menu-tab.is-active {
  background: var(--mint-dark);
  color: var(--white);
}

.menu-panels {
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.menu-panel {
  display: grid;
  gap: 0.75rem;
}

.menu-item {
  display: grid;
  gap: 0.65rem;
  align-items: center;
  padding: 0.95rem;
}

.menu-item h3 {
  margin-block-end: 0.2rem;
}

.menu-item span {
  justify-self: start;
  min-height: 31px;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 950;
  white-space: nowrap;
}

.signature-card {
  transition: transform 160ms ease, box-shadow 160ms ease;
  border-radius: 44px 8px 8px 8px;
}

[dir="rtl"] .signature-card {
  border-radius: 8px 44px 8px 8px;
}

.signature-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: inherit;
  border-end-end-radius: 0;
  border-end-start-radius: 0;
}

.signature-card .tag,
.signature-card h3,
.signature-card p {
  margin-inline: 1rem;
}

.signature-card .tag {
  margin-block: 1rem 0.7rem;
}

.signature-card p {
  padding-block-end: 1rem;
}

.gallery-grid {
  margin-block-start: 1.35rem;
}

.gallery-grid figure {
  margin: 0;
  transition: transform 160ms ease, box-shadow 160ms ease;
  border-radius: 8px 52px 8px 8px;
}

[dir="rtl"] .gallery-grid figure {
  border-radius: 52px 8px 8px 8px;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--espresso);
  font-weight: 950;
}

.reservation-panel {
  padding: 1.1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(155, 216, 204, 0.2)),
    var(--white);
}

.phone-mockup {
  width: min(100%, 330px);
  justify-self: center;
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
  border-radius: 28px;
  background: var(--espresso);
  color: var(--white);
}

.phone-mockup h3,
.phone-mockup p,
.phone-mockup span,
.phone-mockup small {
  color: var(--white);
}

.phone-mockup p {
  padding: 0.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.phone-mockup a {
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  background: var(--mint);
  color: var(--espresso);
  font-weight: 950;
}

.hours-card {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
}

.map-placeholder {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(155, 216, 204, 0.42), rgba(255, 248, 238, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 35px, rgba(36, 20, 14, 0.055) 35px 36px);
  text-align: center;
  box-shadow: var(--shadow);
}

.map-placeholder p {
  max-width: 320px;
  color: var(--espresso);
  font-weight: 950;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(36, 20, 14, 0.96), rgba(74, 44, 32, 0.92)),
    var(--espresso);
}

.footer-inner {
  display: grid;
  gap: 1.2rem;
  padding-block: 2rem 1.2rem;
}

.footer-brand {
  margin-block-end: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a,
.footer-bottom a {
  color: var(--cream);
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-block: 1rem 1.3rem;
  border-top: 1px solid rgba(255, 248, 238, 0.16);
  color: rgba(255, 248, 238, 0.74);
  font-size: 0.9rem;
}

.site-footer .brand-text strong,
.site-footer .brand-text span,
.site-footer .fine-print {
  color: var(--cream);
}

.fine-print {
  color: var(--muted);
  font-size: 0.88rem;
}

.centered-text {
  text-align: center;
  margin-block-start: 1rem;
}

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

body.reveal-ready .reveal.is-visible,
.reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 560px) {
  .site-header .btn-small {
    display: inline-flex;
  }

  .promo-strip,
  .clean-grid,
  .reservation-grid,
  .event-grid,
  .review-grid,
  .gallery-grid,
  .signature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .menu-item {
    grid-template-columns: 1fr auto;
  }

  .menu-item span {
    justify-self: end;
  }

  [dir="rtl"] .menu-item span {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .top-ribbon {
    flex-direction: column;
    gap: 0.1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 78px;
    grid-template-columns: 1fr auto auto;
    gap: 0.5rem;
  }

  .brand {
    gap: 0.48rem;
    min-height: 48px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .site-ar .brand-text strong {
    font-size: 0.96rem;
    line-height: 1.32;
  }

  .brand-text span,
  .language-link {
    font-size: 0.72rem;
  }

  .brand-text strong,
  .brand-text span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    inset-block-start: 116px;
  }

  .hero {
    min-height: auto;
    padding-block-end: 1.4rem;
    background: var(--cream);
  }

  .hero::after {
    display: none;
  }

  .hero-photo {
    position: relative;
    height: 330px;
    inset: auto;
    z-index: 0;
  }

  .hero-photo::after,
  .site-ar .hero-photo::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(36, 20, 14, 0.34) 100%),
      linear-gradient(180deg, rgba(36, 20, 14, 0.05), rgba(36, 20, 14, 0.2));
  }

  .hero-photo img {
    height: 100%;
  }

  .hero-card,
  .site-en .hero-card,
  .site-ar .hero-card {
    width: calc(100% - 2rem);
    min-height: auto;
    margin: -58px auto 0;
    padding: 1.5rem 1.35rem 1.65rem;
    border-radius: 44px 44px 0 0;
  }

  h1,
  .site-ar h1,
  .site-en h1 {
    font-size: 2.1rem;
  }
}

@media (min-width: 760px) {
  .section-shell,
  .header-inner,
  .footer-inner,
  .footer-bottom {
    width: min(var(--max), calc(100% - 3rem));
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-card p:not(.eyebrow) {
    font-size: 1.16rem;
  }

  .split-layout,
  .digital-layout,
  .location-layout,
  .reservation-panel {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 2rem;
  }

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

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

  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.18rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .main-nav a {
    padding: 0.44rem 0.6rem;
    font-size: 0.88rem;
  }

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

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

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

@media (min-width: 1160px) {
  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 3.85rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
