*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── VARS ── */
:root {
  --ink: #0A0A0A;
  --ice: #A8C5DA;
  --champagne: #D4C5A9;
  --white: #FFFFFF;
  --offwhite: #F2F0EC;
  --mid: #6B6B6B;
  --hairline: rgba(10,10,10,0.1);
  --content-max: 1600px;
  --edge-pad: max(60px, calc((100% - var(--content-max)) / 2));
}

/* ── BODY ── */
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

/* ══════════════════════════════════
   GRAIN OVERLAY
══════════════════════════════════ */
#grain {
  position: fixed;
  inset: 0;
  z-index: 9500;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}



/* ══════════════════════════════════
   LOADER
══════════════════════════════════ */
#loader {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.1em;
  overflow: hidden;
}
.loader-line {
  display: block;
  transform: translateY(100%);
  animation: loaderReveal 1s cubic-bezier(.16,1,.3,1) .3s forwards;
}
@keyframes loaderReveal {
  to { transform: translateY(0); }
}
.loader-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--ice);
  width: 0;
  animation: loaderBar 1.6s ease forwards;
}
@keyframes loaderBar {
  to { width: 100%; }
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.gf-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--edge-pad);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--hairline);
  transition: padding .4s, background .4s, backdrop-filter .4s, box-shadow .4s;
}
.gf-nav.scrolled {
  padding: 16px var(--edge-pad);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(10,10,10,0.04);
}
.gf-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--ink);
  position: relative;
}
.gf-logo span { color: var(--ice); }
.gf-nav-links {
  display: flex; gap: 36px;
}
.gf-nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color .3s;
  position: relative;
}
.gf-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 0.5px;
  background: var(--ink);
  transition: width .3s;
}
.gf-nav-links a:hover { color: var(--ink); }
.gf-nav-links a:hover::after { width: 100%; }
.gf-nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 26px;
  background: var(--ink);
  color: var(--white);
  transition: background .3s, color .3s;
}
.gf-nav-cta:hover { background: #2a2a2a; }

/* ── NAV RIGHT / BURGER ── */
.gf-nav-right { display: flex; align-items: center; gap: 20px; }
.gf-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px; height: 22px;
  background: none;
  position: relative;
  z-index: 1200;
}
.gf-burger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.gf-burger.active span { background: var(--white) !important; }
.gf-burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.gf-burger.active span:nth-child(2) { opacity: 0; }
.gf-burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU DRAWER ── */
.gf-mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 26px;
  padding: 40px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .4s, visibility .4s;
}
.gf-mobile-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
.gf-mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
}
.gf-mobile-menu-socials { display: flex; gap: 24px; margin-top: 4px; }
.gf-mobile-menu-socials a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ice);
}
.gf-mobile-menu .gf-nav-cta {
  margin-top: 12px;
  background: var(--white);
  color: var(--ink);
}
body.no-scroll { overflow: hidden; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.gf-hero {
  height: 100vh;
  height: 100svh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--edge-pad);
  background: var(--white);
}
.gf-hero-bg {
  position: absolute; inset: 0;
  background: #fafafa;
}
/* Animated glass geometry */
.gf-hero-geo {
  position: absolute; inset: 0;
  overflow: hidden;
  opacity: 0.9;
}
.geo-panel {
  position: absolute;
  border: 0.5px solid rgba(10,10,10,0.06);
  background: rgba(168,197,218,0.04);
  transition: transform 0.1s ease;
}
.geo-1 { width: 280px; height: 480px; top: 8%; right: 15%; transform: rotate(8deg); }
.geo-2 { width: 200px; height: 360px; top: 15%; right: 24%; transform: rotate(-3deg); }
.geo-3 { width: 320px; height: 200px; bottom: 20%; right: 10%; transform: rotate(2deg); }
.geo-4 { width: 160px; height: 280px; top: 30%; right: 38%; transform: rotate(12deg); opacity: 0.5; }
.geo-shine {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,197,218,0.9), transparent);
  animation: shineSlide 5s ease-in-out infinite;
}
.geo-1 .geo-shine { animation-delay: 0s; }
.geo-2 .geo-shine { animation-delay: 1.5s; }
.geo-3 .geo-shine { animation-delay: 3s; }
@keyframes shineSlide {
  0%, 100% { opacity: 0; transform: translateY(-2px); }
  40%, 60% { opacity: 1; }
  50% { transform: translateY(100px); }
}
.gf-hero-content {
  position: relative; z-index: 2;
  max-width: 650px;
}
.gf-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 500;
}
.gf-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 0.5px;
  background: var(--mid);
}
.gf-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 300;
  line-height: 0.98;
  color: var(--ink);
  margin-bottom: 32px;
  overflow: hidden;
}
.gf-hero-title-line {
  display: block;
  transform: translateY(110%);
  animation: heroLine 1.1s cubic-bezier(.16,1,.3,1) forwards;
}
.gf-hero-title-line:nth-child(1) { animation-delay: .8s; }
.gf-hero-title-line:nth-child(2) { animation-delay: .95s; font-style: italic; color: var(--mid); }
@keyframes heroLine {
  to { transform: translateY(0); }
}
.gf-hero-desc {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--mid);
  max-width: 500px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.gf-hero-btns {
  display: flex; gap: 20px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
}
.btn-hero-primary {
  padding: 18px 36px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}
