:root {
  --color-primary-pink: #f82bfb;
  --color-secondary-yellow: #fff6da;
  --color-secondary-yellow: #fed660;
  --color-secondary-yellow: #f82bfb;
  --color-primary-dark: #050020;
  --color-yellow-light: #ffe989;
  --color-pink-light: #fff;
  --color-light-background: #fff7d6;
  --color-white: #fff;
}

* {
  box-sizing: border-box;
}

.none {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #fff7d6;
  color: var(--color-primary-dark);
  font-family: "manrope", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  overflow-x: hidden;
  padding-top: 98px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.full-width {
  margin-top: 0;
  margin-bottom: 0;
  width: 100% !important;
  background-color: #050020;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  transition:
    transform 0.5s cubic-bezier(0.65, 0, 0.35, 1),
    background-color 0.5s ease,
    -webkit-backdrop-filter 0.5s ease,
    backdrop-filter 0.5s ease;
}

/* Once the hero has been scrolled past: same brand color, just softened
   with opacity + a frosted blur behind it. Color value itself never changes. */
.full-width.header--blurred {
  background-color: rgba(5, 0, 32, 0.78);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}

.full-width.header--hidden {
  transform: translateY(-100%);
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.brand-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 10px; */
  width: 140px;
}

/* ============================= */
/* NAVIGATION — animated burger  */
/* (interaction ported from the  */
/* Natours project, restyled for */
/* Noble Deshines)               */
/* ============================= */

.navigation__checkbox {
  display: none;
}

.navigation__button {
  background-color: var(--color-primary-pink);
  height: 58px;
  width: 58px;
  position: fixed;
  top: 10px;
  right: 40px;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: -4px 4px 8px rgba(5, 0, 32, 0.3);
  /* border: 2px solid var(--color-primary-dark); */
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  transform: scale(0.8);
}

.navigation__icon,
.navigation__icon::before,
.navigation__icon::after {
  color: #fff !important;
  background-color: #fff !important;
}

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent !important;
}

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

.navigation__background {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: fixed;
  top: 15px;
  right: 45px;
  background-image: radial-gradient(
    var(--color-primary-dark),
    var(--color-primary-dark)
  );
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  transform: scale(0.8);
}

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;

  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

.navigation__item {
  margin: 0.6em;
}

.navigation__link:link,
.navigation__link:visited {
  display: inline-block;
  font-family: "sora", sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 0.3em 0.6em;
  color: #fff7d6;
  text-decoration: none;
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    transparent 50%,
    #fff7d6 50%
  );
  background-size: 220%;
  transition: all 0.4s;
}

.navigation__link:hover,
.navigation__link:active {
  background-position: 100%;
  color: var(--color-primary-pink);
  transform: translateX(0.3em);
}

.navigation__item--whatsapp {
  margin-top: 1.4em;
}

.navigation__link--whatsapp {
  background-image: none;
  background-color: var(--color-primary-pink);
  color: var(--color-primary-dark);
  border: 2px solid #fff7d6;
  border-radius: 50px;
  font-size: clamp(18px, 2.6vw, 24px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.navigation__link--whatsapp:hover,
.navigation__link--whatsapp:active {
  color: var(--color-primary-dark);
  background-color: #fff7d6;
  transform: translateY(-2px) translateX(0);
}

/* FUNCTIONALITY */
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(90);
}

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
}

/* ICON */
.navigation__icon {
  position: relative;
  margin-top: 29px;
}

.navigation__icon,
.navigation__icon::before,
.navigation__icon::after {
  width: 24px;
  height: 2px;
  background-color: var(--color-primary-dark);
  display: inline-block;
}

.navigation__icon::before,
.navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}

.navigation__icon::before {
  top: -8px;
}

.navigation__icon::after {
  top: 8px;
}

.navigation__button:hover .navigation__icon::before {
  top: -10px;
}

.navigation__button:hover .navigation__icon::after {
  top: 10px;
}

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

