﻿
:root {
  --bg: #f7f3ec;
  --surface: #ffffff;
  --surface-soft: #fcf8f2;
  --text: #1f1a14;
  --muted: #6f6658;
  --gold: #b59465;
  --gold-deep: #8f7047;
  --line: rgba(31, 26, 20, 0.12);
  --shadow-soft: 0 18px 40px rgba(38, 31, 24, 0.08);
  --radius-lg: 26px;
  --radius-md: 16px;
  --footer-height: 120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

header,
main {
  position: relative;
  z-index: 1;
}

main {
  background: var(--bg);
  margin-bottom: var(--footer-height);
}

h1,
h2,
h3,
.logo {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.02em;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

body[data-lang="en"] .lang-ru {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px;
  padding: 11px 24px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: -135%;
  width: 36%;
  transform: skewX(-20deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.58) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:hover::after {
  opacity: 1;
  animation: btnSheen 1.05s ease;
}

.btn-gold {
  color: #fff;
  background: linear-gradient(120deg, #ba9a69 0%, #a38153 100%);
  box-shadow: 0 12px 22px rgba(157, 122, 75, 0.28);
}

.btn-light {
  color: var(--text);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(31, 26, 20, 0.22);
}

.hero {
  position: relative;
  min-height: 100vh;
  background: #0e0f12;
  overflow: hidden;
  isolation: isolate;
  animation: heroWaves 14s ease-in-out infinite;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.42) 0 2px, transparent 2px 8px),
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.36) 0 2px, transparent 2px 9px),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.3) 0 2px, transparent 2px 10px);
  background-size: 100px 100px, 140px 140px, 180px 180px;
  background-position: 0 0, 36px 18px, 72px 54px;
  mix-blend-mode: soft-light;
  animation: seaRipple 9s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 35%,
    rgba(255, 255, 255, 0) 60%
  );
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-nav {
  position: relative;
  --nav-bg-height: 76px;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto minmax(300px, 1fr);
  gap: 24px;
  align-items: start;
  padding: 18px 0;
}

.site-nav::before {
  content: "";
  position: absolute;
  top: 0;
  height: var(--nav-bg-height);
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  z-index: -1;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  line-height: 0;
}


.logo {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.logo-img {
  display: block;
  width: 168px;
  height: auto;
  max-width: 100%;
}

.tagline-bar {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
  margin-top: 10px;
  max-width: min(100%, 980px);
}

.tagline {
  display: block;
  max-width: none;
  font-size: 0.78rem;
  line-height: 1.25;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #4f4639;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(2px);
  box-shadow: 0 2px 6px rgba(31, 26, 20, 0.06);
}

.text-backdrop {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  box-shadow: 0 2px 6px rgba(31, 26, 20, 0.06);
}

.subhero-contact .text-backdrop {
  background: none;
  position: relative;
}

.subhero-contact .text-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  left: 0;
  transform: none;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  z-index: -1;
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-self: start;
  align-self: center;
  margin-top: 6px;
}

.nav-list::-webkit-scrollbar {
  display: none;
}

.nav-list li {
  flex: 0 0 auto;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #41382e;
}

.nav-list a:hover {
  color: var(--gold-deep);
}

