.home-hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  margin-top: calc(var(--header-stack-height) * -1);
  background: var(--bg);
}

.home-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.52) 38%,
    rgba(0, 0, 0, 0.2) 68%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  width: min(var(--site-width), 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.home-hero__content {
  width: 100%;
  margin: 0 auto;
}

.home-hero__eyebrow {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-one);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero__title {
  margin: 0;
  color: var(--text);
  font-family: var(--font-two);
  font-size: clamp(5rem, 8vw, 7.25rem);
  line-height: 0.95;
  letter-spacing: 1px;
  text-wrap: balance;
}

.home-hero__copy {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-one);
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 52ch;
}

.home-hero__actions {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.home-hero__cta {
  border: 0;
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-one);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.floating-callout {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1150;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  text-decoration: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.floating-callout.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1rem);
}

.floating-callout__bubble {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: auto;
  max-width: min(19rem, calc(100vw - 7rem));
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(13, 13, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.05;
}

.floating-callout__bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.68rem;
  width: 0.82rem;
  height: 1rem;
  background: rgba(255, 255, 255, 0.12);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.floating-callout__bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.58rem;
  width: 0.72rem;
  height: 0.88rem;
  background: rgba(13, 13, 15, 0.92);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.floating-callout__icon {
  position: relative;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 36px rgba(198, 40, 40, 0.35);
  flex: 0 0 auto;
}

.floating-callout__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}

@media (max-width: 900px) {
  .home-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.38) 48%,
      rgba(0, 0, 0, 0.24) 100%
    );
  }

  .home-hero__inner {
    width: var(--site-width);
  }

  .home-hero__content {
    width: min(100%, 640px);
  }

  .home-hero__title {
    font-size: clamp(3.2rem, 8vw, 4.8rem);
  }

  .home-hero__copy {
    font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  }
}

@media (max-width: 680px) {
  .home-hero {
    min-height: 100dvh;
  }

  .home-hero__inner {
    width: var(--site-width);
    min-height: 100dvh;
  }

  .home-hero__content {
    width: 100%;
    max-width: 100%;
  }

  .home-hero__eyebrow {
    margin-bottom: 0.7rem;
    font-size: 0.82rem;
  }

  .home-hero__title {
    font-size: clamp(3.2rem, 12vw, 4.2rem);
  }

  .home-hero__copy {
    font-size: 1rem;
    max-width: 70%;
  }

  .home-hero__actions {
    margin-top: 1.35rem;
  }

  .floating-callout {
    right: 0.75rem;
    bottom: 0.75rem;
    gap: 0.34rem;
  }

  .floating-callout__bubble {
    min-height: auto;
    max-width: min(14rem, calc(100vw - 6rem));
    padding: 0.42rem 0.85rem;
    font-size: 0.84rem;
  }

  .floating-callout__bubble::before {
    right: -0.6rem;
    width: 0.72rem;
    height: 0.88rem;
  }

  .floating-callout__bubble::after {
    right: -0.52rem;
    width: 0.64rem;
    height: 0.78rem;
  }

  .floating-callout__icon {
    width: 3.1rem;
    height: 3.1rem;
  }

  .floating-callout__icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-callout {
    transition: none;
  }
}

.hero-points {
  width: 100%;
  padding: 5rem 0;
  background: var(--bg);
  color: var(--text);
}

.hero-points__inner {
  width: var(--site-width);
  margin: 0 auto;
}

.hero-points__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-point {
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.hero-point__icon {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-point__icon svg {
  width: 100%;
  height: 100%;
}

.hero-point__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-two);
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  line-height: 1.1;
  letter-spacing: 1px;
  color: var(--text);
}

.hero-point__copy {
  margin: 0;
  font-family: var(--font-one);
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(243, 242, 239, 0.82);
  max-width: 32ch;
}

.hero-points__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.hero-points__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-family: var(--font-one);
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  line-height: 1.5;
  color: rgba(243, 242, 239, 0.92);
}

.hero-points__check {
  flex: 0 0 auto;
  width: 1.3rem;
  height: 1.3rem;
  color: #2fbf5f;
  margin-top: 0.08rem;
}

.hero-points__check svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .hero-points {
    padding: 4.2rem 0;
  }

  .hero-points__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .hero-point {
    padding: 1.2rem 1rem;
  }

  .hero-point__copy {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .hero-points__grid {
    grid-template-columns: 1fr;
  }

  .hero-points__list li {
    font-size: 1rem;
    gap: 0.7rem;
  }

  .hero-points__check {
    width: 1.2rem;
    height: 1.2rem;
  }
}

/* ── About section ─────────────────────────────────── */
.about-section {
  width: 100%;
  padding: 6rem 0;
  background: var(--bg);
  color: var(--text);
}

.about-section__inner {
  width: var(--site-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}

.about-section__image-col {
  position: relative;
  display: flex;
  align-items: center;
}

.about-section__image {
  display: block;
  width: 100%;
  max-width: 85%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
}

.about-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}

