/* depresja start */
:root {
    --gold: #caa14f;
    --gold-2: #a87f32;
    --gold-3: #d4aa5a;
    --black: #ffffff;
    --black2: #faf7f2;       
    --black3: #f3ede3;    
    --white: #1a1410;        
    --gray2: #4a4540;
    --gray3: #2c2820;
    --gray: #6b6358;
    --text: #2c2820;
    --text2: #aca9a7;
    --text3: #e4e2e2;
    --muted: #9a8f82;
    --sans: 'DM Sans', sans-serif;
    --serif: 'Playfair Display', serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
}

#loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    transition: opacity .9s ease, visibility .9s ease;
}

#loader.out {
    opacity: 0;
    visibility: hidden;
}

.ld-word {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 300;
    letter-spacing: .35em;
    color: var(--gold);
    animation: ldpulse 1.5s ease-in-out infinite;
}

.ld-bar {
    width: 100px;
    height: 1px;
    background: var(--gold-3);
    position: relative;
    overflow: hidden;
}

.ld-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: ldslide 1.3s ease-in-out infinite;
}

@keyframes ldpulse {

    0%,
    100% {
        opacity: .4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes ldslide {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 800;
    padding: 26px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding .4s background .4s border-bottom .4s;
}

header.stk {
  padding: 14px 60px;
  background: rgba(11, 10, 8, .93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, .13);
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: .22em;
    color: var(--gold);
    text-decoration: none;
}

nav ul {
    display: flex;
    gap: 38px;
    list-style: none;
}

nav ul a {
    color: var(--text3);
    text-decoration: none;
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color .4s;
}

nav ul a:hover {
    color: var(--gold);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 24px;
    height: 1px;
    background: var(--gold);
    display: block;
    transition: .3s;
}

.rv {
    opacity: 0;
    transform: translateY(55px);
    transition: opacity .85s ease, transform .85s ease;
}

.rv.on {
    opacity: 1;
    transform: translateY(0);
}

.rv.d1 {
    transition-delay: .12s;
}

.rv.d2 {
    transition-delay: .24s;
}

.rv.d3 {
    transition-delay: .36s;
}

.rv.d4 {
    transition-delay: .48s;
}

#home {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 10, 8, .25) 0%, rgba(11, 10, 8, .05) 35%, rgba(197, 195, 195, 0.014) 70%, var(--black) 100%), url('https://images.unsplash.com/photo-1529634806980-85c3dd6d34ac?w=1800&q=80') center/cover no-repeat;
    transform: scale(1.07);
    animation: zbg 12s ease-out forwards;
}

@keyframes zbg {
    to {
        transform: scale(1.0);
    }
}

.hero-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .3;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}

.hero-cnt {
    position: relative;
    z-index: 2;
    padding: 0 80px 110px;
    max-width: 860px;
    opacity: 0;
    animation: fadeup 1.1s 1.9s ease forwards;
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        tranform: none;
    }
}

.eyebrow {
  font-size: .64rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 38px;
  height: 1px;
  background: var(--gold);
  display: block;
}

h1.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7.5vw, 6.4rem);
  font-weight: 300;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 28px;
}

h1.hero-h1 em {
  font-style: italic;
  color: var(--gold-2);
}

.hero-sub {
  font-size: .85rem;
  color: var(--text2);
  letter-spacing: .1em;
  line-height: 1.95;
  max-width: 460px;
  margin-bottom: 52px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 34px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--sans);
  transition: background .4s, color .4s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-outline svg {
  transition: transform .3s;
}

.btn-outline:hover svg {
  transform: translateX(5px);
}

.hero-scroll {
  position: absolute;
  right: 60px;
  bottom: 95px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeup .9s 2.5s ease forwards;
}

.hero-scroll span {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text2);
  writing-mode: vertical-rl;
}

.s-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: sline 2s ease-in-out infinite;
}

@keyframes sline {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.01% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.trust-bar {
  background: var(--black2);
  border-top: 1px solid rgba(201, 169, 110, .1);
  border-bottom: 1px solid rgba(201, 169, 110, .1);
  padding: 36px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
    display:flex;
    align-items: center;
    gap: 16px;
}

.trust-num {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.trust-lbl {
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text2);
  line-height: 1.6;
  max-width: 120px;
}

.trust-div {
  width: 1px;
  height: 44px;
  background: rgba(201, 169, 110, .18);
}


#about {
  background: var(--black2);
  max-width: 100%;
  padding: 0;
}