.nav-list a.is-current {
  color: var(--gold-deep);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-self: end;
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 20, 0.2);
  background: rgba(255, 255, 255, 0.85);
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(31, 26, 20, 0.12);
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  background: #3d3328;
  border-radius: 999px;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgba(31, 26, 20, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.lang-btn {
  border: none;
  background: transparent;
  color: #4f4538;
  padding: 6px 10px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.lang-btn.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(34, 28, 22, 0.12);
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  gap: 10px;
  align-items: end;
}

.hero-content {
  max-width: 620px;
  margin-left: 0;
  padding-bottom: 48px;
}

.eyebrow {
  margin-bottom: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6c6254;
}

.hero-title {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

.hero-title-main {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(1.35rem, 2.55vw, 2.75rem);
  letter-spacing: 0.03em;
}

.hero-title-made {
  display: inline-block;
  font-size: 1.12em;
  letter-spacing: 0.04em;
}

.hero-lux-line {
  position: relative;
  width: min(720px, 100%);
  height: 8px;
  margin: -2px 0 26px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(201, 162, 104, 0.96) 0%,
      rgba(242, 218, 166, 0.9) 45%,
      rgba(212, 174, 115, 0.72) 66%,
      rgba(201, 162, 104, 0.18) 86%,
      rgba(201, 162, 104, 0) 100%
    );
  clip-path: polygon(0 26%, 70% 26%, 100% 50%, 70% 74%, 0 74%);
  box-shadow: 0 3px 10px rgba(171, 133, 77, 0.35), 0 0 20px rgba(219, 187, 130, 0.24);
}

.hero-lux-line::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 30%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 242, 210, 0.18) 0%, rgba(255, 245, 224, 0.8) 55%, rgba(255, 238, 199, 0.2) 100%);
  opacity: 0.92;
}

.lux-line {
  position: relative;
  width: min(700px, 100%);
  height: 6px;
  margin: 10px 0 22px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(201, 162, 104, 0.96) 0%,
      rgba(242, 218, 166, 0.9) 45%,
      rgba(212, 174, 115, 0.72) 66%,
      rgba(201, 162, 104, 0.18) 86%,
      rgba(201, 162, 104, 0) 100%
    );
  clip-path: polygon(0 26%, 66% 26%, 100% 50%, 66% 74%, 0 74%);
  box-shadow: 0 2px 8px rgba(171, 133, 77, 0.3), 0 0 16px rgba(219, 187, 130, 0.22);
}

.lux-line::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 34%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 242, 210, 0.12) 0%, rgba(255, 245, 224, 0.7) 55%, rgba(255, 238, 199, 0.12) 100%);
  opacity: 0.88;
}

.subhero-content .lux-line {
  margin-top: 6px;
}

.note-panel .lux-line {
  margin-bottom: 18px;
}

.hero-text {
  margin-bottom: 24px;
  color: #443b30;
}

.budget-grid {
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.budget-card {
  padding: 14px;
  border: 1px solid rgba(31, 26, 20, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(4px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.budget-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.budget-label {
  margin-top: 8px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #61584c;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-note {
  max-width: 560px;
  padding-left: 16px;
  border-left: 2px solid rgba(181, 148, 101, 0.6);
  color: #373026;
}

.section-lead {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.section-note {
  padding-left: 16px;
  border-left: 2px solid rgba(181, 148, 101, 0.5);
  color: #3a3328;
}

.hero-safe-zone {
  min-height: 320px;
}

.subhero {
  position: relative;
  min-height: 56vh;
  color: var(--text);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.72) 44%,
    rgba(255, 255, 255, 0.24) 72%,
    rgba(255, 255, 255, 0) 100%
  );
}

.subhero-shell {
  position: relative;
  z-index: 1;
  min-height: 56vh;
  display: flex;
  flex-direction: column;
}

.subhero-content {
  margin-top: auto;
  margin-bottom: 44px;
  max-width: 760px;
}

.subhero-content h1 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  margin-bottom: 14px;
}

.subhero-content p {
  max-width: 640px;
  color: #473d31;
}

.subhero .tagline {
  color: #120d08;
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.75);
}

.hero .tagline {
  color: #120d08;
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.75);
}

.subhero-who {
  background-image: url("../images/who-we-block-1.webp");
  background-position: center calc(50% + 2cm);
  min-height: calc(56vh + 5cm);
}

.subhero-who .subhero-shell {
  min-height: calc(56vh + 5cm);
}

.subhero-who .subhero-content {
  margin-bottom: calc(44px + 2cm);
}

.subhero-solutions {
  background-image: url("../images/solutions.jpg");
}

.subhero-made {
  background-image: url("../images/france.jpg");
}

.subhero-made .subhero-content p.lang-ru,
.subhero-made .subhero-content p.lang-en {
  color: #1f1a14;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.6);
}


.subhero-cost {
  background-image: url("../images/cost-optimization-block-1.webp");
}

