@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500&display=swap");

:root {
  --bg: #0D0D0D;
  --surface: #111111;
  --surface2: #161616;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --gold-line: rgba(201, 168, 76, 0.3);
  --text: #F5F0E0;
  --text-muted: rgba(245, 240, 224, 0.55);
  --border: rgba(201, 168, 76, 0.15);
  --border-mid: rgba(201, 168, 76, 0.3);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: 2px;
  color: var(--text);
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 56px;
}

h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .5px;
  color: var(--text);
  margin-bottom: 12px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

section {
  padding: 120px 15%;
  position: relative;
}

.label {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  display: block;
  margin: 0 auto 32px;
}

.gold-line-left {
  width: 60px;
  height: 1px;
  background: var(--gold);
  display: block;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--gold);
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 16px 48px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background .35s, color .35s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--text-muted);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: color .3s, border-color .3s;
  text-decoration: none;
}
.btn-ghost:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.fade-luxury {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-luxury.visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(13, 13, 13, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 72px;
}

.nav {
  height: 100%;
  padding: 0 15%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  stroke-width: 1;
  fill: none;
}
.logo span {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 2px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
}
.menu a {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .3s;
}
.menu a.active,
.menu a:hover { color: var(--gold); }

.nav-right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.phone-nav {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}
.btn-nav {
  padding: 10px 28px;
  font-size: 11px;
}

.burger,
.menu-close { display: none; }

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(13,13,13,.75) 0%, rgba(13,13,13,.85) 50%, rgba(13,13,13,.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15%;
}
.hero-line-vertical {
  width: 1px;
  height: 80px;
  background: var(--gold);
  margin-bottom: 40px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .42s ease;
}
.hero-line-vertical.visible { clip-path: inset(0 0 0 0); }
.hero h1 {
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: 3px;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p {
  max-width: 520px;
  margin: 0 auto 48px;
  font-size: 19px;
  color: var(--text-muted);
  letter-spacing: .5px;
}
.hero-btns {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.scroll-indicator span {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--gold), transparent);
  display: block;
  margin: 0 auto;
}
.scroll-indicator small {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--text-muted);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}
.manifesto p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.manifesto-photo-wrap {
  position: relative;
}
.manifesto-photo-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.manifesto-stat {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13,13,13,.9);
  border-top: 1px solid var(--gold);
  padding: 24px 32px;
}
.manifesto-stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.manifesto-stat span {
  color: var(--text-muted);
  font-size: 14px;
}
.manifesto-line {
  margin-top: 80px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 80px;
}
.services p { color: var(--text-muted); font-size: 18px; line-height: 1.8; }
.services img {
  margin-top: 40px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.service-item {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  transition: border-top-color .3s;
}
.service-item:hover { border-top-color: var(--gold); }
.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.service-title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-title svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
  color: rgba(201,168,76,.2);
}
.service-item p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}
.service-tags {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.services-more { margin-top: 16px; }

.signature-quote {
  padding-top: 40px;
  padding-bottom: 40px;
}
.quote-shell {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), var(--surface2));
  padding: 72px 9%;
  text-align: center;
}
.quote-shell blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3vw, 44px);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  max-width: 980px;
  margin: 0 auto 30px;
  line-height: 1.45;
}
.quote-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--gold-line);
  padding-top: 18px;
}
.quote-meta p {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.founder-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  margin: 16px auto 0;
  object-fit: cover;  
}

.case-item {
  border-top: 1px solid var(--border);
  padding: 60px 0;
  transition: border-top-color .35s;
}
.case-item:hover { border-top-color: var(--gold); }
.case-grid {
  display: grid;
  grid-template-columns: 60px 38fr 54fr;
  gap: 48px;
  align-items: start;
}
.case-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  line-height: .85;
  color: rgba(201,168,76,.1);
  font-style: italic;
}
.case-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.case-grid p {
  color: var(--text-muted);
  font-size: 16px;
}
.case-metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.case-metrics div {
  border-left: 1px solid var(--gold);
  padding-left: 16px;
}
.case-metrics strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}
.case-metrics span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.case-grid blockquote {
  margin-top: 24px;
  border-left: 1px solid var(--border);
  padding-left: 16px;
  color: var(--text-muted);
  font-size: 15px;
  font-style: italic;
}

