:root {
  --bg: #0b0b0a;
  --panel: #151310;
  --panel-2: #201c16;
  --text: #f5efe2;
  --muted: #c5b9a3;
  --soft: #8e8067;
  --gold: #c79a4a;
  --gold-2: #f0d28c;
  --line: rgba(240, 210, 140, 0.22);
  --white-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 12%, rgba(199, 154, 74, 0.13), transparent 34rem),
    linear-gradient(130deg, rgba(199, 154, 74, 0.08) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 160px 160px, auto;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(116deg, transparent 0 28%, rgba(199, 154, 74, 0.18) 28.2%, transparent 28.7% 100%),
    linear-gradient(73deg, transparent 0 62%, rgba(199, 154, 74, 0.12) 62.2%, transparent 62.55% 100%);
  opacity: 0.35;
  z-index: -1;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowScale {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.055);
  }
}

@keyframes goldSheen {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 0 rgba(199, 154, 74, 0);
  }

  50% {
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 28px rgba(199, 154, 74, 0.28);
  }
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(11, 11, 10, 0.78);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 0.05rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
}

.brand span {
  color: var(--gold-2);
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.4vw, 1.7rem);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--gold-2);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 8rem clamp(1rem, 5vw, 5rem) 5rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.64;
  animation: slowScale 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 11, 10, 0.96), rgba(11, 11, 10, 0.72) 42%, rgba(11, 11, 10, 0.2)),
    linear-gradient(0deg, var(--bg), transparent 34%);
}

.hero-content {
  width: min(720px, 100%);
  animation: fadeUp 0.9s ease both;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

.hero-copy {
  width: min(590px, 100%);
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.button.primary {
  color: #15100a;
  background: linear-gradient(115deg, var(--gold-2), var(--gold), #8e6428, var(--gold-2));
  background-size: 220% 220%;
  box-shadow: 0 16px 38px rgba(199, 154, 74, 0.22);
  animation: goldSheen 7s ease-in-out infinite alternate;
}

.button.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

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

.button.primary:hover {
  box-shadow: 0 20px 48px rgba(199, 154, 74, 0.32);
}

.button.secondary:hover {
  border-color: rgba(240, 210, 140, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  background: var(--white-line);
}

.intro-band div {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(18, 16, 13, 0.92);
  animation: fadeUp 0.8s ease both;
}

.intro-band div:nth-child(2) {
  animation-delay: 0.08s;
}

.intro-band div:nth-child(3) {
  animation-delay: 0.16s;
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  color: var(--gold-2);
  margin-bottom: 0.45rem;
}

.intro-band span,
.section-heading p,
.service-grid p,
.process p,
.quote-copy p,
.form-note,
.site-footer span {
  color: var(--muted);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 2rem;
}

.section-heading.split {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--white-line);
  border: 1px solid var(--white-line);
}

.service-grid article {
  min-height: 15rem;
  padding: 1.35rem;
  background:
    linear-gradient(150deg, rgba(199, 154, 74, 0.08), transparent 54%),
    var(--panel);
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(150deg, rgba(199, 154, 74, 0.14), transparent 58%),
    var(--panel-2);
}

.works-section {
  background: rgba(255, 255, 255, 0.03);
}

.local-seo {
  padding-top: 0;
}

.local-seo-content {
  width: min(980px, 100%);
  padding: clamp(1.3rem, 3vw, 2rem);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(199, 154, 74, 0.11), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.local-seo-content p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 17rem;
  gap: 0.85rem;
}

.works-grid figure {
  position: relative;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.2);
}

.works-grid figure.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.works-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.works-grid figure:hover img {
  transform: scale(1.055);
}

.works-grid figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.45rem 0.65rem;
  color: var(--text);
  background: rgba(11, 11, 10, 0.76);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 800;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process div {
  padding: 1.4rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.process div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.055);
}

.process span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-weight: 900;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  background:
    linear-gradient(135deg, rgba(199, 154, 74, 0.11), transparent 34%),
    rgba(17, 15, 12, 0.96);
}

.quote-copy {
  position: sticky;
  top: 7rem;
}

.contact-line {
  color: var(--gold-2);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 11, 10, 0.72);
  box-shadow: var(--shadow);
  animation: fadeUp 0.85s ease both;
}

.field,
.field.two {
  display: grid;
  gap: 0.5rem;
}

.field.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label,
legend {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 0.9rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--white-line);
  border-radius: 6px;
  font: inherit;
}

select {
  appearance: none;
  cursor: pointer;
  color: var(--text);
  background:
    linear-gradient(45deg, transparent 50%, var(--gold-2) 50%),
    linear-gradient(135deg, var(--gold-2) 50%, transparent 50%),
    linear-gradient(135deg, rgba(199, 154, 74, 0.08), rgba(255, 255, 255, 0.055));
  background-position:
    calc(100% - 1.15rem) 50%,
    calc(100% - 0.78rem) 50%,
    0 0;
  background-size:
    0.38rem 0.38rem,
    0.38rem 0.38rem,
    100% 100%;
  background-repeat: no-repeat;
  padding-right: 2.6rem;
}

select option {
  color: var(--text);
  background: #151310;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(240, 210, 140, 0.36);
  border-color: var(--gold);
}

fieldset {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--white-line);
  border-radius: 6px;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.4rem;
  color: var(--muted);
  font-weight: 700;
}

input[type="checkbox"] {
  width: 1rem;
  min-height: 1rem;
  accent-color: var(--gold);
}

.submit {
  width: 100%;
  border: 0;
  font-size: 1rem;
}

.form-note {
  margin: -0.15rem 0 0;
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  gap: 1.15rem;
  justify-items: center;
  padding: 2.4rem clamp(1rem, 5vw, 5rem) 6rem;
  background: rgba(10, 9, 8, 0.92);
  border-top: 1px solid var(--white-line);
  text-align: center;
}

.footer-main,
.footer-bottom {
  width: min(980px, 100%);
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.footer-bottom {
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.site-footer strong,
.site-footer span,
.site-footer small {
  display: block;
}

.site-footer small {
  margin-top: 0.4rem;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

.site-footer a {
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.brandvision-credit {
  justify-self: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.brandvision-credit:hover {
  color: var(--gold-2);
  text-decoration: none;
}

.legal-page {
  min-height: 100vh;
  padding: 8rem clamp(1rem, 5vw, 5rem) 4rem;
  display: grid;
  justify-items: center;
}

.legal-content {
  width: min(900px, 100%);
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 11, 10, 0.76);
  box-shadow: var(--shadow);
  text-align: center;
}

.legal-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  display: inline-block;
  padding-left: 1.2rem;
  text-align: left;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  color: #15100a;
  background: linear-gradient(115deg, var(--gold-2), var(--gold), #8e6428, var(--gold-2));
  background-size: 220% 220%;
  border: 1px solid rgba(240, 210, 140, 0.62);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  font-weight: 900;
  text-decoration: none;
  animation: goldSheen 7s ease-in-out infinite alternate, softPulse 3.8s ease-in-out infinite;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.46), 0 0 34px rgba(199, 154, 74, 0.32);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .intro-band,
  .service-grid,
  .process,
  .quote-section,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 15rem;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(11, 11, 10, 0.97), rgba(11, 11, 10, 0.72)),
      linear-gradient(0deg, var(--bg), transparent 32%);
  }

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

  .works-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 18rem;
  }

  .works-grid figure.featured {
    grid-column: auto;
    grid-row: auto;
  }

  .field.two,
  fieldset {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
  }

  .footer-bottom nav {
    justify-content: center;
  }

  .site-footer {
    padding-bottom: 6.8rem;
  }
}
