:root {
  --ink: #15201b;
  --muted: #667069;
  --paper: #f7f3eb;
  --paper-deep: #ece4d7;
  --white: #fffdf8;
  --forest: #12342b;
  --forest-deep: #071713;
  --forest-soft: #dbe4d7;
  --gold: #d6aa58;
  --gold-light: #f4d890;
  --line: rgba(21, 32, 27, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --header: 74px;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(7, 23, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.tracking-pixel {
  display: none;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 500;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 11px clamp(18px, 3vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 23, 19, 0.94);
  color: #fff;
  backdrop-filter: blur(18px);
}

.brand,
.site-nav a,
.header-phone,
.footer-links a {
  text-decoration: none;
}

.brand {
  min-width: 158px;
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
}

.brand span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--gold-light);
}

.header-phone {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 900;
}

.nav-toggle {
  display: none;
}

.button,
.ecrin-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.ecrin-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.button-primary,
.ecrin-button--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 58%, #bc7841);
  color: #171109;
  box-shadow: 0 16px 38px rgba(214, 170, 88, 0.28);
}

.ecrin-button--outline {
  border-color: rgba(21, 32, 27, 0.38);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 7.2vw, 7.7rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5.1vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.ecrin-kicker {
  margin: 0 0 14px;
  color: #8c6428;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ecrin-kicker--light {
  color: var(--gold-light);
}

.ecrin-lead {
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.65;
}

.ecrin-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-block: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

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

.ecrin-hero {
  position: relative;
  min-height: min(900px, calc(100svh - var(--header) + 90px));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--forest-deep);
  color: #fff;
}

.ecrin-hero__media,
.ecrin-hero__shade {
  position: absolute;
  inset: 0;
}

.ecrin-hero__media {
  background: url("/assets/images/ecrin/ecrin-drone-desktop-poster.webp") center / cover no-repeat;
}

.ecrin-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}

.ecrin-hero__media video.is-ready {
  opacity: 1;
}

.ecrin-hero__shade {
  background:
    linear-gradient(90deg, rgba(3, 12, 10, 0.88) 0%, rgba(3, 12, 10, 0.68) 43%, rgba(3, 12, 10, 0.18) 72%, rgba(3, 12, 10, 0.08) 100%),
    linear-gradient(180deg, rgba(3, 12, 10, 0.14) 0%, rgba(3, 12, 10, 0.16) 52%, rgba(3, 12, 10, 0.7) 100%);
}

.ecrin-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(100px, 15vh, 170px) 150px;
}

.ecrin-hero__copy {
  max-width: 970px;
}

.ecrin-hero__lead {
  max-width: 700px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.16rem, 1.8vw, 1.48rem);
  line-height: 1.55;
}

.ecrin-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-bottom: 28px;
}

.ecrin-rating {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}

.ecrin-rating > span:first-child {
  color: var(--gold-light);
}

.ecrin-rating strong {
  font-size: 1.05rem;
}

.ecrin-rating:hover span:last-child {
  text-decoration: underline;
}

.ecrin-hero__copy small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
}

.ecrin-hero__markers {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  background: rgba(4, 18, 14, 0.78);
  backdrop-filter: blur(16px);
}

.ecrin-hero__markers p {
  margin: 0;
  padding: 20px 18px;
  text-align: center;
}

.ecrin-hero__markers p + p {
  border-left: 1px solid var(--line-light);
}

.ecrin-hero__markers strong,
.ecrin-hero__markers span {
  display: block;
}

.ecrin-hero__markers strong {
  margin-bottom: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-weight: 500;
}

.ecrin-hero__markers span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.ecrin-hero__credit {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 112px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  writing-mode: vertical-rl;
}

.ecrin-plan {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: start;
  gap: clamp(56px, 8vw, 120px);
  padding-block: 130px;
}

.ecrin-plan__intro {
  position: sticky;
  top: calc(var(--header) + 36px);
}

.ecrin-plan__intro > p:not(.ecrin-kicker) {
  color: var(--muted);
}

.ecrin-plan__steps {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.ecrin-plan__steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.ecrin-plan__steps article > span,
.ecrin-clarity li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
}

.ecrin-plan__steps h3,
.ecrin-plan__steps p {
  margin: 0;
}

.ecrin-plan__steps h3 {
  margin-bottom: 4px;
  font-size: 1.28rem;
}

.ecrin-plan__steps p {
  color: var(--muted);
}

