:root {
  --black: #060708;
  --black-soft: #0b0d10;
  --panel: #12151a;
  --panel-light: #181b21;
  --white: #faf7f0;
  --muted: #aaa7a0;
  --red: #b9172a;
  --red-bright: #db2940;
  --red-dark: #710b19;
  --gold: #c9a86a;
  --gold-light: #f1d99f;
  --gold-deep: #9b7538;
  --line: rgba(250, 247, 240, 0.11);
  --gold-line: rgba(201, 168, 106, 0.34);
  --arrow-shift: translate(3px, -3px);
  --field-bg: rgba(6, 7, 8, 0.62);
  --field-bg-focus: rgba(6, 7, 8, 0.82);
  --focus-ring: 0 0 0 3px rgba(201, 168, 106, 0.09);
  --container: 1180px;
  --header-height: 90px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 5%, rgba(201, 168, 106, 0.045), transparent 24rem),
    var(--black);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--black);
  background: var(--gold-light);
}

img {
  display: block;
  max-width: 100%;
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--black);
  background: var(--gold-light);
  transform: translateY(-150%);
  transition: transform 0.25s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 7, 8, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.22);
}

.header-inner {
  width: min(var(--container), calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
}

.brand:hover {
  opacity: 0.92;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 0.93rem;
  line-height: 1;
}

.brand-tagline {
  color: rgba(250, 247, 240, 0.58);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand b {
  color: var(--gold-light);
  font-weight: 500;
}

.brand-mark {
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--red-bright), #28050b 62%, var(--gold-deep));
  border: 1px solid rgba(239, 212, 150, 0.55);
  font-size: 0.9rem;
  box-shadow: 0 0 30px rgba(201, 168, 106, 0.16);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.brand:hover .brand-mark {
  transform: translateY(-1px);
  border-color: rgba(239, 212, 150, 0.72);
  box-shadow: 0 0 34px rgba(201, 168, 106, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.83rem;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(247, 245, 240, 0.7);
  transition: color 0.25s ease;
}

.site-nav > a[aria-current="true"] {
  color: var(--gold-light);
}

.site-nav > a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.site-nav > a:hover {
  color: var(--white);
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  padding: 10px 17px;
  border: 1px solid var(--gold-line);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
}

.nav-cta:hover {
  color: var(--black);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.nav-cta:active,
.btn:active,
.price-cta:active,
.addon-card a:active {
  transform: translateY(0) scale(0.985);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--gold-line);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
}

.nav-toggle:hover {
  background: rgba(250, 247, 240, 0.055);
  border-color: var(--gold-light);
}

.nav-toggle:active {
  transform: scale(0.96);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #060708, #0c0a0b);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/webgi-hero-clear.webp");
  background-position: 72% center;
  background-size: cover;
  opacity: 0.82;
  filter: saturate(1.04) contrast(1.04) brightness(1.07);
  transform: scale(1.03);
  will-change: transform;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 7, 8, 0.98) 0%, rgba(6, 7, 8, 0.87) 35%, rgba(8, 7, 8, 0.1) 68%, rgba(6, 7, 8, 0.16) 100%),
    linear-gradient(0deg, rgba(6, 7, 8, 0.82), transparent 44%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 18%;
  z-index: -1;
  width: min(480px, 40vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.2);
  filter: blur(85px);
  animation: glow-drift 11s ease-in-out infinite alternate;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.hero-content {
  padding-block: calc(var(--header-height) + 60px) 180px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3.55rem, 7.8vw, 7.1rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.hero-title {
  perspective: 900px;
}

.hero-title-line {
  display: block;
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}

.hero-title-outline {
  display: block;
  margin-top: 0.22em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(239, 212, 150, 0.9);
  text-shadow: 0 0 40px rgba(201, 168, 106, 0.2);
}

@keyframes glow-drift {
  0% { transform: translate3d(-7%, -4%, 0) scale(0.9); opacity: 0.55; }
  50% { opacity: 0.9; }
  100% { transform: translate3d(12%, 9%, 0) scale(1.14); opacity: 0.68; }
}

.hero-subtitle {
  max-width: 610px;
  margin: 38px 0 0;
  color: rgba(247, 245, 240, 0.78);
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  line-height: 1.55;
}

.hero-service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 660px;
  margin-top: 28px;
}

.hero-service-strip span {
  padding: 9px 12px;
  color: var(--gold-light);
  background: rgba(250, 247, 240, 0.055);
  border: 1px solid var(--gold-line);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
}

.hero-service-strip span:hover {
  background: rgba(250, 247, 240, 0.075);
  border-color: rgba(241, 217, 159, 0.48);
  transform: translateY(-1px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s var(--ease), color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(102%);
  transition: transform 0.35s var(--ease);
}

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

.btn:disabled {
  cursor: wait;
}

.btn:hover::before {
  transform: translateY(0);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 16px 42px rgba(185, 23, 42, 0.24);
}

.btn-primary::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -55%;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: skewX(-18deg);
  animation: cta-shine 4.8s ease-in-out infinite;
}

@keyframes cta-shine {
  0%, 68% { left: -55%; }
  86%, 100% { left: 130%; }
}

.btn-primary:hover {
  color: var(--black);
  box-shadow: 0 18px 50px rgba(201, 168, 106, 0.28);
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.82;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  color: rgba(247, 245, 240, 0.74);
  border-bottom: 1px solid var(--gold-line);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
}

.text-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.text-link span,
.btn span,
.price-cta span,
.addon-card a span {
  transition: transform 0.25s var(--ease);
}

.text-link:hover span,
.btn:hover span,
.price-cta:hover span,
.addon-card a:hover span {
  transform: var(--arrow-shift);
}

.hero-proof {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container);
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.45);
  backdrop-filter: blur(14px);
}

.hero-proof div:first-child {
  border-left: 1px solid var(--line);
}

.hero-proof span {
  color: var(--gold);
  font-size: 0.65rem;
}

.hero-proof strong {
  font-size: 0.8rem;
  font-weight: 600;
}

.section {
  padding: 120px 0;
}

.intro {
  position: relative;
  background: linear-gradient(135deg, #faf7f0, #f2ede3);
  color: var(--black);
}

.intro-layout {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 38px 70px;
  align-items: start;
}

.intro .eyebrow {
  margin-top: 12px;
  color: var(--red);
}

h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.35vw, 4.05rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h2 em {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.intro-copy {
  grid-column: 2;
  max-width: 680px;
  margin: 0;
  color: #65625d;
  font-size: 1.08rem;
}

.services,
.portfolio,
.testimonials {
  background:
    radial-gradient(circle at 90% 5%, rgba(201, 168, 106, 0.1), transparent 28%),
    linear-gradient(180deg, #08090b, var(--black)),
    var(--black);
}

.home-snapshot {
  padding: 0;
  background: var(--black);
  border-block: 1px solid var(--line);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.snapshot-item {
  min-height: 180px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.snapshot-item:first-child {
  border-left: 1px solid var(--line);
}

.snapshot-item strong {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.snapshot-item span {
  display: block;
  max-width: 210px;
  color: var(--muted);
  font-size: 0.78rem;
}

.home-process {
  position: relative;
  overflow: hidden;
  color: var(--black);
  background: linear-gradient(135deg, #faf7f0, #f0eadf);
  border-block: 1px solid rgba(6, 7, 8, 0.12);
}

.process-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 74px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.process-intro h2 {
  max-width: 590px;
  margin-bottom: 28px;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
}

.process-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: #65625d;
}

.process-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 22px;
  align-items: start;
}

.process-track {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 26px;
  width: 1px;
  background: linear-gradient(180deg, var(--red), rgba(6, 7, 8, 0.12));
}

.process-steps {
  display: grid;
  gap: 14px;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 54px 0.88fr 1fr;
  gap: 22px;
  align-items: start;
  min-height: 168px;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 168, 106, 0.1), transparent 34%),
    #fffaf1;
  border: 1px solid rgba(6, 7, 8, 0.13);
  box-shadow: 0 22px 65px rgba(44, 34, 20, 0.08);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease;
}

.process-step:hover {
  transform: translateX(8px);
  border-color: rgba(185, 23, 42, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(185, 23, 42, 0.1), transparent 38%),
    #fffaf1;
}

.process-step > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  border: 1px solid rgba(185, 23, 42, 0.28);
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(185, 23, 42, 0.07);
}

.process-step div > p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.16;
}

.process-step strong {
  display: block;
  color: #706d67;
  font-size: 0.74rem;
  font-weight: 600;
}

.process-step > p {
  margin: 0;
  color: #65625d;
  font-size: 0.84rem;
}

.process-summary {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(185, 23, 42, 0.1), transparent 42%),
    #fffaf1;
  border: 1px solid rgba(185, 23, 42, 0.22);
  box-shadow: 0 30px 80px rgba(44, 34, 20, 0.1);
}

.process-summary > span {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-summary ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-summary li {
  position: relative;
  padding-left: 22px;
  color: #625f59;
  font-size: 0.8rem;
}

.process-summary li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  aspect-ratio: 1;
  background: var(--red);
}

.pricing {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 168, 106, 0.13), transparent 34%),
    linear-gradient(180deg, #101216, var(--black-soft)),
    var(--black-soft);
  border-top: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 590px;
  padding: 34px;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.price-card-featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 168, 106, 0.14), transparent 45%),
    linear-gradient(145deg, rgba(185, 23, 42, 0.2), rgba(201, 168, 106, 0.05)),
    var(--panel);
  border-color: rgba(201, 168, 106, 0.58);
  box-shadow: 0 0 60px rgba(201, 168, 106, 0.1);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 24px;
  margin: 0;
  padding: 7px 12px;
  color: var(--black);
  background: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.price-value {
  margin: 24px 0 18px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-value span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
}