.about-in {
  max-width: 1380px;
  margin: 0 auto;
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 100px;
  align-items: center;
}

.about-vis {
  position: relative;
}

.ab-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=800&q=80') center/cover;
}

.ab-accent {
  position: absolute;
  width: 54%;
  aspect-ratio: 1/1;
  background: url('https://images.unsplash.com/photo-1606216794074-735e91aa2c92?w=600&q=80') center/cover;
  bottom: -36px;
  right: -36px;
  border: 4px solid var(--black2);
}

.ab-corner {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 72px;
  height: 72px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.about-txt p {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text2);
  margin-bottom: 22px;
}

.about-txt p strong {
  color: var(--text);
  font-weight: 400;
}

.quals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 38px;
}

.qual {
  padding: 22px;
  border: 1px solid rgba(201, 169, 110, .14);
  transition: border-color .4s;
}

.qual:hover {
  border-color: rgba(201, 169, 110, .45);
}

.qual-bar {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 14px;
}

.qual h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 7px;
}

.qual p {
  font-size: .75rem;
  color: var(--text2);
  line-height: 1.8;
}

.sec {
  padding: 130px 80px;
  max-width: 1380px;
  margin: 0 auto;
}

.tag {
  font-size: .62rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.tag::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: block;
}

h2.ttl {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.14;
  margin-bottom: 18px;
}

h2.ttl em {
  font-style: italic;
  color: var(--gold-2);
}

.bar {
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin: 36px 0;
}

#services {
  background: var(--black);
}

.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.svc-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.25, .46, .45, .94);
}

.svc-card:hover .svc-bg {
  transform: scale(1.09);
}

.svc-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 10, 8, .96) 0%, rgba(11, 10, 8, .28) 55%, transparent 100%);
  transition: background .4s;
}

.svc-card:hover .svc-ov {
  background: linear-gradient(to top, rgba(11, 10, 8, .98) 0%, rgba(11, 10, 8, .55) 65%, rgba(11, 10, 8, .18) 100%);
}

.svc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 34px 28px;
  transform: translateY(58px);
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.svc-card:hover .svc-body {
  transform: translateY(0);
}

.svc-n {
  font-size: .58rem;
  letter-spacing: .24rem;
  color: var(--gold);
  margin-bottom: 13px;
  transition: width .4s;
}

.svc-card:hover .svc-line {
  width: 48px;
}

.svc-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.svc-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 13px;
  transition: width .4s;
}

.svc-card:hover .svc-line {
  width: 48px;
}


.svc-desc {
  font-size: .84rem;
  color: var(--text2);
  line-height: 1.85;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s .08s, transform .4s .08s;
}

.svc-card:hover .svc-desc {
  opacity: 1;
  transform: translateY(0);
}

#process {
  background: var(--black);
}

.proc-steps {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:0;
  margin-top: 72px;
  position: relative;
}

.proc-steps::after {
  content: '';
  position:absolute;
  top:27px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-3), var(--gold-3), transparent);
  pointer-events: none;
}

.step {
  padding: 0 28px;
  text-align: center;
}

.step-num {
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
  background: var(--black);
  transition: background 1.4s, border-color 1.4s;
}

.step:hover .step-num {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.step h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.step p {
  font-size: .74rem;
  color: var(--muted);
  line-height: 1.9;
}

#reviews {
  background: var(--black3);
  max-width: 100%;
  padding: 0;
}

.rev-in {
  max-width: 1380px;
  margin: 0 auto;
  padding: 130px 80px;
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.rev-card {
  padding: 42px;
  border: 1px solid rgba(201, 169, 110, .12);
  background: var(--black2);
  position: relative;
  transition: border-color .4s, transform .4s;
}

.rev-card:hover {
  border-color: rgba(201, 169, 110, .35);
  transform: translateY(-6px);
}

.rev-q {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: .5;
  margin-bottom: 28px;
  opacity: .35;
  font-weight: 300;
}

.rev-txt {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.82;
  color: var(--text);
  margin-bottom: 30px;
  font-weight: 300;
}

.rev-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .8rem;
}

.rev-auth {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(201, 169, 110, .12);
  padding-top: 20px;
}

.rev-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black3);
  border: 1px solid var(--gold-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--gold);
  flex-shrink: 0;
}

.rev-name {
  font-size: .76rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: .1em;
}

.rev-event {
  font-size: .66rem;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: .08em;
}


#faq {
  background: var(--black2);
  max-width: 100%;
  padding: 0;
}