.ecrin-booking {
  scroll-margin-top: calc(var(--header) + 28px);
  padding: clamp(28px, 4vw, 50px);
  border-radius: var(--radius);
  background: var(--forest-deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.ecrin-booking h2 {
  font-size: clamp(2.6rem, 4.4vw, 4.4rem);
}

.ecrin-booking > p:not(.ecrin-kicker) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.ecrin-booking form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ecrin-booking__wide {
  grid-column: 1 / -1;
}

.ecrin-field label,
.ecrin-duration legend {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ecrin-field input {
  width: 100%;
  min-height: 52px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  color-scheme: dark;
}

.ecrin-field input:focus {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.12);
}

.ecrin-duration {
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

.ecrin-duration > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ecrin-duration button {
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}

.ecrin-duration button[aria-pressed="true"] {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: #171109;
}

.ecrin-form-status {
  min-height: 24px;
  margin: -2px 0 0;
  color: var(--gold-light);
  font-size: 0.9rem;
}

.ecrin-booking__trust {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  list-style: none;
}

.ecrin-booking__trust li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--gold-light);
  font-weight: 900;
}

.ecrin-proof {
  padding-block: 130px 118px;
  background: var(--white);
}

.ecrin-proof__heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.ecrin-proof__heading p:last-child {
  color: var(--muted);
}

.ecrin-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 260px;
  gap: 12px;
}

.ecrin-gallery figure {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #d9d7ce;
}

.ecrin-gallery__wide {
  grid-column: span 8 !important;
}

.ecrin-gallery__portrait {
  grid-row: span 2;
}

.ecrin-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.ecrin-gallery figure:hover img {
  transform: scale(1.025);
}

.ecrin-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 50px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(3, 12, 10, 0.8));
  color: #fff;
  font-size: 0.9rem;
}

.ecrin-proof__source {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.78rem;
}

.ecrin-rhythm {
  padding-block: 130px;
  background: var(--forest-deep);
  color: #fff;
}

.ecrin-rhythm .ecrin-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.7);
}

.ecrin-rhythm__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 56px 0 42px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.ecrin-rhythm__grid article {
  padding: 38px 30px;
}

.ecrin-rhythm__grid article + article {
  border-left: 1px solid var(--line-light);
}

.ecrin-rhythm__grid span,
.ecrin-life__groups article > span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ecrin-rhythm__grid p {
  color: rgba(255, 255, 255, 0.66);
}

.ecrin-life {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(55px, 8vw, 110px);
  padding-block: 130px;
}

.ecrin-life__intro {
  position: sticky;
  top: calc(var(--header) + 36px);
  align-self: start;
}

.ecrin-life__intro > p:last-child {
  color: var(--muted);
}

.ecrin-life__groups article {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.ecrin-life__groups article:last-child {
  border-bottom: 1px solid var(--line);
}

.ecrin-life__groups ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 24px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.ecrin-life__groups li::before {
  content: "—";
  margin-right: 8px;
  color: #9a6b2d;
}

.ecrin-life__groups p {
  color: var(--muted);
}

.ecrin-review {
  padding-block: 110px;
  background: var(--paper-deep);
}

.ecrin-review__inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.ecrin-review__score {
  min-height: 360px;
  display: grid;
  place-content: center;
  padding: 35px;
  border-radius: 50% 50% 46% 54% / 48% 45% 55% 52%;
  background: var(--forest);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.ecrin-review__score > span {
  color: var(--gold-light);
  font-size: 1.8rem;
}

.ecrin-review__score strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 500;
  line-height: 0.9;
}

.ecrin-review__score small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.ecrin-review__copy p:not(.ecrin-kicker) {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted);
}

.ecrin-clarity {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 8vw, 120px);
  padding-block: 130px;
}

.ecrin-clarity ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.ecrin-clarity li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.ecrin-clarity strong {
  display: block;
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.ecrin-clarity li p {
  margin: 0;
  color: var(--muted);
}

.ecrin-faq {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 8vw, 120px);
  padding-block: 50px 130px;
}

.ecrin-faq__intro {
  position: sticky;
  top: calc(var(--header) + 36px);
  align-self: start;
}

.ecrin-faq__intro > p:last-child {
  color: var(--muted);
}

.ecrin-faq__list {
  border-top: 1px solid var(--line);
}

.ecrin-faq details {
  border-bottom: 1px solid var(--line);
}

.ecrin-faq summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.22;
  list-style: none;
}

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

.ecrin-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #95672d;
  font-family: Inter, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
}

.ecrin-faq details[open] summary::after {
  content: "−";
}

.ecrin-faq details p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 25px;
  color: var(--muted);
}

.ecrin-final {
  padding-block: 140px;
  background:
    linear-gradient(90deg, rgba(4, 18, 14, 0.9), rgba(4, 18, 14, 0.68)),
    url("/assets/images/ecrin/ecrin-drone-desktop-poster.webp") center 58% / cover no-repeat;
  color: #fff;
  text-align: center;
}

.ecrin-final h2,
.ecrin-final > div > p:not(.ecrin-kicker) {
  max-width: 900px;
  margin-inline: auto;
}

