*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold-light:  #f0d080;
  --gold-main:   #c9973a;
  --gold-dark:   #8b6314;
  --gold-shine:  #ffe9a0;
  --bg-dark:     #0e0e0e;
  --bg-nav:      #121212;
  --bg-drop:     #181818;
  --border:      rgba(201,151,58,.25);
  --text-light:  #e8d5a3;
}

body {
  background: #1a1a1a;
  font-family: 'Raleway', sans-serif;
  min-height: 120vh;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,.6), 0 1px 0 rgba(201,151,58,.15);
  transition: background .4s, box-shadow .4s;
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,151,58,.04) 30%,
    rgba(201,151,58,.06) 50%,
    rgba(201,151,58,.04) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.navbar.scrolled {
  background: rgba(8,8,8,.97);
  box-shadow: 0 8px 60px rgba(0,0,0,.8), 0 1px 0 rgba(201,151,58,.2);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 40px;
}

.logo-image {
  display: block;
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(201,151,58,.28));
}

/* GOLD DIVIDER */
.nav-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, var(--gold-dark), transparent);
  flex-shrink: 0;
  margin: 0 4px;
}

/* NAV LINKS */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 18px;
  height: 76px;
  font-family: 'Raleway', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: #cab07f;
  text-decoration: none;
  transition: color .3s;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  transition: left .35s cubic-bezier(.25,.46,.45,.94),
              right .35s cubic-bezier(.25,.46,.45,.94);
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
  color: var(--gold-shine);
}

.nav-item:hover .nav-link::after,
.nav-item.active .nav-link::after {
  left: 12px; right: 12px;
}

/* arrow icon */
.arrow-icon {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s;
  flex-shrink: 0;
}

.nav-item:hover .arrow-icon {
  transform: rotate(225deg) translateY(-2px);
}

/* PHONE */
.nav-phone {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 0 20px;
  flex-shrink: 0;
}

.phone-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201,151,58,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .3s, box-shadow .3s;
}

.nav-phone:hover .phone-icon {
  border-color: var(--gold-main);
  box-shadow: 0 0 12px rgba(201,151,58,.3);
}

.phone-icon svg { color: var(--gold-main); }

.phone-info { display: flex; flex-direction: column; }

.phone-number {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  white-space: nowrap;
}

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 230px;
  background: var(--bg-drop);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold-main);
  box-shadow: 0 20px 60px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.03);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .3s cubic-bezier(.25,.46,.45,.94);
  overflow: visible;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 6px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: var(--gold-main);
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .09em;
  color: #b89452;
  text-decoration: none;
  transition: background .2s, color .2s, padding-left .2s;
  border-bottom: 1px solid rgba(255,255,255,.03);
  position: relative;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-dark), var(--gold-light));
  transform: scaleY(0);
  transition: transform .2s;
}

.dropdown-item:last-child { border-bottom: none; }

.dropdown-item:hover {
  background: rgba(201,151,58,.07);
  color: var(--gold-shine);
  padding-left: 26px;
}

.dropdown-item:hover::before { transform: scaleY(1); }

.dd-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-main);
  flex-shrink: 0;
  opacity: .5;
  transition: opacity .2s, transform .2s;
}

.dropdown-item:hover .dd-dot {
  opacity: 1;
  transform: scale(1.5);
}

.dropdown-nested {
  position: relative;
}

.dropdown-item-parent {
  justify-content: flex-start;
  gap: 12px;
  padding-right: 16px;
}

.dropdown-sub-arrow {
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: .75;
  margin-left: auto;
}

.dropdown-submenu {
  position: absolute;
  top: -1px;
  left: calc(100% - 14px);
  min-width: 220px;
  background: var(--bg-drop);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold-main);
  border-radius: 0 18px 18px 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.65), inset 0 1px 0 rgba(255,255,255,.03);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity .22s ease, transform .22s ease;
  overflow: hidden;
  z-index: 3;
}

.dropdown-nested:hover .dropdown-submenu,
.dropdown-nested:focus-within .dropdown-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.dropdown-subitem {
  display: block;
  padding: 11px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  color: #b89452;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.03);
  transition: background .2s, color .2s, padding-left .2s;
}

.dropdown-subitem:last-child {
  border-bottom: none;
}