.subhero-contact {
  background-image: url("../images/contacts-block-1.webp");
}

.section {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
}

#overview {
  padding: 280px 0;
}

main > .section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(181, 148, 101, 0) 0%,
    rgba(181, 148, 101, 0.48) 50%,
    rgba(181, 148, 101, 0) 100%
  );
  animation: dividerPulse 7s ease-in-out infinite;
}

main > .section + .section::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: min(860px, 92vw);
  height: 110px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center top,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.42) 36%,
    rgba(255, 255, 255, 0) 75%
  );
  pointer-events: none;
  animation: dividerFlow 13s ease-in-out infinite;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(247, 243, 236, 1) 100%);
}

.section-kicker {
  margin-bottom: 16px;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7a705f;
}

.center-title {
  text-align: left;
  margin-top: -95px;
  margin-bottom: 26px;
  max-width: calc(50% - 28px);
  margin-right: auto;
}

.center-title h2 {
  margin-bottom: 8px;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  max-width: 840px;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section-content p {
  color: #494035;
}

.list-title {
  font-size: 0.87rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6a6051;
}
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

#who-we-main .split {
  align-items: start;
}

#profile .split {
  align-items: start;
}

#profile .media-clients {
  margin-top: 0.2cm;
}

.split-right .section-content {
  order: 1;
}

.split-right .media-card {
  order: 2;
}

.split-right .media-volume-15-image,
.split-right .media-volume-30-image,
.split-right .media-volume-30-luxury-image,
.split-right .media-volume-50-luxury-image,
.split-right .media-volume-100-luxury-image {
  order: 2;
}

#volume-15 .split {
  align-items: start;
}

#volume-15 .section-content {
  display: flex;
  flex-direction: column;
}

#volume-15 .section-content {
  margin-top: 24px;
}

#volume-15 .volume-details p {
  line-height: 1.85;
}

#volume-30 .section-content,
#volume-30-luxury .section-content,
#volume-50-luxury .section-content,
#volume-100-luxury .section-content {
  margin-top: 24px;
}

#volume-30 .volume-details p,
#volume-30-luxury .volume-details p,
#volume-50-luxury .volume-details p,
#volume-100-luxury .volume-details p {
  line-height: 1.85;
}

#volume-30 .media-volume-30-image,
#volume-30-luxury .media-volume-30-luxury-image,
#volume-50-luxury .media-volume-50-luxury-image,
#volume-100-luxury .media-volume-100-luxury-image {
  align-self: start;
  margin-top: -24px;
}

#volume-15 .section-content .note-panel {
  margin-top: auto;
}

#volume-15 .note-panel h3,
#volume-30 .note-panel h3,
#volume-30-luxury .note-panel h3,
#volume-50-luxury .note-panel h3,
#volume-100-luxury .note-panel h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

#volume-30 .split {
  align-items: stretch;
}

#volume-30 .section-content {
  display: flex;
  flex-direction: column;
}

#volume-30 .section-content .note-panel {
  margin-top: auto;
}

#volume-30-luxury .split {
  align-items: stretch;
}

#volume-30-luxury .section-content {
  display: flex;
  flex-direction: column;
}

#volume-30-luxury .section-content .note-panel {
  margin-top: auto;
}

#volume-50-luxury .split {
  align-items: stretch;
}

#volume-50-luxury .section-content {
  display: flex;
  flex-direction: column;
}

#volume-50-luxury .section-content .note-panel {
  margin-top: auto;
}

#volume-100-luxury .split {
  align-items: stretch;
}

#volume-100-luxury .section-content {
  display: flex;
  flex-direction: column;
}

#volume-100-luxury .section-content .note-panel {
  margin-top: auto;
}

#project-privacy .note-panel {
  border: 1px solid rgba(181, 148, 101, 0.45);
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.95) 0%, rgba(255, 255, 255, 0.98) 55%, rgba(247, 235, 219, 0.55) 100%);
  box-shadow: 0 24px 48px rgba(40, 32, 24, 0.08);
  padding: 38px 42px;
}