.ecrin-final > div > p:not(.ecrin-kicker) {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px clamp(20px, 4vw, 60px) 96px;
  background: #04100d;
  color: #fff;
}

.site-footer p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 850;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.mobile-cta {
  position: fixed;
  z-index: 220;
  right: max(8px, env(safe-area-inset-right));
  bottom: max(8px, env(safe-area-inset-bottom));
  left: max(8px, env(safe-area-inset-left));
  display: none;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 7px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 50px rgba(7, 23, 19, 0.25);
  backdrop-filter: blur(15px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--forest-deep);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.mobile-cta a:last-child {
  background: var(--gold);
}

.mobile-cta.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(130%);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
  }

  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    width: 22px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle span {
    position: relative;
  }

  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle span::before {
    top: -7px;
  }

  .nav-toggle span::after {
    top: 7px;
  }

  .nav-toggle[aria-expanded="true"] span {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: none;
    align-content: start;
    justify-content: stretch;
    padding: 20px;
    background: rgba(4, 16, 13, 0.98);
    color: #fff;
    overflow-y: auto;
  }

  .nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 60px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.05rem;
  }

  .header-phone {
    display: none;
  }

  .ecrin-plan,
  .ecrin-life,
  .ecrin-clarity,
  .ecrin-faq {
    grid-template-columns: 1fr;
  }

  .ecrin-plan__intro,
  .ecrin-life__intro,
  .ecrin-faq__intro {
    position: static;
  }

  .ecrin-proof__heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 699px) {
  :root {
    --header: 66px;
  }

  .site-header {
    padding: 9px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    font-size: 14px;
  }

  .brand strong {
    font-size: 24px;
  }

  .site-header > .button {
    display: none;
  }

  .ecrin-shell {
    width: min(100% - 32px, 1180px);
  }

  h1 {
    font-size: clamp(3.25rem, 15vw, 4.55rem);
  }

  h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.25rem);
  }

  .ecrin-hero {
    min-height: 810px;
  }

  .ecrin-hero__media {
    background-image: url("/assets/images/ecrin/ecrin-drone-mobile-poster.webp");
    background-position: center;
  }

  .ecrin-hero__shade {
    background:
      linear-gradient(180deg, rgba(3, 12, 10, 0.18) 0%, rgba(3, 12, 10, 0.42) 37%, rgba(3, 12, 10, 0.92) 82%, rgba(3, 12, 10, 0.96) 100%);
  }

  .ecrin-hero__inner {
    padding-block: 210px 150px;
  }

  .ecrin-hero__lead {
    font-size: 1.08rem;
  }

  .ecrin-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ecrin-hero__actions .ecrin-button,
  .ecrin-hero__actions .ecrin-link {
    width: 100%;
  }

  .ecrin-hero__actions .ecrin-link {
    justify-content: center;
  }

  .ecrin-hero__markers {
    grid-template-columns: 1fr;
  }

  .ecrin-hero__markers p {
    padding: 13px 16px;
  }

  .ecrin-hero__markers p + p {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .ecrin-hero__markers span {
    display: none;
  }

  .ecrin-hero__credit {
    display: none;
  }

  .ecrin-plan,
  .ecrin-life,
  .ecrin-clarity {
    gap: 46px;
    padding-block: 86px;
  }

  .ecrin-booking {
    margin-inline: -6px;
    padding: 26px 20px;
  }

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

  .ecrin-booking__wide {
    grid-column: auto;
  }

  .ecrin-proof {
    padding-block: 86px 78px;
  }

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

  .ecrin-gallery figure,
  .ecrin-gallery__wide,
  .ecrin-gallery__portrait {
    grid-column: auto !important;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .ecrin-gallery__portrait {
    aspect-ratio: 3 / 4;
  }

  .ecrin-rhythm {
    padding-block: 88px;
  }

  .ecrin-rhythm__grid {
    grid-template-columns: 1fr;
  }

  .ecrin-rhythm__grid article {
    padding: 28px 0;
  }

  .ecrin-rhythm__grid article + article {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .ecrin-life__groups ul {
    grid-template-columns: 1fr;
  }

  .ecrin-review {
    padding-block: 80px;
  }

  .ecrin-review__inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .ecrin-review__score {
    width: min(100%, 320px);
    min-height: 300px;
    margin-inline: auto;
  }

  .ecrin-faq {
    gap: 35px;
    padding-block: 30px 90px;
  }

  .ecrin-faq summary {
    font-size: 1.13rem;
  }

  .ecrin-final {
    padding-block: 96px 110px;
    background-image:
      linear-gradient(180deg, rgba(4, 18, 14, 0.68), rgba(4, 18, 14, 0.94)),
      url("/assets/images/ecrin/ecrin-drone-mobile-poster.webp");
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 100px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .mobile-cta {
    display: grid;
  }
}

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

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

  .ecrin-hero__media video {
    display: none;
  }
}
