
@font-face {
  font-family: 'Panton Rust Heavy Base';
  font-style: normal;
  font-weight: bold;
  font-display: swap;
  src: url('../assets/fonts/panton-rust-heavy-base.woff2') format('woff2');
}

@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/archivo-black.woff2') format('woff2');
}

:root {
  --bg-cream: #F1EBE0;
  --bg-paper: #F5F1E8;
  --bg-soft:  #E8E1D2;
  --ink:      #0A0A0A;
  --ink-soft: #1A1A1A;
  --ink-muted:#3A3530;
  --gold:     #B8924A;
  --gold-deep:#8C6A2E;
  --gold-light:#D9B265;
  --mountain: #C7C2B8;
  --line:     #2D2D2D;
  --line-soft:rgba(10,10,10,0.12);
  --f-display: "Panton Rust Heavy Base", "Helvetica Neue", system-ui, sans-serif;
  --f-logo:    "Archivo Black", "Helvetica Neue", system-ui, sans-serif;
  --f-body:    "Manrope", system-ui, sans-serif;
  --f-serif:   "Fraunces", Georgia, serif;
  --container: 1280px;
  --pad:       clamp(20px, 4vw, 64px);
  --radius:    4px;
  --ease:      cubic-bezier(.2,.8,.2,1);
}
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font: inherit; color: inherit; }
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}
h1, h2, h3, h4 { font-family: var(--f-logo); font-weight: 900; line-height: 1.02; letter-spacing: -0.02em; text-transform: uppercase; }
em { font-family: var(--f-serif); font-style: italic; font-weight: 600; letter-spacing: -0.01em; text-transform: none; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--ink);
  color: var(--bg-cream);
  box-shadow: 0 6px 24px rgba(10,10,10,0.18);
  isolation: isolate;
}
.btn--gold::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
  z-index: -1;
}
.btn--gold:hover { color: var(--ink); }
.btn--gold:hover::before { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg-cream); }
.btn--sm  { padding: 10px 18px; font-size: 12px; }
.btn--lg  { padding: 20px 36px; font-size: 15px; }
.btn--xl  { padding: clamp(22px, 2.4vw, 30px) clamp(36px, 4vw, 56px); font-size: clamp(14px, 1.1vw, 17px); letter-spacing: 0.1em; }
.btn--full{ width: 100%; justify-content: center; }
.icon-btn {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.icon-btn:hover { background: var(--ink); color: var(--bg-cream); border-color: var(--ink); }
.section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section-head--light { color: var(--bg-cream); }
.section-head__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.section-head--light .section-head__eyebrow { color: var(--gold-light); }
.section-head__title {
  font-family: var(--f-logo);
  font-weight: 900;
  font-size: clamp(36px, 5.2vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.section-head__title--2line {
  font-family: var(--f-logo);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 60px);
}
.section-head__lede {
  margin-top: 22px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
}
.section-head--light .section-head__lede { color: rgba(241,235,224,0.78); }
.qm-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.qm-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.qm-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8100;
  max-height: 92svh;
  background: var(--bg-paper);
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -12px 60px rgba(10,10,10,0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.qm-modal.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 600px) {
  .qm-modal {
  left: 50%;
  right: auto;
  bottom: auto;
  top: 50%;
  width: min(560px, calc(100% - 32px));
  border-radius: 20px;
  transform: translate(-50%, calc(-50% + 24px));
  max-height: 88svh;
  }
  .qm-modal.is-open {
  transform: translate(-50%, -50%);
  }
}
.qm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 28px 0;
  flex-shrink: 0;
}
.qm-title {
  font-family: var(--f-display);
  font-size: clamp(22px, 4vw, 30px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 4px;
}
.qm-sub {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin: 0;
}
.qm-close {
  background: var(--bg-soft);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 16px;
  transition: background .15s;
  color: var(--ink-soft);
}
.qm-close:hover { background: var(--bg-soft); filter: brightness(.9); }
.qm-body {
  overflow-y: auto;
  padding: 20px 28px 32px;
  flex: 1;
}
.qm-form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.qm-form .field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.qm-form .field input,
.qm-form .field select,
.qm-form .field textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(10,10,10,0.2);
  border-radius: 0;
  padding: 10px 0;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.qm-form .field input:focus,
.qm-form .field select:focus,
.qm-form .field textarea:focus { border-color: var(--ink); }
.qm-form .field textarea { resize: none; min-height: 80px; }
.qm-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) { .qm-form .field-row { grid-template-columns: 1fr; } }
.qm-form .form-note {
  font-size: 12px;
  color: var(--ink-muted);
  text-align: center;
  margin: 14px 0 0;
}
.qm-form .btn--submit {
  width: 100%;
  padding: 18px;
  font-family: var(--f-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s, transform .1s;
}
.qm-form .btn--submit:hover { background: var(--gold-deep); }
.qm-form .btn--submit:active { transform: translateY(1px); }
.qm-form .btn--submit:disabled { opacity: .65; cursor: wait; }
@media (min-width: 600px) and (max-height: 900px) {
  .qm-modal { max-height: 96svh; }
  .qm-header { padding: 18px 24px 0; }
  .qm-title { font-size: 22px; }
  .qm-sub { font-size: 13px; }
  .qm-body { padding: 14px 24px 22px; }
  .qm-form .field { margin-bottom: 11px; gap: 4px; }
  .qm-form .field label { font-size: 10px; }
  .qm-form .field input,
  .qm-form .field select,
  .qm-form .field textarea { padding: 8px 0; font-size: 14px; }
  .qm-form .field textarea { min-height: 60px; }
  .qm-form .btn--submit { padding: 14px; font-size: 14px; margin-top: 4px; }
  .qm-form .form-note { margin-top: 10px; font-size: 11px; }
}
@media (min-width: 600px) and (max-height: 760px) {
  .qm-modal { max-height: 98svh; }
  .qm-header { padding: 14px 22px 0; }
  .qm-title { font-size: 20px; }
  .qm-body { padding: 10px 22px 18px; }
  .qm-form .field { margin-bottom: 8px; }
  .qm-form .field textarea { min-height: 50px; }
  .qm-form .btn--submit { padding: 12px; }
}
.utility-bar {
  position: sticky;
  top: 0;
  z-index: 101;
  background: var(--ink);
  color: var(--bg-cream);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 16px;
}
.utility-bar__left { display: flex; gap: 14px; }
.utility-bar__social {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  color: var(--bg-cream);
  opacity: 0.85;
  transition: color .2s, opacity .2s;
}
.utility-bar__social:hover { color: var(--gold-light); opacity: 1; }
.utility-bar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.utility-bar__divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.18);
}
.utility-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.utility-bar__link:hover { color: var(--gold-light); }
.utility-bar__label { opacity: 0.6; font-weight: 500; }
.utility-bar__value { font-weight: 600; letter-spacing: 0.01em; }
.utility-bar__arrow {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}
.header {
  position: sticky;
  top: 40px;
  z-index: 100;
  background: var(--bg-paper);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.header.is-scrolled { box-shadow: 0 8px 32px rgba(10,10,10,0.06); background: rgba(245,241,232,0.94); backdrop-filter: blur(10px); }
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 86px;
}
.logo {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  font-family: var(--f-logo);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  text-transform: none;
}
.logo__reg { font-size: 0.32em; margin-top: 0.2em; font-weight: 700; opacity: 0.7; }
.logo--image { display: inline-flex; align-items: center; }
.logo__img { height: clamp(28px, 3.4vw, 44px); width: auto; max-width: 220px; display: block; }
.nav__list {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 36px);
}
.nav__link {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .2s;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav__link:hover { color: var(--gold-deep); }
.nav__link:hover::after { width: 100%; }
.nav__cta-item { display: none; }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__mob-socials { display: none; }
.hamburger { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; position: relative; z-index: 101; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .3s, opacity .2s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
  z-index: 98;
}
.nav-overlay.is-open { opacity: 1; pointer-events: auto; }
@media (min-width: 1025px) { .nav-overlay { display: none; } }
body.menu-open .header,
body.menu-open .header.is-scrolled {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero {
  position: relative;
  background: var(--bg-cream);
  overflow: hidden;
}
.hero__image-link {
  display: block;
  width: 100%;
  line-height: 0;
}
.hero__image-link img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__mountains {
  position: absolute;
  left: 0; right: 0; bottom: 35%;
  width: 100%;
  height: clamp(180px, 24vw, 320px);
  opacity: 0.85;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}
.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(420px, 48vw, 700px);
  aspect-ratio: 2 / 1;
  pointer-events: none;
  filter: drop-shadow(0 14px 24px rgba(10,10,10,0.08));
}
.hero__visual svg { width: 100%; height: 100%; display: block; }
.hero__inner {
  position: relative;
  padding-block: clamp(72px, 11vw, 140px) clamp(56px, 8vw, 110px);
  text-align: center;
  max-width: 1080px;
  margin-inline: auto;
}
.hero--split { padding-block: clamp(24px, 3vw, 48px) 0; }
.hero__split {
  display: grid;
  grid-template-columns: minmax(0, 65fr) minmax(0, 35fr);
  grid-template-areas: "content art";
  align-items: start;
  gap: 0 clamp(24px, 3vw, 56px);
  width: 100%;
}
.hero__split > .hero__content {
  grid-area: content;
  align-self: start;
  text-align: left;
  padding-left: max(var(--pad), calc((100vw - var(--container)) / 2 + var(--pad)));
  padding-right: clamp(16px, 2vw, 40px);
  padding-top: clamp(16px, 2vw, 32px);
  padding-bottom: 0;
}
.hero__split > .hero__art { grid-area: art; align-self: center; }
.hero__ctas--inline {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.4vw, 20px);
  margin-top: clamp(24px, 2.4vw, 36px);
  padding-bottom: clamp(32px, 4vw, 56px);
  animation: fadeUp .8s var(--ease) 1s forwards;
  opacity: 0;
}
.hero__ctas--inline .btn {
  flex: 0 0 auto;
  min-width: clamp(200px, 18vw, 300px);
  justify-content: center;
}

