:root {
  --page-bg: #f3f0ea;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-soft: #efefee;
  --ink: #171717;
  --muted: #5f646b;
  --line: rgba(23, 23, 23, 0.08);
  --blue: #0AC279;
  --blue-deep: #078c58;
  --gold: #d89b1f;
  --pink: #d754b1;
  --shadow: 0 24px 60px rgba(24, 38, 58, 0.14);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --content-width: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(-45deg, #D1F2EB, #E8F8F5, #F4FDFB, #FFFFFF);
  background-size: 400% 400%;
  animation: backgroundGradientShift 20s ease infinite;
}

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

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

button,
a {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    filter 180ms ease;
}

.promo-strip {
  overflow: hidden;
  padding: 10px 0;
  background: #181818;
  color: #f4f1eb;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding-left: 32px;
  animation: marquee 28s linear infinite;
}

.promo-track span::after {
  content: "•";
  margin-left: 40px;
  opacity: 0.75;
}

.site-header,
main,
.site-footer {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 22px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-name {
  display: inline-block;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
}

.main-nav a {
  color: #2c3138;
}

.main-nav a:hover,
.section-link:hover {
  color: var(--blue);
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta::after,
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.32) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.header-cta:hover::after,
.button:hover::after {
  transform: translateX(120%);
}

.header-cta {
  padding: 14px 22px;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  filter: saturate(1.08);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 28px;
  min-height: 680px;
  padding: 56px;
  border-radius: 40px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(250, 248, 244, 0.96) 0%, rgba(250, 248, 244, 0.7) 42%, rgba(250, 248, 244, 0.14) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
  box-shadow: var(--shadow);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(105deg, rgba(7, 23, 46, 0.38), rgba(7, 23, 46, 0.54)),
    url("./png_exports/IMG_1497.jpg") center 42% / cover no-repeat;
  transform: scale(1.04);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right center, rgba(255, 214, 102, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(250, 248, 244, 0.14), rgba(250, 248, 244, 0.02));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 8ch;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  line-height: 0.92;
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.98;
}

.hero-text,
.section-intro,
.offer-card p,
.service-panel p,
.about-card p,
.feature-details p,
.stat span {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 34rem;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
}

.button-primary {
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(23, 23, 23, 0.12);
  color: var(--ink);
}

.button-secondary:hover {
  background: #ffffff;
  border-color: rgba(23, 23, 23, 0.28);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(23, 23, 23, 0.08);
  font-size: 0.94rem;
  font-weight: 700;
}

.feature-card {
  align-self: end;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 22px 54px rgba(13, 28, 54, 0.18);
  backdrop-filter: blur(10px);
}

.feature-badge,
.mini-badge {
  display: inline-block;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-family: Futura, "Futura PT", "Trebuchet MS", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-image-frame,
.offer-media,
.service-image {
  overflow: hidden;
  background: var(--surface-soft);
}

.feature-image-frame {
  margin-top: 14px;
  border-radius: 24px;
  aspect-ratio: 1 / 1;
}

.feature-image-frame img,
.offer-media img,
.service-image img {
  height: 100%;
  object-fit: cover;
}

.offer-card:nth-child(4) .offer-media img {
  object-position: center 38%;
}

.feature-details {
  padding: 18px 4px 6px;
}

.feature-kicker {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature-details h2 {
  font-size: 2rem;
}

.feature-details p {
  margin: 10px 0 0;
}

.feature-button {
  margin-top: 18px;
}

.offer-section,
.services-section,
.about-section {
  padding: 74px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-link {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.offer-card,
.service-panel,
.about-card,
.stats-card,
.site-footer {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.offer-card,
.service-panel,
.about-card,
.stats-card {
  border-radius: var(--radius-lg);
}

.offer-card {
  padding: 18px;
}

.offer-media {
  margin-top: 12px;
  border-radius: 24px;
  aspect-ratio: 1 / 1;
}

.offer-card h3,
.service-panel h3,
.stat strong {
  margin-top: 18px;
  font-size: 1.5rem;
}

.offer-card p {
  margin: 10px 0 0;
}

.accent-pink {
  background: transparent;
  color: var(--ink);
}

.accent-gold {
  background: transparent;
  color: var(--ink);
}

.accent-slate {
  background: transparent;
  color: var(--ink);
}

.split {
  align-items: start;
}

.section-intro {
  max-width: 40rem;
  margin: 0;
}

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

.service-panel {
  padding: 18px;
}

.service-image {
  border-radius: 24px;
  aspect-ratio: 4 / 3;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
}

.about-card,
.stats-card {
  padding: 28px;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.stats-card {
  display: grid;
  gap: 18px;
}

.stat {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.stat:first-child {
  padding-top: 0;
}

.stat:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stat strong {
  display: block;
  margin-top: 0;
  margin-bottom: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 74px;
  margin-bottom: 42px;
  padding: 28px;
  border-radius: 30px;
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 22px;
}

.footer-sitemap h3 {
  grid-column: 1 / -1;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-sitemap a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-sitemap a:hover {
  color: var(--ink);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes backgroundGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 1180px) {
  .site-header,
  .section-heading,
  .about-section,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .hero-shell,
  .offer-grid,
  .service-panels,
  .about-section {
    grid-template-columns: 1fr;
  }

  .feature-card {
    max-width: 460px;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
    padding-top: 20px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero-shell {
    min-height: auto;
    padding: 30px 22px 22px;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13.5vw, 4.4rem);
    line-height: 0.94;
  }

  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 20px), var(--content-width));
  }
}

@media (max-width: 560px) {
  .promo-strip {
    display: none;
  }

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

  .brand-lockup {
    justify-content: center;
    width: 100%;
  }

  .brand-subtitle,
  .main-nav {
    display: none;
  }

  .brand-name {
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .hero-shell,
  .offer-card,
  .service-panel,
  .about-card,
  .stats-card,
  .site-footer {
    border-radius: 24px;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .footer-sitemap {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-shell {
    padding: 22px 18px 18px;
    border-radius: 22px;
  }

  .hero-backdrop {
    background:
      linear-gradient(105deg, rgba(7, 23, 46, 0.5), rgba(7, 23, 46, 0.64)),
      url("./png_exports/IMG_1497.jpg") 46% center / cover no-repeat;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    line-height: 1.6;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.45rem);
    letter-spacing: -0.07em;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 22px;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .hero-points {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-points li {
    width: 100%;
    padding: 9px 12px;
    font-size: 0.88rem;
    text-align: center;
  }

  .feature-card {
    padding: 16px;
  }

  .offer-section,
  .services-section,
  .about-section {
    padding-top: 46px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  h2 {
    font-size: clamp(1.85rem, 11vw, 2.45rem);
  }

  .offer-card,
  .service-panel,
  .about-card,
  .stats-card,
  .site-footer {
    padding: 16px;
  }
}
