:root {
  --paper: #f7f5f0;
  --paper-deep: #e8e1d7;
  --ink: #1f211e;
  --muted: #686a64;
  --olive: #595d4d;
  --olive-deep: #494d40;
  --dark: #2c2f29;
  --line: rgba(31, 33, 30, 0.24);
  --line-light: rgba(255, 255, 255, 0.26);
  --white: #fff;
  --container: 1240px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body.body--menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

/* Global / Utility Components */
.container {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-number {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.arrow {
  display: inline-block;
  margin-left: 0.45em;
  font-size: 0.9em;
  transform: translateY(-0.03em) rotate(-2deg);
  transition: transform 180ms ease;
}

a:hover .arrow,
button:hover .arrow {
  transform: translate(3px, -3px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid #897b6e;
  background: #887d73;
  color: var(--white);
  cursor: pointer;
  padding: 13px 23px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--olive-deep);
  background: #6b625a;
}

.button:active {
  transform: translateY(1px);
}

.text-link {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  color: var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  transition: all 0.2s ease-in-out;  
}

.text-link:hover {
  color: #000;
  border-bottom: #000 1px solid;  
}

.icon {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding-bottom: 3px;
}

/* Header Component */
.header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: grid;
  width: min(calc(100% - 80px), var(--container));
  height: 100%;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
}

.header__logo {
  justify-self: start;
  img {
    max-width: 120px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.header__nav-link {
  position: relative;
  padding: 8px 0;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.header__nav-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.header__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__cta {
  min-height: 48px;
  justify-self: end;
  padding-inline: 21px;
  font-size: 0.9rem;
}

.header__toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.header__toggle-bar,
.header__toggle::before,
.header__toggle::after {
  width: 19px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.header__toggle[aria-expanded="true"] .header__toggle-bar {
  opacity: 0;
}

.header__toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.header__toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu Component */
.mobile-menu {
  position: fixed;
  z-index: 40;
  inset: var(--header-height) 0 0;
  display: grid;
  visibility: hidden;
  align-content: start;
  gap: 0;
  padding: 22px;
  background: var(--paper);
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms;
  counter-reset: liteplo-menu;
}

.mobile-menu--open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__link {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  counter-increment: liteplo-menu;
}

.mobile-menu__link::after {
  content: counter(liteplo-menu, decimal-leading-zero);
}

.mobile-menu__button {
  min-height: 54px;
  margin-top: 26px;
  border-bottom: 0;
  color: var(--white);
  font-size: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - var(--header-height));
  align-items: center;
  overflow: hidden;
  background: #1e221d;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 22, 19, 0.72) 0%,
    rgba(18, 22, 19, 0.45) 45%,
    rgba(18, 22, 19, 0.08) 85%
  );
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100vh - var(--header-height));
  align-items: flex-start;
}

.hero__copy {
  display: flex;
  width: 100%;
  max-width: 650px;
  min-height: calc(100vh - var(--header-height));
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(0px, 1.5vw, 16px);
  color: var(--white);
}

.hero__eyebrow {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.hero__title {
  max-width: 580px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero__lead {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.hero__description {
  max-width: 480px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 48px;
}

.hero__actions .button {
  border-radius: 0;
  border-color: var(--olive);
  background: var(--olive);
  color: var(--white);
  padding: 13px 23px;
  font-weight: 400;
}

.hero__actions .button:hover {
  border-color: var(--olive-deep);
  background: #6b625a;
}

.hero__actions .text-link {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-weight: 400;
  opacity: 0.92;
}

.hero__actions .text-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
  opacity: 1;
}

.hero__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

/* Approach Section */
.approach {
  padding: 82px 0 58px;
  text-align: center;
}

.approach__eyebrow {
  margin-bottom: 14px;
}

.approach__title {
  max-width: 710px;
  margin-inline: auto;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1.02;
}

.approach__text {
  max-width: 600px;
  margin: 18px auto 0;
  color: var(--muted);
}

/* Services Section */
.services {
  padding-bottom: 56px;
}

.services__heading {
  border-top: 1px solid var(--line);
  padding-top: 35px;
}

.services__title {
  margin-bottom: 26px;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding: 0 16px 28px 16px;
}

.service-card:last-child {
  border-right: 0;
}

.service-card__image {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  margin-bottom: 20px;
  background: #ddd6ca;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card:hover .service-card__image img {
  transform: scale(1.025);
}

.service-card__title {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.service-card__text {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.42;
}

.service-card__detail {
  margin-bottom: 22px;
  color: var(--ink);
}

.service-card__link {
  align-self: flex-start;
  margin-top: auto;
  color: #000;
  border-bottom: #000 1px solid;
}

/* Benefits Section */
.benefits {
  background: #887d73;
  color: var(--white);
  padding: clamp(54px, 5vw, 70px) 0;
}

.benefits__number {
  color: rgba(255, 255, 255, 0.63);
}

.benefits__grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 0.8fr 1.25fr;
  gap: clamp(40px, 5vw, 80px);
}

.benefits__title {
  max-width: 470px;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

.benefits__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.benefit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line-light);
  padding: 14px clamp(16px, 2vw, 28px) 14px 0;
}

.benefit:nth-child(even) {
  border-left: 1px solid var(--line-light);
  padding-right: 0;
  padding-left: clamp(20px, 2.5vw, 38px);
}

.benefit:nth-child(n + 3) {
  border-bottom: 0;
}

.benefit__title {
  margin-bottom: 6px;
  font-size: clamp(1.2rem, 1.7vw, 1.85rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.benefit__text {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.92rem, 1.1vw, 1.15rem);
  line-height: 1.35;
}

/* Experience Section */
.experience {
  padding: 36px 0 50px;
}

.experience__title {
  margin-bottom: 38px;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

.experience__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: liteplo-step;
}

.step {
  min-height: 125px;
  border-right: 1px solid var(--line);
  padding-right: 40px;
  counter-increment: liteplo-step;
}

/* Step numbers are generated by a CSS counter */
.step::before {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
  font-weight: 600;
  content: counter(liteplo-step, decimal-leading-zero);
}

.step + .step {
  padding-left: 40px;
}

.step:last-child {
  border-right: 0;
  padding-right: 0;
}

.step__title {
  margin-bottom: 7px;
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.step__text {
  max-width: 310px;
  margin-bottom: 0;
  color: var(--muted);
}

/* About Section */
.about {
  display: grid;
  align-items: center;
  padding: 0 0 60px;
  grid-template-columns: 1fr 1.07fr;
  gap: 62px;
  padding-bottom: 20px;
}

.about__image {
  overflow: hidden;
  aspect-ratio: 1.2 / 1;
  background: #ddd6ca;
}

.about__image img {
  height: 100%;
  object-fit: cover;
}

.about__copy {
  max-width: 560px;
}

.about__title {
  margin-bottom: 24px;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

.about__text {
  margin-bottom: 19px;
  color: var(--muted);
}

.about__signature {
  display: block;
  margin-top: 24px;
  color: var(--ink);
  font-family: "Segoe Script", "Bradley Hand", cursive;
  font-size: 2rem;
  transform: rotate(-4deg);
  transform-origin: left center;
}

/* Pricing Section */
.pricing {
  border-top: 1px solid var(--line);
  padding: 36px 0 62px;
}

.pricing__title {
  margin-bottom: 30px;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  display: flex;
  min-height: 268px;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--line);
  padding: 30px 34px 26px;
  text-align: center;
}

.price-card--featured {
  border-color: transparent;
  background: var(--paper-deep);
}

.price-card__label {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.price-card__price {
  margin-bottom: 27px;
  font-size: 2.65rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-card__note {
  margin: auto 0 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-card__button {
  width: 100%;
}

.pricing__footnote {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

/* Booking Section */
.booking {
  background: var(--paper-deep);
  padding: 66px 0;
}

.booking__grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 72px;
}

.booking__title {
  max-width: 420px;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

.booking__intro {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 1.1rem;
}

.booking__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  margin: 32px 0;
}

.booking__location {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
}

.booking__form-wrap {
  border-left: 1px solid var(--line);
  padding-left: 72px;
}

.booking-form {
  display: grid;
  gap: 13px;
}

.booking-form__field {
  display: grid;
  gap: 5px;
}

.booking-form__label {
  color: var(--muted);
  font-size: 0.78rem;
}

.booking-form__input,
.booking-form__textarea {
  width: 100%;
  border: 1px solid rgba(31, 33, 30, 0.4);
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.55);
  padding: 12px 13px;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.booking-form__input {
  height: 45px;
}

.booking-form__textarea {
  min-height: 86px;
  resize: vertical;
}

.booking-form__input:focus,
.booking-form__textarea:focus {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.83);
}

.booking-form__button {
  justify-self: start;
  margin-top: 4px;
  min-width: 250px;
}

.booking-form__note,
.booking-form__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.booking-form__status {
  min-height: 1.15em;
  color: var(--olive-deep);
}

/* Footer Component */
.footer {
  padding: 40px 0 26px;
}

.footer__main {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 40px;
}

.footer__brand {
  flex: 0 0 auto;

  img {
    max-width: 120px;
  }
}

.footer__tagline {
  color: var(--muted);
  font-size: 0.86rem;
  margin-left: clamp(24px, 6vw, 80px);
  margin-right: auto;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  color: var(--muted);
  font-size: 0.84rem;
}

.footer__contact a {
  transition: color 0.2s ease;
}

.footer__contact a:hover {
  color: var(--ink);
}

.footer__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__icon-link {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.footer__icon-link .icon {
  width: 19px;
  height: 19px;
}

.footer__line {
  height: 1px;
  background: var(--line);
}

/* Booking success modal */
.liteplo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.liteplo-modal[hidden] {
  display: none;
}

.liteplo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 33, 30, 0.55);
}

.liteplo-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 46px 40px 40px;
  text-align: center;
}

.liteplo-modal__title {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.liteplo-modal__text {
  margin-bottom: 26px;
  color: var(--muted);
}

.liteplo-modal__close {
  min-width: 180px;
}

/* Contact Form 7 tweaks (form keeps the .booking-form class) */
.booking-form .wpcf7-spinner {
  display: none;
}

.booking-form .wpcf7-not-valid-tip {
  display: none;
}

.booking-form input.wpcf7-not-valid,
.booking-form textarea.wpcf7-not-valid {
  border: 1px solid rgb(255 0 0);
}

.booking-form .wpcf7-response-output {
  display: none;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .hero__title {
    font-size: 3.8rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .container,
  .header__inner {
    width: min(calc(100% - 44px), var(--container));
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .header__nav,
  .header__cta {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .hero,
  .hero__inner,
  .hero__copy {
    min-height: calc(100vh - var(--header-height));
  }

  .hero__image img {
    object-position: center 35%;
  }

  .hero__image::after {
    background: linear-gradient(
      180deg,
      rgba(18, 22, 19, 0.72) 0%,
      rgba(18, 22, 19, 0.52) 55%,
      rgba(18, 22, 19, 0.22) 100%
    );
  }

  .hero__copy {
    padding: 48px 0 36px;
  }

  .hero__eyebrow {
    margin-bottom: 20px;
  }

  .hero__title {
    margin-bottom: 20px;
  }

  .hero__lead {
    margin-bottom: 20px;
  }

  .hero__description {
    margin-bottom: 28px;
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
  }

  .hero__note {
    margin-top: auto;
  }

  .hero__image {
    min-height: 100%;
    max-height: none;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about {
    gap: 40px;
  }

  .booking__grid {
    gap: 45px;
  }

  .booking__form-wrap {
    padding-left: 45px;
  }
}

@media (max-width: 760px) {
  .container,
  .header__inner {
    width: calc(100% - 36px);
  }

  .eyebrow,
  .section-number {
    font-size: 0.7rem;
  }

  .hero__copy {
    padding: 32px 0 24px;
  }

  .hero__eyebrow {
    margin-bottom: 14px;
  }

  .services__grid,
  .experience__steps,
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card + .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 35px;
  }

  .service-card + .service-card {
    padding-top: 35px;
  }

  .service-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .service-card__title {
    font-size: 1.55rem;
  }

  .benefits {
    padding: 60px 0;
  }

  .benefits__grid {
    gap: 43px;
  }

  .benefits__list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .benefit,
  .benefit:nth-child(even),
  .benefit:nth-child(n + 3) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    border-left: 0;
    padding: 22px 0;
  }

  .benefit:first-child {
    padding-top: 0;
  }

  .benefit:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .experience {
    padding: 60px 0 48px;
  }

  .experience__steps {
    gap: 0;
  }

  .step,
  .step + .step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .step:first-child {
    padding-top: 0;
  }

  .step:last-child {
    border-bottom: 0;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 37px;
    padding-bottom: 52px;
  }

  .pricing {
    padding-bottom: 50px;
  }

  .pricing__grid {
    gap: 14px;
  }

  .price-card {
    min-height: 250px;
  }

  .booking {
    padding: 58px 0;
  }

  .booking__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .booking__form-wrap {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 42px;
    padding-left: 0;
  }

  .booking-form__button {
    width: 100%;
  }

  .footer__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__tagline {
    margin-left: 0;
    margin-right: 0;
  }

  .footer__contact {
    align-items: center;
    justify-self: start;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
