/* ============================================================================
   OGƏLSİN — Ana səhifə stilləri (home-v2.css)
   ----------------------------------------------------------------------------
   REFAKTORING QEYDİ:
   Bu fayl əvvəllər 3 üst-üstə "pass" (patch) qatından ibarət, oxunması
   çətin, minifikasiya olunmuş tək sətir idi. İndi oxunaqlı, çoxsətirli
   formata açılıb və məntiqi bölmələrə ayrılıb.
   Kaskad SIRASI qorunub — vizual nəticə əvvəlki ilə TAM eynidir.
   Orijinal fayl saxlanılıb:  home-v2.original.css.bak
   ============================================================================ */

:root {
  --bg: #080809;
  --panel: #111012;
  --text: #f0edee;
  --muted: #aaa5a9;
  --red: #7a2638;
  --red2: #9b4858;
  --line: #372027;
  --gold: #75675c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Avenir Next","Segoe UI",Arial,sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

.skip {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  z-index: 1000;
  background: white;
  color: black;
  padding: 8px;
}

.skip:focus {
  transform: none;
}

header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,9,.96);
  border-bottom: 1px solid #141214;
}

.logo {
  font-size: 20px;
  letter-spacing: .06em;
}

.head-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.head-actions>a {
  font-size: 25px;
  transform: rotate(-25deg);
}

.menu {
  width: 36px;
  height: 42px;
  background: 0;
  border: 0;
  padding: 7px;
  color: white;
}

.menu i {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
}

header nav {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  padding: 15px 25px 24px;
  background: #0d0c0d;
  border-bottom: 1px solid var(--line);
}

header nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #292329;
}

main>section {
  border-bottom: 1px solid var(--line);
}

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

h2 {
  font-weight: 400;
  line-height: 1.18;
}

.hero {
  height: 540px;
  position: relative;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-v3.jpg');
  background-size: cover;
  background-position: 58% 35%;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(8,8,9,.97) 0%,rgba(8,8,9,.78) 38%,rgba(8,8,9,.06) 75%),linear-gradient(0deg,rgba(8,8,9,.15),transparent 50%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(92%,1160px);
  margin: auto;
  padding-top: 55px;
}

.hero h1 {
  font-size: 34px;
  line-height: 1.03;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}

.hero p {
  font-size: 14px;
  color: #c1bcbe;
  margin-bottom: 18px;
}

.btn {
  width: 245px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 12px;
  margin: 7px 0;
}

.primary {
  background: linear-gradient(90deg,#6a202f,#842c3f);
}

.outline {
  border: 1px solid var(--red);
}

.hero small {
  display: block;
  color: #8f898d;
  font-size: 11px;
  margin-top: 15px;
}

.gain {
  padding: 24px 4%;
}

.gain h2 {
  text-align: center;
  font-size: 19px;
}

.gain-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 5px;
}

.gain article {
  min-height: 88px;
  border: 1px solid #282227;
  border-radius: 7px;
  background: linear-gradient(135deg,#161316,#0c0b0c);
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 13px;
}

.gain article>b {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--red2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
}

.gain h3 {
  font-size: 14px;
  margin: 0 0 4px;
  font-weight: 400;
}

.gain p {
  font-size: 9px;
  color: #9e999c;
  margin: 0;
}

.role {
  padding: 28px 4% 15px;
  display: grid;
  grid-template-columns: .9fr 1.5fr;
  gap: 45px;
}

.role-title h2 {
  font-size: 23px;
}

.role blockquote {
  margin: 15px 0 0;
  color: var(--red2);
  font-weight: 600;
}

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

.role li {
  display: grid;
  grid-template-columns: 30px 1fr;
  margin-bottom: 8px;
  font-size: 12px;
  color: #a9a4a7;
}

.role li b {
  color: var(--red2);
  font-size: 17px;
  font-weight: 400;
}

.quiet {
  grid-column: 2;
  color: #7d787c;
  font-size: 10px;
}

.founder {
  height: 330px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: #0b0a0b;
}

.founder-photo {
  background: url('../images/founder-v3.jpg') center/cover no-repeat;
}

.founder>div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.overline {
  font-size: 15px;
  color: #d5d0d2;
}

.founder h2 {
  font-size: 23px;
}

.founder p:last-child {
  color: #a29ca0;
}

.trust {
  padding: 18px 4% 10px;
}

.trust h2 {
  text-align: center;
  font-size: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 4px;
}

.trust article {
  min-height: 76px;
  border: 1px solid #282228;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  gap: 14px;
  background: #111012;
}

.trust article b {
  font-size: 34px;
  font-weight: 300;
}

.trust article span {
  font-size: 11px;
  color: #b3adb0;
}

.trust>p {
  text-align: center;
  color: #8d8589;
  font-size: 12px;
  margin: 10px 0 0;
}

.trust>p:first-letter {
  color: var(--red2);
}

.situations {
  padding: 14px 0 8px;
  overflow: hidden;
}

.situations h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.cards {
  display: flex;
  gap: 12px;
  overflow: hidden;
  padding: 0 4%;
}

.cards article {
  flex: 0 0 22%;
  text-align: center;
}

.cards p {
  font-size: 10px;
  color: #928c90;
}

.sprite,
.case-thumb,
.contact-photo {
  background-repeat: no-repeat;
}

.sprite {
  height: 112px;
  border-radius: 5px;
}

.s1 {
  background-position: 0 0;
}

.s2 {
  background-position: 50% 0;
}

.s3 {
  background-position: 100% 0;
}

.s4 {
  background-position: 0 100%;
}

.s5 {
  background-position: 50% 100%;
}

.s6 {
  background-position: 100% 100%;
}

.wide {
  width: 55%;
  margin: 8px auto 0;
}

.cases {
  padding: 16px 4% 12px;
}

.cases>h2 {
  font-size: 21px;
  margin-bottom: 3px;
}

.cases>p {
  font-size: 11px;
  color: #a19b9e;
}

.case-list {
  display: grid;
  gap: 6px;
}

.case-list details {
  border: 1px solid #695549;
  border-radius: 8px;
  background: linear-gradient(130deg,#151214,#0b0a0b);
  overflow: hidden;
}

.case-list summary {
  list-style: none;
  display: grid;
  grid-template-columns: 62px 200px 1fr 42px;
  min-height: 80px;
  align-items: center;
  cursor: pointer;
}

.case-list summary::-webkit-details-marker {
  display: none;
}

.case-list summary>b {
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,#81283c,#5c1e2d);
  font-size: 26px;
  font-weight: 400;
}

.case-thumb {
  height: 80px;
}

.case-list h3 {
  font-size: 15px;
  padding-left: 25px;
  margin: 0;
}

.case-list summary i {
  width: 34px;
  height: 34px;
  border: 1px solid #555057;
  border-radius: 50%;
  position: relative;
}

.case-list summary i:before,
.case-list summary i:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background: white;
  left: 11px;
  top: 16px;
}

.case-list summary i:after {
  transform: rotate(90deg);
}

.case-list details[open] summary i:after {
  transform: none;
}

.case-body {
  border-top: 1px solid #30282c;
  padding: 14px 30px 10px 270px;
}

.case-body article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #2c272a;
}