.btn-hero-primary:hover { background: #222; }
.btn-hero-ghost {
  padding: 18px 36px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0.5px solid rgba(10,10,10,0.2);
  transition: border-color .25s, background .25s;
}
.btn-hero-ghost:hover { background: rgba(10,10,10,0.03); border-color: var(--ink); }

/* magnetic button wrapper */
.magnetic {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.gf-hero-stats-row {
  position: absolute;
  bottom: 60px; left: 60px; right: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--hairline);
  padding-top: 40px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}
.gf-hero-stat { text-align: left; }
.gf-hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.gf-hero-stat-label {
  font-size: 10px;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════
   BLINK DIVIDER
══════════════════════════════════ */
.gf-blink {
  height: 1px;
  background: var(--hairline);
  position: relative; overflow: hidden;
}
.gf-blink::after {
  content: '';
  position: absolute; top: 0; left: -30%; width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
  animation: blinkSlide 4s ease-in-out infinite;
}
@keyframes blinkSlide {
  0% { left: -30%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* ══════════════════════════════════
   SECTION COMMONS
══════════════════════════════════ */
.gf-section { padding: 120px var(--edge-pad); }
.gf-section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.gf-section-label::before {
  content: '';
  display: block; width: 24px; height: 0.5px;
  background: var(--mid);
}
.gf-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 60px;
}

/* ══════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════ */
.gf-marquee {
  background: var(--ink);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}
.gf-marquee-track {
  display: inline-flex;
  animation: marquee 18s linear infinite;
}
.gf-marquee-item {
  display: inline-flex; align-items: center; gap: 32px;
  padding: 0 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.45);
}
.gf-marquee-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ice);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   CATALOG
══════════════════════════════════ */
.gf-catalog { padding: 120px var(--edge-pad); }
.gf-catalog-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 60px;
}
.gf-catalog-header-right {
  font-size: 13px; color: var(--mid);
  max-width: 260px; text-align: right; line-height: 1.6;
}
/* Masonry-style grid */
.gf-catalog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1px;
  background: var(--hairline);
}
.catalog-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.catalog-card:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.catalog-card:nth-child(2) { grid-column: span 4; }
.catalog-card:nth-child(3) { grid-column: span 3; }
.catalog-card:nth-child(4) { grid-column: span 4; }
.catalog-card:nth-child(5) { grid-column: span 3; }
.catalog-card:nth-child(6) { grid-column: span 5; }
.catalog-card:nth-child(7) { grid-column: span 7; }

.catalog-card-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
}
.catalog-card:nth-child(1) .catalog-card-img { min-height: 580px; }
.catalog-card:nth-child(6) .catalog-card-img,
.catalog-card:nth-child(7) .catalog-card-img { min-height: 340px; }