.dropdown-subitem:hover {
  background: rgba(201,151,58,.07);
  color: var(--gold-shine);
  padding-left: 24px;
}

/* GOLD LINE TOP */
.gold-topline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-dark) 20%,
    var(--gold-light) 50%,
    var(--gold-dark) 80%,
    transparent 100%
  );
}

/* HAMBURGER */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 24px;
  height: 18px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
  box-sizing: content-box;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-main);
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  transform: translateY(-110%);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: #c1a46b;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s, background .2s;
}

.mobile-link:hover { color: var(--gold-shine); background: rgba(201,151,58,.05); }

.mobile-submenu {
  display: none;
  background: rgba(255,255,255,.02);
}

.mobile-submenu.open { display: block; }

.mobile-sub-link {
  display: block;
  padding: 13px 28px 13px 44px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .08em;
  color: #987844;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.03);
  transition: color .2s, padding-left .2s;
}

.mobile-sub-link:hover { color: var(--gold-light); padding-left: 52px; }

.mobile-submenu-group {
  border-bottom: 1px solid rgba(255,255,255,.03);
}

.mobile-submenu-row {
  display: flex;
  align-items: center;
}

.mobile-sub-link-main {
  flex: 1 1 auto;
  border-bottom: 0;
}

.mobile-submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  flex: 0 0 56px;
  padding: 0;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.03);
  border-radius: 0;
  color: #987844;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.mobile-submenu-trigger:hover {
  color: var(--gold-light);
  background: rgba(201,151,58,.05);
}

.mobile-sub-arrow {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 1.75px solid currentColor;
  border-bottom: 1.75px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .2s ease;
  flex-shrink: 0;
  opacity: .85;
}

.mobile-submenu-trigger.open .mobile-sub-arrow {
  transform: rotate(-135deg) translateX(-1px);
}

.mobile-submenu-secondary {
  display: none;
  background: rgba(255,255,255,.015);
}

.mobile-submenu-secondary.open {
  display: block;
}

.mobile-sub-sub-link {
  display: block;
  padding: 12px 28px 12px 62px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .07em;
  color: #8a6b39;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,.025);
  transition: color .2s, padding-left .2s;
}

.mobile-sub-sub-link:hover {
  color: var(--gold-light);
  padding-left: 70px;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  border-top: 1px solid var(--border);
}

.mobile-phone-number {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

/* DEMO CONTENT */
.demo-hero {
  position: relative;
  background: #0a0a0a;
}

.demo-hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 18%, var(--gold-light) 50%, var(--gold-dark) 82%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.demo-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.12) 0%, rgba(10,10,10,.08) 42%, rgba(10,10,10,.55) 100%);
  pointer-events: none;
}

.hero-media {
  display: block;
  width: 100%;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(92%, 980px);
  padding: clamp(20px, 3vw, 34px) clamp(24px, 4vw, 42px);
  border: 1px solid rgba(201,151,58,.52);
  border-radius: 18px;
  background: rgba(0,0,0,.46);
  box-shadow: 0 18px 44px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,233,160,.08);
  backdrop-filter: blur(6px);
  text-align: center;
  pointer-events: none;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Cinzel', serif;
  gap: 4px;
}