.case-body article>span {
  width: 34px;
  height: 34px;
  border: 1px solid var(--red2);
  color: var(--red2);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.case-body h4 {
  color: var(--red2);
  font-size: 12px;
  margin-bottom: 3px;
}

.case-body p {
  color: #a9a4a7;
  font-size: 10px;
  margin: 0;
}

.case-body strong {
  color: #d45970;
}

.case-body small {
  display: block;
  color: #8f898d;
  font-size: 9px;
  padding: 10px 0;
}

.case-body.short {
  padding: 15px 28px;
}

.price {
  text-align: center;
  padding: 18px 4% 8px;
}

.price h2 {
  font-size: 18px;
  margin: 0 0 4px;
}

.price p {
  font-size: 10px;
  color: #948e92;
}

.price strong {
  color: #a23a4f;
}

.contact {
  height: 150px;
  margin: 0 4%;
  border: 1px solid #242024!important;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  overflow: hidden;
}

.contact>div:first-child {
  padding: 15px 20px;
}

.contact h2 {
  font-size: 20px;
}

.contact p {
  font-size: 10px;
  color: #a19b9e;
}

.contact-photo {
  background-position: 50% 100%;
  position: relative;
}

.contact-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,#111012,transparent 65%);
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 10px 6% 80px;
  color: #7e787c;
  font-size: 11px;
}