.hero__split .hero__lede { margin-inline: 0; max-width: 560px; }
.hero__split .hero__ctas { justify-content: flex-start; }
.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  overflow: visible;
}
.hero__art img {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(380px, 58vh, 600px);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 60px rgba(10,10,10,0.18));
  opacity: 0;
  transform: translateY(30px) scale(.96);
  animation: fadeUp 1s var(--ease) .3s forwards;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .1s forwards;
}
.hero__title {
  font-family: var(--f-logo);
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--ink);
  text-wrap: balance;
  max-width: 800px;
}
@media (min-width: 1025px) {
  .hero__title {
    font-size: clamp(44px, 5vw, 64px);
    white-space: nowrap;
    max-width: none;
  }
}
.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp .9s var(--ease) forwards;
}
.hero__line:nth-child(1) { animation-delay: .25s; }
.hero__line:nth-child(2) { animation-delay: .4s; color: var(--gold); }
.hero__line:nth-child(3) { animation-delay: .55s; }
.hero__lede {
  margin-top: clamp(32px, 4vw, 48px);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  max-width: 640px;
  margin-inline: auto;
  color: var(--ink-soft);
  font-weight: 400;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .8s forwards;
}
.hero__pill {
  display: inline-block;
  background: var(--ink);
  color: var(--gold-light);
  padding: 2px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-family: var(--f-body);
  font-size: 0.95em;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(28px, 3.5vw, 40px);
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1s forwards;
}
.hero__inline-stats {
  margin-top: clamp(64px, 8vw, 110px);
  padding-top: clamp(40px, 4vw, 56px);
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1.2s forwards;
}
.hero-istat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  position: relative;
}
.hero-istat:not(:first-child) {
  border-left: 1px solid var(--line-soft);
  padding-left: clamp(20px, 2.5vw, 36px);
}
.hero-istat__num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: flex-start;
}
.hero-istat__num sup {
  font-size: 0.4em;
  color: var(--gold-deep);
  margin-left: 2px;
  font-weight: 700;
  margin-top: 0.2em;
}
.hero-istat__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero__usp-wrap {
  padding-block: 32px clamp(32px, 4vw, 56px);
  position: relative;
  background: var(--bg-cream);
  z-index: 2;
}
.usp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 48px);
  padding-top: 40px;
  border-top: 1px solid var(--line-soft);
}
.usp {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
}
.usp__icon {
  color: var(--gold-deep);
  transition: transform .4s var(--ease);
}
.usp:hover .usp__icon { transform: translateY(-4px) rotate(-4deg); }
.usp__bar {
  width: 1px; height: 28px;
  background: var(--gold);
}
.usp__title {
  font-family: var(--f-display);
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-transform: uppercase;
}
.marquee {
  border-block: 1px solid var(--ink);
  background: var(--bg-cream);
  padding-block: 22px;
  overflow: hidden;
  position: relative;
  margin-top: 0;
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
  animation: marquee 38s linear infinite;
}
.marquee__track > span:nth-child(even) { color: var(--gold); font-size: 0.7em; align-self: center; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.services {
  padding-block: clamp(56px, 7vw, 96px);
  background: var(--bg-paper);
  position: relative;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.service-card {
  background: var(--bg-paper);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: background .35s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 0;
  background: var(--ink);
  transition: height .45s var(--ease);
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; transition: color .35s var(--ease); }
.service-card:hover::before { height: 100%; }
.service-card:hover { color: var(--bg-cream); }
.service-card:hover .service-card__num,
.service-card:hover .service-card__tags li { color: var(--gold-light); border-color: var(--gold-light); }
.service-card__num {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 14px;
}
.service-card__title {
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
}
.service-card__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.service-card:hover .service-card__text { color: rgba(241,235,224,0.85); }
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.service-card__tags li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 99px;
  color: var(--gold-deep);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: auto;
  transition: gap .3s var(--ease);
}
.service-card:hover .service-card__link { color: var(--gold-light); gap: 14px; }
.service-card--feature {
  grid-column: span 1;
}
.stats {
  background: var(--ink);
  color: var(--bg-cream);
  padding-block: clamp(48px, 5vw, 72px) clamp(24px, 3vw, 40px);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid rgba(241,235,224,0.18);
  padding-left: clamp(16px, 2vw, 28px);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gold-light);
}
.stat__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(241,235,224,0.7);
}
.process {
  background: var(--ink);
  color: var(--bg-cream);
  padding-block: clamp(24px, 3vw, 40px) clamp(48px, 5vw, 72px);
  position: relative;
}
.process::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(184,146,74,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.7;
  pointer-events: none;
}
.process > * { position: relative; }
.process .section-head__title { color: var(--bg-cream); }
.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(241,235,224,0.12);
  border: 1px solid rgba(241,235,224,0.12);
}
.process-step {
  background: var(--ink);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  transition: background .35s var(--ease);
}
.process-step:hover { background: var(--ink-soft); }
.process-step__num {
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  letter-spacing: -0.04em;
  flex: 0 0 auto;
  transition: color .35s var(--ease);
}
.process-step:hover .process-step__num { color: var(--gold); }
.process-step__body h3 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 10px;
}
.process-step__body p {
  color: rgba(241,235,224,0.7);
  font-size: 15px;
  line-height: 1.6;
}
.refs {
  background: var(--bg-paper);
  padding-block: clamp(40px, 4vw, 64px) clamp(32px, 3vw, 48px);
  overflow: hidden;
}
.refs .section-head { text-align: center; margin-inline: auto; }
.ref-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: start;
}
.ref-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .55s var(--ease);
  min-width: 0;
  width: 100%;
}
.ref-card:hover { transform: translateY(-10px) scale(1.02); z-index: 2; }
.ref-card__side {
  position: absolute;
  right: 0;
  top: 0;
  height: 320px;
  width: 24px;
  background: var(--ink);
  color: var(--bg-cream);
  font-family: var(--f-display);
  font-size: 9px;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  z-index: 3;
  white-space: nowrap;
  padding-block: 10px;
}
.ref-card__num {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 14px;
  padding: 8px 14px;
  letter-spacing: 0.05em;
  z-index: 4;
}
.ref-card__shot {
  width: 100%;
  height: 320px;
  min-height: 320px;
  max-height: 320px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid var(--line-soft);
  box-shadow: 0 18px 40px rgba(10,10,10,0.12);
  position: relative;
  overflow: hidden;
  margin-right: 0;
  background: #fff;
  box-sizing: border-box;
}
.ref-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .6s var(--ease);
}
.ref-card:hover .ref-card__shot img { transform: scale(1.04); }
.ref-shot--solar { background: #fff; padding: 28px 18px 18px; }
.ref-shot--solar .rs-bar { height: 8px; background: linear-gradient(90deg,#1a3a6e 60%,#cf6b1f); margin-bottom: 14px; }
.ref-shot--solar .rs-card {
  height: 64px; border-radius: 4px; padding: 8px 10px; margin-bottom: 8px;
  display: flex; align-items: flex-end;
  font-family: var(--f-display); font-size: 9px; color: #fff; letter-spacing: 0.05em;
}
.ref-shot--solar .rs-card--blue { background: linear-gradient(135deg, #1a3a6e, #0f254a); }
.ref-shot--solar .rs-card--dark { background: #1a1f2c; height: 36px; display: inline-block; width: 48%; margin-right: 4%; }
.ref-shot--solar .rs-card--mid  { background: #2a3a5e; height: 36px; display: inline-block; width: 48%; }
.ref-shot--solar .rs-block {
  margin-top: 14px; height: 130px;
  background: repeating-linear-gradient(90deg, #e8e5dd 0 30px, #fff 30px 60px);
  border-radius: 2px;
}
.ref-shot--electric { background: #fff; padding: 0; }
.ref-shot--electric .rs-banner {
  background: #f9d537; padding: 12px 14px 12px 56px;
  font-family: var(--f-display); font-size: 10px; color: #0a0a0a; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ref-shot--electric .rs-cta {
  display: inline-block; background: #f9d537; padding: 6px 12px;
  margin: 12px; font-family: var(--f-display); font-size: 10px; color: #0a0a0a;
}
.ref-shot--electric .rs-photo {
  height: 130px;
  background: linear-gradient(135deg, #2a2520, #0a0a0a);
  margin: 0 12px;
  border-radius: 2px;
  position: relative;
}
.ref-shot--electric .rs-photo::after {
  content: "";
  position: absolute; inset: 20% 30%;
  background: radial-gradient(circle, rgba(249,213,55,0.4), transparent 70%);
}
.ref-shot--electric .rs-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 6px;
  background: #0a0a0a; color: #fff; padding: 14px 12px;
  margin-top: 14px;
}
.ref-shot--electric .rs-stats > div { text-align: center; }
.ref-shot--electric .rs-stats strong { font-family: var(--f-display); display: block; font-size: 16px; color: #f9d537; }
.ref-shot--electric .rs-stats span { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }
.ref-shot--market { background: #f5f5f5; padding: 0; }
.ref-shot--market .rs-hero {
  background: linear-gradient(180deg, #1a1a1a, #2a2a2a);
  height: 90px;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--f-display); font-size: 11px; letter-spacing: 0.05em;
  position: relative;
  padding-left: 48px;
}
.ref-shot--market .rs-hero::before {
  content: ""; position: absolute; left: 50px; top: 12px;
  width: 26px; height: 16px;
  background: linear-gradient(90deg,#cf2a2a 33%,#fff 33% 66%,#1a8a3a 66%);
  border-radius: 2px;
}
.ref-shot--market .rs-search {
  height: 30px; background: #fff; margin: 12px;
  border: 1px solid #e0e0e0; border-radius: 2px;
  position: relative;
}
.ref-shot--market .rs-search::after {
  content: "Keresés..."; position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  font-size: 9px; color: #999;
}
.ref-shot--market .rs-cats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 6px;
  padding: 0 12px;
}
.ref-shot--market .rs-cats > div {
  height: 50px;
  background: linear-gradient(135deg, #4a8a3a, #2a6a1a);
  border-radius: 2px;
}
.ref-shot--market .rs-cats > div:nth-child(2) { background: linear-gradient(135deg, #c0a060, #806040); }
.ref-shot--market .rs-cats > div:nth-child(3) { background: linear-gradient(135deg, #8a4a3a, #5a2a1a); }
.ref-shot--market .rs-cats > div:nth-child(4) { background: linear-gradient(135deg, #6a4a8a, #3a2a5a); }
.ref-shot--market .rs-split {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-top: 12px;
}
.ref-shot--market .rs-split__col {
  height: 100px;
  background: linear-gradient(135deg, #2a4a8a, #1a2a5a);
  display: grid; place-items: center;
  color: #fff; font-family: var(--f-display); font-size: 9px;
}
.ref-shot--market .rs-split__col--alt { background: linear-gradient(135deg, #3a8a4a, #1a5a2a); }
.ref-shot--reiki { background: #fff; padding: 0; }
.ref-shot--reiki .rs-headline {
  background: #fff;
  padding: 18px 14px 18px 56px;
  font-family: var(--f-display); font-size: 13px; line-height: 1.3;
  color: #0a0a0a; letter-spacing: -0.02em;
}
.ref-shot--reiki .rs-portrait {
  height: 130px;
  background: radial-gradient(ellipse at center, rgba(232,119,40,0.25), transparent 60%), linear-gradient(135deg, #c5a890, #6a4a3a);
  margin: 0 14px;
}
.ref-shot--reiki .rs-services {
  background: #0a0a0a; color: #fff; padding: 14px;
  margin-top: 14px;
}
.ref-shot--reiki .rs-services > span {
  display: block; font-family: var(--f-display); font-size: 10px; color: #e87728;
  margin-bottom: 10px; letter-spacing: 0.08em;
}
.ref-shot--reiki .rs-svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 6px;
}
.ref-shot--reiki .rs-svc-grid > div {
  height: 32px;
  background: rgba(232,119,40,0.1);
  border-left: 2px solid #e87728;
}
.ref-card__title {
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: -0.01em;
  text-align: center;
  margin-top: 4px;
  padding-inline: 8px;
  line-height: 1.15;
}
.ref-card__text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: center;
  padding-inline: 8px;
  padding-bottom: 8px;
}
.testi {
  background: var(--bg-cream);
  padding-block: clamp(40px, 4vw, 64px);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.testi-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  padding: clamp(24px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 12px; right: 24px;
  font-family: var(--f-serif);
  font-size: 96px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(10,10,10,0.1); }
.testi-card blockquote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--ink);
}
.testi-card figcaption {
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}
.testi-card__name { font-family: var(--f-display); font-size: 14px; letter-spacing: 0.04em; }
.testi-card__role { font-size: 13px; color: var(--ink-muted); }
.packages {
  background: var(--ink);
  color: var(--bg-cream);
  padding-block: clamp(56px, 7vw, 96px);
  position: relative;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pkg-card {
  background: var(--ink-soft);
  border: 1px solid rgba(241,235,224,0.12);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.pkg-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.pkg-card--featured {
  background: linear-gradient(170deg, #1f1b14 0%, #0a0a0a 100%);
  border-color: var(--gold);
  transform: translateY(-12px);
}
.pkg-card__badge {
  position: absolute; top: 0; right: 24px;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--ink);
  padding: 6px 14px;
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.pkg-card__head h3 {
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.02em;
  color: var(--bg-cream);
}
.pkg-card--featured .pkg-card__head h3 { color: var(--gold-light); }
.pkg-card__sub {
  display: block;
  font-size: 13px;
  color: rgba(241,235,224,0.6);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.pkg-card__price {
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1;
  color: var(--bg-cream);
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.pkg-card__currency { font-size: 0.38em; margin-bottom: 0.22em; color: var(--gold-light); font-family: var(--f-body); font-weight: 700; letter-spacing: 0.04em; }
.pkg-card__per { font-size: 0.32em; font-family: var(--f-body); font-weight: 500; align-self: flex-end; margin-bottom: 0.4em; color: rgba(241,235,224,0.6); }
.pkg-card__list {
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid rgba(241,235,224,0.12);
  padding-top: 22px;
  flex-grow: 1;
}
.pkg-card__list li {
  font-size: 14px;
  color: rgba(241,235,224,0.85);
  padding-left: 22px;
  position: relative;
}
.pkg-card__list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--gold);
}
.pkg-card .btn--ghost {
  color: var(--gold-light);
  border-color: var(--gold);
}
.pkg-card .btn--ghost:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.pkg-custom-cta {
  grid-column: 1 / -1;
  margin-top: 6px;
}
.pkg-custom-cta__label {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.8vw, 24px);
  letter-spacing: -0.01em;
  color: var(--bg-cream);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
}
.btn--custom-quote {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 32px;
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  color: var(--gold-light);
  font-family: var(--f-display);
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.btn--custom-quote:hover {
  background: var(--gold);
  color: var(--ink);
}
.cta-banner {
  background: var(--bg-cream);
  padding-block: clamp(48px, 5vw, 80px);
}
.cta-banner__inner {
  background: var(--gold);
  color: var(--ink);
  padding: clamp(36px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.5fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,10,10,0.06) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.cta-banner__inner > * { position: relative; }
.cta-banner__text h2 {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.cta-banner__text p {
  margin-top: 14px;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-soft);
  max-width: 540px;
}
.cta-banner .btn--gold {
  background: var(--ink);
  color: var(--bg-cream);
}
.cta-banner .btn--gold::before { background: var(--bg-cream); }
.cta-banner .btn--gold:hover { color: var(--ink); }
.contact {
  background: var(--bg-paper);
  padding-block: clamp(56px, 7vw, 96px);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact__title {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 18px;
  margin-bottom: 24px;
  text-wrap: balance;
}
.contact__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
  max-width: 420px;
}
.contact__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid var(--line-soft);
  padding-top: 28px;
}
.contact__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.contact__list a, .contact__list span:not(.contact__label) {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink);
  transition: color .2s;
}
.contact__list a:hover { color: var(--gold-deep); }
.contact__form {
  background: var(--bg-cream);
  border: 1px solid var(--line-soft);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--ink);
  padding: 10px 0;
  font-size: 16px;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; }
.phone-info { font-size: 12px; line-height: 1.5; padding: 7px 10px; background: rgba(200,168,75,0.08); border: 1px solid rgba(200,168,75,0.3); border-left: 3px solid var(--gold, #C8A84B); border-radius: 6px; }
.field__err { font-size: 12px; color: #d63031; line-height: 1.4; font-weight: 600; }
.field__err[hidden] { display: none; }
.qm-form .phone-info, .qm-form .field__err { font-size: 11px; }
.form-note { font-size: 12px; color: var(--ink-muted); text-align: center; margin-top: 4px; }
.footer {
  background: var(--ink);
  color: var(--bg-cream);
  padding-block: clamp(48px, 5vw, 72px) 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(241,235,224,0.12);
}
.footer__brand p {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(241,235,224,0.6);
  max-width: 280px;
  line-height: 1.5;
}
.logo--light { color: var(--bg-cream); }
.footer__col h4 {
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  color: var(--gold-light);
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(241,235,224,0.75); transition: color .2s; }
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(241,235,224,0.55);
}
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: var(--gold-light); }
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1280px) {
  .nav__list { gap: clamp(14px, 1.6vw, 24px); }
  .nav__link { font-size: 12px; letter-spacing: 0.1em; }
}
@media (max-width: 1180px) {
  .service-grid, .testi-grid, .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .ref-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 20px; }
  .ref-card { width: 100%; min-width: 0; }
  .ref-card__shot { width: 100%; box-sizing: border-box; }
  .process-list { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
  .pkg-card--featured { transform: translateY(0); }
  .pkg-card--featured:hover { transform: translateY(-6px); }
  .header__inner { gap: 20px; }
}
@media (max-width: 1024px) {
  .nav {
  position: fixed;
  top: 0; right: 0;
  bottom: 0;
  width: min(86vw, 420px);
  background: var(--ink);
  color: var(--bg-cream);
  padding: 110px 36px 36px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  z-index: 99;
  box-shadow: -20px 0 60px rgba(0,0,0,0.25);
  }
  .nav.is-open { transform: translateX(0); }
  .nav { z-index: 99; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .nav__list { flex-direction: column; gap: 22px; align-items: flex-start; }
  .nav__link { color: var(--bg-cream); font-size: 18px; letter-spacing: 0.08em; }
  .nav__link::after { background: var(--gold-light); }
  .nav__cta-item { display: block; width: 100%; margin-bottom: 8px; }
  .nav__link--cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: var(--gold);
  color: #fff !important;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1em;
  }
  .nav__link--cta::after { display: none; }
  .nav__link--cta:hover { background: var(--gold-deep); color: #fff !important; }
  .hamburger { display: flex; }
  .header__inner { grid-template-columns: auto 1fr; gap: 16px; }
  .header__actions { gap: 8px; justify-content: flex-end; width: 100%; margin-right: 4px; }
  .header__search-btn { display: none; }
  .header__mob-socials { display: flex; align-items: center; gap: 4px; }
  .hero__visual { right: -18%; width: clamp(380px, 60vw, 620px); opacity: 0.65; }
  .hero__content { position: relative; z-index: 1; }
  .hero__title { font-size: clamp(46px, 9.2vw, 92px); }
}
@media (max-width: 860px) {
  .hero__inline-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .hero-istat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .utility-bar__left { display: none; }
  .utility-bar__right { width: 100%; justify-content: space-between; gap: 8px; }
  .utility-bar__label { display: none; }
  .utility-bar__value { font-size: 12px; letter-spacing: 0.02em; }
  .header__inner { min-height: 72px; }
  .header__actions .btn--sm { padding: 9px 14px; font-size: 11px; }
  .hero__visual { display: none; }
  .hero__title { font-size: clamp(40px, 11vw, 72px); }
  .hero__lede { font-size: clamp(16px, 2.2vw, 19px); }
  .hero--split { padding-block: 0; }
  .hero__split {
  grid-template-columns: 1fr;
  grid-template-areas: "art" "content";
  gap: 0;
  }
  .hero__split > .hero__content {
  text-align: center;
  padding-inline: var(--pad);
  padding-block: clamp(24px, 5vw, 48px) 0;
  }
  .hero__split .hero__lede { margin-inline: auto; }
  .hero__ctas--inline,
  .hero__split .hero__ctas--inline {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 12px;
  padding-bottom: clamp(40px, 8vw, 72px);
  }
  .hero__ctas--inline .btn {
  flex: 1 1 0;
  min-width: 0;
  max-width: 260px;
  padding-inline: 18px;
  font-size: 13px;
  white-space: nowrap;
  justify-content: center;
  }
  .hero__art { order: 0; }
  .hero__art img { max-width: 100%; }
  .usp-strip { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
  .contact__inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner__inner { grid-template-columns: 1fr; text-align: left; gap: 24px; }
  .cta-banner .btn--lg { width: max-content; }
  .marquee__track { font-size: clamp(20px, 4vw, 28px); animation-duration: 28s; }
  .ref-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .ref-card { width: 100%; min-width: 0; }
  .ref-card__shot { width: 100%; box-sizing: border-box; }
}
@media (max-width: 680px) {
  .service-grid, .testi-grid, .pkg-grid, .ref-grid { grid-template-columns: 1fr; gap: 1px; }
  .ref-grid { gap: 40px; }
  .field-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .ref-card { width: 100%; min-width: 0; }
  .ref-card:hover { transform: translateY(-6px); }
  .ref-card__shot { width: 100%; margin-right: 0; height: 300px; min-height: 300px; max-height: 300px; box-sizing: border-box; }
  .ref-card__side { right: auto; left: 0; top: 0; transform: rotate(0); writing-mode: horizontal-tb; height: 28px; width: auto; min-height: auto; padding: 0 12px; min-width: 100px; font-size: 10px; }
  .ref-card__num { left: auto; right: 0; top: 0; }
  .pkg-card__badge { right: 50%; transform: translate(50%, -50%); }
}
@media (max-width: 480px) {
  :root { --pad: 18px; }
  .hero__inline-stats { grid-template-columns: 1fr 1fr; gap: 24px 16px; padding-top: 28px; margin-top: 48px; }
  .hero-istat__num { font-size: 32px; }
  .hero-istat__label { font-size: 10px; letter-spacing: 0.1em; }
  .utility-bar__inner { min-height: 36px; }
  .utility-bar__value { font-size: 11px; }
  .utility-bar__arrow { width: 16px; height: 16px; font-size: 10px; }
  .header { top: 36px; }
  .logo { font-size: 28px; }
  .header__inner { min-height: 64px; gap: 8px; }
  .header__actions .btn--sm { display: none; }
  .icon-btn { width: 36px; height: 36px; }
  .hero { padding-top: 32px; }
  .hero__inner { padding-block: 28px 56px; }
  .hero__title { font-size: clamp(36px, 13vw, 56px); letter-spacing: -0.03em; }
  .hero__eyebrow { font-size: 11px; margin-bottom: 18px; letter-spacing: 0.16em; }
  .hero__lede { font-size: 16px; }
  .hero__pill { padding: 1px 10px; }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__ctas .btn { justify-content: center; }
  .hero__ctas--inline .btn { max-width: 100%; width: 100%; }
  .usp-strip { padding-top: 28px; }
  .usp__title { font-size: 12px; letter-spacing: 0.04em; }
  .usp__icon svg { width: 32px; height: 32px; }
  .usp__bar { height: 22px; }
  .marquee__track { font-size: 18px; gap: 24px; animation-duration: 22s; }
  .section-head { margin-bottom: 36px; }
  .section-head__title { font-size: clamp(30px, 9vw, 44px); }
  .section-head__lede { font-size: 15px; }
  .section-head__eyebrow { font-size: 11px; letter-spacing: 0.18em; margin-bottom: 14px; }
  .service-card { padding: 26px 22px; }
  .service-card__title { font-size: 22px; }
  .service-card__text { font-size: 14px; }
  .stat__num { font-size: clamp(40px, 12vw, 56px); }
  .stat__label { font-size: 12px; }
  .process-step { flex-direction: column; gap: 12px; padding: 26px 22px; }
  .process-step__num { font-size: 44px; }
  .ref-card__shot { width: 100%; height: 260px; min-height: 260px; max-height: 260px; box-sizing: border-box; }
  .ref-card__shot img { object-position: top center; }
  .testi-card { padding: 24px 22px; }
  .testi-card blockquote { font-size: 16px; }
  .pkg-card { padding: 28px 24px; }
  .pkg-card__price { font-size: 48px; }
  .cta-banner__inner { padding: 32px 24px; }
  .cta-banner__text h2 { font-size: clamp(28px, 8vw, 40px); }
  .cta-banner .btn--lg { width: 100%; justify-content: center; padding: 16px 22px; font-size: 13px; }
  .contact__title { font-size: clamp(26px, 8vw, 38px); }
  .contact__title br { display: none; }
  .contact__form { padding: 24px 20px; }
  .contact__list a, .contact__list span:not(.contact__label) { font-size: 18px; }
  .footer { padding-block: 48px 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 24px 16px; padding-bottom: 36px; }
  .footer__legal { flex-wrap: wrap; gap: 14px; }
}
@media (max-width: 360px) {
  .hero__title { font-size: clamp(32px, 14vw, 48px); }
  .section-head__title { font-size: clamp(26px, 9vw, 36px); }
  .stats__grid { grid-template-columns: 1fr; gap: 22px; }
  .stat { border-left: 0; padding-left: 0; }
  .footer__top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .marquee__track { animation: none; }
}
#scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--ink, #111);
  color: var(--bg-cream, #f5efe6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  z-index: 950;
  -webkit-tap-highlight-color: transparent;
}
#scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scroll-top-btn:hover {
  background: var(--gold, #c9a24b);
  color: var(--ink, #111);
}
#scroll-top-btn:focus-visible {
  outline: 2px solid var(--gold, #c9a24b);
  outline-offset: 3px;
}
@media (max-width: 640px) {
  #scroll-top-btn { right: 14px; bottom: 14px; width: 44px; height: 44px; }
}
