:root {
  --ink: #f7f3ea;
  --muted-ink: #bdb7aa;
  --paper: #080808;
  --soft: #141414;
  --surface: #1b1b1b;
  --surface-lift: #202020;
  --line: rgba(212, 175, 55, 0.35);
  --line-soft: rgba(212, 175, 55, 0.18);
  --navy: #080808;
  --gold: #d4af37;
  --gold-dark: #b8860b;
  --gold-soft: #e0b94b;
  --white: #f7f3ea;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(8, 8, 8, 0.94);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.9rem;
  line-height: 1.2;
}

.brand small {
  color: currentColor;
  opacity: 0.74;
  font-size: 0.72rem;
}

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

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-cta {
  padding: 11px 15px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(212, 175, 55, 0.68);
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.76) 34%, rgba(8, 8, 8, 0.34) 62%, rgba(8, 8, 8, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.7) 0%, rgba(8, 8, 8, 0.08) 50%, rgba(8, 8, 8, 0.2) 100%),
    url("assets/signature-hero-project.png") center / cover;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent 74%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 140px 0 78px;
}

.hero-copy-block {
  width: min(560px, 100%);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.72);
}

.hero-copy-block::before {
  content: "";
  display: block;
  width: 78px;
  height: 1px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--gold-soft), rgba(212, 175, 55, 0.12));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 650;
}

.hero-title {
  display: grid;
  gap: clamp(4px, 0.7vw, 10px);
  max-width: 720px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-word {
  display: block;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-word-renovate {
  color: var(--ink);
  font-size: clamp(2.95rem, 5.85vw, 5.75rem);
  font-weight: 520;
}

.hero-word-with {
  justify-self: start;
  padding: 6px 15px 7px;
  border: 1px solid rgba(224, 185, 75, 0.7);
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.055);
  font-size: clamp(0.88rem, 1.22vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
}

.hero-word-confidence {
  color: var(--ink);
  font-size: clamp(2.3rem, 4.55vw, 4.45rem);
  font-weight: 680;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 620;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-subtitle {
  max-width: 520px;
  color: rgba(247, 243, 234, 0.9);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.52;
}

.hero-copy {
  max-width: 500px;
  color: var(--muted-ink);
  font-size: 0.94rem;
}

.service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 780;
  letter-spacing: 0.02em;
}

.service-line span {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 24px 0 0;
  max-width: 620px;
}

.hero-actions .button {
  min-width: 190px;
}

.hero-actions .button.primary {
  min-width: 290px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-dark));
  color: #080808;
  border-color: rgba(224, 185, 75, 0.64);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.18);
}

.button.primary:hover {
  background: linear-gradient(135deg, #ecc85a, #d4af37, #b8860b);
  border-color: rgba(224, 185, 75, 0.9);
  box-shadow: 0 18px 42px rgba(212, 175, 55, 0.26);
}

.button.secondary {
  border-color: rgba(212, 175, 55, 0.56);
  color: var(--white);
}

.button.secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.whatsapp-button {
  background: rgba(212, 175, 55, 0.055);
  border-color: rgba(212, 175, 55, 0.72);
  color: var(--white);
}

.whatsapp-button:hover {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-dark));
  border-color: rgba(224, 185, 75, 0.9);
  color: #080808;
}

.button.compact {
  margin-top: 18px;
}

.button.full {
  width: 100%;
}

.cta-email {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(224, 185, 75, 0.48);
}

.cta-email:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.cta-email.block {
  display: table;
  min-height: 0;
  margin-top: 13px;
}

.cta-email.form-email {
  grid-column: 1 / -1;
  justify-self: center;
  min-height: 0;
  margin-top: 2px;
  font-size: 0.84rem;
}

.trust-line {
  color: rgba(245, 242, 234, 0.74);
  font-size: 0.95rem;
}