.sticky {
  position: fixed;
  z-index: 99;
  left: 4%;
  right: 4%;
  bottom: max(9px,env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 7px;
}

.sticky a {
  height: 42px;
  background: linear-gradient(90deg,#6c2131,#832b3e);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 14px;
}

:focus-visible {
  outline: 2px solid #e06b82;
  outline-offset: 3px;
}

@media(min-width:900px) {
  body {
    max-width: 1280px;
    margin: auto;
    border-inline: 1px solid #181518;
  }

  .hero-copy {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero {
    height: 600px;
  }

  .gain,
  .role,
  .trust,
  .cases {
    padding-inline: 5%;
  }

  .cards {
    padding-inline: 5%;
  }

}

@media(max-width:700px) {
  header {
    height: 52px;
    padding: 0 22px;
  }

  .logo {
    font-size: 17px;
  }

  header nav {
    top: 52px;
  }

  .hero {
    height: 380px;
  }

  .hero-copy {
    padding-top: 35px;
    width: 91%;
  }

  .hero-photo {
    background-position: 60% center;
  }

  .hero h1 {
    font-size: 28px;
    max-width: 290px;
  }

  .hero p {
    font-size: 11px;
    max-width: 270px;
  }

  .hero:after {
    background: linear-gradient(90deg,rgba(8,8,9,.98),rgba(8,8,9,.67) 48%,rgba(8,8,9,.03) 82%);
  }

  .btn {
    width: 232px;
    height: 36px;
    font-size: 11px;
  }

  .hero small {
    font-size: 9px;
  }

  .gain {
    padding: 18px 4% 14px;
  }

  .gain h2 {
    font-size: 16px;
  }

  .gain-grid {
    gap: 3px;
  }

  .gain article {
    padding: 7px;
    gap: 7px;
    min-height: 72px;
  }

  .gain article>b {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 22px;
  }

  .gain h3 {
    font-size: 11px;
  }

  .gain p {
    font-size: 7px;
  }

  .role {
    padding-top: 20px;
    grid-template-columns: .86fr 1.4fr;
    gap: 22px;
  }

  .role-title h2 {
    font-size: 16px;
  }

  .role blockquote {
    font-size: 10px;
  }

  .role li {
    font-size: 8px;
    margin-bottom: 5px;
    grid-template-columns: 26px 1fr;
  }

  .role li b {
    font-size: 12px;
  }

  .quiet {
    font-size: 7px;
  }

  .founder {
    height: 195px;
  }

  .founder>div:last-child {
    padding: 18px;
  }

  .overline {
    font-size: 10px;
  }

  .founder h2 {
    font-size: 15px;
  }

  .founder p:last-child {
    font-size: 10px;
  }

  .trust h2 {
    font-size: 14px;
  }

  .trust article {
    padding: 8px;
    gap: 8px;
    min-height: 62px;
  }

  .trust article b {
    font-size: 25px;
  }

  .trust article span {
    font-size: 8px;
  }

  .trust>p {
    font-size: 9px;
  }

  .situations h2 {
    font-size: 14px;
  }

  .cards {
    gap: 8px;
  }

  .cards article {
    flex-basis: 27%;
  }

  .sprite {
    height: 88px;
  }

  .cards p {
    font-size: 8px;
  }

  .wide {
    width: 53%;
    font-size: 9px;
    height: 32px;
  }

  .cases {
    padding-top: 12px;
  }

  .cases>h2 {
    font-size: 16px;
  }

  .cases>p {
    font-size: 9px;
  }

  .case-list summary {
    grid-template-columns: 48px 128px 1fr 34px;
    min-height: 65px;
  }

  .case-list summary>b {
    font-size: 20px;
  }

  .case-thumb {
    height: 65px;
  }

  .case-list h3 {
    font-size: 10px;
    padding-left: 14px;
  }

  .case-list summary i {
    width: 28px;
    height: 28px;
  }

  .case-list summary i:before,
  .case-list summary i:after {
    left: 8px;
    top: 13px;
  }

  .case-body {
    padding: 10px 14px 8px 175px;
  }

  .case-body article {
    grid-template-columns: 32px 1fr;
    gap: 8px;
  }

  .case-body article>span {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .case-body h4 {
    font-size: 9px;
  }

  .case-body p {
    font-size: 7px;
  }

  .case-body small {
    font-size: 7px;
  }

  .price h2 {
    font-size: 14px;
  }

  .price p {
    font-size: 8px;
  }

  .contact {
    height: 110px;
  }

  .contact>div:first-child {
    padding: 10px 14px;
  }

  .contact h2 {
    font-size: 14px;
  }

  .contact p {
    font-size: 8px;
  }

  footer {
    font-size: 9px;
    padding-bottom: 68px;
  }

  .sticky a {
    height: 36px;
    font-size: 11px;
  }

}

@media(max-width:430px) {
  .hero {
    height: 365px;
  }

  .hero h1 {
    font-size: 25px;
  }

  .gain article {
    display: block;
    text-align: center;
  }

  .gain article>b {
    margin: auto;
  }

  .gain p {
    display: none;
  }

  .role {
    gap: 14px;
  }

  .role-title h2 {
    font-size: 14px;
  }

  .case-list summary {
    grid-template-columns: 44px 100px 1fr 30px;
  }

  .case-body {
    padding-left: 14px;
  }

  .case-list h3 {
    font-size: 9px;
  }

  .cards article {
    flex-basis: 31%;
  }

}

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

  * {
    transition: none!important;
  }

}

body {
  max-width: none!important;
  width: 100%;
  border: 0!important;
  margin: 0;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .005em;
}

header {
  height: 72px;
  padding-inline: clamp(22px,4.2vw,72px);
}

.logo {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .075em;
}

.hero {
  height: clamp(620px,64vw,820px);
}

.hero-copy {
  width: 100%;
  padding: clamp(72px,8vw,118px) clamp(24px,7vw,112px) 0;
  margin: 0;
}

.hero h1 {
  font-size: clamp(44px,5vw,74px);
  max-width: 780px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -.035em;
  margin-bottom: 24px;
}

.hero p {
  font-size: clamp(16px,1.35vw,20px);
  line-height: 1.45;
  max-width: 640px;
  margin-bottom: 23px;
}

.hero .btn {
  width: min(100%,340px);
  height: 50px;
  font-size: 15px;
}

.hero small {
  font-size: 13px;
}

.gain,
.role,
.trust,
.cases,
.price {
  padding-inline: clamp(24px,5vw,84px);
}

.gain {
  padding-block: 38px 34px;
}

.gain h2 {
  font-size: clamp(24px,2.4vw,36px);
  margin-bottom: 24px;
}

.gain-grid {
  gap: 12px;
}

.gain article {
  min-height: 126px;
  padding: 20px;
  gap: 18px;
}

.gain article>b {
  width: 66px;
  height: 66px;
  flex-basis: 66px;
  font-size: 36px;
}

.gain h3 {
  font-size: 20px;
}

.gain p {
  font-size: 13px;
  line-height: 1.45;
}

.role {
  padding-block: 48px 34px;
  grid-template-columns: minmax(280px,.9fr) minmax(420px,1.55fr);
  gap: clamp(44px,7vw,110px);
}

.role-title h2 {
  font-size: clamp(30px,3.2vw,48px);
}

.role blockquote {
  font-size: 19px;
  line-height: 1.45;
}

.role li {
  grid-template-columns: 46px 1fr;
  font-size: 16px;
  margin-bottom: 13px;
}

.role li b {
  font-size: 22px;
}

.quiet {
  font-size: 13px;
}

.founder {
  height: clamp(410px,42vw,610px);
}

.founder>div:last-child {
  padding: clamp(38px,6vw,92px);
}

.overline {
  font-size: 17px;
  letter-spacing: .04em;
}

.founder h2 {
  font-size: clamp(30px,3.3vw,48px);
}

.founder p:last-child {
  font-size: 18px;
}

.trust {
  padding-block: 32px 20px;
}

.trust h2 {
  font-size: clamp(24px,2.6vw,38px);
  margin-bottom: 22px;
}

.trust-grid {
  gap: 10px;
}

.trust article {
  min-height: 112px;
  padding: 20px 28px;
}

.trust article b {
  font-size: 44px;
}

.trust article span {
  font-size: 15px;
}

.trust>p {
  font-size: 15px;
  margin-top: 16px;
}

.situations {
  padding-block: 26px 18px;
}

.situations h2 {
  font-size: clamp(24px,2.7vw,40px);
  margin-bottom: 24px;
}

.cards {
  padding-inline: clamp(24px,5vw,84px);
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.cards::-webkit-scrollbar {
  display: none;
}

.cards article {
  flex-basis: clamp(230px,23%,360px);
}

.sprite {
  height: clamp(150px,16vw,230px);
}

.cards p {
  font-size: 14px;
  line-height: 1.35;
}

.wide {
  height: 48px;
  width: min(560px,88%);
  font-size: 14px;
  margin-top: 16px;
}

.cases {
  padding-block: 32px 24px;
}

.cases>h2 {
  font-size: clamp(30px,3.2vw,48px);
}

.cases>p {
  font-size: 16px;
  margin-bottom: 24px;
}

.case-list {
  gap: 10px;
}

.case-list summary {
  grid-template-columns: 82px clamp(170px,24vw,360px) 1fr 60px;
  min-height: 112px;
}

.case-list summary>b {
  font-size: 32px;
}

.case-thumb {
  height: 112px;
}

.case-list h3 {
  font-size: clamp(17px,1.7vw,25px);
  padding-inline: 28px;
}

.case-list summary i {
  width: 42px;
  height: 42px;
}

.case-list summary i:before,
.case-list summary i:after {
  left: 15px;
  top: 20px;
}

.case-body {
  padding: 24px 44px 18px calc(82px + clamp(170px,24vw,360px) + 28px);
}

.case-body article {
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 14px 0;
}

.case-body article>span {
  width: 42px;
  height: 42px;
}

.case-body h4 {
  font-size: 17px;
}

.case-body p {
  font-size: 14px;
  line-height: 1.55;
}

.case-body small {
  font-size: 12px;
  padding-top: 16px;
}

.price {
  padding-block: 26px 18px;
}

.price h2 {
  font-size: clamp(24px,2.7vw,38px);
}

.price p {
  font-size: 15px;
}

.contact {
  height: clamp(210px,22vw,310px);
  margin: 0 clamp(24px,5vw,84px);
}

.contact>div:first-child {
  padding: clamp(25px,4vw,58px);
}

.contact h2 {
  font-size: clamp(28px,3vw,44px);
}

.contact p {
  font-size: 15px;
}

footer {
  padding-inline: clamp(24px,5vw,84px);
  font-size: 14px;
}

.sticky {
  left: clamp(16px,4vw,64px);
  right: clamp(16px,4vw,64px);
}

.sticky a {
  height: 50px;
  font-size: 15px;
}

@media(max-width:820px) {
  header {
    height: 58px;
    padding-inline: 20px;
  }

  .logo {
    font-size: 19px;
  }

  .head-actions {
    gap: 15px;
  }

  header nav {
    top: 58px;
    padding-inline: 20px;
  }

  .hero {
    height: 560px;
  }

  .hero-photo {
    background-position: 58% center;
  }

  .hero-copy {
    padding: 52px 20px 0;
  }

  .hero h1 {
    font-size: clamp(32px,6.2vw,45px);
    max-width: 500px;
    margin-bottom: 18px;
  }

  .hero p {
    font-size: clamp(14px,2.25vw,17px);
    max-width: 430px;
    margin-bottom: 20px;
  }

  .hero .btn {
    width: min(360px,66vw);
    height: 45px;
    font-size: 14px;
  }

  .hero small {
    font-size: 12px;
  }

  .hero:after {
    background: linear-gradient(90deg,rgba(8,8,9,.98),rgba(8,8,9,.78) 44%,rgba(8,8,9,.06) 83%);
  }

  .gain,
  .role,
  .trust,
  .cases,
  .price {
    padding-inline: 20px;
  }

  .gain {
    padding-block: 28px 25px;
  }

  .gain h2 {
    font-size: 24px;
  }

  .gain-grid {
    gap: 7px;
  }

  .gain article {
    min-height: 106px;
    padding: 13px;
    gap: 11px;
  }

  .gain article>b {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    font-size: 28px;
  }

  .gain h3 {
    font-size: 16px;
  }

  .gain p {
    font-size: 10.5px;
    display: block;
  }

  .role {
    padding-block: 34px 24px;
    grid-template-columns: .85fr 1.35fr;
    gap: 30px;
  }

  .role-title h2 {
    font-size: 25px;
  }

  .role blockquote {
    font-size: 14px;
  }

  .role li {
    grid-template-columns: 36px 1fr;
    font-size: 13px;
    margin-bottom: 9px;
  }

  .role li b {
    font-size: 17px;
  }

  .quiet {
    font-size: 11px;
  }

  .founder {
    height: 330px;
    grid-template-columns: 1.1fr .9fr;
  }

  .founder>div:last-child {
    padding: 28px;
  }

  .overline {
    font-size: 13px;
  }

  .founder h2 {
    font-size: 25px;
  }

  .founder p:last-child {
    font-size: 14px;
  }

  .trust {
    padding-block: 25px 16px;
  }

  .trust h2 {
    font-size: 23px;
  }

  .trust-grid {
    gap: 7px;
  }

  .trust article {
    min-height: 91px;
    padding: 13px 16px;
    gap: 12px;
  }

  .trust article b {
    font-size: 34px;
  }

  .trust article span {
    font-size: 12px;
  }

  .trust>p {
    font-size: 12px;
  }

  .situations {
    padding-block: 22px 14px;
  }

  .situations h2 {
    font-size: 23px;
    padding-inline: 20px;
  }

  .cards {
    padding-inline: 20px;
    gap: 11px;
  }

  .cards article {
    flex-basis: 27%;
  }

  .sprite {
    height: 135px;
  }

  .cards p {
    font-size: 11px;
  }

  .wide {
    height: 42px;
    font-size: 12px;
  }

  .cases {
    padding-block: 26px 20px;
  }

  .cases>h2 {
    font-size: 27px;
  }

  .cases>p {
    font-size: 13px;
  }

  .case-list summary {
    grid-template-columns: 64px 185px 1fr 44px;
    min-height: 88px;
  }

  .case-list summary>b {
    font-size: 26px;
  }

  .case-thumb {
    height: 88px;
  }

  .case-list h3 {
    font-size: 17px;
    padding-inline: 20px;
  }

  .case-list summary i {
    width: 34px;
    height: 34px;
  }

  .case-list summary i:before,
  .case-list summary i:after {
    left: 11px;
    top: 16px;
  }

  .case-body {
    padding: 18px 24px 15px 273px;
  }

  .case-body article {
    grid-template-columns: 44px 1fr;
    gap: 13px;
    padding: 11px 0;
  }

  .case-body article>span {
    width: 36px;
    height: 36px;
  }

  .case-body h4 {
    font-size: 14px;
  }

  .case-body p {
    font-size: 12px;
  }

  .case-body small {
    font-size: 10px;
  }

  .price {
    padding-block: 23px 15px;
  }

  .price h2 {
    font-size: 23px;
  }

  .price p {
    font-size: 12px;
  }

  .contact {
    height: 190px;
    margin-inline: 20px;
  }

  .contact>div:first-child {
    padding: 25px;
  }

  .contact h2 {
    font-size: 25px;
  }

  .contact p {
    font-size: 12px;
  }

  footer {
    padding-inline: 20px;
    font-size: 12px;
  }

  .sticky {
    left: 20px;
    right: 20px;
  }

  .sticky a {
    height: 46px;
    font-size: 14px;
  }

}

@media(max-width:520px) {
  .hero {
    height: 510px;
  }

  .hero-copy {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero .btn {
    width: min(100%,310px);
  }

  .gain {
    padding-inline: 14px;
  }

  .gain h2 {
    font-size: 20px;
  }

  .gain-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gain article {
    min-height: 86px;
    text-align: left;
    display: flex;
  }

  .gain article>b {
    margin: 0;
  }

  .gain h3 {
    font-size: 17px;
  }

  .gain p {
    font-size: 12px;
  }

  .role {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  .role-title h2 {
    font-size: 27px;
  }

  .role blockquote {
    font-size: 16px;
  }

  .role li {
    font-size: 14px;
  }

  .quiet {
    grid-column: 1;
    font-size: 12px;
  }

  .founder {
    height: auto;
    grid-template-columns: 1fr;
  }

  .founder-photo {
    min-height: 250px;
  }

  .founder>div:last-child {
    padding: 30px 20px;
  }

  .founder h2 {
    font-size: 28px;
  }

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

  .trust article {
    min-height: 78px;
  }

  .situations h2 {
    font-size: 22px;
  }

  .cards article {
    flex-basis: 72%;
  }

  .sprite {
    height: 180px;
  }

  .cards p {
    font-size: 13px;
  }

  .wide {
    width: calc(100% - 40px);
  }

  .cases>h2 {
    font-size: 28px;
  }

  .case-list summary {
    grid-template-columns: 52px 105px 1fr 36px;
    min-height: 76px;
  }

  .case-list summary>b {
    font-size: 22px;
  }

  .case-thumb {
    height: 76px;
  }

  .case-list h3 {
    font-size: 13px;
    padding-inline: 12px;
  }

  .case-body {
    padding: 16px;
  }

  .case-body h4 {
    font-size: 15px;
  }

  .case-body p {
    font-size: 13px;
  }

  .case-body small {
    font-size: 11px;
  }

  .price h2 {
    font-size: 22px;
  }

  .price p {
    font-size: 13px;
  }

  .contact {
    height: 180px;
    grid-template-columns: 1.05fr .95fr;
  }

  .contact>div:first-child {
    padding: 20px 15px;
  }

  .contact h2 {
    font-size: 24px;
  }

  .contact p {
    font-size: 12px;
  }

  .sticky {
    left: 12px;
    right: 12px;
  }

  .sticky a {
    height: 48px;
  }

}

.head-actions>a {
  font-size: 0;
  transform: none;
}

.head-actions>a:before {
  content: "☎";
  font-family: Arial,sans-serif;
  font-size: 22px;
  font-weight: 400;
}

:root {
  --gutter: clamp(20px,5vw,84px);
  --hairline: rgba(155,72,88,.28);
  --soft-line: rgba(255,255,255,.09);
  --radius: 12px;
}

header {
  padding-inline: var(--gutter);
  background: rgba(8,8,9,.84);
  border-color: var(--hairline);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}

.hero-copy {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.gain,
.role,
.trust,
.cases,
.price {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.cards {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.situations>h2 {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.contact {
  margin-left: var(--gutter);
  margin-right: var(--gutter);
}

footer {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.hero-photo {
  background-color: #0a090a;
  background-image: url('../images/hero-v3.jpg');
  background-size: auto 112%;
  background-position: right center;
  background-repeat: no-repeat;
  filter: saturate(.76) contrast(1.035);
}

.hero:after {
  background: linear-gradient(90deg,rgba(8,8,9,.99) 0%,rgba(8,8,9,.9) 32%,rgba(8,8,9,.38) 58%,rgba(8,8,9,.06) 82%),linear-gradient(0deg,rgba(8,8,9,.16),transparent 55%);
}

.founder-photo {
  background-size: cover;
  background-position: 42% center;
  filter: saturate(.78) contrast(1.025);
}

.sprite,
.case-thumb,
.contact-photo {
  background-image: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #141214;
  filter: saturate(.78) contrast(1.025);
}

.s1 {
  background-image: url('../images/cards/contract.webp');
  background-position: center 58%;
}

.s2 {
  background-image: url('../images/cards/property.webp');
  background-position: center;
}

.s3 {
  background-image: url('../images/cards/renovation.webp');
  background-position: center 58%;
}

.s4 {
  background-image: url('../images/cards/car.webp');
  background-position: center 60%;
}

.s5 {
  background-image: url('../images/cards/keys.webp');
  background-position: center;
}

.s6 {
  background-image: url('../images/cards/elderly.webp');
  background-position: center 42%;
}

.contact-photo {
  background-image: url('../images/cards/keys.webp');
  background-position: center 45%;
}

.sprite {
  height: auto;
  aspect-ratio: 16/10;
}

.case-thumb {
  height: 100%;
  min-height: inherit;
}

.contact-photo:after {
  background: linear-gradient(90deg,#111012 0%,rgba(17,16,18,.7) 22%,transparent 70%);
}

main>section {
  border-color: var(--hairline);
}

.gain article,
.trust article {
  border-color: var(--soft-line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px rgba(255,255,255,.025);
}

.case-list details {
  border-color: rgba(117,103,92,.74);
  border-radius: var(--radius);
  box-shadow: 0 12px 42px rgba(0,0,0,.12);
  transition: border-color .25s ease,background-color .25s ease;
}

.case-list details[open] {
  border-color: rgba(155,72,88,.72);
  background: linear-gradient(130deg,#171316,#0b0a0b);
}

.btn {
  border-radius: 7px;
  transition: transform .22s ease,filter .22s ease,box-shadow .22s ease;
}

.primary {
  box-shadow: 0 10px 28px rgba(81,20,34,.24);
}

.logo,
h1,
h2,
h3,
h4 {
  font-feature-settings: "kern" 1,"liga" 1;
  text-rendering: optimizeLegibility;
}

.hero h1 {
  letter-spacing: -.043em;
}

.gain h2,
.situations h2 {
  letter-spacing: -.018em;
}

.role-title h2,
.founder h2,
.cases>h2,
.price h2,
.contact h2 {
  letter-spacing: -.027em;
}

.gain-grid,
.trust-grid {
  align-items: stretch;
}

.gain article,
.trust article {
  height: 100%;
}

.cards article {
  display: flex;
  flex-direction: column;
}

.cards p {
  min-height: 2.8em;
  margin-top: 10px;
}

.contact {
  border-color: var(--soft-line)!important;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
}

@media(hover:hover) {
  .btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 14px 34px rgba(81,20,34,.34);
  }

  .gain article,
  .trust article,
  .cards article {
    transition: transform .28s ease,border-color .28s ease;
  }

  .gain article:hover,
  .trust article:hover {
    transform: translateY(-2px);
    border-color: rgba(155,72,88,.35);
  }

  .cards article:hover {
    transform: translateY(-3px);
  }

}

@media(max-width:820px) {
  :root {
    --gutter: 20px;
  }

  .hero-photo {
    background-size: auto 108%,cover;
    background-position: right center,center;
  }

  .founder-photo {
    background-position: 38% center;
  }

  .case-thumb {
    min-height: 88px;
  }

  .sprite {
    aspect-ratio: 16/10;
  }

}

@media(max-width:520px) {
  :root {
    --gutter: 16px;
  }

  .hero-copy {
    padding-top: 42px;
  }

  .hero-photo {
    background-size: auto 104%,cover;
    background-position: 60% center,center;
  }

  .hero:after {
    background: linear-gradient(90deg,rgba(8,8,9,.98),rgba(8,8,9,.76) 50%,rgba(8,8,9,.12) 87%);
  }

  .case-thumb {
    min-height: 76px;
  }

  .cards {
    padding-right: var(--gutter);
  }

  .contact {
    grid-template-columns: 1.08fr .92fr;
  }

  .sticky {
    left: 10px;
    right: 10px;
  }

}

@media(min-width:821px) {
  .sticky {
    display: none;
  }

  footer {
    padding-bottom: 40px;
  }

}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: none;
}

.logo span {
  display: block;
}

.situations-head {
  display: grid;
  grid-template-columns: 92px minmax(0,1fr) 92px;
  align-items: center;
  padding-inline: var(--gutter);
  margin-bottom: 24px;
}

.situations-head:before {
  content: "";
}

.situations-head h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(24px,2.7vw,40px);
  letter-spacing: -.018em;
}

.scroll-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.scroll-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: #111012;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s ease,background-color .2s ease,opacity .2s ease,transform .2s ease;
}

.scroll-controls button:disabled {
  opacity: .28;
  cursor: default;
}

.cards {
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
  user-select: none;
  cursor: grab;
  padding-bottom: 8px;
}

.cards:active,
.cards.is-dragging {
  cursor: grabbing;
}

.cards.is-dragging {
  scroll-snap-type: none;
}

.cards article {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.cards:focus-visible {
  outline: 2px solid #d45b73;
  outline-offset: -2px;
}

@media(hover:hover) {
  .scroll-controls button:not(:disabled):hover {
    border-color: var(--red2);
    background: #21171b;
    transform: translateY(-1px);
  }

}

@media(max-width:820px) {
  .logo {
    gap: 8px;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .situations-head {
    grid-template-columns: 78px minmax(0,1fr) 78px;
    margin-bottom: 18px;
  }

  .situations-head h2 {
    font-size: 23px;
  }

  .scroll-controls button {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

}

@media(max-width:520px) {
  .logo {
    gap: 6px;
    letter-spacing: .045em;
  }

  .logo img {
    width: 26px;
    height: 26px;
  }

  .logo span {
    font-size: 15.5px;
  }

  .head-actions {
    gap: 11px;
  }

  .hero {
    height: 610px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.04;
    max-width: 350px;
  }

  .hero p {
    font-size: 13.5px;
    max-width: 310px;
  }

  .hero .btn {
    width: 100%;
    max-width: 350px;
    height: 48px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-photo {
    background-position: 68% center,center;
  }

  .situations-head {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-inline: var(--gutter);
    margin-bottom: 14px;
  }

  .situations-head:before {
    display: none;
  }

  .situations-head h2 {
    grid-column: 1/-1;
    font-size: 22px;
  }

  .scroll-controls {
    grid-column: 2;
  }

  .scroll-controls button {
    width: 40px;
    height: 40px;
  }

  .cards article {
    flex-basis: 82%;
  }

}

.hero-photo {
  background-image: url('../images/hero-v3.jpg');
  background-size: auto 112%;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #0a090a;
}

.btn,
.sticky a,
.footer-wa {
  gap: 10px;
}

.sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  line-height: 1;
  white-space: nowrap;
}

.case-list details.is-animating {
  overflow: hidden;
}

.case-list summary i:after {
  transition: transform .38s cubic-bezier(.22,1,.36,1), opacity .24s ease;
}

.case-list details.is-closing summary i:after {
  transform: rotate(90deg);
}

.wa-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  flex: none;
}

.wa-icon:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-left: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  left: -1px;
  bottom: -1px;
  transform: rotate(-18deg);
}

.wa-icon:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 3px;
  border-bottom: 1.4px solid currentColor;
  border-radius: 50%;
  left: 5px;
  top: 6px;
  transform: rotate(28deg);
}

.phone-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: none;
  transform: rotate(-38deg);
}

.phone-icon:before {
  content: "";
  position: absolute;
  inset: 2px 4px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 4px 2px 7px 4px;
}

.phone-icon:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-block: 2px solid currentColor;
  left: 3px;
  top: 4px;
}

.gain-icon,
.trust-icon,
.case-icon {
  position: relative;
  display: block;
  flex: none;
}

.gain-icon:before,
.gain-icon:after,
.trust-icon:before,
.trust-icon:after,
.case-icon:before,
.case-icon:after {
  content: "";
  position: absolute;
  display: block;
}

.icon-clock:before {
  inset: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-clock:after {
  width: 10px;
  height: 8px;
  left: 50%;
  top: 50%;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-8px);
}

.icon-calm:before {
  inset: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-calm:after {
  inset: 17px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .7;
}

.icon-comfort:before {
  left: 12px;
  right: 12px;
  bottom: 15px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 7px 7px 3px 3px;
}

.icon-comfort:after {
  left: 17px;
  right: 17px;
  bottom: 22px;
  border-top: 2px solid currentColor;
  box-shadow: -7px 8px 0 -1px currentColor,7px 8px 0 -1px currentColor;
}

.trust-icon {
  width: 46px;
  height: 46px;
  color: #ded9db;
}

.icon-document:before {
  width: 25px;
  height: 31px;
  left: 9px;
  top: 6px;
  border: 1.7px solid currentColor;
  border-radius: 2px;
}

.icon-document:after {
  width: 14px;
  height: 1.5px;
  left: 15px;
  top: 15px;
  background: currentColor;
  box-shadow: 0 5px currentColor,0 10px currentColor;
}

.icon-payment:before {
  width: 27px;
  height: 31px;
  left: 8px;
  top: 6px;
  border: 1.7px solid currentColor;
  border-radius: 2px;
}

.icon-payment:after {
  width: 14px;
  height: 1.5px;
  left: 14px;
  top: 14px;
  background: currentColor;
  box-shadow: 0 5px currentColor,7px 13px 0 2px var(--panel);
}

.icon-person:before {
  width: 10px;
  height: 10px;
  left: 17px;
  top: 6px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.icon-person:after {
  width: 25px;
  height: 18px;
  left: 9px;
  bottom: 6px;
  border: 1.8px solid currentColor;
  border-radius: 14px 14px 3px 3px;
}

.privacy-icon {
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 1px solid var(--red2);
  transform: rotate(45deg);
  margin-right: 12px;
}

.case-icon.icon-document:before {
  width: 18px;
  height: 23px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.case-icon.icon-document:after {
  width: 10px;
  left: 50%;
  top: calc(50% - 5px);
  transform: translateX(-50%);
  box-shadow: 0 4px currentColor,0 8px currentColor;
}

.case-icon.icon-work:before,
.case-icon.icon-work:after {
  width: 20px;
  height: 2px;
  background: currentColor;
  left: 50%;
  top: 50%;
  border-radius: 2px;
  transform-origin: center;
}

.case-icon.icon-work:before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.case-icon.icon-work:after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.case-icon.icon-result:before {
  width: 15px;
  height: 8px;
  left: 50%;
  top: 50%;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%,-58%) rotate(-45deg);
  transform-origin: center;
}

.info-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
  margin-right: 9px;
  color: #aaa4a7;
}

.case-body small {
  display: flex;
  align-items: center;
}

.footer-v2 {
  display: grid!important;
  grid-template-columns: 1.3fr 1fr .8fr .9fr;
  gap: clamp(30px,5vw,78px);
  align-items: start;
  padding: 56px var(--gutter) 46px!important;
  margin-top: 34px;
  border-top: 1px solid var(--hairline);
  color: #aaa5a9;
  font-size: 14px;
}

.footer-v2>div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
}

.footer-v2 .footer-brand p {
  max-width: 340px;
  margin: 6px 0;
}

.footer-v2 h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #f0edee;
  margin: 0 0 9px;
}

.footer-v2 strong {
  color: #f0edee;
  font-weight: 600;
}

.footer-v2 p,
.footer-v2 address {
  margin: 0;
  font-style: normal;
  color: #aaa5a9;
}

.footer-v2 a {
  transition: color .2s ease;
}

.footer-v2 a:hover {
  color: #fff;
}

.footer-v2 .logo {
  color: #f0edee;
  margin-bottom: 7px;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(155,72,88,.5);
  border-radius: 7px;
  color: #f0edee;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.social-list span {
  padding: 7px 10px;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  color: #c3bdc0;
  font-size: 12px;
}

.footer-note {
  margin-top: 14px!important;
  font-size: 12px!important;
  color: #716c70!important;
}

@media(max-width:820px) {
  .hero-photo {
    background-size: auto 108%;
    background-position: right center;
  }

  .footer-v2 {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding-top: 42px!important;
  }

}

@media(max-width:520px) {
  .hero-photo {
    background-size: auto 104%;
    background-position: 68% center;
  }

  .footer-v2 {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px var(--gutter) 92px!important;
  }

  .footer-v2 .footer-brand p {
    max-width: none;
  }

}

/* Mobile-first hero composition: keep copy clear of the portrait and remove
   the artificial empty area created by a fixed 610px section height. */
@media(max-width:520px) {
  .hero {
    height: auto;
    min-height: 520px;
    display: flex;
    align-items: center;
  }

  .hero-photo {
    background-size: auto 92%;
    background-position: right -38px center;
  }

  .hero:after {
    background:
      linear-gradient(90deg,rgba(8,8,9,.99) 0%,rgba(8,8,9,.9) 42%,rgba(8,8,9,.38) 62%,rgba(8,8,9,.08) 84%),
      linear-gradient(0deg,rgba(8,8,9,.2),transparent 55%);
  }

  .hero-copy {
    width: 100%;
    padding: 24px var(--gutter);
  }

  .hero h1 {
    max-width: 245px;
    margin-bottom: 16px;
    font-size: clamp(25px,7vw,28px);
    line-height: 1.04;
  }

  .hero p {
    max-width: 235px;
    margin-bottom: 14px;
    font-size: 13.5px;
    line-height: 1.42;
  }

  .hero .btn {
    width: 100%;
    max-width: none;
    height: 48px;
    margin-block: 7px;
  }

  .hero small {
    max-width: 100%;
    margin-top: 12px;
    line-height: 1.4;
  }

  .gain {
    padding-top: 24px;
  }

  .gain h2 {
    margin-bottom: 20px;
  }
}

@media(max-width:360px) {
  .hero-photo {
    background-size: auto 84%;
    background-position: right -44px center;
  }

  .hero h1 {
    max-width: 220px;
  }

  .hero p {
    max-width: 205px;
  }
}

/* Keep each process number vertically centered against its corresponding
   text, including rows where the text wraps onto multiple lines. */
.role li {
  align-items: stretch;
}

.role li b,
.role li span {
  display: flex;
  align-items: center;
}

.role li b {
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.role li span {
  min-height: 1.5em;
  line-height: 1.4;
}

/* The founder's statement is personal testimony, not a section heading. */
.founder-quote {
  max-width: 720px;
  margin: 20px 0 24px;
  padding-left: clamp(17px,2vw,26px);
  border-left: 1px solid rgba(155,72,88,.78);
  color: #d8d3d5;
  font-family: inherit;
  font-size: clamp(16px,1.35vw,21px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: .003em;
}

.founder .founder-quote p {
  margin: 0 0 .9em;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

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

.founder>div:last-child>.overline {
  margin-bottom: 0;
}

.founder>div:last-child>p:last-child {
  margin: 0;
}

@media(min-width:821px) {
  .founder {
    height: auto;
    min-height: clamp(500px,44vw,660px);
  }
}

@media(max-width:520px) {
  .founder-quote {
    margin: 18px 0 22px;
    padding-left: 18px;
    font-size: 17px;
    line-height: 1.6;
  }
}

/* Keep the complete final CTA copy vertically centered beside its image. */
.contact>div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  box-sizing: border-box;
}

.contact h3 {
  margin: 0 0 clamp(14px,1.5vw,20px);
  color: #f2eff0;
  font-size: clamp(24px,3vw,44px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.027em;
}

.contact p {
  margin: 0;
  line-height: 1.5;
}

@media(max-width:520px) {
  .contact {
    height: auto;
    min-height: 220px;
    align-items: stretch;
  }

  .contact>div:first-child {
    padding: 20px 15px;
  }

  .contact h3 {
    margin-bottom: 16px;
    font-size: clamp(21px,6.2vw,24px);
    line-height: 1.16;
  }

  .contact p {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media(max-width:360px) {
  .contact {
    min-height: 230px;
  }

  .contact h3 {
    font-size: 20px;
  }

  .contact p {
    font-size: 11.5px;
  }
}

/* Editorial portfolio — real assignments presented as readable stories. */
.portfolio {
  position: relative;
  padding: clamp(52px,6vw,92px) var(--gutter) clamp(58px,7vw,104px);
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  background:
    radial-gradient(circle at 88% 4%,rgba(119,37,55,.14),transparent 28%),
    linear-gradient(180deg,#0b0a0b 0%,#080809 100%);
  scroll-margin-top: 76px;
}

.portfolio:before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  width: clamp(72px,9vw,138px);
  height: 2px;
  background: linear-gradient(90deg,#a33a51,transparent);
}

.portfolio-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(120px,.28fr) minmax(0,1fr);
  gap: clamp(26px,5vw,84px);
  align-items: start;
  max-width: 1220px;
  margin: 0 auto clamp(34px,4vw,56px);
}

.portfolio-kicker {
  margin: .35em 0 0;
  color: #b14a60;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.portfolio h2 {
  max-width: 940px;
  margin: 0;
  color: #f1edef;
  font-size: clamp(30px,3.65vw,56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.portfolio-list {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  gap: 14px;
}

.portfolio-list details {
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 16px;
  background: rgba(18,16,18,.82);
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
}

.portfolio-list details[open] {
  border-color: rgba(159,63,82,.68);
  background: linear-gradient(145deg,rgba(27,20,23,.98),rgba(12,11,12,.98));
}

.portfolio-list summary {
  display: grid;
  grid-template-columns: 72px minmax(0,1fr) clamp(230px,25vw,360px) 58px;
  min-height: clamp(132px,12vw,172px);
  align-items: stretch;
  overflow: hidden;
}

.portfolio-index {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255,255,255,.08);
  color: #b64b62;
  font-size: clamp(22px,2vw,30px);
  font-weight: 400;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.portfolio-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 24px clamp(24px,3vw,46px);
}

.portfolio-type {
  display: block;
  margin-bottom: 10px;
  color: #ad5366;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.portfolio-list h3 {
  max-width: 650px;
  margin: 0;
  padding: 0;
  color: #f0ecee;
  font-size: clamp(20px,2vw,29px);
  font-weight: 550;
  line-height: 1.22;
  letter-spacing: -.02em;
}

.portfolio-cover {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(.72) contrast(1.04);
}

.portfolio-cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(18,16,18,.76),transparent 34%);
}

.portfolio-list summary i {
  align-self: center;
  justify-self: center;
  margin: 0;
  border-color: rgba(255,255,255,.26);
}

.portfolio-list summary:hover .portfolio-cover {
  filter: saturate(.9) contrast(1.04);
}

.portfolio-list summary:hover i {
  border-color: rgba(182,75,98,.9);
}

.portfolio-body {
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.portfolio-story {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(32px,4.5vw,62px) clamp(28px,5vw,76px) clamp(38px,5vw,70px);
}

.portfolio-story>p,
.portfolio-story li,
.portfolio-result p {
  color: #bbb5b8;
  font-size: clamp(15px,1.3vw,18px);
  line-height: 1.72;
}

.portfolio-story>p {
  margin: 0 0 1.4em;
}

.portfolio-story h4 {
  margin: 2em 0 .65em;
  color: #d15b72;
  font-size: clamp(18px,1.6vw,23px);
  font-weight: 600;
  line-height: 1.25;
}

.portfolio-story ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.portfolio-story li {
  position: relative;
  padding-left: 24px;
}

.portfolio-story li:before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid #a54257;
  transform: rotate(45deg);
}

.portfolio-result {
  display: grid;
  grid-template-columns: 120px minmax(0,1fr);
  gap: clamp(20px,3vw,40px);
  align-items: start;
  margin-top: clamp(28px,4vw,48px);
  padding: clamp(22px,3vw,34px) 0;
  border-top: 1px solid rgba(167,67,87,.5);
  border-bottom: 1px solid rgba(167,67,87,.22);
}

.portfolio-result>span {
  padding-top: .36em;
  color: #b74b62;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.portfolio-result p {
  margin: 0;
  color: #d1cbce;
}

.portfolio-result strong {
  color: #e36b82;
  font-weight: 650;
}

@media(max-width:760px) {
  .portfolio {
    padding: 44px 16px 58px;
  }

  .portfolio:before {
    left: 16px;
    width: 72px;
  }

  .portfolio-intro {
    display: block;
    margin-bottom: 28px;
  }

  .portfolio-kicker {
    margin: 0 0 12px;
    font-size: 10px;
  }

  .portfolio h2 {
    max-width: 520px;
    font-size: clamp(27px,8vw,36px);
    line-height: 1.12;
  }

  .portfolio-list {
    gap: 12px;
  }

  .portfolio-list summary {
    grid-template-columns: 52px minmax(0,1fr) 46px;
    grid-template-rows: 144px auto;
    min-height: 0;
  }

  .portfolio-cover {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 144px;
    min-height: 144px;
  }

  .portfolio-cover:after {
    background: linear-gradient(0deg,rgba(17,15,17,.72),transparent 58%);
  }

  .portfolio-index {
    grid-column: 1;
    grid-row: 2;
    min-height: 112px;
  }

  .portfolio-title {
    grid-column: 2;
    grid-row: 2;
    min-height: 112px;
    padding: 17px 12px 17px 16px;
  }

  .portfolio-type {
    margin-bottom: 7px;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: .1em;
  }

  .portfolio-list h3 {
    font-size: clamp(16px,4.5vw,19px);
    line-height: 1.28;
  }

  .portfolio-list summary i {
    grid-column: 3;
    grid-row: 2;
    width: 32px;
    height: 32px;
  }

  .portfolio-list summary i:before,
  .portfolio-list summary i:after {
    left: 10px;
    top: 15px;
  }

  .portfolio-story {
    padding: 26px 18px 34px;
  }

  .portfolio-story>p,
  .portfolio-story li,
  .portfolio-result p {
    font-size: 14px;
    line-height: 1.65;
  }

  .portfolio-story h4 {
    margin-top: 1.7em;
    font-size: 18px;
  }

  .portfolio-result {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
    padding: 21px 0;
  }

  .portfolio-result>span {
    padding-top: 0;
  }
}

@media(max-width:360px) {
  .portfolio-list summary {
    grid-template-columns: 46px minmax(0,1fr) 42px;
    grid-template-rows: 126px auto;
  }

  .portfolio-cover {
    height: 126px;
    min-height: 126px;
  }

  .portfolio-index,
  .portfolio-title {
    min-height: 108px;
  }

  .portfolio-title {
    padding-inline: 12px 8px;
  }

  .portfolio-list h3 {
    font-size: 15px;
  }
}

/* A quiet bridge between proof of work and the customer's benefit. */
.delegation-note {
  position: relative;
  padding: clamp(48px,6vw,88px) var(--gutter);
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  background:
    linear-gradient(100deg,rgba(111,31,49,.11),transparent 42%),
    #0a090a;
}

.delegation-note:after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -18vw;
  width: 38vw;
  height: 38vw;
  border: 1px solid rgba(151,54,74,.12);
  border-radius: 50%;
  pointer-events: none;
}

.delegation-note>div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.18fr) minmax(0,.82fr);
  gap: clamp(42px,7vw,112px);
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}

.delegation-lead,
.delegation-support {
  margin: 0;
}

.delegation-lead {
  position: relative;
  padding-top: clamp(24px,2.5vw,34px);
  color: #eee9eb;
  font-size: clamp(24px,2.45vw,36px);
  font-weight: 450;
  line-height: 1.43;
  letter-spacing: -.025em;
}

.delegation-lead:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(62px,7vw,96px);
  height: 2px;
  background: linear-gradient(90deg,#b2445b,rgba(178,68,91,0));
}

.delegation-lead strong {
  color: #dc657c;
  font-weight: 600;
}

.delegation-support {
  align-self: center;
  padding-left: clamp(22px,3vw,38px);
  border-left: 1px solid rgba(174,67,88,.48);
  color: #aaa4a7;
  font-size: clamp(15px,1.3vw,18px);
  line-height: 1.72;
}

.gain-compact {
  padding-top: clamp(34px,4vw,54px);
  padding-bottom: clamp(38px,4.5vw,64px);
}

.gain-compact h2 {
  margin-bottom: clamp(22px,3vw,34px);
  font-size: clamp(27px,2.6vw,40px);
  font-weight: 500;
  letter-spacing: -.03em;
}

.gain-compact .gain-grid {
  max-width: 1180px;
  margin: 0 auto;
  gap: 14px;
}

.gain-compact article {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(16px,2vw,26px);
  min-height: 116px;
  padding: 22px clamp(20px,2.2vw,32px);
  text-align: left;
}

.gain-compact article>b {
  flex: 0 0 auto;
  margin: 0;
}

.gain-compact article>div {
  display: flex;
  align-items: center;
  min-width: 0;
}

.gain-compact h3 {
  margin: 0;
  color: #e8e3e5;
  font-size: clamp(18px,1.7vw,24px);
  font-weight: 500;
  line-height: 1.25;
}

@media(max-width:760px) {
  .delegation-note {
    padding: 42px 20px 46px;
  }

  .delegation-note>div {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .delegation-lead {
    padding-top: 22px;
    font-size: clamp(22px,6.5vw,27px);
    line-height: 1.48;
  }

  .delegation-support {
    padding-left: 20px;
    color: #aaa4a7;
    font-size: 15px;
    line-height: 1.68;
  }

  .gain-compact {
    padding: 34px 16px 42px;
  }

  .gain-compact h2 {
    margin-bottom: 18px;
    font-size: 28px;
    text-align: left;
  }

  .gain-compact .gain-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gain-compact article {
    min-height: 92px;
    padding: 16px 18px;
  }

  .gain-compact h3 {
    font-size: 18px;
  }
}

/* The process heading remains balanced after removing its supporting quote. */
.role-title {
  display: flex;
  align-items: center;
  align-self: stretch;
}

.role-title h2 {
  margin: 0;
}

@media(max-width:520px) {
  .role-title {
    align-items: flex-start;
  }
}

/* Static service categories: no carousel, all options visible at once. */
.situations-head {
  max-width: 1220px;
  margin-inline: auto;
}

.situations-head h2 {
  max-width: 780px;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  max-width: 1220px;
  margin: clamp(26px,3vw,40px) auto 0;
  padding: 0 var(--gutter);
}

.situation-grid article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: linear-gradient(145deg,#151315,#0e0d0e);
  box-shadow: 0 16px 42px rgba(0,0,0,.16);
}

.situation-grid .sprite {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.situation-grid h3 {
  display: flex;
  align-items: flex-start;
  min-height: 9.2em;
  margin: 0;
  padding: 18px 16px 20px;
  color: #e4dfe1;
  font-size: clamp(12px,1.05vw,15px);
  font-weight: 550;
  line-height: 1.48;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.situations .wide {
  width: min(620px,calc(100% - (2 * var(--gutter))));
  margin-top: clamp(24px,3vw,38px);
}

@media(max-width:900px) {
  .situation-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .situation-grid h3 {
    min-height: 7.2em;
    font-size: 13px;
  }
}

@media(max-width:760px) {
  .situations-head h2 {
    padding-inline: 20px;
  }

  .situation-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
    padding: 0 16px;
  }

  .situation-grid article {
    display: grid;
    grid-template-columns: 116px minmax(0,1fr);
    min-height: 118px;
  }

  .situation-grid .sprite {
    width: 116px;
    height: 100%;
    min-height: 118px;
    aspect-ratio: auto;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 0;
  }

  .situation-grid h3 {
    align-items: center;
    min-height: 0;
    padding: 15px 16px;
    font-size: 12px;
    line-height: 1.45;
  }

  .situations .wide {
    width: calc(100% - 32px);
    margin-top: 22px;
  }
}

@media(max-width:380px) {
  .situation-grid article {
    grid-template-columns: 100px minmax(0,1fr);
  }

  .situation-grid .sprite {
    width: 100px;
  }

  .situation-grid h3 {
    padding-inline: 13px;
    font-size: 11px;
  }
}

/* Dedicated generated photography for every static service category. */
.category-documents {
  background-image: url('../images/categories/documents.jpg');
  background-position: center;
}

.category-car-service {
  background-image: url('../images/categories/car-service.jpg');
  background-position: center;
}

.category-item-sale {
  background-image: url('../images/categories/item-sale.jpg');
  background-position: center;
}

.category-elderly-clinic {
  background-image: url('../images/categories/elderly-clinic.jpg');
  background-position: center;
}

.category-renovation {
  background-image: url('../images/categories/renovation.jpg');
  background-position: center;
}

.category-item-moving {
  background-image: url('../images/categories/item-moving.jpg');
  background-position: center;
}

.category-cemetery-care {
  background-image: url('../images/categories/cemetery-care.jpg');
  background-position: center;
}

.category-research {
  background-image: url('../images/categories/research.jpg');
  background-position: center;
}