.price-description {
  min-height: 72px;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.price-features {
  display: grid;
  gap: 13px;
  margin: 30px 0;
  padding: 25px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.price-features li {
  position: relative;
  padding-left: 22px;
  color: rgba(247, 245, 240, 0.78);
  font-size: 0.8rem;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

.price-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--gold-line);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
}

.price-button {
  z-index: 0;
  width: 100%;
  margin-top: auto;
}

.extras {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  margin-top: 22px;
  padding: 38px;
  background: linear-gradient(100deg, rgba(185, 23, 42, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
}

.extras-heading .eyebrow {
  margin-bottom: 10px;
}

.extras-heading h3 {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 600;
}

.extras-heading p:not(.eyebrow) {
  max-width: 330px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.extras-panel {
  display: grid;
  gap: 20px;
}

.addon-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.addon-card {
  display: flex;
  min-height: 220px;
  padding: 24px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease;
}

.addon-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--gold-line);
}

.addon-card div {
  display: grid;
  gap: 10px;
}

.addon-card span {
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.addon-card strong {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 650;
}

.addon-card p {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.addon-card a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gold-line);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.addon-card a:hover {
  color: var(--white);
  border-color: var(--gold-light);
}

.addon-card a span {
  font-size: 0.85rem;
}

.extras-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
}

.extras-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.77rem;
}

.extras-list span {
  color: var(--muted);
}

.extras-list strong {
  color: var(--white);
  font-weight: 600;
  text-align: right;
}

.pricing-note {
  max-width: 850px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.included {
  background:
    linear-gradient(135deg, rgba(185, 23, 42, 0.08), transparent 42%),
    var(--black-soft);
  border-block: 1px solid var(--line);
}

.included-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 85px;
  align-items: start;
}

.included-copy {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.included-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.1rem, 3.75vw, 3.65rem);
}

