:root {
  --green-950: #12200f;
  --green-900: #192a13;
  --green-800: #243f27;
  --gold-500: #cd9e48;
  --gold-400: #e1bd71;
  --curry: #d98926;
  --cream: #fff8ec;
  --cream-2: #f6e6cd;
  --white: #ffffff;
  --ink: #161816;
  --muted: #665d50;
  --line: rgba(25, 42, 19, 0.14);
  --shadow: 0 22px 70px rgba(21, 18, 12, 0.18);
  --radius: 8px;
  --container: min(1120px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(205, 158, 72, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf1 0%, #f6e8d0 48%, #fff8ec 100%);
  background-size: 44px 44px, auto;
  overflow-x: hidden;
  padding-bottom: 74px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-400);
  font-weight: 800;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0 10px;
  background: linear-gradient(135deg, rgba(18, 32, 15, 0.96), rgba(36, 63, 39, 0.94));
  border-bottom: 1px solid rgba(225, 189, 113, 0.26);
  box-shadow: 0 18px 50px rgba(8, 12, 7, 0.22);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  width: var(--container);
  min-height: 62px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(120px, 170px) 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.logo-float {
  position: absolute;
  top: -34px;
  left: 0;
  width: clamp(120px, 15vw, 168px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 18px 42px rgba(8, 12, 7, 0.28);
  border: 4px solid var(--gold-500);
  overflow: hidden;
  z-index: 2;
  transform: translateZ(0);
}

.logo-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-copy {
  grid-column: 2;
  display: grid;
  gap: 2px;
  color: var(--cream);
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-line {
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  gap: 8px;
}

.desktop-nav a,
.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 800;
}

.desktop-nav a:hover,
.header-call:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header-call {
  color: var(--green-950);
  background: var(--gold-400);
}

.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(88px, 12vw, 132px) max(16px, calc((100vw - 1120px) / 2)) clamp(74px, 10vw, 112px);
  color: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(110deg, rgba(18, 32, 15, 0.9), rgba(18, 32, 15, 0.68) 42%, rgba(18, 32, 15, 0.32)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.46)),
    url("../images/hero-akni.jpg") center / cover;
  transform: scale(1.04);
  animation: heroBreath 18s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(102deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 52px),
    linear-gradient(90deg, rgba(205, 158, 72, 0.2), transparent 34%, rgba(217, 137, 38, 0.12));
  mix-blend-mode: soft-light;
  animation: grainSlide 16s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 150px;
  background: linear-gradient(180deg, transparent, var(--cream));
}

.steam {
  position: absolute;
  z-index: -1;
  width: 2px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  filter: blur(1px);
  opacity: 0.55;
  animation: steamRise 6s ease-in-out infinite;
}

.steam-one {
  top: 22%;
  right: 34%;
}

.steam-two {
  top: 28%;
  right: 28%;
  animation-delay: 1.7s;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-500);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.offer-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 12vw, 8.6rem);
  text-wrap: balance;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 248, 236, 0.92);
  font-size: clamp(1.08rem, 2.2vw, 1.42rem);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn span {
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
}

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

.btn-primary {
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-400), var(--curry));
  box-shadow: 0 16px 34px rgba(205, 158, 72, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(205, 158, 72, 0.42);
}

.btn-light {
  color: var(--green-950);
  background: var(--cream);
}