.about-section__eyebrow {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-one);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-section__heading {
  margin: 0 0 1rem;
  font-family: var(--font-two);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
}

.about-section__quote {
  margin: 0;
  font-family: var(--font-one);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: rgba(243, 242, 239, 0.86);
  font-style: italic;
}

.about-section__points-heading {
  margin: 0 0 1.2rem;
  font-family: var(--font-two);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--text);
}

@media (max-width: 1024px) {
  .about-section {
    padding: 4.5rem 0;
  }

  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }

  .about-section__image {
    max-width: 100%;
    order: 3;
  }

  .about-section__content {
    order: 1;
    justify-content: flex-start;
    gap: 2rem;
  }
}

/* ── Photo rows ─────────────────────────────────── */
.photo-rows {
  width: 100%;
  padding: 3rem 0;
  background: var(--bg);
  color: var(--text);
}

.photo-rows__inner {
  width: var(--site-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.photo-rows__row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.photo-rows__row--flip {
  grid-template-columns: 1fr 340px;
}

.photo-rows__row--flip .photo-rows__img-col {
  order: 2;
}

.photo-rows__row--flip .photo-rows__text-col {
  order: 1;
  text-align: right;
}

.photo-rows__img-col img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-rows__text-col h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-two);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--text);
}

.photo-rows__text-col p {
  margin: 0;
  font-family: var(--font-one);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  color: rgba(243, 242, 239, 0.84);
}

@media (max-width: 900px) {
  .photo-rows__row,
  .photo-rows__row--flip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .photo-rows__row--flip .photo-rows__img-col {
    order: unset;
  }

  .photo-rows__row--flip .photo-rows__text-col {
    order: unset;
    text-align: left;
  }

  .photo-rows__inner {
    gap: 3rem;
  }
}

/* ─────────────────────────────────────────────────── */
.pricing-section {
  position: relative;
  width: 100%;
  padding: 5.5rem 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
}

.pricing-section__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pricing-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.58) 45%,
    rgba(0, 0, 0, 0.68) 100%
  );
}

.pricing-section__inner {
  position: relative;
  z-index: 2;
  width: var(--site-width);
  margin: 0 auto;
}

.pricing-section__section-heading {
  margin: 0 0 1.25rem;
  color: var(--text);
  font-family: var(--font-two);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-wrap: balance;
}

.pricing-section__local + .pricing-section__section-heading {
  margin-top: 3rem;
}

.pricing-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-section__grid--single {
  grid-template-columns: minmax(0, 380px);
  justify-content: start;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pricing-card__route {
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--font-one);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 18ch;
}

.pricing-card__price {
  margin: 0;
  color: #fff;
  font-family: var(--font-one);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}

.pricing-card__meta {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-one);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 28ch;
}

.pricing-card__cta,
.pricing-local-card__cta {
  width: fit-content;
  margin-top: 1.25rem;
  border: 0;
  border-radius: var(--radius);
  padding: 0.95rem 1.15rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-one);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.pricing-section__local {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .pricing-section {
    padding: 4.5rem 0;
  }

  .pricing-section__grid,
  .pricing-section__local,
  .pricing-section__grid--single {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .pricing-card {
    padding: 1rem;
  }

  .pricing-card__cta {
    width: 100%;
    text-align: center;
  }
}

.contact-section {
  width: 100%;
  padding: 5rem 0;
  background: var(--bg);
  color: var(--text);
}

.contact-section__inner {
  width: var(--site-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.contact-section__intro {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-section__eyebrow {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-one);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-section__title {
  margin: 0;
  color: var(--text);
  font-family: var(--font-one);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.96;
  max-width: 15ch;
}

.contact-section__copy {
  margin: 1rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-one);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 36ch;
}

.contact-section__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-one);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1;
}

.contact-section__phone svg {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}

.contact-section__form-wrap {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--accent);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  color: var(--text-dark);
  width: 100%;
  max-width: 620px;
}

.contact-form {
  font-family: var(--font-one);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5rem;
  row-gap: 1.25rem;
  align-items: start;
}

.contact-form__submit {
  width: 100%;
  margin-top: 1.75rem;
  border: 0;
  border-radius: var(--radius);
  padding: 1rem;
  background: #fff;
  color: var(--accent);
  font-family: var(--font-one);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.contact-section__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.contact-section__gallery img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1024px) {
  .contact-section__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-section__intro {
    align-items: flex-start;
    text-align: left;
  }

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

  .contact-section__gallery img:not(:first-child) {
    display: none;
  }
}

@media (max-width: 680px) {
  .contact-section {
    padding: 4rem 0;
  }

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

  .contact-section__title {
    max-width: none;
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .contact-section__phone {
    font-size: 1.15rem;
  }

  .contact-section__gallery img {
    aspect-ratio: 1 / 1.08;
  }
}