#project-privacy .note-panel p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3a3228;
  letter-spacing: 0.01em;
}

#project-privacy .note-panel p + p {
  margin-top: 14px;
}

#terms-conditions .terms-grid {
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  justify-items: stretch;
  align-items: stretch;
}

#terms-conditions .note-panel {
  margin-top: 0;
  width: 100%;
}

#terms-conditions .note-panel h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

#contact-info {
  margin-top: 28px;
  padding: 36px 38px;
  border: 1px solid rgba(181, 148, 101, 0.35);
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.96) 0%, rgba(255, 255, 255, 0.98) 55%, rgba(247, 235, 219, 0.45) 100%);
  box-shadow: 0 20px 40px rgba(40, 32, 24, 0.08);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 40px;
  align-items: start;
}

#contact-info h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  grid-column: 1 / -1;
}

#contact-info .contact-info-group + .contact-info-group {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

#contact-info .contact-info-group {
  margin: 0;
  padding: 0;
}

#contact-info .contact-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: #6b5f4f;
  margin: 0 0 6px;
}

#contact-info .contact-value {
  font-size: 1.02rem;
  color: #2f281f;
  margin: 0 0 6px;
}

#contact-info .contact-value a {
  color: #1f5fbf;
}

#contact-info .contact-note {
  font-size: 0.92rem;
  color: #6a6051;
  margin: 0;
}


#offer .section-content h2 {
  text-align: left;
  text-justify: auto;
  margin-left: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

#offer .section-content .section-kicker {
  margin-left: 0;
}

.media-card {
  min-height: 460px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease;
}

.media-clients {
  background-image: linear-gradient(130deg, rgba(247, 235, 219, 0.42) 0%, rgba(255, 255, 255, 0) 100%), url("../images/who-we-block-2.webp");
}

.media-who {
  background-image: linear-gradient(130deg, rgba(247, 235, 219, 0.22) 0%, rgba(255, 255, 255, 0) 100%), url("../images/who-we-block-4.webp");
  background-size: 110% 110%;
  background-position: center;
}

#who-we-main .media-who {
  margin-top: 0;
}