/* индивидуальное позиционирование, чтобы не обрезать ключевые детали */
.catalog-card:nth-child(1) .catalog-card-img img { object-position: 30% 45%; }   /* душевая — кабина в кадре */
.catalog-card:nth-child(2) .catalog-card-img img { object-position: center 60%; } /* зеркало по центру */
.catalog-card:nth-child(3) .catalog-card-img img { object-position: 35% center; } /* офисная перегородка */
.catalog-card:nth-child(4) .catalog-card-img img { object-position: center center; } /* стеклянная дверь по центру */
.catalog-card:nth-child(5) .catalog-card-img img { object-position: center 30%; } /* ограждение/перегородка верх */
.catalog-card:nth-child(6) .catalog-card-img img { object-position: 65% center; } /* лестница — ступени видно */
.catalog-card:nth-child(7) .catalog-card-img img { object-position: center 70%; } /* кухня — фартук внизу кадра */

.catalog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.16,1,.3,1), filter 0.6s ease;
  filter: grayscale(38%) brightness(0.72) contrast(1.12) saturate(0.65) sepia(8%);
}
.catalog-card:hover .catalog-card-img img {
  transform: scale(1.06);
  filter: grayscale(15%) brightness(0.8) contrast(1.06) saturate(0.85) sepia(4%);
}
.catalog-card::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8, 12, 20, 0.32);
  z-index: 1;
  pointer-events: none;
}
.catalog-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.05) 55%, transparent 100%);
  opacity: 0; transition: opacity 0.4s ease;
  z-index: 2;
}
.catalog-card:hover .catalog-card-overlay { opacity: 1; }
.catalog-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  display: flex; align-items: flex-end; justify-content: space-between;
  transform: translateY(8px);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
  z-index: 3;
}
.catalog-card:hover .catalog-card-info { transform: translateY(0); }
.catalog-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--white); 
  line-height: 1.2;
}
.catalog-card-tag {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.catalog-card-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-width: 220px;
  margin-top: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.catalog-card:hover .catalog-card-desc {
  max-height: 60px;
  opacity: 1;
}
.catalog-card-arrow {
  width: 36px; height: 36px;
  border: 0.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.catalog-card:hover .catalog-card-arrow { background: var(--ice); border-color: var(--ice); color: var(--ink); }

/* label always visible on big card */
.catalog-card:nth-child(1) .catalog-card-info { transform: none; }
.catalog-card:nth-child(1) .catalog-card-overlay { opacity: 1; }

/* ══════════════════════════════════
   MATERIAL ICONS
══════════════════════════════════ */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════
   PROCESS
══════════════════════════════════ */
.gf-process { padding: 120px var(--edge-pad); }
.gf-process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.gf-process-left { position: sticky; top: 120px; }
.gf-process-steps { margin-top: 0; }
.gf-process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 0.5px solid var(--hairline);
  transition: gap .3s;
}
.gf-process-step:first-child { border-top: 0.5px solid var(--hairline); }
.gf-process-step:hover { gap: 24px; }
.gf-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(10,10,10,0.12);
  line-height: 1;
  transition: color .3s;
}
.gf-process-step:hover .gf-step-num { color: var(--ice); }
.gf-step-name { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.gf-step-desc { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* ══════════════════════════════════
   CALCULATOR
══════════════════════════════════ */
.gf-calc { padding: 120px var(--edge-pad); background: var(--white); }
.gf-calc .gf-section-label { color: var(--mid); }
.gf-calc .gf-section-title { color: var(--ink); }
.gf-calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  background: var(--white);
  padding: 60px;
  border: 0.5px solid var(--hairline);
  box-shadow: 0 10px 30px rgba(10,10,10,0.03);
}
.gf-calc-result-side {
  display: flex; flex-direction: column; justify-content: space-between;
}
.gf-field-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
  display: block;
}
.gf-select, .gf-input {
  width: 100%;
  padding: 15px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  border: 0.5px solid var(--hairline);
  color: var(--ink);
  outline: none;
  appearance: none;
  transition: border-color .25s;
  margin-bottom: 24px;
}
.gf-select:focus, .gf-input:focus { border-color: var(--ice); }
.gf-calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gf-range-wrapper { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.gf-range-wrapper .gf-input { margin-bottom: 0; }
.gf-range {
  width: 100%;
  accent-color: var(--ink);
  cursor: pointer;
}
.gf-calc-btn {
  width: 100%;
  padding: 20px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background .25s;
  margin-top: 10px;
}
.gf-calc-btn:hover { background: #222; }
.gf-result-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mid);
}
.gf-result-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin: 16px 0;
}
.gf-result-days {
  font-size: 14px;
  color: var(--mid);
}
.gf-result-note {
  font-size: 11px;
  color: var(--mid);
  line-height: 1.6;
  margin-top: 24px;
}
.gf-result-divider {
  height: 0.5px;
  background: var(--hairline);
  margin: 32px 0;
}
.gf-result-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gf-result-feature {
  font-size: 12px; color: var(--mid);
  display: flex; align-items: center; gap: 8px;
}
.gf-result-feature::before {
  content: '✓';
  color: var(--ink);
  font-weight: bold;
}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.gf-contact {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 80px;
  padding: 120px var(--edge-pad);
  background: var(--offwhite);
  overflow: hidden;
  border-radius: 32px;
}
.gf-contact-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px circle at 15% 20%, rgba(168,197,218,0.18), transparent 60%),
    radial-gradient(500px circle at 85% 80%, rgba(212,197,169,0.14), transparent 60%);
  pointer-events: none;
}
.gf-contact-left { position: relative; z-index: 1; align-self: center; }
.gf-contact-lead {
  max-width: 680px;
  margin: 30px 0 40px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--mid);
}