.included-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.process-intro .text-link,
.included-copy .text-link,
.why-heading .text-link {
  margin-top: 34px;
}

.included-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.included-list div {
  display: grid;
  grid-template-columns: 54px 0.65fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}

.included-list div:hover {
  border-color: var(--gold-line);
  transform: translateX(4px);
}

.included-list span {
  color: var(--gold);
  font-size: 0.67rem;
}

.included-list strong {
  font-size: 1.05rem;
  font-weight: 600;
}

.included-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading > p,
.why-heading > p,
.about-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 170px;
  padding: 30px 24px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease), background 0.35s ease, border-color 0.35s ease;
}

.service-card::after,
.price-card::after,
.benefit-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(280px circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(241, 217, 159, 0.105), transparent 72%);
  transition: opacity 0.35s ease;
}

.service-card:hover::after,
.price-card:hover::after,
.benefit-card:hover::after,
.testimonial-card:hover::after {
  opacity: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(var(--red), var(--gold));
  transform: scaleY(0);
  transition: transform 0.35s var(--ease);
}

.service-card:hover {
  transform: translateX(5px);
  background: linear-gradient(90deg, rgba(185, 23, 42, 0.055), rgba(201, 168, 106, 0.035));
  border-color: var(--gold-line);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-number {
  color: var(--gold);
  font-size: 0.7rem;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.service-card p {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 7px 10px;
  color: rgba(250, 247, 240, 0.76);
  background: rgba(250, 247, 240, 0.045);
  border: 1px solid rgba(250, 247, 240, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover .service-tags li {
  border-color: rgba(201, 168, 106, 0.18);
  background: rgba(250, 247, 240, 0.055);
}

.card-arrow {
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}

.service-card:hover .card-arrow {
  color: var(--black);
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: rotate(45deg);
}

.why-us {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(201, 168, 106, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(185, 23, 42, 0.13), transparent 43%),
    var(--black-soft);
  border-block: 1px solid var(--line);
}

.glow-orb {
  position: absolute;
  left: -160px;
  bottom: -240px;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.16);
  filter: blur(100px);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 95px;
  align-items: center;
}

.why-heading h2 {
  margin-bottom: 26px;
  font-size: clamp(2.15rem, 3.7vw, 3.5rem);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-line);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28), 0 0 36px rgba(201, 162, 93, 0.06);
}

.benefit-icon {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--gold-line);
}