.media-industrial {
  background-image: linear-gradient(130deg, rgba(240, 245, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 100%), url("../images/who-we-block-6.webp");
}

.media-strategy {
  background-image: linear-gradient(130deg, rgba(247, 235, 219, 0.22) 0%, rgba(255, 255, 255, 0) 100%), url("../images/who-we-block-7.webp");
}

.media-offer {
  background-image: linear-gradient(130deg, rgba(247, 235, 219, 0.22) 0%, rgba(255, 255, 255, 0) 100%), url("../images/solutions-block-2.webp");
}

.media-volume-15 {
  background-image: url("../images/3.1-bg.webp");
  background-size: 105% auto;
  background-repeat: no-repeat;
  background-position: center;
  width: min(100%, 1024px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  height: auto;
  justify-self: start;
}

.media-volume-15-image {
  width: min(100%, 1024px);
  height: auto;
  display: block;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  justify-self: start;
}

#volume-15 .media-volume-15-image {
  align-self: start;
  margin-top: -24px;
}

.media-volume-30 {
  background-image: url("../images/3.2-bg.webp");
  background-size: 105% auto;
  background-repeat: no-repeat;
  background-position: center;
  width: min(100%, 1024px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  height: auto;
  justify-self: start;
}

.media-volume-30-image {
  width: min(100%, 1024px);
  height: auto;
  display: block;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  justify-self: start;
}

.media-volume-30-luxury {
  background-image: url("../images/3.3-bg.webp");
  background-size: 105% auto;
  background-repeat: no-repeat;
  background-position: center;
  width: min(100%, 1024px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  height: auto;
  justify-self: start;
}

.media-volume-30-luxury-image {
  width: min(100%, 1024px);
  height: auto;
  display: block;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  justify-self: start;
  margin-left: -1cm;
}

.media-volume-50-luxury {
  background-image: url("../images/3.4-bg.webp");
  background-size: 105% auto;
  background-repeat: no-repeat;
  background-position: center;
  width: min(100%, 1024px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  height: auto;
  justify-self: start;
}

.media-volume-50-luxury-image {
  width: min(100%, 1024px);
  height: auto;
  display: block;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  justify-self: start;
}

.media-volume-100-luxury {
  background-image: url("../images/3.5-bg.webp");
  background-size: 105% auto;
  background-repeat: no-repeat;
  background-position: center;
  width: min(100%, 1024px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  height: auto;
  justify-self: start;
}

.media-volume-100-luxury-image {
  width: min(100%, 1024px);
  height: auto;
  display: block;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  justify-self: start;
}


.media-made {
  background-image: linear-gradient(130deg, rgba(247, 235, 219, 0.22) 0%, rgba(255, 255, 255, 0) 100%), url("../images/why-made-in-france-block-2.webp");
}

.media-cost {
  background-image: linear-gradient(130deg, rgba(247, 235, 219, 0.2) 0%, rgba(255, 255, 255, 0) 100%), url("../images/cost-optimization-block-2.webp");
}

.media-cost-result {
  background-image: linear-gradient(130deg, rgba(247, 235, 219, 0.2) 0%, rgba(255, 255, 255, 0) 100%), url("../images/cost-optimization-block-4.webp");
  min-height: 0;
  height: 100%;
  margin-top: 0;
  transform: translate(0, 8px) scale(0.95);
  transform-origin: top right;
}

.media-contact-bottom {
  margin-top: 22px;
  min-height: 420px;
  background-image: linear-gradient(130deg, rgba(247, 235, 219, 0.2) 0%, rgba(255, 255, 255, 0) 100%), url("../images/contacts-block-2.webp");
}

.clean-list,
.warn-list,
.check-list,
.economics-card ul,
.result-panel ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.clean-list li,
.warn-list li,
.check-list li,
.economics-card li,
.result-panel li {
  position: relative;
  padding-left: 20px;
  color: #4a4034;
}

.clean-list li::before,
.check-list li::before,
.economics-card li::before,
.result-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.warn-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #c9a879 0%, #8f7047 100%);
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(31, 26, 20, 0.18);
}

.note-panel {
  margin-top: 28px;
  padding: 34px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 26, 20, 0.12);
  background: #fff;
}

#no-work.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

#no-work .note-panel h2 {
  margin: 0 0 22px;
}

.feature-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 86px 72px;
}

#overview.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

#overview .page-grid {
  margin-top: 40px;
}

.page-card {
  padding: 28px;
  border: 0.5px solid rgba(31, 26, 20, 0.08);
  border-radius: var(--radius-md);
  background: #fffdf7;
  box-shadow: 0 8px 18px rgba(40, 32, 24, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.page-card.is-approach {
  border-color: rgba(31, 26, 20, 0.08);
  background: #fffdf7;
  box-shadow: 0 8px 18px rgba(40, 32, 24, 0.06);
}

.page-card h3 {
  font-size: 1.5rem;
}

.page-card p {
  color: #4a4034;
}

.page-card .btn {
  align-self: flex-start;
}

.feature-card,
.product-card,
.economics-card,
.number-card {
  border: 1px solid rgba(31, 26, 20, 0.1);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.feature-card {
  padding: 20px;
  font-size: 0.95rem;
  color: #42382c;
  min-height: 82px;
  display: flex;
  align-items: center;
}

#why-us .feature-card {
  background: #fffdf7;
  padding: 26px;
  border: 0.5px solid rgba(31, 26, 20, 0.08);
  box-shadow: 0 8px 18px rgba(40, 32, 24, 0.06);
  text-align: center;
  justify-content: center;
    text-transform: none;
}

@media (hover: hover) {
  #why-us .feature-card:hover {
    border-color: rgba(31, 26, 20, 0.06);
    box-shadow: 0 6px 14px rgba(31, 26, 20, 0.06);
  }
}

.accent-text {
  margin-top: 24px;
  padding-left: 14px;
  border-left: 2px solid rgba(181, 148, 101, 0.65);
  color: #3b3328;
}

.product-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  padding: 24px;
}