.hero-title-line {
  display: block;
  font-size: clamp(30px, 4.4vw, 70px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff1b8 0%, var(--gold-light) 32%, var(--gold-main) 62%, #8b6314 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 8px 26px rgba(0,0,0,.35);
}

.hero-title-line-secondary {
  font-size: clamp(22px, 3.1vw, 48px);
}

.hero-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(14px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #f2dfab;
  text-shadow: 0 6px 20px rgba(0,0,0,.45);
}

.hero-page-title {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(16px, 1.95vw, 28px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .16em;
  color: #f2dfab;
  text-align: center;
  text-shadow: 0 6px 20px rgba(0,0,0,.45);
}

.hero-overlay-service {
  gap: 0;
}

.hero-overlay-service .hero-subtitle,
.hero-overlay-service .hero-page-title {
  margin-top: 10px;
}

.hero-subtitle-mobile-line {
  display: none;
}

.contacts-map-section {
  position: relative;
  padding: clamp(36px, 5vw, 64px) 20px clamp(44px, 6vw, 80px);
  background: linear-gradient(180deg, #202020 0%, #1b1b1b 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02), inset 0 -1px 0 rgba(201,151,58,.08);
}

.contacts-map-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 18%, var(--gold-light) 50%, var(--gold-dark) 82%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.contacts-map-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.contacts-map-frame {
  padding: clamp(8px, 1.1vw, 14px);
  border: 1px solid rgba(201,151,58,.32);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(53,38,12,.78) 0%, rgba(17,17,17,.96) 100%);
  box-shadow:
    0 22px 54px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,233,160,.08);
}

.contacts-map-canvas {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(24,24,24,.98) 0%, rgba(15,15,15,.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.contacts-map-canvas::before {
  content: '';
  display: block;
  padding-top: 68.813%;
}

.contacts-map-embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.contacts-map-live,
.contacts-map-fallback {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.contacts-map-embed[hidden],
.contacts-map-fallback[hidden] {
  display: none !important;
}

.contacts-map-iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.contacts-map-fallback {
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 2.4vw, 28px);
  background:
    radial-gradient(circle at 50% 28%, rgba(112,83,26,.18) 0%, rgba(26,26,26,.95) 52%, rgba(14,14,14,.98) 100%);
}

.contacts-map-fallback-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.contacts-map-fallback-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(201,151,58,.48);
  box-shadow:
    0 18px 42px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,233,160,.05) inset,
    0 0 18px rgba(201,151,58,.12);
  object-fit: contain;
}

.contacts-map-frame.is-static {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
}

.contacts-map-canvas.is-static {
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
}

.contacts-map-canvas.is-static::before {
  padding-top: 177.78%;
}

.contacts-map-embed.is-static .contacts-map-live {
  display: none;
}

.contacts-map-embed.is-static .contacts-map-fallback {
  display: flex;
  position: relative;
  padding: 0;
  background: transparent;
}

.services-preview {
  position: relative;
  padding: clamp(44px, 6vw, 88px) 20px;
  background: linear-gradient(180deg, #202020 0%, #1c1c1c 100%);
}

.services-preview::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 18%, var(--gold-light) 50%, var(--gold-dark) 82%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.services-preview-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.about-preview {
  padding: clamp(52px, 7vw, 100px) 20px clamp(64px, 8vw, 112px);
  background: linear-gradient(180deg, #171717 0%, #111111 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02), inset 0 -1px 0 rgba(201,151,58,.08);
}

.about-preview-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.about-preview-label {
  margin-bottom: 0;
}

.about-preview-title {
  width: 100%;
  max-width: 1100px;
  margin: 26px auto 0;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: .04em;
  color: #f2dfab;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 6px 16px rgba(0,0,0,.28);
}

.about-preview-inner > .about-preview-title:first-child {
  margin-top: 0;
}

.about-preview-subtitle {
  margin-top: 26px;
}

.about-preview-subtitle-divider {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-top: 68px;
  padding-top: 0;
}

.about-preview-subtitle-divider::before {
  content: '';
  display: block;
  width: 100%;
  max-width: 980px;
  height: 1px;
  margin: 0 auto 68px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,151,58,.14) 18%, rgba(255,233,160,.28) 50%, rgba(201,151,58,.14) 82%, transparent 100%);
  box-shadow: 0 0 12px rgba(201,151,58,.05);
}

.about-preview-description {
  width: 100%;
  max-width: 980px;
  margin: 26px 0 0;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .02em;
  color: rgba(232,213,163,.9);
  text-align: left;
  text-shadow: 0 6px 18px rgba(0,0,0,.24);
}

.about-preview-description + .about-preview-description {
  margin-top: 18px;
}

.about-preview-description strong,
.about-preview-list-item strong {
  font-weight: 600;
  color: #f2dfab;
}

.about-preview-list {
  width: 100%;
  max-width: 980px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.about-preview-list-item {
  position: relative;
  padding-left: 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .02em;
  color: rgba(232,213,163,.9);
  text-align: left;
  text-shadow: 0 6px 18px rgba(0,0,0,.24);
}

.about-preview-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff1b8 0%, var(--gold-main) 68%, rgba(201,151,58,.16) 100%);
  box-shadow: 0 0 0 1px rgba(201,151,58,.14);
  transform: translateY(-50%);
}