.benefit-card h3 {
  margin: 34px 0 10px;
  font-size: 1.22rem;
  font-weight: 600;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 22px;
}

.project-large {
  grid-column: 1 / -1;
}

.project figure {
  position: relative;
  height: 440px;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

.project-large figure {
  height: 600px;
}

.project figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  transition: border-color 0.35s ease;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: filter 0.5s ease;
  will-change: transform;
}

.project:hover img {
  filter: saturate(1);
}

html:not(.has-gsap) .project:hover img {
  transform: scale(1.035);
}

.project figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 35%, rgba(241, 217, 159, 0.1), transparent 65%);
  opacity: 0;
  transform: translateX(-35%);
  transition: opacity 0.45s ease, transform 0.75s var(--ease);
}

.project:hover figure::before {
  opacity: 1;
  transform: translateX(35%);
}

.project:hover figure::after {
  border-color: rgba(241, 217, 159, 0.24);
}

.project-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
}

.project-meta p {
  margin: 0 0 3px;
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-meta h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.project-meta > span {
  color: var(--muted);
  font-size: 0.73rem;
}

.testimonials {
  border-top: 1px solid var(--line);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 310px;
  padding: 34px;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.02));
}

.testimonial-card > p {
  margin: 0;
  color: rgba(250, 247, 240, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.testimonial-card div {
  display: grid;
  gap: 5px;
  margin-top: 38px;
}

.testimonial-card strong {
  font-size: 0.9rem;
}

.testimonial-card span {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.faq-heading h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.55rem);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 24px 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
}

.faq-list details:hover {
  transform: translateX(3px);
  border-color: rgba(201, 168, 106, 0.22);
}

.faq-list details[open] {
  border-color: var(--gold-line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(201, 168, 106, 0.028));
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold-light);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.25s var(--ease);
}

.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-list p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.about {
  background: linear-gradient(135deg, #faf7f0, #f0eadf);
  color: var(--black);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 168, 106, 0.24), transparent 36%),
    linear-gradient(145deg, #25060d, #090a0c 66%);
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid var(--gold-line);
}

.about-visual span {
  z-index: 1;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.about-visual strong {
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-light);
  font-size: clamp(9rem, 18vw, 15rem);
  line-height: 1;
  text-shadow: 0 0 38px rgba(201, 162, 93, 0.14);
}