@media (max-width: 800px) {
  .navigation__button {
    height: 52px;
    width: 52px;
    top: 16px;
    right: 16px;
  }

  .navigation__background {
    height: 44px;
    width: 44px;
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 540px) {
  .navigation__button {
    height: 46px;
    width: 46px;
    top: 12px;
    right: 12px;
  }

  .navigation__background {
    height: 38px;
    width: 38px;
    top: 16px;
    right: 16px;
  }

  .navigation__icon {
    margin-top: 23px;
  }
}

.hero {
  text-align: center;
  /* min-height: 970px; */
  padding-top: 22px;
  position: relative;
}

.wordmark,
.footer-wordmark {
  font: 900 clamp(76px, 15vw, 100px)/0.72 "manrope";
  font-family: "sora", sans-serif;
  letter-spacing: -0.09em;
  transform: scaleX(0.82);
  white-space: nowrap;
  font-size: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  margin: auto;
}

.wordmark span {
  color: var(--color-primary-pink);
}

.hero h1 {
  font: 800 clamp(29px, 4vw, 55px)/1.02;
  max-width: 760px;
  margin: 15px auto 26px;
  text-wrap: balance;
}

.hero h1 strong {
  color: var(--color-primary-pink);
}

.bold {
  font-size: bold;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 21px;
  border: 2px solid var(--color-primary-dark);
  font-weight: 500;
  font-size: 24px;
  transition: 0.2s;
  border-radius: 40px;
  background-color: var(--color-primary-pink);
  box-shadow: -6px 6px rgba(0, 0, 0, 0.9);
}

.button:hover {
  transform: translateY(-2px);
  background-color: white;
  color: var(--color-black);
  box-shadow: -0px 0px rgba(0, 0, 0, 0.9);
}

.button-dark {
  /* background: var(--color-primary-dark); */
  color: #fff7d6;
}

.button-light {
  background: #fff7d6;
  color: var(--color-primary-dark);
  box-shadow: -4px 4px #fefefe;

  &:hover {
    color: var(--color-primary-dark);
  }
}

.hero-art {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: none;
  height: auto;
  position: relative;
  margin-top: 50px;
}

.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  align-items: center;
  /* gap: 22px; */
  width: max-content;
  padding-block: 6px;
  animation: marquee-scroll 60s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  /* animation-play-state: paused; */
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-track img {
  width: 300px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  /* border-radius: 22px; */
  /* flex-shrink: 0; */
  filter: saturate(1.02);
}

.sticker {
  position: absolute;
  right: 24px;
  top: -18px;
  background: var(--color-pink-light);
  border: 2px solid var(--color-primary-dark);
  padding: 16px;
  transform: rotate(8deg);
  font: 800 13px/1.1;
  z-index: 2;
  box-shadow: -5px 5px rgba(0, 0, 0, 0.9);
}

.traits {
  display: flex;
  justify-content: space-around;
  max-width: 680px;
  margin: -8px auto 0;
  font: 800 18px;
  font-size: 32px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
  padding: 30px 0 60px;
}

.benefits article {
  padding: 25px;
}

.benefits h2 {
  font: 800 px/1.1;
  margin: 14px 0;
}

.benefits p {
  font-size: 14px;
}

.doodle {
  font-size: 54px;
}

.section {
  padding-block: 20px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 44px;
  position: relative;
}

.section-title h2 {
  font: 800 clamp(43px, 6vw, 78px)/0.9;
  letter-spacing: -0.04em;
  margin: 8px 0;
  text-wrap: balance;
}

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  margin: 0;
}

.scribble {
  font-size: 300px;
  font-size: 120px;
  color: var(--color-primary-pink);
  /* color: white; */
  /* position: absolute; */
  /* opacity: 0.1; */
  /* right: -10%; */
  /* top: -90%; */
}

.scribble--spin {
  display: inline-block;
  animation: scribble-spin 10s linear infinite;
}

@keyframes scribble-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.proof {
  border-top: 2px solid var(--color-primary-dark);
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--color-primary-dark);
  border: 1px solid var(--color-primary-dark);
}

.logo-row span {
  background: #fff7d6;
  min-height: 110px;
  display: grid;
  place-items: center;
  font: 800 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
}

.stats div {
  border-left: 1px solid var(--color-primary-dark);
  padding: 10px 24px;
}

.stats strong,
.stats div > span {
  font: 800 60px;
}

.stats p {
  margin: 0;
  font-size: 13px;
}