.faq-in {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 80px;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 169, 110, .15);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color .3s;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform .35s;
}

.faq-icon::before {
  width: 1px;
  height: 18px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-icon::after {
  width: 18px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-item.open .faq-icon::before {
  transform: translateX(-50%) scaleY(0);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, padding .3s ease;
}

.faq-a-in {
  padding: 0 0 26px;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.9;
  letter-spacing: .05em;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--black);
  max-width: 100%;
  padding: 0;
}

.contact-wrap {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ct-left {
  padding: 110px 80px;
  min-height: 640px;
  background: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=900&q=80') center/cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ct-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 10, 8, .96), rgba(11, 10, 8, .38));
}

.ct-left-c {
  position: relative;
  z-index: 1;
}

.ct-left h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 22px;
}

.ct-left h2 em {
  font-style: italic;
  color: var(--gold-2);
}

.ct-left p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 44px;
  max-width: 340px;
  letter-spacing: .06em;
}

.ct-det {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: .76rem;
  color: var(--muted);
  letter-spacing: .08em;
}

.ct-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.ct-right {
  padding: 90px 80px;
  background: var(--black2);
}

.ct-right h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}

.ct-right>p {
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: 44px;
  letter-spacing: .1em;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fg {
  margin-bottom: 18px;
}

.fg label {
  display: block;
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(201, 169, 110, .15);
  color: var(--text);
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color .3s;
  letter-spacing: .06em;
  appearance: none;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--muted);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
}

.fg textarea {
  height: 110px;
  resize: none;
}

.fg select {
  color: var(--muted);
}

.fg select option {
  background: var(--black2);
}

.f-btn {
  width: 100%;
  padding: 17px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  transition: background .4s, color .4s;
  margin-top: 8px;
}

.f-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.f-note {
  font-size: .63rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  letter-spacing: .1em;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 169, 110, .1);
}

.ft-top {
  max-width: 1380px;
  margin: 0 auto;
  padding: 80px 80px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.ft-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .18em;
}

.ft-brand p {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 18px;
  max-width: 270px;
  letter-spacing: .06em;
}

.ft-col h5 {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.ft-col ul {
  list-style: none;
}

.ft-col ul li {
  margin-bottom: 11px;
}

.ft-col ul li a {
  color: var(--muted);
  text-decoration: none;
  font-size: .76rem;
  letter-spacing: .08em;
  transition: color .3s;
}

.ft-col ul li a:hover {
  color: var(--gold);
}

.ft-bot {
  border-top: 1px solid rgba(201, 169, 110, .07);
  padding: 22px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ft-bot p {
  font-size: .65rem;
  color: var(--muted);
  letter-spacing: .14em;
}

.ft-soc {
  display: flex;
  gap: 18px;
}

.ft-soc a {
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .14em;
  text-decoration: none;
  transition: color .3s;
}

.ft-soc a:hover {
  color: var(--gold);
}

/* ─── SUCCESS MESSAGE ─── */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  font-style: italic;
}

/* ─── MOBILE ─── */
@media (max-width: 960px) {

  header,
  header.stk {
    padding: 18px 26px;
  }

  nav ul {
    display: none;
  }

  .burger {
    display: flex;
  }

  nav ul.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(11, 10, 8, .97);
    justify-content: center;
    align-items: center;
    gap: 34px;
    font-size: 1.2rem;
  }

  .hero-cnt {
    padding: 0 26px 80px;
  }

  .hero-scroll {
    display: none;
  }

  .trust-bar {
    padding: 32px 26px;
    justify-content: center;
    gap: 28px;
  }

  .trust-div {
    display: none;
  }

  .about-in {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 70px 26px;
  }

  .ab-accent {
    display: none;
  }

  .sec {
    padding: 80px 26px;
  }

  .svc-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proc-steps {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .proc-steps::after {
    display: none;
  }

  .rev-grid {
    grid-template-columns: 1fr;
  }

  .rev-in {
    padding: 80px 26px;
  }

  .faq-in {
    padding: 80px 26px;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .ct-left {
    min-height: 320px;
    padding: 50px 26px;
  }

  .ct-right {
    padding: 60px 26px;
  }

  .f-row {
    grid-template-columns: 1fr;
  }

  .ft-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px 26px 40px;
  }

  .ft-bot {
    flex-direction: column;
    gap: 14px;
    padding: 18px 26px;
    text-align: center;
  }

  .gal-hd {
    padding: 80px 26px 50px;
  }

  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gi {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}


/* depresja end */