:root {
  --bg: #f6f3ee;
  --bg-soft: #ebe7dd;
  --card: rgba(255, 255, 255, 0.78);
  --text: #202326;
  --muted: #626a70;
  --primary: #136f63;
  --primary-2: #e0a72e;
  --ink: #182321;
  --border: rgba(32, 35, 38, 0.12);
  --radius: 8px;
  --shadow: 0 14px 36px rgba(30, 34, 37, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background:
    linear-gradient(180deg, #fffaf1 0%, var(--bg) 38%, #eef3ef 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #090d1a;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__logo {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  animation: pulse 1.2s ease-in-out infinite;
}

.loader__logo span {
  color: var(--primary-2);
}

@keyframes pulse {
  0%,
  100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 250, 241, 0.84);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.nav {
  display: flex;
  gap: 1.25rem;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
}

.nav a.active,
.nav a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: transparent;
  border: 0;
  color: #fff;
}

.hero {
  padding: 5.4rem 0 3.5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero--sales {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
}

.hero__panel {
  position: relative;
}

.hero__panel img,
.portfolio-item img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__panel img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.price-card-mini {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 12px 34px rgba(30, 34, 37, 0.14);
}

.price-card-mini span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.price-card-mini strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  margin: 0.2rem 0 0.4rem;
}

.price-card-mini p {
  color: var(--muted);
  margin: 0;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0.4rem 0 1rem;
  color: var(--ink);
}

.lead {
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
}

.hero__cta {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.75rem 1.2rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--ghost {
  border-color: var(--border);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
}

.hero__card,
.step,
.price-card,
.portfolio-item,
.contact-card,
.contact-form,
.cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__card {
  padding: 1.4rem;
  background: #fff;
}

.price-label {
  color: var(--muted);
  font-weight: 700;
  margin: 0;
}

.hero-price {
  color: var(--ink);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
  margin: 0.35rem 0 1rem;
}

.hero__card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  padding-top: 0;
}

.section--soft {
  background: rgba(255, 255, 255, 0.42);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.4rem;
}

.section-head {
  max-width: 850px;
}

.section-lead {
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
  margin-top: -0.6rem;
  margin-bottom: 1.5rem;
}

.steps,
.pricing,
.portfolio-grid,
.contact-layout,
.service-grid {
  display: grid;
  gap: 1rem;
}

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

.step {
  padding: 1.2rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-item,
.offer-strip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-item {
  padding: 1.2rem;
}

.service-item p {
  color: var(--muted);
  line-height: 1.7;
}

.trust-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
}

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

.trust-grid p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.trust-grid strong {
  color: var(--ink);
}

.step span {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: rgba(19, 111, 99, 0.13);
  display: inline-grid;
  place-items: center;
  font-weight: 700;
}

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

.cta-box {
  padding: 2rem;
  text-align: center;
  background: var(--ink);
  color: #fff;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.4rem;
}

.cta-box h2 {
  color: #fff;
}

.center {
  justify-content: center;
}

.offer-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.6rem;
  background: #fff;
}

.offer-strip h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0.25rem 0 0.6rem;
}

.offer-strip p,
.offer-strip li {
  color: var(--muted);
  line-height: 1.7;
}

.offer-strip ul {
  margin: 0;
  padding-left: 1.1rem;
}

.subhero {
  padding: 4rem 0 1rem;
}

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

.price-card {
  padding: 1.4rem;
  position: relative;
}

.price {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0.5rem 0 1rem;
}

.price-card ul {
  color: var(--muted);
  line-height: 1.8;
  padding-left: 1rem;
}

.featured {
  outline: 2px solid var(--primary-2);
}

.badge {
  display: inline-block;
  background: var(--primary-2);
  color: #051b18;
  font-weight: 700;
  border-radius: 999px;
  font-size: 0.74rem;
  padding: 0.35rem 0.65rem;
  margin-bottom: 0.8rem;
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.portfolio-item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portfolio-grid--large {
  align-items: stretch;
}

.portfolio-grid--home .portfolio-item,
.portfolio-grid--large .portfolio-item {
  background: #fff;
}

.portfolio-item img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.portfolio-thumb {
  height: 160px;
  background: linear-gradient(130deg, rgba(124, 140, 255, 0.35), rgba(93, 226, 196, 0.3));
}

.portfolio-thumb--physio {
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.5), transparent 28%),
    linear-gradient(135deg, #9de6df, #61b7df 55%, #2b5476);
}

