:root {
  --milk: #f8f3ec;
  --sand: rgba(232, 224, 214, 0.62);
  --line: #d6c8b9;
  --ink: #242a2a;
  --muted: #53605b;
  --green: #183d35;
  --green-deep: #132f2a;
  --dress-blue: #2f6f87;
  --dress-blue-deep: #1f4e63;
  --sage: #6f8980;
  --clay: #8a5041;
  --accent: #b86f4c;
  --focus: rgba(176, 106, 67, 0.32);
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(36, 42, 42, 0.1);
  --shadow-hover: 0 26px 76px rgba(36, 42, 42, 0.14);
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --header-bg: rgba(247, 243, 238, 0.88);
  --transition: 200ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: #f6efe6;
  font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 62% at 8% 4%, rgba(111, 137, 128, 0.13), transparent 60%),
    radial-gradient(ellipse 72% 56% at 92% 14%, rgba(184, 111, 76, 0.09), transparent 54%),
    linear-gradient(180deg, #fbf7f1 0%, var(--milk) 40%, #f0e7dc 100%);
}

.ambient-bg__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.ambient-bg__grain {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

.ambient-bg__bands {
  position: absolute;
  inset: -20% -10%;
  opacity: 0.42;
  background:
    linear-gradient(
      118deg,
      transparent 38%,
      rgba(122, 143, 138, 0.05) 46%,
      rgba(122, 143, 138, 0.08) 50%,
      rgba(122, 143, 138, 0.05) 54%,
      transparent 62%
    ),
    linear-gradient(
      62deg,
      transparent 30%,
      rgba(176, 106, 67, 0.03) 44%,
      rgba(176, 106, 67, 0.06) 50%,
      rgba(176, 106, 67, 0.03) 56%,
      transparent 68%
    );
  animation: ambient-drift 48s ease-in-out infinite alternate;
}

@keyframes ambient-drift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1.02);
  }

  100% {
    transform: translate3d(1.5%, 1.2%, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-bg__canvas {
    display: none;
  }

  .ambient-bg__bands {
    animation: none;
  }
}

.site-header,
main,
.footer {
  position: relative;
  z-index: 1;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 820px;
  color: #152b27;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.9rem, 5.4vw, 5.6rem);
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin-bottom: 20px;
  font-size: 2.65rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.3;
}

p {
  color: var(--muted);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section--light {
  background: var(--sand);
  border-top: 1px solid rgba(216, 205, 193, 0.45);
  border-bottom: 1px solid rgba(216, 205, 193, 0.35);
}

.hero + .section--light {
  margin-top: -1px;
  border-top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(216, 205, 193, 0.75);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(247, 243, 238, 0.96);
  box-shadow: 0 8px 28px rgba(47, 52, 55, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  transition: opacity var(--transition);
}

.brand:hover {
  opacity: 0.82;
}

.brand__name,
.brand__role {
  display: block;
  line-height: 1.25;
}

.brand__name {
  color: var(--green);
  font-size: 1.02rem;
  font-weight: 700;
}

.brand__name--short {
  display: none;
}

.brand__role {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.93rem;
}

.nav a,
.header-cta {
  text-decoration: none;
}

.nav a {
  position: relative;
  transition: color var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--green);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.footer a:hover {
  color: var(--green);
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 0.93rem;
  font-weight: 700;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.header-cta:hover {
  color: var(--white);
  background: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(39, 67, 61, 0.18);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding-top: 72px;
  padding-bottom: 72px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(15, 28, 25, 0.76) 0%,
      rgba(15, 28, 25, 0.52) 36%,
      rgba(15, 28, 25, 0.18) 72%,
      rgba(15, 28, 25, 0.3) 100%
    ),
    linear-gradient(
      0deg,
      rgba(15, 28, 25, 0.82) 0%,
      rgba(15, 28, 25, 0.34) 36%,
      rgba(15, 28, 25, 0.08) 70%
    ),
    url("../images/ekaterina-akhmetova-02.jpg") center 16% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 74% 52% at 20% 80%, rgba(248, 243, 236, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 150px;
  background: linear-gradient(
    180deg,
    rgba(232, 224, 214, 0) 0%,
    rgba(232, 224, 214, 0.28) 44%,
    rgba(232, 224, 214, 0.62) 100%
  );
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  gap: 0;
  align-items: end;
}

.hero__lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.55;
}

.hero__role {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 24px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  backdrop-filter: blur(14px);
}

.hero h1 {
  max-width: 720px;
  color: var(--white);
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.eyebrow {
  margin-bottom: 14px;
  color: #5a3d36;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.hero__actions,
.footer__inner {
  display: flex;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

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

.button:active {
  transform: translateY(0);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 16px 34px rgba(24, 61, 53, 0.22);
}

.button--primary:hover {
  background: var(--clay);
  box-shadow: 0 14px 28px rgba(139, 78, 69, 0.2);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.button--max {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background:
    radial-gradient(circle at 16% 78%, #00d4ff 0 12%, transparent 28%),
    linear-gradient(135deg, #1097ff 0%, #5737ff 48%, #8b2dff 100%);
  box-shadow: 0 16px 36px rgba(52, 66, 255, 0.28);
}

.button--max:hover {
  background:
    radial-gradient(circle at 16% 78%, #18e0ff 0 12%, transparent 28%),
    linear-gradient(135deg, #00a7ff 0%, #4b2dff 48%, #9a34ff 100%);
  box-shadow: 0 18px 42px rgba(83, 55, 255, 0.34);
}

.button--ghost {
  border-color: var(--line);
  color: var(--green);
  background: var(--surface);
}

.button--ghost:hover {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(47, 52, 55, 0.06);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 42px 0 0;
  max-width: 620px;
}

.trust-list div {
  min-height: 108px;
  padding: 0 16px 0 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.trust-list div:hover {
  transform: translateY(-1px);
  border-color: rgba(111, 137, 128, 0.6);
  box-shadow: none;
}

.trust-list div:last-child {
  border-right: 0;
}

.trust-list dt {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.trust-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero__media {
  display: none;
}

.hero__photo-frame {
  position: relative;
  isolation: isolate;
}

.hero__photo-backdrop {
  position: absolute;
  inset: auto -16px -16px 42px;
  height: 74%;
  border: 1px solid rgba(111, 137, 128, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.36) 0%,
    rgba(111, 137, 128, 0.14) 100%
  );
  z-index: 0;
}

.hero__photo-frame img,
.about__media img,
.final-cta__image img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 480ms ease, box-shadow var(--transition);
}

.hero__photo-frame img {
  aspect-ratio: 0.84;
  object-fit: cover;
  object-position: center 39%;
  box-shadow: 0 30px 90px rgba(36, 42, 42, 0.16);
}

.hero__photo-frame:hover img {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.hero__note {
  position: absolute;
  right: -24px;
  bottom: 34px;
  z-index: 2;
  width: min(292px, 72%);
  padding: 20px;
  border: 1px solid rgba(214, 200, 185, 0.74);
  border-radius: var(--radius);
  color: #39433f;
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.45;
  box-shadow: 0 18px 46px rgba(36, 42, 42, 0.12);
  backdrop-filter: blur(14px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading p {
  font-size: 1.02rem;
}

.section-heading--sticky {
  position: sticky;
  top: 112px;
  align-self: start;
  margin-bottom: 0;
}

.cards-grid {
  display: grid;
  gap: 20px;
}

.directions-grid,
.price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(214, 200, 185, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(36, 42, 42, 0.05);
  backdrop-filter: blur(12px);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 143, 138, 0.55);
  box-shadow: var(--shadow-hover);
}

.direction-card {
  min-height: 248px;
}

.card-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--sage);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
}

.formats__grid {
  max-width: 760px;
}

.format-list {
  display: grid;
  gap: 42px;
}

.format-item {
  padding: 0 0 0 18px;
  border: 0;
  border-left: 2px solid rgba(122, 143, 138, 0.35);
  background: transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.format-item:hover {
  border-left-color: var(--green);
  transform: translateX(2px);
}

.format-item__top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(122, 143, 138, 0.42);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.format-item h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.16;
}

.format-item p {
  margin-bottom: 0;
  max-width: 700px;
  color: var(--ink);
  font-size: clamp(1.08rem, 2.25vw, 1.55rem);
  line-height: 1.34;
}

.icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--green);
  background: var(--sand);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.price-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
}

.price-card__top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.price-card__top span {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid rgba(122, 143, 138, 0.42);
  border-radius: 999px;
  color: var(--green);
  background: #f2f5f2;
  font-size: 0.73rem;
  font-weight: 800;
}

.price {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.about {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      rgba(246, 239, 230, 0.74) 0%,
      rgba(15, 28, 25, 0.05) 23%,
      rgba(15, 28, 25, 0.24) 48%,
      rgba(15, 28, 25, 0.88) 100%
    ),
    linear-gradient(
      90deg,
      rgba(15, 28, 25, 0.78) 0%,
      rgba(15, 28, 25, 0.4) 48%,
      rgba(15, 28, 25, 0.06) 100%
    ),
    url("../images/ekaterina-akhmetova-01.jpg") center 38% / cover no-repeat;
}

.about::before,
.about::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  pointer-events: none;
}

.about::before {
  top: -1px;
  height: 170px;
  background: linear-gradient(
    180deg,
    rgba(246, 239, 230, 0.98) 0%,
    rgba(246, 239, 230, 0.58) 42%,
    rgba(246, 239, 230, 0) 100%
  );
}

.about::after {
  bottom: -1px;
  height: 170px;
  background: linear-gradient(
    180deg,
    rgba(15, 28, 25, 0) 0%,
    rgba(246, 239, 230, 0.28) 58%,
    rgba(246, 239, 230, 0.96) 100%
  );
}

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-items: end;
}

.about__media {
  display: none;
}

.about__content {
  padding-bottom: 34px;
}

.about .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.about h2 {
  max-width: 760px;
  color: var(--white);
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
}

.about p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.fact-list li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.94rem;
  line-height: 1.35;
  backdrop-filter: blur(10px);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.fact-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(216, 205, 193, 0.9);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 8px 24px rgba(47, 52, 55, 0.05);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.steps li:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 111, 135, 0.45);
  box-shadow: var(--shadow-hover);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--dress-blue) 0%, var(--dress-blue-deep) 100%);
  font-weight: 800;
}

.steps h3 {
  color: var(--dress-blue-deep);
}

.steps p {
  color: rgba(31, 78, 99, 0.76);
  margin-bottom: 0;
}

.important {
  position: relative;
  padding: 78px 0;
  background: linear-gradient(180deg, #23413b 0%, #1f3531 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.important::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 40%,
      rgba(255, 255, 255, 0.03) 50%,
      transparent 60%
    );
  pointer-events: none;
}

.important h2,
.important p,
.important .eyebrow {
  color: var(--white);
}

.important .eyebrow {
  opacity: 0.78;
}

.important__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.important__content {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.important-list {
  margin: 0;
  padding-left: 18px;
}

.important-list li {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 14px;
}

.important-list li:last-child {
  margin-bottom: 0;
}

.safety {
  padding: 72px 0;
  background: var(--green);
}

.safety h2,
.safety p,
.safety .eyebrow {
  color: var(--white);
}

.safety .eyebrow {
  opacity: 0.72;
}

.safety__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.safety__content {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.safety__content p {
  margin-bottom: 16px;
  opacity: 0.88;
}

.safety__content p:last-child {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(216, 205, 193, 0.9);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 6px 18px rgba(47, 52, 55, 0.04);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

details:hover {
  border-color: rgba(122, 143, 138, 0.55);
}

details[open] {
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
  transition: color var(--transition);
}

summary:hover {
  color: var(--green);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform var(--transition);
}

details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

details p {
  margin: -4px 22px 22px;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 88svh;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      rgba(246, 239, 230, 0.62) 0%,
      rgba(15, 28, 25, 0.08) 24%,
      rgba(15, 28, 25, 0.34) 54%,
      rgba(15, 28, 25, 0.88) 100%
    ),
    linear-gradient(
      270deg,
      rgba(15, 28, 25, 0.76) 0%,
      rgba(15, 28, 25, 0.46) 38%,
      rgba(15, 28, 25, 0.08) 72%,
      rgba(15, 28, 25, 0.02) 100%
    ),
    url("../images/ekaterina-akhmetova-03.jpg") center 12% / cover no-repeat;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  pointer-events: none;
}

.final-cta::before {
  top: -1px;
  height: 170px;
  background: linear-gradient(
    180deg,
    rgba(246, 239, 230, 0.96) 0%,
    rgba(246, 239, 230, 0.58) 42%,
    rgba(246, 239, 230, 0) 100%
  );
}

.final-cta::after {
  bottom: -1px;
  height: 150px;
  background: linear-gradient(
    180deg,
    rgba(19, 47, 42, 0) 0%,
    rgba(19, 47, 42, 0.54) 54%,
    rgba(19, 47, 42, 0.86) 100%
  );
}

.final-cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 500px);
  align-items: end;
  justify-content: end;
}

.final-cta__image {
  display: none;
}

.final-cta__content {
  max-width: 500px;
  margin-left: auto;
  padding-bottom: 34px;
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta h2 {
  max-width: 500px;
  color: var(--white);
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.32);
}

.final-cta p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.final-cta .button {
  width: min(100%, 340px);
}

.final-cta .button--primary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(19, 61, 53, 0.92);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(10px);
}

.footer__inner {
  justify-content: space-between;
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer a:hover {
  opacity: 0.78;
}

.footer__contact-button {
  border: 0;
  cursor: pointer;
  color: var(--green);
  background: transparent;
  font: inherit;
  font-weight: 800;
  transition: opacity var(--transition);
}

.footer__contact-button:hover,
.footer__contact-button:focus-visible {
  opacity: 0.78;
}

.contact-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(46px, calc(env(safe-area-inset-bottom) + 28px));
  z-index: 30;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  color: var(--white);
  background: rgba(111, 137, 128, 0.74);
  box-shadow: 0 14px 34px rgba(24, 61, 53, 0.22);
  opacity: 0.78;
  backdrop-filter: blur(10px);
  text-decoration: none;
  animation: contact-pulse 2.8s ease-in-out infinite;
  transition:
    opacity var(--transition),
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    width 260ms ease;
}

.contact-float:hover,
.contact-float:focus-visible,
.contact-float.is-expanded {
  width: 148px;
  opacity: 1;
  background: rgba(24, 61, 53, 0.92);
  box-shadow: 0 18px 42px rgba(24, 61, 53, 0.32);
  transform: translateY(-2px);
}

.contact-float svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  transform: translateX(-1px);
  fill: currentColor;
}

.contact-float span {
  max-width: 0;
  overflow: hidden;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  white-space: nowrap;
  transition: max-width 260ms ease, opacity 180ms ease;
}

.contact-float:hover span,
.contact-float:focus-visible span,
.contact-float.is-expanded span {
  max-width: 84px;
  opacity: 1;
}

@keyframes contact-pulse {
  0%,
  100% {
    opacity: 0.66;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.06);
  }
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 34, 30, 0.52);
  backdrop-filter: blur(8px);
}