.trust-bar {
  background: #0d0d0d;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}

.trust-grid span {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 18px;
  border-left: 1px solid var(--line-soft);
  color: var(--muted-ink);
  font-size: 0.9rem;
  font-weight: 750;
  text-align: center;
}

.trust-grid span:hover {
  color: var(--gold-soft);
}

.trust-grid span:last-child {
  border-right: 1px solid var(--line-soft);
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.muted {
  background: var(--soft);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.prose {
  color: var(--muted-ink);
  font-size: 1.06rem;
}

.prose p:last-child,
.section-heading p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.wide {
  max-width: 900px;
}

.section-heading p {
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card,
.price-card,
.mini-card,
.audience-grid article {
  background: linear-gradient(180deg, rgba(224, 185, 75, 0.035), rgba(247, 243, 234, 0.012)), var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card:hover,
.price-card:hover,
.mini-card:hover,
.audience-grid article:hover {
  border-color: rgba(224, 185, 75, 0.62);
}

.service-card {
  padding: 26px;
}

.card-number {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-card p,
.service-card li,
.mini-card p,
.audience-grid p,
.price-card p,
.trust-section p,
.project-content p,
.project-content dd {
  color: var(--muted-ink);
}

ul {
  padding-left: 19px;
  margin: 18px 0 0;
}

li + li {
  margin-top: 8px;
}

.project-grid {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.project-card {
  display: grid;
  grid-template-columns: minmax(420px, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(34px, 5.8vw, 72px);
  align-items: center;
  overflow: visible;
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(145deg, rgba(240, 217, 138, 0.055), rgba(247, 243, 234, 0.012) 42%, rgba(8, 8, 8, 0.1)),
    var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 16px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 185, 75, 0.62);
  box-shadow: 0 38px 104px rgba(0, 0, 0, 0.44);
}

.project-images {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(140px, 0.3fr);
  grid-template-rows: minmax(260px, 1fr) minmax(150px, 0.5fr);
  gap: 16px;
  min-height: 430px;
  background: transparent;
}

.project-images img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
}

.project-images img:first-child {
  grid-row: 1 / 3;
}

.project-images.single-image {
  grid-template-columns: 1fr;
  grid-template-rows: minmax(430px, 1fr);
}

.project-images.single-image img:first-child {
  grid-column: 1;
  grid-row: 1;
}

.project-images img:last-child {
  grid-column: 2;
  grid-row: 2;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.project-images img.image-focus-right {
  object-position: 72% center;
}

.project-card:hover .project-images img:first-child {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.03);
  box-shadow: 0 32px 76px rgba(0, 0, 0, 0.44);
}

.project-card:hover .project-images img:last-child {
  transform: scale(1.035);
}

.project-images img.is-missing {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(247, 243, 234, 0.05), rgba(212, 175, 55, 0.22)),
    #181818;
  color: transparent;
}

.project-images img.is-missing::before {
  content: attr(data-fallback);
}

.project-content {
  padding: clamp(6px, 1vw, 16px) 0;
}

.project-content h3 {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.project-content h3 span {
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  font-weight: 560;
  line-height: 1.02;
}

.project-content h3 small {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.055);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.project-content h3 small em {
  padding-left: 10px;
  border-left: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.12em;
}

dl {
  display: grid;
  gap: 0;
  margin: 0 0 clamp(22px, 3vw, 30px);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

dl div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

dd {
  margin: 0;
}

.project-content p {
  max-width: 54ch;
  margin-bottom: clamp(22px, 3vw, 30px);
  line-height: 1.78;
}

.project-content strong {
  display: inline-flex;
  max-width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 12px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.055)),
    rgba(8, 8, 8, 0.2);
  box-shadow: inset 0 1px 0 rgba(247, 243, 234, 0.06);
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.45;
}

.about-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(8, 8, 8, 0) 38%),
    var(--navy);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-section .prose {
  color: rgba(245, 242, 234, 0.74);
}

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

.mini-card {
  padding: 24px;
}

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

.audience-grid article {
  padding: 28px;
  min-height: 205px;
}

.catalogue-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(224, 185, 75, 0.1), rgba(8, 8, 8, 0) 34%),
    var(--soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.catalogue-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 7vw, 82px);
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(224, 185, 75, 0.08), rgba(247, 243, 234, 0.018) 42%, rgba(212, 175, 55, 0.04)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.catalogue-intro {
  position: relative;
  padding-right: clamp(0px, 3vw, 34px);
}

.catalogue-intro::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(rgba(224, 185, 75, 0.72), rgba(212, 175, 55, 0.08));
}

.catalogue-subtitle {
  color: var(--gold-soft);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}

.product-entry-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.product-entry-icon {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: repeat(2, 7px);
  gap: 3px;
}

.product-entry-icon::before,
.product-entry-icon::after {
  content: "";
  display: block;
}

.product-entry-icon,
.product-entry-icon::before,
.product-entry-icon::after {
  width: 17px;
  height: 17px;
}

.product-entry-icon {
  background:
    linear-gradient(#080808, #080808) left top / 7px 7px no-repeat,
    linear-gradient(#080808, #080808) right top / 7px 7px no-repeat,
    linear-gradient(#080808, #080808) left bottom / 7px 7px no-repeat,
    linear-gradient(#080808, #080808) right bottom / 7px 7px no-repeat;
}

.catalogue-content {
  color: var(--muted-ink);
  font-size: 1.04rem;
}

.catalogue-content p:last-of-type {
  color: var(--ink);
}

.catalogue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.catalogue-tags span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.055);
  font-size: 0.86rem;
  font-weight: 750;
}

.product-catalogue {
  margin-top: clamp(30px, 5vw, 58px);
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.filter-button {
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid var(--line-soft);
  color: var(--muted-ink);
  background: rgba(247, 243, 234, 0.025);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: #080808;
  background: linear-gradient(135deg, #f0d98a, #d4af37, #b8860b);
  border-color: rgba(240, 217, 138, 0.72);
  transform: translateY(-1px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 28px);
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(240, 217, 138, 0.055), rgba(247, 243, 234, 0.012) 48%),
    var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 185, 75, 0.58);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.42);
}

.product-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.36 / 1;
  background:
    radial-gradient(circle at 20% 18%, rgba(240, 217, 138, 0.16), rgba(8, 8, 8, 0) 36%),
    var(--soft);
  border-bottom: 1px solid var(--line-soft);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.42s ease, opacity 0.42s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
  opacity: 1;
}

.product-image span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
  color: var(--gold-soft);
  background: rgba(8, 8, 8, 0.76);
  border: 1px solid rgba(212, 175, 55, 0.28);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.product-meta span {
  padding: 6px 8px;
  border: 1px solid var(--line-soft);
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.045);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.product-content h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.15;
}

.product-content p {
  margin-bottom: 22px;
  color: var(--muted-ink);
  line-height: 1.68;
}

.text-link {
  width: fit-content;
  margin-top: auto;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--gold-soft);
}