.portfolio-thumb--beauty {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 226, 244, 0.65), transparent 24%),
    linear-gradient(135deg, #f7c7d9, #d08cff 55%, #6f4c8b);
}

.portfolio-thumb--build {
  background:
    linear-gradient(180deg, rgba(255, 196, 72, 0.28), rgba(255, 196, 72, 0)),
    linear-gradient(135deg, #3d4856, #1f2732 55%, #0f141c);
}

.portfolio-thumb--fashion {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 34%, transparent 34% 39%, rgba(255, 255, 255, 0.38) 39% 68%, transparent 68%),
    linear-gradient(135deg, #f4eee5, #1e1d1b 55%, #d8c2a1);
}

.portfolio-item h3,
.portfolio-item p {
  padding: 0 1rem;
}

.portfolio-item p {
  padding-bottom: 1rem;
  color: var(--muted);
}

.portfolio-item .btn {
  margin: auto 1rem 1rem;
}

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

.contact-card,
.contact-form {
  padding: 1.25rem;
}

.contact-card p {
  color: var(--muted);
}

.contact-card a {
  color: var(--primary);
  font-weight: 700;
}

.contact-note {
  border-top: 1px solid var(--border);
  margin-top: 1rem;
  padding-top: 1rem;
}

.contact-note ul {
  color: var(--muted);
  line-height: 1.7;
  padding-left: 1.1rem;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.pricing-card,
.pricing-side article,
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-card {
  padding: 1.5rem;
}

.pricing-card h2 {
  margin-bottom: 0;
}

.pricing-card ul {
  color: var(--muted);
  line-height: 1.9;
  padding-left: 1.1rem;
}

.pricing-card .btn {
  margin-top: 0.7rem;
}

.pricing-side {
  display: grid;
  gap: 1rem;
}

.pricing-side article {
  padding: 1.2rem;
}

.pricing-side p {
  color: var(--muted);
  line-height: 1.7;
}

.faq {
  max-width: 850px;
}

.faq details {
  padding: 1.1rem 1.2rem;
}

.faq details + details {
  margin-top: 0.8rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  padding: 0.72rem 0.8rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

.case-page {
  min-height: 100vh;
}

.case-page .site-header {
  position: relative;
  background: rgba(10, 14, 24, 0.72);
}

.case-hero {
  padding: 5rem 0 3rem;
}

.case-hero__grid,
.case-grid,
.service-grid,
.review-grid,
.stats-grid,
.contact-cta {
  display: grid;
  gap: 1.2rem;
}

.case-hero__grid,
.contact-cta {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.case-grid,
.service-grid,
.review-grid,
.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card,
.review-card,
.stat-card,
.contact-strip,
.hero-panel {
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(7, 10, 18, 0.18);
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li + li {
  margin-top: 0.8rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

.case-page h1,
.case-page h2,
.case-page h3,
.case-page p,
.case-page li {
  margin-top: 0;
}

.case-page p,
.case-page li {
  line-height: 1.7;
}

.case-page--physio {
  background: linear-gradient(180deg, #effbf9 0%, #e8f5fb 42%, #f8fbfd 100%);
  color: #1f3342;
}

.case-page--physio .site-header {
  background: rgba(239, 251, 249, 0.88);
  border-bottom-color: rgba(61, 140, 155, 0.16);
}

.case-page--physio .nav a,
.case-page--physio .contact-strip p,
.case-page--physio .hero-panel p,
.case-page--physio .case-card p,
.case-page--physio .review-card p,
.case-page--physio .stat-card p {
  color: #53707d;
}

.case-page--physio .nav a.active,
.case-page--physio .nav a:hover,
.case-page--physio .brand,
.case-page--physio h1,
.case-page--physio h2,
.case-page--physio h3 {
  color: #17364a;
}

.case-page--physio .eyebrow,
.case-page--physio .check-list li::before {
  color: #23a49a;
}

.case-page--physio .btn--primary {
  background: linear-gradient(135deg, #24c1b5, #8ad9e6);
  color: #08353a;
}

.case-page--physio .btn--ghost {
  border-color: rgba(35, 164, 154, 0.2);
  color: #1d5664;
}

.case-page--physio .hero-panel,
.case-page--physio .case-card,
.case-page--physio .review-card,
.case-page--physio .stat-card,
.case-page--physio .contact-strip {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(35, 164, 154, 0.12);
}

.case-page--beauty {
  background: linear-gradient(180deg, #fff5fa 0%, #f8eefc 44%, #fffdf7 100%);
  color: #4f3144;
}

.case-page--beauty .site-header {
  background: rgba(255, 245, 250, 0.9);
  border-bottom-color: rgba(197, 110, 161, 0.16);
}

.case-page--beauty .nav a,
.case-page--beauty .contact-strip p,
.case-page--beauty .hero-panel p,
.case-page--beauty .case-card p,
.case-page--beauty .review-card p,
.case-page--beauty .stat-card p {
  color: #8d617b;
}

.case-page--beauty .nav a.active,
.case-page--beauty .nav a:hover,
.case-page--beauty .brand,
.case-page--beauty h1,
.case-page--beauty h2,
.case-page--beauty h3 {
  color: #612c4f;
}

.case-page--beauty .eyebrow,
.case-page--beauty .check-list li::before {
  color: #d660a1;
}

.case-page--beauty .btn--primary {
  background: linear-gradient(135deg, #ea7db4, #c485ff);
  color: #fff7fb;
}

.case-page--beauty .btn--ghost {
  border-color: rgba(214, 96, 161, 0.22);
  color: #9c3d72;
}

.case-page--beauty .hero-panel,
.case-page--beauty .case-card,
.case-page--beauty .review-card,
.case-page--beauty .stat-card,
.case-page--beauty .contact-strip {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(214, 96, 161, 0.12);
}

.case-page--build {
  background: linear-gradient(180deg, #11161d 0%, #19212c 40%, #0d1117 100%);
  color: #e8edf4;
}

.case-page--build .site-header {
  background: rgba(17, 22, 29, 0.92);
  border-bottom-color: rgba(255, 183, 59, 0.15);
}

.case-page--build .nav a,
.case-page--build .contact-strip p,
.case-page--build .hero-panel p,
.case-page--build .case-card p,
.case-page--build .review-card p,
.case-page--build .stat-card p {
  color: #a8b3c1;
}

.case-page--build .nav a.active,
.case-page--build .nav a:hover,
.case-page--build .brand,
.case-page--build h1,
.case-page--build h2,
.case-page--build h3 {
  color: #fff6dc;
}

.case-page--build .eyebrow,
.case-page--build .check-list li::before {
  color: #f7b538;
}

.case-page--build .btn--primary {
  background: linear-gradient(135deg, #ffb938, #ffdf85);
  color: #1d1610;
}

.case-page--build .btn--ghost {
  border-color: rgba(247, 181, 56, 0.22);
  color: #ffd98a;
}

.case-page--build .hero-panel,
.case-page--build .case-card,
.case-page--build .review-card,
.case-page--build .stat-card,
.case-page--build .contact-strip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 181, 56, 0.12);
}

.site-footer--light {
  border-top-color: rgba(0, 0, 0, 0.08);
}

.site-footer--light .footer-wrap {
  color: rgba(35, 51, 66, 0.7);
}

@media (max-width: 960px) {
  .case-hero__grid,
  .case-grid,
  .service-grid,
  .review-grid,
  .stats-grid,
  .contact-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .hero__grid,
  .pricing,
  .portfolio-grid,
  .contact-layout,
  .steps,
  .service-grid,
  .offer-strip,
  .trust-grid,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .hero--sales {
    min-height: auto;
  }

  .price-card-mini {
    position: static;
    margin-top: 0.8rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    right: 4%;
    top: 70px;
    display: none;
    flex-direction: column;
    background: #fffaf1;
    border: 1px solid var(--border);
    border-radius: 14px;
    min-width: 180px;
    padding: 0.9rem;
  }

  .nav.open {
    display: flex;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.8rem 0;
  }

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

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

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.case-page--build .gallery-item {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.fashion-page {
  margin: 0;
  background: #f7f4ef;
  color: #181715;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.fashion-header,
.fashion-footer {
  min-height: 64px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.fashion-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
  mix-blend-mode: difference;
}

.fashion-brand {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fashion-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fashion-hero {
  min-height: 100svh;
  display: grid;
  place-items: end start;
  position: relative;
  overflow: hidden;
  padding: 7rem 4vw 4rem;
}

.fashion-hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.08)),
    linear-gradient(120deg, #191613 0 35%, #d7c6b0 35% 54%, #f3eee7 54% 72%, #2a2926 72% 100%);
}

.fashion-hero__image::before,
.fashion-hero__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 22vw;
  min-width: 190px;
  height: 78vh;
  background: linear-gradient(180deg, #f6f0e7, #9b8266);
}

.fashion-hero__image::before {
  left: 46vw;
  clip-path: polygon(28% 0, 72% 0, 100% 100%, 0 100%);
}

.fashion-hero__image::after {
  left: 66vw;
  background: linear-gradient(180deg, #21201e, #b9a489);
  clip-path: polygon(20% 0, 78% 0, 92% 100%, 8% 100%);
}

.fashion-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #fff;
}

.fashion-hero__content p,
.fashion-kicker,
.fashion-intro p {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.fashion-hero__content h1 {
  color: #fff;
  font-size: clamp(2.4rem, 7vw, 6.8rem);
  line-height: 0.96;
  max-width: 11ch;
}

.fashion-hero__content a,
.fashion-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.84rem;
}

.fashion-section,
.fashion-split,
.fashion-contact {
  padding: clamp(3rem, 8vw, 7rem) 4vw;
}

.fashion-intro {
  max-width: 900px;
}

.fashion-intro h2,
.fashion-split h2 {
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.fashion-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #d8d0c3;
}

.fashion-product {
  background: #f7f4ef;
  padding-bottom: 1.2rem;
}

.fashion-product h3,
.fashion-product p {
  padding: 0 1rem;
}

.fashion-product h3 {
  margin: 1rem 0 0.25rem;
}

.fashion-product p {
  color: #67615a;
  line-height: 1.6;
  margin: 0;
}

.fashion-photo {
  min-height: 48vw;
  max-height: 620px;
  background: #ddd2c3;
}

.fashion-photo--one {
  background: linear-gradient(180deg, #eee3d1 0 18%, #ffffff 18% 46%, #bba58b 46% 100%);
}

.fashion-photo--two {
  background: linear-gradient(180deg, #2f2d2a 0 16%, #ebe2d6 16% 100%);
}

.fashion-photo--three {
  background: linear-gradient(180deg, #e8dfd2 0 20%, #93775b 20% 78%, #2b2926 78% 100%);
}

.fashion-photo--four {
  background: radial-gradient(circle at 50% 42%, #6e543d 0 24%, transparent 25%), linear-gradient(180deg, #f5efe7, #cdbca9);
}

.fashion-split {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 360px);
  gap: 2rem;
  align-items: center;
  background: #191715;
  color: #fff;
}

.fashion-split h2 {
  color: #fff;
  max-width: 760px;
}

.phone-preview {
  aspect-ratio: 9/16;
  border: 10px solid #ede7dd;
  border-radius: 28px;
  background: #f7f4ef;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.phone-preview div {
  background: linear-gradient(135deg, #2a2926, #c8b9a6);
}

.phone-preview span {
  display: block;
  background: #d8d0c3;
  min-height: 34px;
}

.fashion-contact {
  text-align: center;
}

.fashion-contact p {
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 1.06;
  margin: 0 auto 1.2rem;
  max-width: 760px;
}

.fashion-footer {
  color: #67615a;
  border-top: 1px solid #d8d0c3;
}

@media (max-width: 960px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .fashion-header {
    color: #181715;
    background: rgba(247, 244, 239, 0.92);
    mix-blend-mode: normal;
  }

  .fashion-nav {
    gap: 0.7rem;
    font-size: 0.72rem;
  }

  .fashion-hero {
    min-height: 92svh;
    padding-top: 6rem;
  }

  .fashion-hero__content h1 {
    max-width: 12ch;
  }

  .fashion-products,
  .fashion-split {
    grid-template-columns: 1fr;
  }

  .fashion-photo {
    min-height: 118vw;
  }

  .fashion-footer {
    align-items: flex-start;
  }
}