.about-preview-list-item + .about-preview-list-item {
  margin-top: 12px;
}

.about-office-gallery {
  width: 100%;
  max-width: 980px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  gap: clamp(18px, 2.4vw, 28px);
}

.about-office-card {
  margin: 0;
}

.about-office-image {
  aspect-ratio: 1600 / 893;
  object-fit: cover;
}

.feedback-section {
  position: relative;
  padding: 56px 20px 72px;
  padding: clamp(56px, 7vw, 104px) 20px clamp(72px, 8vw, 124px);
  background: linear-gradient(180deg, #202020 0%, #1c1c1c 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02), inset 0 -1px 0 rgba(201,151,58,.08);
}

.feedback-section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 18%, var(--gold-light) 50%, var(--gold-dark) 82%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.feedback-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 18%, var(--gold-light) 50%, var(--gold-dark) 82%, transparent 100%);
  box-shadow: 0 0 16px rgba(201,151,58,.18);
  z-index: 2;
  pointer-events: none;
}

.feedback-section-inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.feedback-section-label {
  margin-bottom: 0;
}

.feedback-section-title {
  max-width: 760px;
}

.feedback-status {
  width: 100%;
  max-width: 980px;
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid rgba(201,151,58,.24);
  background: rgba(255,255,255,.02);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.6;
  letter-spacing: .02em;
}

.feedback-status[hidden] {
  display: none;
}

.feedback-status.is-success {
  border-color: rgba(160,215,116,.4);
  background: rgba(58,92,31,.2);
  color: #e8f3c6;
}

.feedback-status.is-error {
  border-color: rgba(219,112,112,.42);
  background: rgba(96,30,30,.24);
  color: #ffd8c7;
}

.feedback-form {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin-top: 24px;
  padding: 26px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(201,151,58,.34);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(22,22,22,.96), rgba(12,12,12,.98));
  box-shadow:
    0 24px 54px rgba(0,0,0,.38),
    0 0 0 1px rgba(255,233,160,.05) inset,
    0 0 28px rgba(201,151,58,.08);
}

.feedback-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  gap: clamp(18px, 2.3vw, 28px);
}

.feedback-field {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feedback-field-full {
  grid-column: 1 / -1;
}

.feedback-field-label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #cab07f;
}

.feedback-input {
  width: 100%;
  padding: 15px 18px;
  border-radius: 16px;
  border: 1px solid rgba(201,151,58,.22);
  background: linear-gradient(180deg, rgba(24,24,24,.97), rgba(16,16,16,.99));
  color: #f4e3bb;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    inset 0 0 0 1px rgba(255,255,255,.02);
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.feedback-input::placeholder {
  color: rgba(232,213,163,.45);
}

.feedback-input:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow:
    0 0 0 3px rgba(201,151,58,.16),
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 0 0 1px rgba(255,255,255,.025);
  background: linear-gradient(180deg, rgba(27,27,27,.98), rgba(18,18,18,.99));
}

.feedback-input.is-invalid {
  border-color: rgba(219,112,112,.72);
  box-shadow:
    0 0 0 3px rgba(219,112,112,.14),
    inset 0 1px 0 rgba(255,255,255,.04),
    inset 0 0 0 1px rgba(255,255,255,.02);
}

.feedback-input.is-invalid:focus {
  border-color: rgba(255,182,182,.85);
  box-shadow:
    0 0 0 3px rgba(219,112,112,.2),
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 0 0 1px rgba(255,255,255,.025);
}

#feedbackPhone {
  font-family: 'SFMono-Regular', Menlo, Consolas, 'Liberation Mono', monospace;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.feedback-textarea {
  min-height: 164px;
  resize: vertical;
}

.feedback-submit {
  margin-top: 20px;
  margin-top: clamp(20px, 2.4vw, 30px);
  align-self: flex-start;
  min-width: 220px;
  padding: 15px 26px;
  border: 1px solid rgba(201,151,58,.45);
  border-radius: 999px;
  background: linear-gradient(135deg, #f5de95 0%, #d6a95a 56%, #9b6a22 100%);
  color: #151515;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .2s, box-shadow .2s, filter .2s;
}

.feedback-submit:hover {
  transform: translateY(-1px);
  filter: saturate(1.04);
  box-shadow: 0 22px 40px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.4);
}