.about-copy .eyebrow {
  color: var(--red);
}

.about-copy h2 {
  margin-bottom: 30px;
}

.about-copy > p {
  color: #625f59;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(7, 7, 7, 0.15);
}

.about-stats div {
  display: grid;
  gap: 4px;
}

.about-stats strong {
  color: var(--red);
  font-size: 2rem;
}

.about-stats span {
  color: #706d67;
  font-size: 0.78rem;
}

.contact {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: left;
  background:
    radial-gradient(circle at 50% 120%, rgba(185, 23, 42, 0.34), transparent 42%),
    radial-gradient(circle at 50% 5%, rgba(201, 168, 106, 0.14), transparent 30%),
    linear-gradient(180deg, #090a0c, #060708),
    var(--black);
}

.home-contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.home-contact-intro h2 {
  font-size: clamp(2.45rem, 5vw, 4.55rem);
}

.home-contact-intro > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--muted);
}

.home-contact-info {
  display: grid;
  gap: 10px;
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.home-contact-info span {
  color: var(--muted);
  font-size: 0.7rem;
}

.home-contact-info a {
  width: max-content;
  max-width: 100%;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-line);
  font-size: 0.8rem;
}

.home-inquiry-panel {
  text-align: left;
}

.home-inquiry-panel .form-heading h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.site-footer {
  padding: 30px 0;
  background: var(--black);
  border-top: 1px solid var(--line);
}

.contact-page {
  background:
    radial-gradient(circle at 10% 10%, rgba(185, 23, 42, 0.1), transparent 30rem),
    var(--black);
}

.contact-hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 90px) 0 110px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(185, 23, 42, 0.06), transparent 42%),
    var(--black);
}

.contact-glow {
  position: absolute;
  top: 8%;
  right: -10%;
  width: 600px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.12);
  filter: blur(110px);
  pointer-events: none;
}

.contact-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 85px;
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: calc(var(--header-height) + 55px);
  padding-top: 25px;
}