.product-note {
  max-width: 860px;
  margin-top: clamp(24px, 4vw, 42px);
  padding: 18px 20px;
  border: 1px solid var(--line-soft);
  color: var(--muted-ink);
  background: rgba(247, 243, 234, 0.025);
}

.product-note p {
  margin: 0;
}

.catalogue-page {
  background:
    radial-gradient(circle at 82% 10%, rgba(224, 185, 75, 0.12), rgba(8, 8, 8, 0) 28%),
    var(--paper);
}

.catalogue-hero-section {
  padding-top: clamp(140px, 16vw, 190px);
  background:
    linear-gradient(135deg, rgba(224, 185, 75, 0.09), rgba(247, 243, 234, 0.012) 42%),
    var(--paper);
  border-bottom: 1px solid var(--line-soft);
}

.catalogue-page h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7vw, 6.7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.trust-section {
  background: var(--paper);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-points span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--muted-ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.trust-points span:hover {
  border-color: rgba(224, 185, 75, 0.62);
  color: var(--gold-soft);
}

.price-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 28px;
}

.price-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(224, 185, 75, 0.12), rgba(247, 243, 234, 0.018)),
    var(--surface);
}

.price,
.price-card .price {
  margin: auto 0 18px;
  color: var(--gold-soft);
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1.2;
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.94)),
    url("assets/hero-renovation-consultancy.png") center / cover;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: start;
}