.feedback-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,151,58,.2), 0 18px 34px rgba(0,0,0,.3);
}

.feedback-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  position: relative;
  padding: clamp(38px, 4.7vw, 64px) 20px clamp(38px, 4.7vw, 64px);
  background:
    radial-gradient(circle at top center, rgba(201,151,58,.08) 0%, rgba(201,151,58,0) 44%),
    linear-gradient(180deg, #121212 0%, #080808 100%);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201,151,58,.04) 50%, transparent 100%);
  pointer-events: none;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, .95fr) minmax(240px, 1fr);
  gap: clamp(28px, 4vw, 72px);
}

.site-footer-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 1.7vw, 30px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .04em;
  color: #f3deaa;
  text-shadow: 0 10px 24px rgba(0,0,0,.36);
}

.site-footer-brand-title {
  font-size: clamp(20px, 1.95vw, 33px);
}

.site-footer-text,
.site-footer-contacts,
.site-footer-menu {
  font-size: clamp(12px, 0.86vw, 15px);
  line-height: 1.65;
  letter-spacing: .01em;
  color: rgba(232,213,163,.88);
}

.site-footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer-link {
  color: rgba(232,213,163,.9);
  text-decoration: none;
  transition: color .2s ease, text-shadow .2s ease;
}

.site-footer-link:hover {
  color: var(--gold-shine);
  text-shadow: 0 0 18px rgba(201,151,58,.22);
}

.site-footer-contacts {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.site-footer-contact-item {
  max-width: 300px;
}

.site-footer-contact-label {
  display: inline;
  margin-right: 6px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #cfab5b;
}

.services-preview-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: .05em;
  color: #f2dfab;
  text-align: center;
}

.services-preview-line {
  display: block;
}

.services-preview-line-primary {
  text-shadow:
    0 2px 0 rgba(0,0,0,.78),
    0 12px 28px rgba(0,0,0,.52),
    0 0 18px rgba(201,151,58,.34),
    0 0 34px rgba(201,151,58,.22);
}

.services-preview-line-secondary {
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: 400;
  letter-spacing: .04em;
  text-shadow: 0 6px 16px rgba(0,0,0,.28);
}

.services-preview-gallery {
  display: grid;
  width: min(100%, 980px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(56px, 6vw, 84px);
  row-gap: 32px;
  margin: clamp(28px, 4vw, 44px) auto 0;
}

.services-preview-card {
  position: relative;
  display: block;
  border: 1px solid rgba(201,151,58,.48);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 18px 42px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,233,160,.05) inset,
    0 0 18px rgba(201,151,58,.12);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.services-preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,208,128,.72);
  box-shadow:
    0 24px 54px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,233,160,.08) inset,
    0 0 26px rgba(201,151,58,.2);
}

.services-preview-media {
  display: block;
}

.services-preview-image {
  display: block;
  width: 100%;
  height: auto;
}

.services-preview-card-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: inherit;
  border: 1px solid rgba(201,151,58,.52);
  background: rgba(0,0,0,.46);
  box-shadow: 0 18px 44px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,233,160,.08);
  backdrop-filter: blur(6px);
  text-align: center;
  pointer-events: none;
}