.service-list {
  display: flex;
  flex-direction: column;
}

.service {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 25px 30px;
  border: 2px solid var(--color-primary-dark);
  margin-top: -2px;
  align-items: center;
}

.service > div:first-child {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
}

.service h3 {
  font: 900 clamp(24px, 3.4vw, 32px)/1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

.service p {
  grid-column: 2;
  margin: 5px 0;
  font-weight: 600;
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.lemon {
  background: var(--color-pink-light);
}

.mint {
  background: var(--color-yellow-light);
}

.pink {
  background: var(--color-pink-light);
}

.lilac {
  background: var(--color-yellow-light);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.tags span {
  border: 1px solid var(--color-primary-dark);
  border-radius: 50px;
  padding: 7px 12px;
  font-size: 12px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-block: 40px 60px;
}

.project {
  min-height: 540px;
  padding: 20px;
  border: 2px solid var(--color-primary-dark);
  display: flex;
  flex-direction: column;
}

.project > span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.project img {
  height: 405px;
  object-fit: cover;
  margin: 18px 0;
  filter: grayscale(0.15);
}

.project h3 {
  font: 800 27px;
  margin: auto 0 0;
}

.coral {
  background: var(--color-pink-light);
}

.green {
  background: var(--color-yellow-light);
}

.orange {
  background: var(--color-pink-light);
}

.cream {
  background: var(--color-yellow-light);
}

.versus {
  background: var(--color-primary-dark);
  color: #fff7d6;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid #fff7d6;
}

.compare > div {
  padding: 32px;
}

.compare .us {
  background: #f7ed74;
  color: var(--color-primary-dark);
}

.compare h3 {
  font: 800 34px;
}

.compare ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare li {
  padding: 13px 0;
  border-bottom: 1px solid currentColor;
}

.compare li:before {
  content: "✕";
  margin-right: 13px;
}

.compare .us li:before {
  content: "✓";
}

.testimonials {
  background: var(--color-pink-light);
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
}

.quote-viewport {
  max-width: 900px;
  overflow: hidden;
}

.quote-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.quote-track blockquote {
  margin: 0;
  flex: 0 0 100%;
  max-width: 100%;
}

.quote-track blockquote > p {
  font: 700 clamp(32px, 5vw, 58px)/1.08;
  letter-spacing: -0.02em;
}

.quote-track footer {
  display: flex;
  flex-direction: column;
}

.quote-track footer span {
  font-size: 12px;
  letter-spacing: 0.12em;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.slider-controls button {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid var(--color-primary-dark);
  cursor: pointer;
}

/* ============================= */
/* PRICING — flip cards          */
/* (style ported from the        */
/* Natours "Most popular tours"  */
/* cards, using Noble Deshines   */
/* brand colors: card 1 =        */
/* secondary, 2 = primary,       */
/* 3 = background)               */
/* ============================= */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.plan-card {
  perspective: 150rem;
  position: relative;
  height: 760px;
}

.plan-card__side {
  height: 760px;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--color-primary-dark);
  box-shadow: -6px 6px rgba(5, 0, 32, 0.9);
}

.plan-card__side--front {
  background-color: var(--color-white);
}

.plan-card__side--back {
  transform: rotateY(180deg);
}

.plan-card__side--back-1 {
  background-image: linear-gradient(
    to right bottom,
    #fff3b0,
    var(--color-yellow-light)
  );
}

.plan-card__side--back-2 {
  background-image: linear-gradient(
    to right bottom,
    #ff6dfd,
    var(--color-primary-pink)
  );
}

.plan-card__side--back-3 {
  background-image: linear-gradient(
    to right bottom,
    #fffefa,
    var(--color-light-background)
  );
}

.plan-card:hover .plan-card__side--front {
  transform: rotateY(-180deg);
}

.plan-card:hover .plan-card__side--back {
  transform: rotateY(0);
}

/* FRONT */
.plan-card__picture {
  background-size: cover;
  background-position: center;
  height: 230px;
  background-blend-mode: multiply;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.plan-card__picture--1 {
  background-image:
    linear-gradient(
      to right bottom,
      rgba(255, 243, 176, 0.8),
      rgba(255, 233, 137, 0.8)
    ),
    url(img/Marketing-Momentum.jpg);
  background-position: top center;
  background-blend-mode: multiply;
}

.plan-card__picture--2 {
  background-image:
    linear-gradient(
      to right bottom,
      rgba(255, 109, 253, 0.8),
      rgba(248, 43, 251, 0.8)
    ),
    url(img/Website-Pro.jpg);
  background-position: top center;
  background-blend-mode: multiply;
}

.plan-card__picture--3 {
  background-image:
    linear-gradient(
      to right bottom,
      rgba(255, 254, 250, 0.85),
      rgba(255, 247, 214, 0.85)
    ),
    url(img/Brand-Builder.jpg);
  background-position: top center;
  background-blend-mode: multiply;
}

.plan-card__heading {
  font:
    800 26px/1.1 "sora",
    sans-serif;
  text-align: right;
  color: var(--color-primary-dark);
  position: absolute;
  top: 120px;
  right: 20px;
  width: 78%;
  margin: 0;
}

.plan-card__heading-span {
  padding: 8px 14px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.plan-card__heading-span--1 {
  background-image: linear-gradient(
    to right bottom,
    rgba(255, 243, 176, 0.9),
    rgba(255, 233, 137, 0.9)
  );
}

.plan-card__heading-span--2 {
  background-image: linear-gradient(
    to right bottom,
    rgba(255, 109, 253, 0.9),
    rgba(248, 43, 251, 0.9)
  );
  color: #fff7d6;
}

.plan-card__heading-span--3 {
  background-image: linear-gradient(
    to right bottom,
    rgba(255, 254, 250, 0.95),
    rgba(255, 247, 214, 0.95)
  );
}

.plan-card__details {
  padding: 26px 24px 0;
}

.plan-card__blurb {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 14px;
}

.plan-card__details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-card__details li {
  text-align: center;
  font-size: 15px;
  padding: 10px;
}

.plan-card__details li:not(:last-child) {
  border-bottom: 1px solid rgba(5, 0, 32, 0.15);
}

/* BACK */
.plan-card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}

.plan-card__price-box {
  text-align: center;
  color: var(--color-primary-dark);
  margin-bottom: 34px;
}

.plan-card__side--back-2 .plan-card__price-box {
  color: #fff7d6;
}

.plan-card__price-only {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.plan-card__price-value {
  font:
    800 52px "sora",
    sans-serif;
  margin: 0;
}

.plan-card__price-value span {
  font-size: 16px;
  font-weight: 600;
}

.plan-card .button {
  font-size: 18px;
  padding: 12px 24px;
}

@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Stack on mobile / touch: no perspective flip, both sides shown
   one after another, matching the natours mobile fallback. */
@media (max-width: 800px), (hover: none) {
  .plan-card {
    height: auto;
    border-radius: 6px;
    background-color: var(--color-white);
    box-shadow: -6px 6px rgba(5, 0, 32, 0.9);
    border: 2px solid var(--color-primary-dark);
  }

  .plan-card__side {
    height: auto;
    position: relative;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }

  .plan-card__side--back {
    transform: rotateY(0);
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  }

  .plan-card:hover .plan-card__side--front {
    transform: rotateY(0);
  }

  .plan-card__details {
    padding: 20px 24px 30px;
  }

  .plan-card__cta {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
    width: 100%;
    padding: 40px 24px 30px;
  }

  .plan-card__price-box {
    margin-bottom: 20px;
  }

  .plan-card__price-value {
    font-size: 42px;
  }
}

.about-copy {
  font: 800 clamp(28px, 4.2vw, 54px)/1.1;
  max-width: 1030px;
  margin: 0 0 50px;
  letter-spacing: -0.01em;
}

.about-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.team article {
  border: 2px solid var(--color-primary-dark);
  padding: 12px;
  background: var(--color-pink-light);
}

.team img,
.hiring > div {
  height: 300px;
  object-fit: cover;
  /* filter: grayscale(1); */
}

.team p {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.team h3 {
  font: 900 clamp(20px, 2.6vw, 26px)/1.1;
  margin: 10px 0;
}

.team span {
  font-size: 11px;
}

.team article:nth-child(2) {
  background: var(--color-yellow-light);
}

.team article:nth-child(3) {
  background: var(--color-pink-light);
}

.team .hiring {
  background: var(--color-yellow-light);
}

.join-team-button {
  display: flex !important;
  gap: 12px;
  align-items: end;
}

.hiring > div {
  display: grid;
  place-items: center;
  background: var(--color-primary-dark);
  color: var(--color-yellow-light);
  font: 900 70px;
}

.hiring a {
  display: block;
  margin-top: 20px;
  font-weight: 800;
}

.faq {
  background: var(--var(--color-secondary-yellow));
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
}

.faq-list {
  border-top: 2px solid var(--color-primary-dark);
}

.faq details {
  border-bottom: 2px solid var(--color-primary-dark);
  padding: 0 5px;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 900 clamp(19px, 2.6vw, 26px)/1.2;
  letter-spacing: -0.01em;
  padding: 24px 0;
  gap: 20px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  font-size: 35px;
  transition: 0.2s;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 760px;
  margin: 0 0 25px;
}

.footer {
  background: var(--color-primary-dark);
  color: var(--color-yellow-light);

  padding-top: 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.contact-grid h2 {
  font: 800 57px/1;
  margin: 20px 0;
}

.contact-grid form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-grid label {
  font-size: 11px;
  letter-spacing: 0.13em;
}

.contact-grid input,
.contact-grid textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--color-yellow-light);
  color: var(--color-yellow-light);
  background: transparent;
  padding: 12px 0;
  outline: none;
}

.contact-grid .wide {
  grid-column: 1/-1;
}

.contact-grid button {
  justify-self: start;
}

.form-status {
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid #fff7d6;
  margin-top: 60px;
  padding-top: 40px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links small {
  opacity: 0.6;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.footer-wordmark {
  font-size: clamp(60px, 12vw, 210px);
  margin-top: 60px;

  overflow: hidden;
}

.copyright {
  display: flex;
  justify-content: space-between;
  padding-block: 25px;
  font-size: 11px;
  border-top: 1px solid #fff7d6;
}

@media (max-width: 800px) {
  .hero {
    /* min-height: 820px; */
  }

  .hero-art {
    margin-top: 40px;
  }

  .marquee-track {
    /* gap: 16px; */
  }

  .marquee-track img {
    width: 350px;
    height: 500px;
    width: 100%;
    /* border-radius: 16px; */
  }

  .sticker {
    right: 14px;
    top: -14px;
  }

  .benefits,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .logo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-row span:last-child {
    grid-column: 1/-1;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .service {
    grid-template-columns: 1fr;
  }

  .tags {
    justify-content: flex-start;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .project {
    min-height: 460px;
  }

  .project img {
    height: 340px;
  }

  .team {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    /* padding-block: 20px; */
  }
}

@media (max-width: 540px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 35px;
    /* min-height: 760px; */
  }

  .wordmark {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-art {
    margin-top: 32px;
  }

  .marquee-track {
    /* gap: 12px; */
  }

  .marquee-track img {
    width: 100%;
    height: 400px;
    /* border-radius: 12px; */
  }

  .sticker {
    font-size: 9px;
    padding: 10px;
    right: 8px;
    top: -10px;
  }

  .traits {
    font-size: 13px;
  }

  .benefits {
    padding-bottom: 50px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 46px;
  }

  .stats strong,
  .stats div > span {
    font-size: 44px;
  }

  .stats div {
    padding: 8px 15px;
  }

  .service {
    padding: 20px 16px;
  }

  .service > div:first-child {
    grid-template-columns: 36px 1fr;
  }

  .service h3 {
    font-size: 25px;
  }

  .compare {
    grid-template-columns: 1fr;
  }

  .team {
    grid-template-columns: 1fr;
  }

  .team img,
  .hiring > div {
    height: 390px;
  }

  .contact-grid {
    gap: 35px;
  }

  .contact-grid form {
    grid-template-columns: 1fr;
  }

  .contact-grid .wide {
    grid-column: auto;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-wordmark {
    font-size: 60px;
  }

  .copyright {
    gap: 20px;
  }

  .about-copy {
    font-size: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

/* Helper */
.icon {
  font-size: 20px;
}

.eyebrow {
  display: none !important;
}

h2 {
  font-size: 40px !important;
}