.contact-section p {
  color: rgba(245, 242, 234, 0.74);
}

.contact-details,
.company-box {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: rgba(245, 242, 234, 0.84);
}

.contact-details a {
  width: fit-content;
  border-bottom: 1px solid rgba(212, 175, 55, 0.72);
  color: var(--gold);
  font-weight: 800;
}

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

.company-box {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface-lift);
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted-ink);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #101010;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(224, 185, 75, 0.56);
  outline-offset: 2px;
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

label.full,
.contact-form .full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.form-actions .button {
  flex: 1 1 220px;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.9rem;
  opacity: 0.78;
}

.site-footer {
  padding: 42px 0;
  background: #050505;
  color: rgba(245, 242, 234, 0.72);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 28px;
}

.site-footer strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
}

@media (max-width: 1080px) {
  .hero-copy-block {
    width: min(720px, 100%);
  }

  .service-grid,
  .pricing-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    color: var(--ink);
    background: rgba(8, 8, 8, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-cta {
    margin-top: 10px;
    border-color: var(--gold);
    border-bottom-color: var(--gold);
  }

  .hero-inner {
    padding-top: 134px;
  }

  .two-column,
  .project-card,
  .catalogue-panel,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-intro {
    padding-right: 0;
    padding-bottom: 26px;
  }

  .catalogue-intro::after {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .project-images img,
  .project-images img.is-missing {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    padding: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 190px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero {
    min-height: 92vh;
    align-items: center;
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.72) 68%, rgba(8, 8, 8, 0.38) 100%),
      linear-gradient(0deg, rgba(8, 8, 8, 0.76) 0%, rgba(8, 8, 8, 0.16) 52%, rgba(8, 8, 8, 0.36) 100%),
      url("assets/signature-hero-project.png") center / cover;
  }

  .hero-inner {
    padding: 118px 0 42px;
  }

  .hero-copy-block {
    padding: 0;
  }

  .hero-copy-block::before {
    margin-bottom: 16px;
  }

  .hero-title {
    margin-bottom: 14px;
  }

  .hero-word-renovate {
    font-size: clamp(2.45rem, 12.8vw, 3.55rem);
  }

  .hero-word-confidence {
    font-size: clamp(1.9rem, 9.8vw, 2.85rem);
  }

  .hero-word-with {
    padding: 6px 13px 7px;
    font-size: 0.86rem;
    letter-spacing: 0.13em;
  }

  .service-line {
    margin-bottom: 16px;
    gap: 6px;
    font-size: 0.76rem;
  }

  .hero-subtitle {
    font-size: 0.94rem;
    line-height: 1.44;
  }

  .hero-copy {
    font-size: 0.94rem;
  }

  .hero-actions {
    margin: 18px 0 0;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions .button.primary {
    min-width: 0;
  }

  .trust-grid,
  .service-grid,
  .pricing-grid,
  .benefit-grid,
  .audience-grid,
  .product-grid,
  .catalogue-panel,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .catalogue-panel {
    padding: 24px;
  }

  .product-toolbar {
    gap: 8px;
  }

  .filter-button {
    flex: 1 1 auto;
    padding-inline: 10px;
    font-size: 0.68rem;
  }

  .trust-grid span {
    min-height: 64px;
    border-right: 1px solid var(--line-soft);
  }

  .project-images {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
    min-height: 0;
  }

  .project-images img:first-child,
  .project-images img:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .project-images img:first-child,
  .project-images img:first-child.is-missing {
    min-height: 260px;
  }

  .project-images img:last-child,
  .project-images img:last-child.is-missing {
    min-height: 190px;
  }

  .project-card {
    padding: 18px;
    border-radius: 14px;
  }

  .project-content h3 span {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
