:root {
  --ink: #071a24;
  --ink-soft: #173440;
  --cream: #f6f1e7;
  --cream-deep: #e9e0d0;
  --yellow: #f8c62f;
  --yellow-light: #ffde65;
  --teal: #70d8cc;
  --white: #fffdf8;
  --muted: #597079;
  --line: rgba(7, 26, 36, 0.13);
  --shadow: 0 32px 80px rgba(7, 26, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.ambient-one {
  width: 420px;
  height: 420px;
  top: -210px;
  left: -180px;
  background: rgba(112, 216, 204, 0.25);
}

.ambient-two {
  width: 520px;
  height: 520px;
  top: 380px;
  right: -300px;
  background: rgba(248, 198, 47, 0.16);
}

.site-header,
.hero,
.contact-strip,
.seo-copy,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  color: var(--ink);
  background: var(--yellow);
  transform: rotate(-3deg);
}

.brand-mark svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand > span:last-child {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 253, 248, 0.6);
  font-weight: 700;
  transition: 180ms ease;
}

.header-call:hover {
  border-color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.header-call svg,
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  min-height: 610px;
  padding: 38px 0 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 20px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.pulse {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #20a998;
}

.pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid #20a998;
  border-radius: inherit;
  content: "";
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(0.5);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin: 22px 0 24px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(58px, 6.2vw, 91px);
  font-weight: 800;
  letter-spacing: -5.5px;
  line-height: 0.92;
}

h1 em {
  position: relative;
  display: inline-block;
  color: var(--ink);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  z-index: -1;
  height: 18px;
  right: -5px;
  bottom: 3px;
  left: -3px;
  border-radius: 20px 7px 20px 8px;
  background: var(--yellow);
  content: "";
  transform: rotate(-1.5deg);
}

.hero-intro {
  max-width: 505px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 25px rgba(7, 26, 36, 0.18);
}

.button-primary:hover {
  box-shadow: 0 17px 32px rgba(7, 26, 36, 0.25);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.66);
}

.button-secondary:hover {
  background: var(--white);
}

.button-secondary span {
  font-size: 19px;
}

.service-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 31px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.service-note i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--yellow);
}

.visual {
  position: relative;
  height: 530px;
  min-width: 0;
}

.sun {
  position: absolute;
  top: 4px;
  right: 6%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 24px rgba(248, 198, 47, 0.08);
}

.city {
  position: absolute;
  right: 0;
  left: 10%;
  bottom: 107px;
  opacity: 0.2;
}

.city::before,
.city::after {
  display: block;
  width: 100%;
  content: "";
}

.city-back::before {
  height: 145px;
  background:
    linear-gradient(var(--ink) 0 0) 1% 42% / 9% 58%,
    linear-gradient(var(--ink) 0 0) 12% 15% / 13% 85%,
    linear-gradient(var(--ink) 0 0) 29% 53% / 8% 47%,
    linear-gradient(var(--ink) 0 0) 40% 25% / 15% 75%,
    linear-gradient(var(--ink) 0 0) 59% 41% / 9% 59%,
    linear-gradient(var(--ink) 0 0) 71% 0 / 12% 100%,
    linear-gradient(var(--ink) 0 0) 87% 48% / 12% 52%;
  background-repeat: no-repeat;
}

.city-front {
  bottom: 86px;
  left: 0;
  opacity: 0.1;
}

.city-front::before {
  height: 105px;
  background:
    linear-gradient(var(--ink) 0 0) 0 45% / 11% 55%,
    linear-gradient(var(--ink) 0 0) 16% 20% / 16% 80%,
    linear-gradient(var(--ink) 0 0) 37% 48% / 10% 52%,
    linear-gradient(var(--ink) 0 0) 52% 8% / 13% 92%,
    linear-gradient(var(--ink) 0 0) 72% 38% / 12% 62%,
    linear-gradient(var(--ink) 0 0) 90% 15% / 10% 85%;
  background-repeat: no-repeat;
}