.product-card,
.economics-card {
  border: 0.5px solid rgba(31, 26, 20, 0.08);
  background: #fffdf7;
  box-shadow: 0 8px 18px rgba(40, 32, 24, 0.06);
}

.product-name {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: #2f271e;
}

.small {
  margin-top: 7px;
  font-size: 0.84rem;
  color: #665b4d;
}

.size-row {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 26, 20, 0.09);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  color: #665b4d;
}

.center-btn {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.economics-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.economics-card {
  padding: 26px;
}

.economics-card h3,
.number-card h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.number-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.number-card {
  padding: 28px;
  border: 0.5px solid rgba(31, 26, 20, 0.08);
  background: #fffdf7;
  box-shadow: 0 8px 18px rgba(40, 32, 24, 0.06);
}

.intro {
  margin-top: 20px;
  max-width: 940px;
}

.offer-intro {
  font-size: 1.02rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
}

.result-panel {
  margin-top: 24px;
  padding: 30px;
  border-radius: 16px;
  background: #fffdf7;
  border: 0.5px solid rgba(31, 26, 20, 0.08);
  box-shadow: 0 8px 18px rgba(40, 32, 24, 0.06);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

#cost-details .split {
  align-items: stretch;
  margin-top: 3cm;
}

#cost-details .split .section-content {
  display: flex;
}

#cost-details .result-panel {
  margin-top: 0;
  height: 100%;
  width: 100%;
}

#cost-details .media-cost-result {
  height: 100%;
  min-height: 100%;
  transform: none;
}

#cost-details .center-btn {
  margin-top: 3cm;
}

.result-title {
  margin-bottom: 12px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-cta .container {
  text-align: center;
}

.section-cta h2 {
  margin: 0 auto 26px;
  max-width: 860px;
}

.section-contact {
  background: #f6f1e7;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 500px);
  gap: 46px;
}

.contact-grid .section-content {
  height: 100%;
}

.contact-grid .section-content .clean-list {
  margin-top: auto;
}

.contact-grid .media-contact-bottom {
  margin-top: 14px;
}

.compact li {
  font-size: 0.95rem;
}

.contact-form {
  padding: 26px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 26, 20, 0.1);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.contact-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5f5548;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(31, 26, 20, 0.18);
  background: #fff;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(181, 148, 101, 0.3);
  border-color: rgba(181, 148, 101, 0.6);
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  border-top: 1px solid var(--line);
  background: #f2ece1;
}

.footer-grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-brand p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #4e453a;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.992);
  filter: blur(2px);
  transition: opacity 0.85s ease, transform 0.85s ease, filter 0.85s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (hover: hover) {
  .budget-card:hover,
  .feature-card:hover,
  .product-card:hover,
  .economics-card:hover,
  .number-card:hover,
.page-card:hover,
.result-panel:hover,
.contact-form:hover {
  transform: translateY(-4px);
  border-color: rgba(181, 148, 101, 0.22);
  box-shadow: 0 12px 22px rgba(40, 32, 24, 0.1);
}

  .split:hover .media-card {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 26px 46px rgba(40, 32, 24, 0.16);
  }
}

@media (hover: hover) {
  .number-card:hover {
    transform: translateY(-4px);
    border-color: rgba(181, 148, 101, 0.22);
    box-shadow: 0 12px 22px rgba(40, 32, 24, 0.1);
  }
}

@media (hover: hover) {
  .result-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(181, 148, 101, 0.22);
    box-shadow: 0 12px 22px rgba(40, 32, 24, 0.1);
  }
}

@keyframes dividerPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.95;
  }
}

@keyframes dividerFlow {
  0% {
    transform: translateX(-50%) scaleX(0.95);
    opacity: 0.72;
  }
  50% {
    transform: translateX(-50%) scaleX(1.02);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scaleX(0.95);
    opacity: 0.72;
  }
}

@keyframes btnSheen {
  0% {
    left: -135%;
  }
  100% {
    left: 165%;
  }
}