.contact-modal__panel {
  position: relative;
  width: min(100%, 440px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(247, 243, 238, 0.96);
  box-shadow: 0 34px 90px rgba(19, 34, 30, 0.28);
}

.contact-modal__panel h2 {
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 2rem;
}

.contact-modal__panel p:not(.eyebrow) {
  margin-bottom: 24px;
}

.contact-modal__actions {
  display: grid;
  gap: 12px;
  pointer-events: none;
  opacity: 0.72;
  transition: opacity 160ms ease;
}

.contact-modal.is-ready .contact-modal__actions {
  pointer-events: auto;
  opacity: 1;
}

.contact-modal__actions .button {
  width: 100%;
}

.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  color: var(--green-deep);
  background: var(--white);
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .directions-grid,
  .price-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid,
  .formats__grid,
  .about__grid,
  .faq__grid,
  .safety__grid,
  .important__grid,
  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--sticky {
    position: static;
  }

  .hero__media {
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(3.55rem, 15vw, 4.35rem);
    line-height: 1;
  }

  h2 {
    font-size: 2.15rem;
  }

  .container {
    width: min(100% - 32px, 1120px);
  }

  .section {
    padding: 64px 0;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand__name--full {
    display: none;
  }

  .brand__name--short {
    display: block;
  }

  .brand__role {
    font-size: 0.78rem;
  }

  .header-cta {
    padding: 9px 12px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 44px;
    padding-bottom: 56px;
    background:
      linear-gradient(
        180deg,
        rgba(15, 28, 25, 0.12) 0%,
        rgba(15, 28, 25, 0.28) 38%,
        rgba(15, 28, 25, 0.86) 100%
      ),
      url("../images/ekaterina-akhmetova-02.jpg") center -86px / cover no-repeat;
  }

  .final-cta {
    min-height: 92svh;
    padding-top: 62px;
    padding-bottom: 48px;
    background:
      linear-gradient(
        180deg,
        rgba(246, 239, 230, 0.76) 0%,
        rgba(15, 28, 25, 0.08) 30%,
        rgba(15, 28, 25, 0.22) 52%,
        rgba(15, 28, 25, 0.9) 100%
      ),
      url("../images/ekaterina-akhmetova-03.jpg") center top / cover no-repeat;
  }

  .about {
    display: flex;
    align-items: flex-end;
    min-height: 100svh;
    padding-top: 0;
    padding-bottom: 68px;
    background:
      linear-gradient(
        180deg,
        rgba(246, 239, 230, 0.72) 0%,
        rgba(15, 28, 25, 0.02) 22%,
        rgba(15, 28, 25, 0.24) 54%,
        rgba(15, 28, 25, 0.94) 100%
      ),
      linear-gradient(
        90deg,
        rgba(15, 28, 25, 0.58) 0%,
        rgba(15, 28, 25, 0.18) 62%,
        rgba(15, 28, 25, 0.04) 100%
      ),
      url("../images/ekaterina-akhmetova-01.jpg") 38% -118px / auto calc(100% + 150px) no-repeat;
  }

  .about::before {
    height: 150px;
  }

  .about::after {
    height: 170px;
  }

  .about__grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: calc(100svh - 68px);
    align-items: end;
    gap: 0;
    padding-top: 46svh;
  }

  .about__media {
    display: none;
  }

  .about__content {
    position: relative;
    z-index: 1;
    padding-bottom: 0;
  }

  .about h2 {
    margin-bottom: 18px;
    font-size: 2.6rem;
  }

  .about p:not(.eyebrow) {
    margin-bottom: 18px;
  }

  .fact-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .final-cta::before {
    height: 150px;
  }

  .final-cta::after {
    height: 170px;
  }

  .final-cta__grid {
    gap: 0;
    padding: 0;
  }

  .final-cta__content {
    padding-bottom: 0;
  }

  .final-cta h2 {
    margin-bottom: 18px;
    font-size: 2.6rem;
  }

  .final-cta p:not(.eyebrow) {
    margin-bottom: 24px;
  }

  .contact-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(42px, calc(env(safe-area-inset-bottom) + 26px));
    width: 52px;
    height: 52px;
    padding: 0 13px;
  }

  .contact-float:hover,
  .contact-float:focus-visible,
  .contact-float.is-expanded {
    width: 136px;
  }

  .contact-float svg {
    width: 27px;
    height: 27px;
  }

  .hero::after {
    height: 190px;
    background: linear-gradient(
      180deg,
      rgba(232, 224, 214, 0) 0%,
      rgba(232, 224, 214, 0.18) 36%,
      rgba(232, 224, 214, 0.5) 72%,
      rgba(232, 224, 214, 0.62) 100%
    );
  }

  .hero__content {
    display: block;
  }

  .hero__content h1 {
    margin-bottom: 14px;
  }

  .hero__role {
    margin: 0 0 16px;
    padding: 8px 13px;
    font-size: 0.98rem;
  }

  .hero__lead {
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 12px;
    font-size: 1.02rem;
    line-height: 1.5;
  }

  .hero__media {
    width: 100%;
    margin: 0 auto 8px;
  }

  .hero__grid,
  .formats__grid,
  .about__grid,
  .faq__grid,
  .safety__grid,
  .final-cta__grid {
    gap: 26px;
  }

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

  .button {
    width: 100%;
  }

  .trust-list,
  .directions-grid,
  .price-grid,
  .steps,
  .fact-list {
    grid-template-columns: 1fr;
  }

  .trust-list div,
  .direction-card,
  .price-card,
  .steps li {
    min-height: auto;
  }

  .hero__photo-backdrop {
    display: none;
  }

  .hero__photo-frame img {
    aspect-ratio: 0.95;
    max-height: 430px;
    object-position: center 34%;
    box-shadow: 0 18px 52px rgba(36, 42, 42, 0.14);
  }

  .hero__note {
    display: none;
  }

  .trust-list {
    gap: 10px;
    margin-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .trust-list div {
    min-height: auto;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .format-item {
    padding: 0 0 0 14px;
  }

  .format-item__top {
    flex-direction: column;
    gap: 10px;
  }

  .chips {
    justify-content: flex-start;
  }

  .icon {
    width: 44px;
    height: 44px;
  }

  .important {
    padding: 58px 0;
  }

  .important__content {
    padding: 20px;
  }

  .card:hover,
  .steps li:hover,
  .trust-list div:hover,
  .fact-list li:hover,
  .format-item:hover {
    transform: none;
  }
}

@media (max-width: 700px) {
  .format-list {
    gap: 34px;
  }

  .format-item h3 {
    font-size: 1.5rem;
  }

  .format-item p {
    font-size: 1.12rem;
    line-height: 1.36;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.88rem;
  }

  .card,
  .steps li,
  .safety__content,
  .important__content {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .button:hover,
  .header-cta:hover,
  .card:hover,
  .steps li:hover,
  .trust-list div:hover,
  .fact-list li:hover,
  .hero__photo-frame:hover img,
  .about__media:hover img,
  .final-cta__image:hover img,
  .format-item:hover {
    transform: none;
  }

  .contact-float {
    animation: none;
  }
}