/* ===== Benefits ===== */
.gf-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px 36px;
  margin: 50px 0;
  padding: 0;
}
.gf-benefits li {
  list-style: none;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 0.5px solid var(--hairline);
  padding-bottom: 14px;
}

/* ===== Right Card ===== */
.gf-contact-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 0.5px solid rgba(255,255,255,0.6);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(10,10,10,0.06);
  transition: 0.35s;
}
.gf-contact-right:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(10,10,10,0.08);
}
.gf-contact-right h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--ink);
  margin: 0;
}
.gf-contact-right p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
  margin: 0;
}

/* ===== Social buttons ===== */

.gf-contact-socials{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.gf-social-btn{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 24px;
    height:64px;

    background:rgba(255,255,255,.45);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    border:.5px solid rgba(255,255,255,.7);
    border-radius:16px;

    color:var(--ink);
    text-decoration:none;
    font-size:15px;
    font-weight:500;

    transition:all .35s cubic-bezier(.16,1,.3,1);
}

.gf-social-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

/* Левая часть кнопки */

.gf-social-btn span{
    display:flex;
    align-items:center;
    gap:14px;
}

/* SVG-иконки */

.gf-social-btn img{
    width:24px;
    height:24px;
    object-fit:contain;
    transition:.3s ease;
}

/* Стрелка справа */

.gf-social-btn .material-symbols-outlined{
    font-size:20px;
    transition:.3s ease;
}

.gf-social-btn:hover img{
    transform:scale(1.08);
}

.gf-social-btn:hover .material-symbols-outlined{
    transform:translateX(4px);
}

/* Telegram */

.gf-social-btn.telegram:hover{
    background:#27A5E7;
    border-color:#27A5E7;
    color:#fff;
}

/* WhatsApp */

.gf-social-btn.whatsapp:hover{
    background:#25D366;
    border-color:#25D366;
    color:#fff;
}
.fa-whatsapp{
    color:#25D366;
    font-size:22px;
}
.gf-social-btn.whatsapp:hover .fa-whatsapp{
    color:#fff;
}
/* MAX */

.gf-social-btn.max:hover{
    background:#7e22ff;
    border-color:#7e22ff;
    color:#fff;
}     

/* ===== Contact info ===== */

.gf-contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
    padding-top:0px;
}