@keyframes seaRipple {
  0%,
  100% {
    background-position: 0 0, 36px 18px, 72px 54px;
    transform: translateY(0);
  }
  50% {
    background-position: 26px 18px, 62px 40px, 108px 86px;
    transform: translateY(4px);
  }
}

@keyframes heroWaves {
  0%,
  100% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 52% 48%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .hero::before,
  .hero::after,
  main > .section + .section::before,
  main > .section + .section::after,
  .btn:hover::after {
    animation: none !important;
  }

  .reveal,
  .feature-card,
  .product-card,
  .economics-card,
  .number-card,
  .page-card,
  .contact-form,
  .result-panel,
  .media-card,
  .btn,
  .budget-card {
    transition: none !important;
  }
}
@media (max-width: 1240px) {
  .hero-content {
    margin-left: 0;
  }

  .number-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  :root {
    --footer-height: 0px;
  }

  main {
    margin-bottom: 0;
  }

  .site-footer {
    position: static;
  }

  .site-nav {
    grid-template-columns: 1fr auto;
    row-gap: 14px;
    --nav-bg-height: 86px;
  }

  .nav-list {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-left: 0;
    width: min(680px, calc(100% - 42px));
    margin-inline: auto;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.8) 55%,
      rgba(255, 255, 255, 0.24) 100%
    );
  }

  .hero-safe-zone {
    display: none;
  }

  .subhero,
  .subhero-shell {
    min-height: 48vh;
  }

  .subhero-who {
    min-height: calc(48vh + 5cm);
  }

  .subhero-who .subhero-shell {
    min-height: calc(48vh + 5cm);
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .split-right .section-content,
  .split-right .media-card {
    order: initial;
  }

  .media-card {
    min-height: 320px;
  }

  .feature-grid,
  .page-grid,
  .product-grid,
  .economics-grid,
  .number-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1240px, calc(100% - 36px));
  }

  .center-title {
    max-width: 100%;
  }

  .site-nav {
    grid-template-columns: 1fr;
    --nav-bg-height: 96px;
  }

  .nav-list {
    gap: 10px 16px;
  }

  .nav-actions {
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    display: none;
  }

  body.nav-open .nav-list {
    position: absolute;
    top: calc(var(--nav-bg-height) + 10px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(38, 31, 24, 0.18);
    z-index: 10;
  }

  body.nav-open .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-content {
    width: calc(100% - 10px);
    padding-bottom: 34px;
  }

  .hero-title-main {
    white-space: normal;
    word-break: break-word;
  }

  .hero-lux-line {
    width: min(330px, 82%);
    height: 6px;
    margin-bottom: 20px;
  }

  .lux-line {
    width: min(360px, 100%);
    height: 5px;
    margin-bottom: 18px;
  }

  .budget-grid,
  .feature-grid,
  .page-grid,
  .product-grid,
  .economics-grid,
  .number-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 128px 0;
  }

  .note-panel,
  .contact-form {
    padding: 22px;
  }

  .section-lead {
    margin-bottom: 28px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo-img {
    width: 132px;
  }

  .tagline-bar {
    margin-top: 6px;
    justify-self: center;
    text-align: center;
    max-width: 100%;
  }

  .tagline {
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    padding: 2px 8px;
  }
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(140deg, #c9a35b 0%, #e3c27a 55%, #b38a45 100%);
  color: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 30px rgba(201, 163, 91, 0.35), 0 6px 16px rgba(10, 18, 28, 0.22);
  z-index: 2000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-contact-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.wa-contact-row.wa-bottom-center {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 24px auto 0;
  width: 100%;
}

.wa-contact-text {
  color: #3b2a13;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 4mm;
}

.wa-contact-row .wa-float {
  margin-top: 0;
}

.wa-float.wa-inline {
  position: relative;
  right: auto;
  bottom: auto;
  margin-top: 16px;
  align-self: flex-start;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(201, 163, 91, 0.4), 0 8px 18px rgba(10, 18, 28, 0.28);
}

.wa-float:focus-visible {
  outline: 3px solid rgba(201, 163, 91, 0.7);
  outline-offset: 4px;
}

.wa-float-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-float-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 640px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

}