.numbers-flex {
  display: flex;
  flex-direction: row;
}
.numbers-item {
  flex: 1;
  padding: 0 48px;
  border-right: 1px solid var(--border);
}
.numbers-item:first-child { padding-left: 0; }
.numbers-item:last-child { border-right: none; }
.numbers-item strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 72px);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.numbers-item p {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.numbers-line {
  margin-top: 36px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.process-item > div:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  color: rgba(201,168,76,.15);
  font-style: italic;
  line-height: 1;
}
.process-item p {
  color: var(--text-muted);
  font-size: 16px;
}

.pricing-intro {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pricing-card {
  border: 1px solid var(--border);
  padding: 48px 40px;
}
.pricing-card-featured { border-color: var(--gold); }
.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  line-height: 1;
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}
.price-sub {
  margin-top: 8px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-sep {
  height: 1px;
  background: var(--border);
  margin-bottom: 32px;
}
.pricing-card ul { list-style: none; margin-bottom: 20px; }
.pricing-card li {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.pricing-contact {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pricing-contact p {
  color: var(--text-muted);
  font-size: 16px;
}

.review {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  transition: border-top-color .3s;
}
.review:hover { border-top-color: var(--gold); }
.review-marker {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}
.review-avatar-wrap .stars {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--gold);
}
.review-avatar-wrap small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.review-role {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: normal;
}
.review p {
  color: var(--text-muted);
  font-size: 16px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-btn {
  width: 100%;
  padding: 28px 0;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}
.faq-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  stroke-width: 1;
  fill: none;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item.open .faq-btn svg {
  transform: rotate(45deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-content {
  max-height: 380px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  padding-bottom: 28px;
}
.faq-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.form-section p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
}
.form-promises {
  margin-top: 24px;
}
.form-promises p {
  border-left: 1px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 15px;
}
.form-section img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid var(--border);
  margin-top: 40px;
}
.form-card {
  border: 1px solid var(--border);
  padding: 56px 48px;
}
.form-card h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 300;
}
.luxury-field { margin-bottom: 32px; }
.luxury-field label {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.luxury-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0 14px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  transition: border-color .3s;
}
.luxury-input:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.luxury-input::placeholder { color: rgba(245,240,224,.2); }
.luxury-field textarea { resize: vertical; }
.form-submit {
  width: 100%;
  margin-top: 16px;
}
.form-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 1px;
}
.form-disclaimer a {
  color: var(--gold);
}
.form-thanks {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-thanks.show { display: block; }
.form-thanks svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  stroke-width: 1;
  fill: none;
  margin: 0 auto 10px;
}
.form-thanks p {
  font-size: 16px;
  color: var(--text-muted);
}

.contacts-reimagined {
  background: linear-gradient(180deg, transparent, rgba(201,168,76,.04));
}
.contacts-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 44px;
}
.contact-main {
  border: 1px solid var(--border);
  padding: 42px;
  background: var(--surface);
}
.contact-main > p {
  color: var(--text-muted);
  margin-bottom: 26px;
}
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.contact-main-grid p,
.contact-main-grid a {
  color: var(--text-muted);
  font-size: 14px;
}
.contact-phone {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-style: italic;
  color: var(--text);
}
.contact-side {
  border: 1px solid var(--border);
  padding: 22px;
  background: var(--surface);
}
.contact-side iframe {
  width: 100%;
  height: 260px;
  border: 1px solid var(--border);
}
.contact-socials {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
}
.contact-socials a {
  border-top: 1px solid var(--border);
  padding: 14px 0;
  color: var(--text-muted);
  font-size: 14px;
  transition: color .3s;
}
.contact-socials a:hover { color: var(--gold); }

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 15% 40px;
}
.footer-top {
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-brand svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  stroke-width: 1;
  fill: none;
}
.footer-brand span {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
}
.footer-brand p {
  margin-top: 2px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-panel {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--text-muted);
  font-size: 14px;
}
.site-footer ul { list-style: none; margin-bottom: 12px; }
.footer-panel a:hover,
.footer-panel li:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-bottom a {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: color .3s;
}
.footer-bottom a:hover { color: var(--gold); }

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  border: 1px solid var(--gold);
  background: rgba(13, 13, 13, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 20px;
  transition: background .35s, color .35s;
  display: none;
}
.floating-call.show { display: inline-flex; }
.floating-call:hover {
  background: var(--gold);
  color: var(--bg);
}

@media (max-width: 767px) {
  section { padding: 80px 24px; }
  .site-header { height: 64px; }
  .nav { padding: 0 24px; }
  h1 { font-size: 36px; letter-spacing: 1px; }
  h2 { font-size: 28px; margin-bottom: 34px; }

  .hero { padding: 0; }
  .hero-content { padding: 120px 24px 80px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 20px; }

  .manifesto-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; gap: 48px; }
  .quote-shell { padding: 52px 24px; }
  .quote-meta { flex-direction: column; }
  .case-grid { grid-template-columns: 1fr; gap: 0; }
  .case-num { display: none; }
  .case-photo { height: 240px; margin-bottom: 20px; }

  .numbers-flex { flex-direction: column; gap: 32px; }
  .numbers-item { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 24px; }
  .numbers-item:last-child { border-bottom: none; }

  .process-item { grid-template-columns: 48px 1fr; gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 0; }
  .pricing-card { border: 1px solid var(--border); margin-bottom: -1px; }

  .reviews-list .review { grid-template-columns: 1fr; gap: 16px; }
  .review-avatar-wrap { display: flex; gap: 16px; align-items: center; }

  .faq-list { gap: 0; }
  .form-grid { grid-template-columns: 1fr; gap: 48px; }
  .contacts-layout { grid-template-columns: 1fr; gap: 18px; }
  .contact-main { padding: 24px; }
  .contact-main-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-panels { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  .menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    z-index: 70;
  }
  .menu.open { display: flex; }
  .menu a { font-size: 15px; }
  .menu-close {
    display: block;
    position: absolute;
    top: 18px;
    right: 24px;
    border: none;
    background: transparent;
    color: var(--gold);
    font-size: 24px;
  }
  .nav-right { display: none; }
  .burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 28px;
    border: none;
    background: transparent;
    align-items: center;
    justify-content: center;
  }
  .burger span {
    width: 22px;
    height: 1px;
    background: var(--gold);
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  section { padding: 90px 8%; }
  .nav { padding: 0 8%; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 60px; }
  .services-grid { grid-template-columns: 40fr 60fr; gap: 60px; }
  .case-grid { grid-template-columns: 40px 40fr 56fr; gap: 32px; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .contacts-layout { grid-template-columns: 1fr; }
  .contact-main-grid { grid-template-columns: 1fr 1fr; }
  .footer-panels { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1280px) {
  .manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: start; }
  .services-grid { display: grid; grid-template-columns: 40fr 60fr; gap: 80px; }
  .case-grid { display: grid; grid-template-columns: 60px 38fr 54fr; gap: 48px; align-items: start; }
  .numbers-flex { display: flex; flex-direction: row; }
  .numbers-item { flex: 1; }
  .process-item { display: grid; grid-template-columns: 80px 1fr; gap: 40px; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .contacts-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; }
  .contact-main-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-panels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