.gf-contact-info-item{
    display:flex;
    align-items:flex-start;
    gap:14px;

    color:var(--mid);
    text-decoration:none;

    line-height:1.8;
    font-size:14px;

    transition:all .3s ease;
}

.gf-contact-info-item:hover{
    color:var(--ink);
    transform:translateX(6px);
}

.gf-contact-info-item i{
    color:var(--ice);
    font-size:20px;
    flex-shrink:0;
    transition:color .3s ease;
}

.gf-contact-info-item:hover i{
    color:var(--ink);
}

.gf-contact-info-item strong{
    color:var(--ink);
}

.gf-contact-info-item:hover strong{
    color:var(--ink);
}

/* ===== Note ===== */

.gf-contact-note{
    font-size:13px;
    line-height:1.8;
    color:rgba(10,10,10,.45);
}

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .gf-contact { grid-template-columns: 1fr; gap: 50px; padding: 80px 24px; border-radius: 24px; }
  .gf-benefits { grid-template-columns: 1fr; }
  .gf-contact-right { padding: 35px 28px; }
  .gf-social-btn { height: 58px; font-size: 14px; }
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.gf-footer {
  background: var(--ink);
  padding: 100px var(--edge-pad) 40px;
  position: relative;
  overflow: hidden;
}
.gf-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.gf-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto 80px;
}
.gf-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.gf-footer-logo span { color: var(--ice); }
.gf-footer-about {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}
.gf-footer-heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.gf-footer-nav { display: flex; flex-direction: column; gap: 14px; }
.gf-footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color .25s;
}
.gf-footer-nav a:hover { color: var(--white); }
.gf-footer-contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.gf-footer-contacts a {
  font-size: 16px; font-weight: 300;
  color: var(--white);
  transition: color .25s;
}
.gf-footer-contacts a:hover { color: rgba(255,255,255,0.7); }
.gf-footer-contacts p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.gf-footer-social-block .gf-footer-heading { margin-bottom: 16px; }
.gf-footer-social { display: flex; gap: 14px; }
.gf-footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, background .25s;
}
.gf-footer-social a:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.gf-footer-social .material-symbols-outlined { color: rgba(255,255,255,0.55); font-size: 18px; }
.gf-footer-social a:hover .material-symbols-outlined { color: var(--white); }
.gf-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.gf-footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}
.gf-footer-legal { display: flex; gap: 32px; }
.gf-footer-legal a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  transition: color .25s;
}
.gf-footer-legal a:hover { color: var(--white); }

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}

.fade-up.active{
    opacity:1;
    transform:translateY(0);
}
/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════
   SCROLLBAR
══════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--ink); border-radius: 3px; }