.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(255, 248, 236, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  width: min(100%, 420px);
  justify-self: end;
  border: 1px solid rgba(255, 248, 236, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 248, 236, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.hero-card-copy {
  padding: 20px;
  display: grid;
  gap: 8px;
  background: linear-gradient(180deg, rgba(18, 32, 15, 0.72), rgba(18, 32, 15, 0.94));
}

.hero-card-copy span {
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card-copy strong {
  color: var(--cream);
  font-size: 1.12rem;
  line-height: 1.35;
}

.hero-card-copy small {
  color: rgba(255, 248, 236, 0.75);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: rgba(255, 248, 236, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 46px;
  margin: 10px auto 0;
  background: linear-gradient(var(--gold-400), transparent);
  animation: cueDrop 1.6s ease-in-out infinite;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.intro-band,
.gallery-section,
.owner-offer {
  background: var(--cream);
}

.menu-section {
  background: linear-gradient(180deg, var(--cream), #f0dcc0);
}

.services-band,
.trust-band {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(18, 32, 15, 0.97), rgba(36, 63, 39, 0.94)),
    repeating-linear-gradient(90deg, rgba(225, 189, 113, 0.08) 0 1px, transparent 1px 58px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(30px, 7vw, 78px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.offer-card h2 {
  font-size: clamp(2.3rem, 5.4vw, 5.4rem);
  color: var(--green-950);
}

.services-band h2,
.trust-band h2 {
  color: var(--cream);
}

.section-copy p,
.section-heading p,
.contact-copy p,
.offer-card p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.services-band .section-heading p,
.trust-band .section-heading p {
  color: rgba(255, 248, 236, 0.72);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.stats-grid,
.trust-grid,
.service-grid {
  display: grid;
  gap: 14px;
}

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

.stat-card,
.service-card,
.trust-card,
.menu-card,
.special-card,
.contact-form,
.offer-card {
  border-radius: var(--radius);
}

.stat-card {
  min-height: 168px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 20px;
  color: var(--cream);
  background: linear-gradient(150deg, var(--green-900), var(--green-800));
  box-shadow: var(--shadow);
}

.stat-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
}

.stat-card span {
  color: var(--gold-400);
  font-weight: 800;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-card,
.special-card {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 44px rgba(38, 28, 16, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.menu-card:hover,
.special-card:hover,
.service-card:hover,
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(38, 28, 16, 0.16);
}

.menu-card-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.dish-mark,
.service-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--gold-400);
  font-weight: 950;
}

.menu-card h3,
.special-card h3,
.service-card h3 {
  margin: 0 0 8px;
  color: var(--green-950);
  font-size: 1.35rem;
}

.menu-card p,
.special-card p,
.service-card p,
.trust-card span {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.price-list {
  margin: 0;
  display: grid;
  gap: 10px;
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(25, 42, 19, 0.12);
}

.price-list dt {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 900;
}

.price-list dd {
  margin: 0;
  color: var(--green-950);
  font-size: 1.12rem;
  font-weight: 950;
}

.special-card {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(18, 32, 15, 0.94), rgba(36, 63, 39, 0.92)),
    url("../images/special-deal.jpg") center / cover;
}

.special-card h3,
.special-card p {
  color: var(--cream);
}

.special-card p:not(.eyebrow) {
  margin-bottom: 24px;
}

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

.service-card,
.trust-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 248, 236, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}

.service-card h3,
.trust-card strong {
  color: var(--cream);
}

.service-card p,
.trust-card span {
  color: rgba(255, 248, 236, 0.72);
}

.trust-card {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 10px;
}

.trust-card strong {
  display: block;
  font-size: 1.08rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-950);
  cursor: zoom-in;
  box-shadow: 0 18px 50px rgba(38, 28, 16, 0.12);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.95), rgba(246, 230, 205, 0.98)),
    url("../images/akni-closeup.jpg") center / cover fixed;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
}

.contact-list li {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  color: var(--green-950);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--green-800);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  color: var(--green-950);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(25, 42, 19, 0.18);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: #fffdf8;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(205, 158, 72, 0.18);
  outline: 0;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.offer-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(26px, 5vw, 52px);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(18, 32, 15, 0.95), rgba(37, 47, 31, 0.92)),
    url("../images/og-image.jpg") center / cover;
  box-shadow: var(--shadow);
}

.offer-card h2,
.offer-card p {
  color: var(--cream);
}

.offer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  padding: 12px 14px;
  border-radius: var(--radius);
  color: rgba(255, 248, 236, 0.88);
  background: rgba(255, 255, 255, 0.08);
}

.offer-button {
  grid-column: 1 / -1;
  justify-self: start;
}

.mobile-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 248, 236, 0.24);
  border-radius: var(--radius);
  background: rgba(18, 32, 15, 0.95);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.mobile-cta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--green-950);
  background: var(--gold-400);
  font-size: 0.86rem;
  font-weight: 950;
}

.site-footer {
  padding: 44px 0 22px;
  color: rgba(255, 248, 236, 0.82);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 28px;
}

.footer-grid strong {
  color: var(--gold-400);
}

.footer-grid p {
  margin: 8px 0 0;
  line-height: 1.6;
}

.footer-grid a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.minipage-credit {
  width: var(--container);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 248, 236, 0.13);
  color: rgba(255, 248, 236, 0.7);
  text-align: center;
  font-size: 0.86rem;
}

.minipage-credit a {
  color: var(--gold-400);
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(9, 13, 8, 0.88);
}

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

.lightbox figure {
  width: min(100%, 980px);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82svh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--cream);
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--cream);
  text-align: center;
  font-weight: 800;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--green-950);
  background: var(--gold-400);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@keyframes heroBreath {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes grainSlide {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 120px 0, 0 0;
  }
}

@keyframes steamRise {
  0% {
    transform: translateY(24px) scaleY(0.8);
    opacity: 0;
  }

  45% {
    opacity: 0.55;
  }

  100% {
    transform: translateY(-80px) scaleY(1.2);
    opacity: 0;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-10px) rotate(0.4deg);
  }
}

@keyframes cueDrop {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

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

  .header-inner {
    grid-template-columns: minmax(100px, 150px) 1fr auto;
  }

  .hero,
  .split,
  .contact-layout,
  .offer-card {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: start;
  }

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

  .special-card {
    grid-column: 1 / -1;
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 84px;
  }

  .site-header {
    padding: 12px 0 9px;
  }

  .header-inner {
    min-height: 58px;
    grid-template-columns: 125px 1fr auto;
    gap: 10px;
  }

  .logo-float {
    top: -22px;
    width: 115px;
  }

  .brand-line {
    display: none;
  }

  .header-call {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .hero-card {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.7rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-grid,
  .menu-grid,
  .service-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .section {
    padding: 58px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .offer-card h2 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(100% - 24px, 1120px);
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .hero-card {
    width: 100%;
  }

  .hero-lead,
  .section-copy p,
  .section-heading p,
  .contact-copy p,
  .offer-card p {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