.services-preview-card-title {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #f1d88d;
  text-shadow:
    0 10px 18px rgba(0,0,0,.42),
    0 18px 32px rgba(0,0,0,.28);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .services-preview-card-title {
    background: linear-gradient(135deg, #fff1b8 0%, var(--gold-light) 32%, var(--gold-main) 62%, #8b6314 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
}

/* RESPONSIVE */
@media (min-width: 1025px) {
  .logo { margin-right: 128px; }
  .services-preview-inner {
    width: 100%;
    max-width: none;
  }
  .services-preview-gallery {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    padding-inline: calc(18.5vw + 25px);
    box-sizing: border-box;
    column-gap: 0;
    row-gap: 0;
  }
  .services-preview-card {
    flex: 0 1 24vw;
    max-width: 420px;
  }
}

@media (max-width: 1024px) {
  .nav-menu, .nav-divider, .nav-phone { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: block; }
  .site-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .contacts-map-frame {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .contacts-map-canvas::before {
    padding-top: 177.78%;
  }
  .about-office-gallery {
    grid-template-columns: 1fr;
  }
  .services-preview-gallery {
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .feedback-form-grid {
    grid-template-columns: 1fr;
  }
  .feedback-submit {
    width: 100%;
  }
  .site-footer {
    padding: 27px 20px 27px;
  }
  .site-footer-grid {
    gap: 26px;
  }
  .services-preview-card-overlay {
    padding: 18px;
  }
  .services-preview-card-title {
    font-size: clamp(20px, 5vw, 28px);
  }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 20px; }
  .logo-image { height: 52px; }
  .hero-overlay {
    width: min(80vw, 310px);
    padding: 28px 18px 32px;
    gap: 12px;
  }
  .hero-title { gap: 12px; }
  .hero-title-line { font-size: clamp(26px, 8vw, 34px); }
  .hero-title-line-secondary { font-size: clamp(20px, 6.6vw, 28px); }
  .hero-subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    gap: 12px;
    font-size: clamp(12px, 3.6vw, 16px);
    letter-spacing: .14em;
  }
  .hero-page-title {
    font-size: clamp(14px, 4.1vw, 18px);
    letter-spacing: .12em;
  }
  .hero-overlay-service .hero-subtitle,
  .hero-overlay-service .hero-page-title {
    margin-top: 10px;
  }
  .hero-subtitle-desktop {
    display: none;
  }
  .hero-subtitle-mobile-line {
    display: block;
  }
  .contacts-map-section {
    padding: 32px 16px 40px;
  }
  .contacts-map-frame {
    padding: 8px;
    border-radius: 24px;
  }
  .contacts-map-canvas {
    border-radius: 18px;
  }
  .contacts-map-fallback {
    padding: 14px;
  }
  .contacts-map-fallback-image {
    border-radius: 16px;
  }
  .contacts-map-frame.is-static {
    max-width: 100%;
  }
  .services-preview {
    padding: 32px 16px 40px;
  }
  .about-preview {
    padding: 40px 16px 64px;
  }
  .feedback-section {
    padding: 40px 16px 72px;
  }
  .site-footer {
    padding: 25px 16px 25px;
  }
  .about-preview-inner {
    gap: 0;
  }
  .feedback-section-inner {
    gap: 0;
  }
  .about-preview-label {
    margin-bottom: 0;
  }
  .about-preview-title {
    margin-top: 22px;
    font-size: 14px;
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.3;
  }
  .feedback-status {
    margin-top: 22px;
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
  }
  .feedback-form {
    margin-top: 22px;
    width: 100%;
    padding: 20px 16px;
    border-radius: 22px;
  }
  .about-preview-subtitle {
    margin-top: 22px;
  }
  .about-preview-subtitle-divider {
    margin-top: 56px;
    padding-top: 0;
  }
  .about-preview-subtitle-divider::before {
    margin-bottom: 56px;
  }
  .about-preview-description {
    margin-top: 22px;
    font-size: 13px;
    font-size: clamp(13px, 3.7vw, 16px);
    line-height: 1.7;
  }
  .about-preview-description + .about-preview-description {
    margin-top: 16px;
  }
  .about-preview-list {
    margin-top: 16px;
  }
  .about-preview-list-item {
    padding-left: 24px;
    font-size: 13px;
    font-size: clamp(13px, 3.7vw, 16px);
    line-height: 1.7;
  }
  .about-preview-list-item + .about-preview-list-item {
    margin-top: 10px;
  }
  .about-office-gallery {
    margin-top: 22px;
  }
  .services-preview-text {
    font-size: clamp(22px, 7vw, 28px);
    letter-spacing: .04em;
  }
  .services-preview-line-secondary {
    font-size: clamp(14px, 4vw, 18px);
  }
  .services-preview-gallery {
    margin-top: 24px;
    row-gap: 32px;
  }
  .site-footer-title {
    font-size: clamp(17px, 5.2vw, 22px);
  }
  .site-footer-text,
  .site-footer-contacts,
  .site-footer-menu {
    font-size: 11px;
    line-height: 1.6;
  }
}