/* ══════════════════════════════════
   FLOATING MESSENGERS
══════════════════════════════════ */
.gf-messengers {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gf-messenger-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  transition: transform .25s ease;
}
.gf-messenger-btn:hover { transform: scale(1.08); }
.gf-messenger-btn svg { width: 24px; height: 24px; }
.gf-messenger-whatsapp { background: #25D366; }
.gf-messenger-telegram { background: #229ED9; }
.gf-messenger-max { background: linear-gradient(135deg, #4A90E2, #9B59D6); }

/* ══════════════════════════════════
   COOKIE BANNER
══════════════════════════════════ */
.gf-cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  max-width: 640px;
  margin: 0 auto;
  z-index: 2000;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 0.5px solid rgba(255,255,255,0.1);
  transform: translateY(160%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .5s;
}
.gf-cookie-banner.visible { transform: translateY(0); opacity: 1; }
.gf-cookie-text { font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.7); }
.gf-cookie-link { color: var(--ice); text-decoration: underline; }
.gf-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.gf-cookie-accept {
  padding: 12px 22px;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .25s;
}
.gf-cookie-accept:hover { background: var(--ice); }
.gf-cookie-decline {
  padding: 12px 18px;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .25s, color .25s;
}
.gf-cookie-decline:hover { border-color: #fff; color: #fff; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .gf-catalog-grid { grid-template-columns: repeat(6, 1fr); }
  .catalog-card:nth-child(1) { grid-column: span 6; grid-row: span 1; }
  .catalog-card:nth-child(n):not(:nth-child(1)):not(:nth-child(7)) { grid-column: span 3; }
  .catalog-card:nth-child(7) { grid-column: span 6; }
}
@media (max-width: 900px) {
  .gf-nav { padding: 20px 24px; }
  .gf-nav.scrolled { padding: 14px 24px; }
  .gf-nav-links { display: none; }
  .gf-nav-cta { display: none; }
  .gf-burger { display: flex; }
  .gf-hero { padding: 100px 24px 40px; height: auto; min-height: 100vh; }
  .gf-hero-stats-row { position: static; left: auto; right: auto; margin-top: 48px; grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .gf-section, .gf-catalog, .gf-process, .gf-calc { padding: 80px 24px; }
  .gf-catalog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gf-catalog-header-right { text-align: left; max-width: 100%; }
  .gf-catalog-grid { display: flex; flex-direction: column; }
  .catalog-card-img { min-height: 260px !important; }
  .gf-process-inner { grid-template-columns: 1fr; gap: 60px; }
  .gf-process-left { position: static; }
  .gf-calc-body { grid-template-columns: 1fr; padding: 36px 24px; gap: 40px; }
  .gf-calc-row { grid-template-columns: 1fr 1fr; }
  .gf-footer { padding: 70px 24px 32px; }
  .gf-footer-top { grid-template-columns: 1fr 1fr; gap: 40px 24px; margin-bottom: 56px; }
  .gf-footer-bottom { flex-direction: column; align-items: flex-start; }
  body { padding-bottom: 64px; }
  .gf-sticky-call { display: flex; }

  /* messengers sit above the sticky call bar */
  .gf-messengers { right: 16px; bottom: 76px; gap: 10px; }
  .gf-messenger-btn { width: 46px; height: 46px; }
  .gf-messenger-btn svg { width: 21px; height: 21px; }

  /* cookie banner sits above the sticky call bar */
  .gf-cookie-banner { left: 12px; right: 12px; bottom: 76px; flex-direction: column; align-items: stretch; padding: 20px; gap: 16px; }
  .gf-cookie-actions { justify-content: stretch; }
  .gf-cookie-accept, .gf-cookie-decline { flex: 1; }
}

@media (max-width: 480px) {
  .gf-hero-title { font-size: clamp(38px, 11vw, 52px); }
  .gf-hero-eyebrow { margin-bottom: 16px; }
  .gf-hero-desc { max-width: 100%; font-size: 13px; }
  .gf-hero-stat-num { font-size: 24px; }
  .gf-hero-stats-row { row-gap: 20px; padding-top: 28px; }
  .gf-section-title { font-size: clamp(28px, 8vw, 40px); margin-bottom: 40px; }
  .gf-result-amount { font-size: 52px; }
  .gf-modal-title { font-size: 26px; }
  .gf-mobile-menu a { font-size: 26px; }
  .gf-mobile-menu { padding: 28px; gap: 20px; }
  .gf-messenger-btn { width: 42px; height: 42px; }
  .gf-messenger-btn svg { width: 19px; height: 19px; }
  .gf-footer-top { grid-template-columns: 1fr; gap: 40px; }
  .gf-calc-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ══════════════════════════════════
   STICKY MOBILE CALL BUTTON
══════════════════════════════════ */
.gf-sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}
.gf-sticky-call svg { color: var(--ice); }

/* ══════════════════════════════════
   CATALOG MODAL
══════════════════════════════════ */
.gf-modal-overlay {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(8,8,10,0.78);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.gf-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.gf-modal {
  background: var(--white);
  width: 100%;
  max-width: 920px;
  max-height: 86vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gf-modal-overlay.active .gf-modal {
  transform: translateY(0) scale(1);
}
.gf-modal-gallery {
  position: relative;
  background: var(--ink);
  min-height: 360px;
}
.gf-modal-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  filter: grayscale(25%) brightness(0.85) contrast(1.06) saturate(0.8);
}
.gf-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 5;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.25s;
  border: none;
}
.gf-modal-close:hover { background: rgba(255,255,255,0.25); }
.gf-modal-body {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
}
.gf-modal-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}
.gf-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8px;
}
.gf-modal-price {
  font-size: 14px;
  color: var(--ice);
  margin-bottom: 24px;
}
.gf-modal-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 28px;
}
.gf-modal-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 0.5px solid var(--hairline);
}
.gf-modal-spec {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.gf-modal-spec-label { color: var(--mid); }
.gf-modal-spec-value { color: var(--ink); font-weight: 500; }
.gf-modal-cta {
  margin-top: auto;
  padding: 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s;
}
.gf-modal-cta:hover { background: #2a2a2a; }

@media (max-width: 760px) {
  .gf-modal-overlay { padding: 16px; }
  .gf-modal { grid-template-columns: 1fr; max-height: 92vh; }
  .gf-modal-gallery { min-height: 240px; }
  .gf-modal-body { padding: 36px 28px; }
  .gf-modal-title { font-size: 30px; }
}

.glass{

position:relative;

overflow:hidden;

}

.glass::after{

content:"";

position:absolute;

top:0;

left:-100%;

width:50%;

height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.4),
transparent);

animation:glass 5s infinite;

}