.road {
  position: absolute;
  height: 124px;
  right: -140px;
  bottom: 0;
  left: -60px;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 24% 24% 0 0;
  background: var(--ink);
  transform: rotate(-3deg);
}

.road span {
  position: absolute;
  width: 77px;
  height: 7px;
  top: 61px;
  background: var(--yellow);
  transform: skewX(-20deg);
}

.road span:nth-child(1) {
  left: 15%;
}

.road span:nth-child(2) {
  left: 47%;
}

.road span:nth-child(3) {
  left: 79%;
}

.taxi-card {
  position: absolute;
  top: 88px;
  right: 0;
  left: 1%;
  height: 352px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 32px;
  background: rgba(255, 253, 248, 0.4);
  box-shadow: var(--shadow);
  backdrop-filter: blur(13px);
  transform: rotate(2.5deg);
}

.mini-label {
  position: absolute;
  top: 27px;
  left: 29px;
  padding: 8px 12px;
  border: 1px solid rgba(7, 26, 36, 0.12);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.taxi {
  position: absolute;
  right: -18px;
  bottom: 25px;
  width: 91%;
}

.taxi svg {
  width: 100%;
}

.arrival {
  position: absolute;
  top: 100px;
  left: 30px;
  display: grid;
}

.arrival span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.arrival strong {
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  letter-spacing: -1.8px;
}

.contact-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 42px;
  padding: 34px;
  border-radius: 27px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(7, 26, 36, 0.18);
}

.contact-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-heading > span,
.seo-copy > span {
  margin-bottom: 9px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.contact-heading h2 {
  margin-bottom: 0;
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  letter-spacing: -1.2px;
  line-height: 1.15;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.1fr 1.35fr;
  gap: 8px;
}

.contact-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 17px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
  transition: 180ms ease;
}

.contact-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.icon-box {
  display: grid;
  flex: 0 0 auto;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 11px;
  color: var(--yellow);
  background: rgba(248, 198, 47, 0.1);
}

.icon-box svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-item > span:last-child {
  display: grid;
  min-width: 0;
}

.contact-item small {
  margin-bottom: 4px;
  color: #8ca0a8;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-item strong {
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.35;
}

.seo-copy {
  padding: 105px 0 85px;
  text-align: center;
}

.seo-copy > span {
  color: #158f81;
}

.seo-copy h2 {
  margin-bottom: 19px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -2.4px;
}

.seo-copy p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 25px 0 35px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

  .hero-copy {
    max-width: 690px;
  }

  .visual {
    width: min(680px, 100%);
    margin: 25px auto 0;
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }

  .contact-heading {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .contact-strip,
  .seo-copy,
  footer {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    padding-top: 20px;
  }

  .header-call span {
    display: none;
  }

  .header-call {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
  }

  .hero {
    min-height: 0;
    padding: 25px 0 50px;
  }

  h1 {
    margin-top: 19px;
    font-size: clamp(49px, 15vw, 70px);
    letter-spacing: -4px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .visual {
    height: 400px;
  }

  .sun {
    width: 225px;
    height: 225px;
  }

  .taxi-card {
    top: 65px;
    height: 275px;
    border-radius: 23px;
  }

  .taxi {
    bottom: 15px;
    width: 99%;
  }

  .arrival {
    top: 82px;
    left: 22px;
  }

  .arrival strong {
    font-size: 29px;
  }

  .mini-label {
    top: 20px;
    left: 22px;
  }

  .road {
    height: 100px;
    bottom: -2px;
  }

  .city {
    bottom: 80px;
  }

  .contact-strip {
    gap: 25px;
    padding: 28px 18px;
    border-radius: 22px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    padding: 14px;
  }

  .seo-copy {
    padding: 75px 0 60px;
  }

  footer {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .service-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .service-note i {
    display: none;
  }

  .button {
    width: 100%;
  }

  .visual {
    height: 340px;
    margin-top: 15px;
  }

  .taxi-card {
    height: 235px;
  }

  .taxi {
    bottom: 8px;
  }

  .arrival {
    top: 66px;
  }

  .arrival strong {
    font-size: 25px;
  }

  .sun {
    width: 190px;
    height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
