@font-face {
  font-family: "Objectivity";
  src: url("./assets/fonts/Objectivity-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Objectivity";
  src: url("./assets/fonts/Objectivity-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Objectivity";
  src: url("./assets/fonts/Objectivity-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #e26a2d;
  --green-hover: #c6541d;
  --deep: #172732;
  --deepest: #0b1821;
  --mint: #f7e2d5;
  --soft: #f5f7f8;
  --ink: #111f29;
  --muted: #70828e;
  --line: #dfe5e8;
  --white: #fff;
  --shadow: 0 22px 55px rgba(11, 24, 33, 0.12);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: "Objectivity", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.site,
.scale-shell {
  width: 100%;
}

.site {
  overflow-x: clip;
  overflow-y: visible;
  background: #fff;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--deep);
  color: #fff;
}

.section-soft {
  background: var(--soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 92px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(11, 24, 33, 0.05);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
}

.logo-link {
  width: 156px;
  flex: 0 0 auto;
}

.logo-link img {
  width: 100%;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 64px;
}

.main-navigation a {
  position: relative;
  color: #4b5d69;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: color 180ms ease;
}

.main-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-navigation a:hover,
.main-navigation a.active {
  color: var(--ink);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
  transform: scaleX(1);
}

.chevron {
  display: inline-block;
  margin-left: 4px;
  font-size: 15px;
}

.header-button {
  margin-left: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
}

.menu-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button-small {
  min-height: 48px;
  padding-inline: 23px;
  font-size: 13px;
}

.button-primary {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.button-primary:hover {
  border-color: var(--green-hover);
  background: var(--green-hover);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
}

.button-outline-light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--deep);
}

.button-outline-dark {
  border-color: #9aa8b1;
  background: transparent;
  color: var(--ink);
}

.button-outline-dark:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link.light {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #f2b18d;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.005);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 24, 33, 0.82) 0%, rgba(11, 24, 33, 0.42) 52%, rgba(11, 24, 33, 0.12) 100%),
    linear-gradient(0deg, rgba(11, 24, 33, 0.24), rgba(11, 24, 33, 0));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.72fr);
  gap: 110px;
  align-items: center;
  padding-top: 0;
}

.hero-copy {
  position: relative;
  top: 0;
  max-width: 650px;
  padding-bottom: 8px;
}

.hero-copy h1 {
  margin: 24px 0 22px;
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.045;
}

.hero-copy p {
  max-width: 565px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 27px;
}

.booking-card {
  position: relative;
  top: 0;
  width: 100%;
  padding: 58px 42px;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(11, 24, 33, 0.24);
}

.booking-card h2 {
  margin: 0 0 13px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.booking-card > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.booking-row input,
.newsletter-form input,
.footer-mini-form input {
  min-width: 0;
  border: 1px solid var(--line);
  outline: 0;
  background: #fff;
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.booking-row input {
  height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
}

input::placeholder {
  color: #9aa8b1;
}

input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(226, 106, 45, 0.12);
}

.form-note {
  min-height: 0;
  margin-top: 12px;
  color: var(--green);
  font-size: 12px;
}

.about {
  padding-top: 200px;
  padding-bottom: 135px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(410px, 1fr);
  gap: 55px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 750px;
}

.about-main-image {
  width: 100%;
  height: 750px;
  border-radius: 24px;
  object-fit: cover;
}

.review-float {
  position: absolute;
  bottom: 53px;
  left: -1px;
  width: 358px;
  padding: 29px 30px 28px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-mark {
  height: 26px;
  color: var(--green);
  font-size: 48px;
  line-height: 0.9;
}

.review-float > p {
  margin: 10px 0 23px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer strong,
.reviewer span {
  display: block;
}

.reviewer strong {
  font-size: 12px;
  line-height: 1.3;
}

.reviewer span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
}

.about-copy {
  padding-right: 22px;
}

.about-copy h2,
.section-heading h2 {
  margin: 19px 0 24px;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.about-copy .lead {
  margin: 0 0 34px;
  color: var(--muted);
  line-height: 1.6;
}

.benefit-list {
  display: grid;
  gap: 28px;
  margin-bottom: 38px;
}

.benefit {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
}

.benefit img {
  width: 48px;
  height: 48px;
}

.benefit h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.services {
  padding-top: 190px;
  padding-bottom: 97px;
  border-radius: 24px 24px 0 0;
}

.heading-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.services .section-heading h2 {
  font-size: 52px;
}

.heading-actions {
  display: flex;
  gap: 13px;
  padding-bottom: 6px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 62px;
}

.service-image-wrap {
  position: relative;
  display: block;
  height: 500px;
  overflow: hidden;
  border-radius: 22px;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.service-card:hover .service-image-wrap img {
  transform: scale(1.045);
}

.circle-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--deep);
  font-size: 18px;
  transition: transform 180ms ease;
}

.service-card:hover .circle-arrow {
  transform: translate(3px, -3px);
}

.service-card h3 {
  margin: 22px 0 9px;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.service-card p {
  max-width: 370px;
  margin: 0;
  color: #9aa8b1;
  font-size: 14px;
  line-height: 1.55;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 47px;
}

.slider-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #70828e;
}

.slider-dots span:first-child {
  width: 20px;
  border-radius: 99px;
  background: var(--mint);
}

.portfolio {
  padding-top: 155px;
  padding-bottom: 255px;
}

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

.narrow {
  max-width: 720px;
}

.portfolio-grid {
  display: grid;
  height: 865px;
  grid-template-columns: 1fr 1fr 1.08fr 0.88fr;
  grid-template-rows: 0.72fr 1fr 0.7fr;
  gap: 20px;
  margin-top: 58px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  right: 17px;
  bottom: 17px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--deep);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-one {
  grid-area: 1 / 1 / 2 / 2;
}

.gallery-two {
  grid-area: 1 / 2 / 2 / 3;
}

.gallery-three {
  grid-area: 1 / 3 / 3 / 5;
}

.gallery-four {
  grid-area: 2 / 1 / 4 / 3;
}

.gallery-five {
  grid-area: 3 / 3 / 4 / 4;
}

.gallery-six {
  grid-area: 3 / 4 / 4 / 5;
}

.portfolio-action,
.testimonial-action {
  margin-top: 46px;
  text-align: center;
}

.process {
  padding-top: 102px;
  padding-bottom: 194px;
}

.heading-split.compact {
  align-items: center;
}

.heading-split.compact .button {
  margin-bottom: 8px;
}

.process-media {
  position: relative;
  height: 720px;
  margin-top: 56px;
  overflow: hidden;
  border-radius: 24px;
}

.process-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-card {
  position: absolute;
  top: 36px;
  right: 36px;
  bottom: 36px;
  width: 470px;
  padding: 35px 40px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.process-card article {
  position: relative;
  padding: 0 0 25px 0;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.process-card article:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.process-card span {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 12px 0 7px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.testimonials {
  padding-top: 116px;
  padding-bottom: 220px;
}

.testimonial-viewport {
  width: calc(100% + 160px);
  margin-top: 58px;
  margin-left: -80px;
}

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

.testimonial-card {
  min-height: 188px;
  padding: 25px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(11, 24, 33, 0.05);
}

.person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.person > img:first-child {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.person strong,
.person span {
  display: block;
  line-height: 1.25;
}

.person strong {
  font-size: 12px;
  font-weight: 500;
}

.person span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.person .verified {
  width: 17px;
  height: 17px;
  margin-left: auto;
}

.testimonial-card > p {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.cta {
  position: relative;
  min-height: 527px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--deep);
  color: #fff;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 9% 22%, rgba(226, 106, 45, 0.72) 0 3px, transparent 4px),
    radial-gradient(circle at 92% 72%, rgba(226, 106, 45, 0.65) 0 3px, transparent 4px),
    radial-gradient(circle at 25% 79%, rgba(226, 106, 45, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 77% 18%, rgba(226, 106, 45, 0.55) 0 2px, transparent 3px);
  background-size: 230px 180px, 280px 220px, 190px 210px, 260px 200px;
  opacity: 0.6;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 527px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.cta h2 {
  margin: 22px 0 34px;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.blog {
  padding-top: 194px;
  padding-bottom: 191px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 54px;
}

.blog-image {
  position: relative;
  display: block;
  height: 440px;
  overflow: hidden;
  border-radius: 20px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.04);
}

.blog-image > span {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--deep);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.blog-card h3 {
  max-width: 560px;
  margin: 22px 0 17px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

.blog-meta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 500;
}

.footer {
  position: relative;
  overflow: hidden;
  height: 592px;
  padding: 60px 0 15px;
  border-radius: 24px 24px 0 0;
  background: var(--deep);
  color: #fff;
}

.footer-ghost {
  position: absolute;
  top: 10px;
  right: -20px;
  color: rgba(226, 106, 45, 0.13);
  font-size: 156px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
}

.footer-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-signup h2 {
  margin: 0 0 25px;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.newsletter-form {
  display: grid;
  width: 490px;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form input {
  height: 54px;
  padding: 0 20px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
}

.footer-actions {
  display: flex;
  gap: 12px;
  padding-top: 13px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1.15fr 0.88fr 0.9fr;
  gap: 65px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer-brand > img {
  width: 155px;
}

.footer-brand > p {
  max-width: 300px;
  margin: 22px 0;
  color: #9aa8b1;
  font-size: 13px;
  line-height: 1.55;
}

.footer-mini-form {
  display: flex;
  width: 315px;
  height: 46px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.footer-mini-form input {
  min-width: 0;
  height: 100%;
  flex: 1;
  padding: 0 15px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 11px;
}

.footer-mini-form input:focus {
  box-shadow: none;
}

.footer-mini-form button {
  height: 36px;
  margin-right: 4px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--mint);
  color: var(--deep);
  font-size: 10px;
  font-weight: 500;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-column h3 {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 500;
}

.footer-column a {
  margin-bottom: 10px;
  color: #9aa8b1;
  font-size: 11px;
  line-height: 1.25;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: #fff;
}

.link-columns {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  column-gap: 34px;
}

.instagram-grid {
  display: grid;
  width: 164px;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.socials a {
  margin: 0;
  color: #fff;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #70828e;
  font-size: 10px;
}

[id] {
  scroll-margin-top: 110px;
}

.page-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.page-hero > img,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero > img {
  object-fit: cover;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 24, 33, 0.88) 0%, rgba(11, 24, 33, 0.5) 58%, rgba(11, 24, 33, 0.16) 100%),
    linear-gradient(0deg, rgba(11, 24, 33, 0.32), transparent);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 650px;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  padding-bottom: 96px;
}

.page-hero-copy {
  max-width: 790px;
}

.page-hero h1 {
  margin: 24px 0 24px;
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.page-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.65;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.page-section {
  padding: 124px 0;
}

.page-opening {
  padding-top: 88px;
}

.page-section-soft {
  background: var(--soft);
}

.page-heading {
  max-width: 720px;
  margin-bottom: 56px;
}

.page-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.page-heading h2,
.page-copy h2 {
  margin: 20px 0 22px;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.page-heading p,
.page-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.story-grid,
.image-feature,
.rating-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 92px;
  align-items: center;
}

.story-images {
  display: grid;
  height: 610px;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.story-images img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.story-images img:first-child {
  grid-row: 1 / 3;
}

.story-images img:nth-child(2) {
  object-position: center 24%;
}

.page-copy .button {
  margin-top: 18px;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  content: "✓";
  font-size: 12px;
  font-weight: 700;
}

.stat-strip {
  padding: 76px 0;
  background: var(--deep);
  color: #fff;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 6px 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.stat-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.value-grid,
.service-card-grid,
.review-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card,
.service-info-card {
  min-height: 300px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(11, 24, 33, 0.04);
}

.value-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 30px;
}

.value-card h3,
.service-info-card h3 {
  margin: 0 0 14px;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
}

.value-card p,
.service-info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.image-feature > img {
  width: 100%;
  height: 610px;
  border-radius: 22px;
  object-fit: cover;
}

.service-details {
  padding: 40px 0 120px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 86px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail:nth-child(even) .service-detail-media {
  order: 2;
}

.service-detail-media {
  height: 520px;
  overflow: hidden;
  border-radius: 22px;
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-number {
  display: block;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail h2 {
  margin: 0 0 20px;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.service-detail p {
  color: var(--muted);
  line-height: 1.75;
}

.emergency-band {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background: var(--deep);
  color: #fff;
}

.emergency-band::after {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(226, 106, 45, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(226, 106, 45, 0.06),
    0 0 0 140px rgba(226, 106, 45, 0.035);
  content: "";
}

.emergency-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.emergency-inner h2 {
  max-width: 770px;
  margin: 0;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.rating-panel {
  padding: 58px;
  border-radius: 22px;
  background: var(--deep);
  color: #fff;
}

.rating-number {
  display: block;
  margin-bottom: 10px;
  font-size: 80px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.star-row {
  color: var(--green);
  font-size: 22px;
  letter-spacing: 0.12em;
}

.rating-panel p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 58px;
}

.rating-overview.after-platforms {
  margin-top: 96px;
}

.platform-card {
  display: flex;
  min-height: 290px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(11, 24, 33, 0.05);
}

.platform-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.platform-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.platform-brand strong {
  font-size: 28px;
  font-weight: 500;
}

.platform-card p {
  margin: 24px 0;
  color: var(--muted);
  line-height: 1.65;
}

.platform-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.review-page-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-page-grid .testimonial-card {
  min-height: 230px;
}

.review-source {
  display: block;
  margin-top: 22px;
  color: var(--green);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.project-page-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.project-page-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.project-page-card:hover img {
  transform: scale(1.035);
}

.project-card-copy {
  padding: 30px 32px 34px;
}

.project-card-copy span {
  color: var(--green);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-card-copy h3 {
  margin: 13px 0 12px;
  font-size: 27px;
  font-weight: 500;
}

.project-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.project-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.project-result {
  padding: 30px;
  border-radius: 16px;
  background: var(--soft);
}

.project-result strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 500;
}

.project-result span {
  color: var(--muted);
  font-size: 13px;
}

.contact-page {
  padding: 88px 0 124px;
  background: var(--soft);
}

.contact-heading {
  max-width: 830px;
  margin-bottom: 58px;
}

.contact-heading h1 {
  margin: 22px 0 22px;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.contact-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: 30px;
  align-items: stretch;
}

.contact-info,
.contact-form-card {
  border-radius: 22px;
}

.contact-info {
  padding: 46px;
  background: var(--deep);
  color: #fff;
}

.contact-info h2 {
  margin: 24px 0 20px;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.contact-info > p {
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact-detail {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-detail span {
  display: block;
  margin-bottom: 6px;
  color: #f2b18d;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.contact-form-card {
  padding: 46px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(11, 24, 33, 0.06);
}

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

.form-grid label {
  display: grid;
  gap: 9px;
}

.form-grid label > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-width: 0;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-grid input,
.form-grid select {
  height: 54px;
}

.form-grid textarea {
  min-height: 148px;
  padding-top: 15px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(226, 106, 45, 0.1);
}

.form-span {
  grid-column: 1 / -1;
}

.contact-submit {
  margin-top: 28px;
}

.contact-note {
  margin-top: 16px;
  color: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.65, 0.3, 1),
    transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

*:focus-visible {
  outline: 3px solid #f2b18d;
  outline-offset: 4px;
}

@media (min-width: 301px) and (max-width: 1080px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .main-navigation {
    gap: 23px;
    margin-left: 35px;
  }

  .hero-inner {
    grid-template-columns: 1fr 420px;
    gap: 45px;
  }

  .hero-copy h1 {
    font-size: 60px;
  }

  .about-grid {
    gap: 65px;
  }

  .service-image-wrap {
    height: 420px;
  }

  .testimonial-viewport {
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .testimonial-card {
    padding: 21px;
  }

  .footer-main {
    grid-template-columns: 1.25fr 1fr 0.9fr;
    gap: 42px;
  }

  .instagram {
    display: none;
  }
}

@media (min-width: 301px) and (max-width: 820px) {
  .section {
    padding: 86px 0;
  }

  .site-header {
    height: 78px;
  }

  .logo-link {
    width: 142px;
  }

  .menu-toggle {
    display: flex;
  }

  .header-button {
    display: none;
  }

  .main-navigation {
    position: fixed;
    inset: 78px 0 auto;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    margin: 0;
    padding: 32px 24px 38px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(11, 24, 33, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .menu-open .main-navigation {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .hero-inner {
    min-height: 940px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    align-content: center;
    padding: 75px 0;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 10vw, 66px);
  }

  .hero-copy p {
    font-size: 16px;
  }

  .booking-card {
    width: min(100%, 520px);
    padding: 32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .about-media,
  .about-main-image {
    min-height: 0;
    height: 590px;
  }

  .about-copy {
    padding: 0;
  }

  .heading-split {
    align-items: flex-start;
    flex-direction: column;
    gap: 31px;
  }

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

  .service-image-wrap {
    height: 540px;
  }

  .portfolio-grid {
    height: 1100px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
  }

  .gallery-one { grid-area: 1 / 1 / 2 / 2; }
  .gallery-two { grid-area: 1 / 2 / 2 / 3; }
  .gallery-three { grid-area: 2 / 1 / 3 / 3; }
  .gallery-four { grid-area: 3 / 1 / 4 / 3; }
  .gallery-five { grid-area: 4 / 1 / 5 / 2; }
  .gallery-six { grid-area: 4 / 2 / 5 / 3; }

  .process-media {
    height: 930px;
  }

  .process-media > img {
    height: 54%;
  }

  .process-card {
    top: auto;
    right: 22px;
    bottom: 22px;
    left: 22px;
    width: auto;
  }

  .testimonial-viewport {
    width: 100%;
    margin-left: 0;
    padding: 0 20px;
  }

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

  .cta {
    min-height: 500px;
  }

  .cta-inner {
    min-height: 500px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .footer-top,
  .footer-actions {
    flex-direction: column;
  }

  .footer {
    height: auto;
    min-height: 615px;
  }

  .newsletter-form {
    width: min(100%, 490px);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 301px) and (max-width: 540px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .booking-row,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .about-media,
  .about-main-image {
    height: 470px;
  }

  .review-float {
    right: 15px;
    bottom: 18px;
    left: 15px;
    width: auto;
  }

  .about-copy h2,
  .section-heading h2,
  .services .section-heading h2,
  .cta h2 {
    font-size: 38px;
  }

  .heading-actions,
  .footer-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .service-image-wrap {
    height: 430px;
  }

  .portfolio-grid {
    height: 1250px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }

  .gallery-one { grid-area: 1 / 1 / 2 / 2; }
  .gallery-two { grid-area: 2 / 1 / 3 / 2; }
  .gallery-three { grid-area: 3 / 1 / 4 / 2; }
  .gallery-four { grid-area: 4 / 1 / 5 / 2; }
  .gallery-five { grid-area: 5 / 1 / 6 / 2; }
  .gallery-six { grid-area: 6 / 1 / 7 / 2; }

  .process-card {
    padding: 28px;
  }

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

  .testimonial-card:nth-child(n + 5) {
    display: none;
  }

  .blog-image {
    height: 280px;
  }

  .footer-signup h2 {
    font-size: 38px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 300px) {
  html,
  body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    background: #0e0e0e;
  }

  html::before,
  html::after,
  body::before {
    position: fixed;
    z-index: 1000;
    display: block;
    pointer-events: none;
    content: "";
  }

  html::before {
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(#3b3b3f 0 50%, #303034 50% 100%);
  }

  html::after {
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(#434344 0 20%, #202021 20% 100%);
  }

  body::before {
    top: 2px;
    bottom: 5px;
    left: 0;
    width: 4px;
    background: linear-gradient(
      90deg,
      #a9441d 0 25%,
      #c65a25 25% 50%,
      #e27a43 50% 75%,
      #f8e5d8 75% 100%
    );
  }

  .scale-shell {
    position: relative;
    width: calc(100vw - 7px);
    margin-top: 2px;
    margin-left: 4px;
    overflow: hidden;
  }

  .site {
    width: 1600px;
    transform-origin: top left;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (min-width: 301px) and (max-width: 1080px) {
  .story-grid,
  .image-feature,
  .rating-overview {
    gap: 52px;
  }

  .service-detail {
    gap: 52px;
  }

  .value-card,
  .service-info-card {
    padding: 30px;
  }
}

@media (min-width: 301px) and (max-width: 820px) {
  .page-hero,
  .page-hero-inner {
    min-height: 580px;
  }

  .page-hero-inner {
    padding-bottom: 72px;
  }

  .page-hero h1 {
    font-size: 56px;
  }

  .page-section {
    padding: 88px 0;
  }

  .story-grid,
  .image-feature,
  .rating-overview,
  .service-detail {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .service-detail:nth-child(even) .service-detail-media {
    order: 0;
  }

  .story-images {
    height: 560px;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 0;
  }

  .stat-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .value-grid,
  .service-card-grid,
  .review-page-grid {
    grid-template-columns: 1fr 1fr;
  }

  .image-feature > img {
    height: 520px;
  }

  .service-details {
    padding-bottom: 88px;
  }

  .service-detail {
    padding: 65px 0;
  }

  .emergency-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .platform-grid,
  .project-page-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form-card {
    order: -1;
  }

  .project-page-card img {
    height: 390px;
  }
}

@media (min-width: 301px) and (max-width: 540px) {
  .page-hero,
  .page-hero-inner {
    min-height: 540px;
  }

  .page-hero-inner {
    padding-bottom: 54px;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .page-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .page-opening,
  .contact-page {
    padding-top: 64px;
  }

  .page-heading h2,
  .page-copy h2,
  .service-detail h2,
  .emergency-inner h2 {
    font-size: 38px;
  }

  .story-images {
    height: 470px;
    grid-template-columns: 1fr 1fr;
  }

  .stat-strip {
    padding: 60px 0;
  }

  .stat-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stat-item,
  .stat-item:first-child,
  .stat-item:nth-child(3) {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .stat-item:first-child {
    border-top: 0;
  }

  .value-grid,
  .service-card-grid,
  .review-page-grid,
  .project-results {
    grid-template-columns: 1fr;
  }

  .value-card,
  .service-info-card,
  .platform-card {
    min-height: 0;
    padding: 30px;
  }

  .image-feature > img,
  .service-detail-media {
    height: 410px;
  }

  .service-detail {
    gap: 34px;
    padding: 52px 0;
  }

  .rating-panel {
    padding: 38px 30px;
  }

  .rating-number {
    font-size: 66px;
  }

  .platform-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .project-page-card img {
    height: 300px;
  }

  .contact-heading h1 {
    font-size: 44px;
  }

  .contact-info,
  .contact-form-card {
    padding: 30px;
  }

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

  .form-span {
    grid-column: auto;
  }
}