.contact-intro h1 {
  max-width: 600px;
  font-size: clamp(3rem, 5.6vw, 5.45rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-intro h1 em {
  display: block;
  margin-top: 0.14em;
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.contact-lead {
  max-width: 520px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.contact-details {
  display: grid;
  margin-top: 55px;
  border-top: 1px solid var(--line);
}

.contact-details > * {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details span {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details strong {
  color: rgba(250, 247, 240, 0.82);
  font-size: 0.82rem;
  font-weight: 500;
}

.contact-details a:hover strong {
  color: var(--gold-light);
}

.inquiry-panel {
  padding: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
  border: 1px solid var(--gold-line);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.34), 0 0 55px rgba(201, 168, 106, 0.06);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.inquiry-panel:focus-within {
  border-color: rgba(241, 217, 159, 0.62);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.34), 0 0 70px rgba(201, 168, 106, 0.08);
}

.form-heading {
  display: flex;
  gap: 22px;
  align-items: start;
  margin-bottom: 38px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.form-heading > span {
  color: var(--gold);
  font-size: 0.67rem;
}

.form-heading .eyebrow {
  margin-bottom: 5px;
}

.form-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.inquiry-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.inquiry-form label {
  display: grid;
  gap: 9px;
}

.inquiry-form label > span {
  color: rgba(250, 247, 240, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.inquiry-form label:focus-within > span {
  color: var(--gold-light);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  padding: 14px 15px;
  color: var(--white);
  background: var(--field-bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.inquiry-form input,
.inquiry-form select {
  min-height: 52px;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 145px;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #75736e;
}

.inquiry-form select {
  color-scheme: dark;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  background: var(--field-bg-focus);
  border-color: var(--gold);
  box-shadow: var(--focus-ring);
}

.form-submit {
  z-index: 0;
  width: 100%;
  margin-top: 5px;
}

.form-note {
  margin: -8px 0 0;
  color: #7e7b75;
  font-size: 0.65rem;
  text-align: center;
}

.form-note.is-ready {
  color: var(--gold-light);
}

.contact-process {
  padding: 105px 0;
  background: linear-gradient(135deg, #faf7f0, #f0eadf);
  color: var(--black);
}

.process-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 55px;
}

.process-heading .eyebrow {
  margin-top: 11px;
  color: var(--red);
}

.process-heading h2 {
  max-width: 720px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(6, 7, 8, 0.16);
}

.process-grid article {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid rgba(6, 7, 8, 0.16);
}

.process-grid article:first-child {
  border-left: 1px solid rgba(6, 7, 8, 0.16);
}

.process-grid span {
  color: var(--red);
  font-size: 0.67rem;
}

.process-grid h3 {
  margin: 45px 0 10px;
  font-size: 1.25rem;
}

.process-grid p {
  margin: 0;
  color: #66625b;
  font-size: 0.82rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-layout p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.footer-layout p:last-child {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  transition:
    opacity 0.85s var(--ease-soft),
    transform 0.85s var(--ease-soft),
    filter 0.85s var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* Laptop 16:10 (inclusiv ecranul local 1920 x 1200).
   Păstrează mesajul principal și acțiunile deasupra zonei de beneficii,
   fără să mărească inutil elementele pe un ecran cu densitate ridicată. */
@media (min-width: 981px) and (max-height: 1200px) {
  :root {
    --container: calc(100vw - 80px);
    --header-height: 80px;
  }

  .hero-media {
    background-position: center;
  }

  .hero-content {
    padding-block: calc(var(--header-height) + 34px) 132px;
  }

  h1 {
    max-width: 780px;
    font-size: clamp(4.8rem, 6.2vw, 6.65rem);
  }

  .hero-subtitle {
    max-width: 650px;
    margin-top: 28px;
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  }

  .hero-service-strip {
    margin-top: 22px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-proof div {
    min-height: 82px;
    padding-block: 16px;
  }

  .section {
    padding-block: 104px;
  }

  .intro {
    padding-block: 150px;
  }

  .snapshot-item {
    min-height: 128px;
    padding: 22px 28px;
  }

  .snapshot-item strong {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  }

  /* Mod fluid pentru laptop: randăm secțiunile lungi doar când se apropie
     de ecran și evităm blururile care obligă placa video să redeseneze continuu. */
  main > section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: auto 850px;
  }

  .hero::after,
  .hero-grain,
  .glow-orb,
  .contact-glow {
    display: none;
  }

  .hero-media {
    filter: saturate(1.02) contrast(1.02);
    transform: none;
    will-change: auto;
  }

  .site-header.is-scrolled,
  .hero-service-strip span,
  .hero-proof div {
    backdrop-filter: none;
  }

  .reveal {
    filter: none;
    transition:
      opacity 0.45s var(--ease-soft),
      transform 0.45s var(--ease-soft);
  }
}

@media (max-width: 980px) {
  .site-nav {
    gap: 18px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.97) 0%, rgba(7, 7, 7, 0.82) 55%, rgba(7, 7, 7, 0.48) 100%),
      linear-gradient(0deg, rgba(7, 7, 7, 0.94), transparent 45%);
  }

  .intro-layout,
  .section-heading,
  .why-layout,
  .about-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .snapshot-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .included-layout,
  .faq-layout,
  .process-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .included-copy,
  .faq-heading,
  .process-intro,
  .process-summary {
    position: static;
  }

  .process-board {
    grid-template-columns: 1fr;
  }

  .process-summary {
    order: -1;
  }

  .included-list div {
    grid-template-columns: 54px 1fr;
  }

  .included-list p {
    grid-column: 2;
  }

  .price-card {
    min-height: auto;
  }

  .price-description {
    min-height: auto;
  }

  .extras {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .extras-heading p:not(.eyebrow) {
    max-width: 620px;
  }

  .intro-copy {
    grid-column: auto;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .about-visual {
    min-height: 390px;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .home-contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 78px;
  }

  .container,
  .header-inner {
    width: min(100% - 28px, var(--container));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 14px 28px;
    background: rgba(7, 7, 7, 0.98);
    border-bottom: 1px solid var(--gold-line);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
    transition: transform 0.38s var(--ease-soft), opacity 0.25s ease, visibility 0.38s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav > a:not(.nav-cta) {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 18px;
    text-align: center;
  }

  .hero {
    min-height: 850px;
    align-items: flex-start;
  }

  .hero-media {
    background-position: 64% center;
    opacity: 0.66;
    filter: saturate(1.02) contrast(1.02);
    will-change: auto;
  }

  .site-header.is-scrolled,
  .hero-service-strip span,
  .hero-proof div {
    backdrop-filter: none;
  }

  .hero::after,
  .hero-grain,
  .glow-orb,
  .contact-glow {
    display: none;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(6, 7, 8, 0.94) 0%, rgba(6, 7, 8, 0.62) 48%, rgba(6, 7, 8, 0.88) 100%),
      linear-gradient(90deg, rgba(6, 7, 8, 0.72), transparent 82%);
  }

  .hero-content {
    padding-block: 145px 310px;
  }

  h1 {
    font-size: clamp(3rem, 15.5vw, 4.65rem);
    line-height: 0.93;
  }

  .hero-subtitle {
    margin-top: 30px;
    font-size: 1.04rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .hero-proof div {
    min-height: 66px;
    padding: 14px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 82px 0;
  }

  .intro-layout,
  .section-heading,
  .why-layout,
  .about-layout {
    gap: 30px;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .service-card {
    grid-template-columns: 38px 1fr;
    gap: 15px;
    min-height: 160px;
    padding: 25px 4px;
  }

  .service-card:hover {
    transform: translateX(0);
  }

  .service-card p {
    font-size: 0.82rem;
  }

  .card-arrow {
    display: none;
  }

  .benefit-grid,
  .portfolio-grid,
  .snapshot-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home-process {
    padding: 88px 0;
  }

  .process-layout {
    gap: 34px;
  }

  .process-board {
    gap: 16px;
  }

  .process-track {
    left: 23px;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    min-height: auto;
    padding: 22px 18px;
    box-shadow: 0 14px 42px rgba(44, 34, 20, 0.07);
  }

  .process-step:hover {
    transform: translateY(-3px);
  }

  .process-step > span {
    width: 48px;
  }

  .process-step > p {
    grid-column: 2;
  }

  .process-summary {
    padding: 24px 20px;
  }

  .snapshot-item {
    min-height: auto;
    padding: 26px 18px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .included-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .included-list div:hover,
  .faq-list details:hover {
    transform: none;
  }

  .included-list p {
    grid-column: auto;
  }

  .testimonial-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .faq-list details {
    padding: 22px 18px;
  }

  .price-card {
    padding: 28px 22px;
  }

  .price-card:hover,
  .addon-card:hover,
  .benefit-card:hover,
  .testimonial-card:hover {
    transform: none;
    box-shadow: none;
  }

  .extras {
    padding: 28px 22px;
  }

  .addon-services {
    grid-template-columns: 1fr;
  }

  .addon-card {
    min-height: auto;
  }

  .extras-list {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .project-large {
    grid-column: auto;
  }

  .project figure,
  .project-large figure {
    height: min(112vw, 450px);
  }

  .project:hover img {
    transform: none;
  }

  .project-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .about-visual {
    min-height: 330px;
  }

  .about-stats {
    gap: 12px;
  }

  .contact {
    padding: 96px 0;
  }

  .home-contact-intro h2 {
    font-size: clamp(2.25rem, 11vw, 3.75rem);
  }

  .footer-layout {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-layout p:last-child {
    text-align: left;
  }

  .contact-hero {
    padding: 125px 0 75px;
  }

  .contact-intro h1 {
    font-size: clamp(2.75rem, 14vw, 4.15rem);
  }

  .inquiry-panel {
    padding: 28px 20px;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
  }

  .inquiry-panel:focus-within {
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
  }

  .form-row,
  .process-heading,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: auto;
    border-left: 1px solid rgba(6, 7, 8, 0.16);
    border-bottom: 1px solid rgba(6, 7, 8, 0.16);
  }

  .process-grid h3 {
    margin-top: 25px;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero::after,
  .glow-orb,
  .contact-glow {
    animation: none !important;
  }

  .btn-primary::after,
  .nav-cta::after {
    display: none;
  }
}