@keyframes glass{

100%{

left:200%;

}

}
.gf-step-num,
.gf-step-name,
.gf-step-desc{
    opacity:0;
    transform:translateY(20px);
}

.gf-process-step.active .gf-step-num{
    opacity:1;
    transform:translateY(0);
    transition:.5s;
}

.gf-process-step.active .gf-step-name{
    opacity:1;
    transform:translateY(0);
    transition:.5s .15s;
}

.gf-process-step.active .gf-step-desc{
    opacity:1;
    transform:translateY(0);
    transition:.5s .3s;
}

.gf-process-step {
    position: relative;
}

.gf-process-step::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--ice);
    transition: height .35s ease;
}

.gf-process-step:hover::before {
    height: 100%;
}
.gf-process-left{
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.gf-process-intro{
    max-width:420px;
    margin-top:16px;
    font-size:15px;
    line-height:1.8;
    color:var(--mid);
}


.gf-process-inner{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:70px;
}

.gf-process-intro{
    max-width:380px;
    margin-top:18px;
    font-size:15px;
    line-height:1.9;
    color:var(--mid);
}

/* ══════════════════════════════════
   LEGAL PAGES (privacy-policy.html, public-offer.html)
══════════════════════════════════ */
.legal-hero {
  padding: 160px var(--edge-pad) 60px;
  max-width: 900px;
}
.legal-hero .gf-section-label { margin-bottom: 20px; }
.legal-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}
.legal-updated { font-size: 13px; color: var(--mid); }
.legal-body {
  max-width: 780px;
  padding: 0 var(--edge-pad) 120px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
}
.legal-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  margin: 48px 0 16px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { margin-bottom: 16px; color: var(--mid); }
.legal-body ul, .legal-body ol { margin: 0 0 16px 22px; color: var(--mid); }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: var(--ink); font-weight: 500; }
.legal-body a { color: var(--ice); text-decoration: underline; }
.legal-requisites {
  margin-top: 16px;
  padding: 24px 28px;
  background: var(--offwhite);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.9;
}
.legal-requisites strong { display: block; margin-bottom: 4px; }
.legal-placeholder {
  background: rgba(212,197,169,0.25);
  padding: 1px 6px;
  border-radius: 4px;
}
.legal-back {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}
@media (max-width: 900px) {
  .legal-hero { padding: 120px 24px 40px; }
  .legal-body { padding: 0 24px 80px; }
}