:root {
  --green: #12802f;
  --green-bright: #1fb84a;
  --copper: #bd7b42;
  --black: #0a0a0a;
  --panel: #101211;
  --panel-soft: #151816;
  --text: #f0ece4;
  --muted: #b7b0a4;
  --line: rgba(189, 123, 66, 0.34);
  --steel: #2c302f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 48px; /* space for fixed bottom ticker */
  background:
    radial-gradient(circle at top left, rgba(18, 128, 47, 0.22), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(189, 123, 66, 0.13), transparent 28rem),
    var(--black);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(240, 236, 228, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 236, 228, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

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

img,
iframe {
  max-width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", "Barlow Condensed", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

p {
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(240, 236, 228, 0.08);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-logo {
  width: auto;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.44));
}

.brand-mark,
.footer-logo,
.large-logo {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(18, 128, 47, 0.14), rgba(189, 123, 66, 0.12)),
    rgba(16, 18, 17, 0.88);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(240, 236, 228, 0.06);
}

.brand-mark {
  display: grid;
  place-items: center;
  min-width: 76px;
  height: 42px;
  padding: 0 12px;
  font-size: 0.78rem;
  color: var(--copper);
}

.brand-name {
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  border-color: rgba(189, 123, 66, 0.42);
  background: rgba(189, 123, 66, 0.09);
}

/* Hamburger removed — nav is always visible */

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.hero-grid,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 54px;
  padding: 76px 0 84px;
}

.large-logo {
  display: inline-grid;
  place-items: center;
  min-width: 190px;
  min-height: 86px;
  margin-bottom: 30px;
  color: var(--copper);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 850px;
  font-size: clamp(4.4rem, 10vw, 9.4rem);
}

.hero-subtitle,
.page-hero p:last-child {
  max-width: 690px;
  margin-top: 24px;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.quote-disclaimer {
  max-width: 760px;
  margin-top: 16px;
  padding-left: 14px;
  border-left: 2px solid var(--copper);
  color: rgba(240, 236, 228, 0.76);
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--green);
  color: var(--text);
  box-shadow: 0 18px 42px rgba(18, 128, 47, 0.28);
}

.btn-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 18px 48px rgba(18, 128, 47, 0.42);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(189, 123, 66, 0.09);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--copper);
  box-shadow: 0 18px 44px rgba(189, 123, 66, 0.2);
}

.hero-art {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-logo {
  width: min(124%, 720px);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 58px rgba(0, 0, 0, 0.58));
  transform: translate(-42px, -34px);
}

.metal-frame {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 236, 228, 0.09);
  background:
    linear-gradient(135deg, rgba(240, 236, 228, 0.08), transparent 36%),
    linear-gradient(45deg, rgba(18, 128, 47, 0.2), rgba(189, 123, 66, 0.12)),
    #111413;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: rotate(-4deg);
}

.metal-frame::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid var(--line);
  background-image:
    repeating-linear-gradient(135deg, rgba(240, 236, 228, 0.05) 0 1px, transparent 1px 15px);
}

.copper-ring {
  position: absolute;
  inset: 18%;
  border: 22px solid rgba(189, 123, 66, 0.72);
  box-shadow: 0 0 80px rgba(189, 123, 66, 0.18), inset 0 0 38px rgba(0, 0, 0, 0.55);
}

.green-core {
  position: absolute;
  inset: 34%;
  background: linear-gradient(145deg, var(--green), #0e4c22);
  box-shadow: 0 0 62px rgba(18, 128, 47, 0.48);
}

.steel-plate {
  position: absolute;
  width: 42%;
  height: 16%;
  background: linear-gradient(90deg, #363c39, #171a19);
  border: 1px solid rgba(240, 236, 228, 0.12);
}

.plate-one {
  left: -8%;
  top: 22%;
}

.plate-two {
  right: -8%;
  bottom: 22%;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--copper), transparent);
}

.metal-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(18, 128, 47, 0.2), rgba(189, 123, 66, 0.13));
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker-track span {
  padding: 18px 22px;
  color: var(--text);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span::after {
  content: " /";
  color: var(--copper);
  padding-left: 20px;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 104px 0;
}

.section-contrast {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
  border-block: 1px solid rgba(189, 123, 66, 0.18);
}

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

.section-heading h2,
.split-heading h2,
.cta-band h2,
.service-category h2,
.info-panel h2,
.contact-details h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.text-link {
  color: var(--copper);
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.feature-grid,
.metal-grid,
.steps-grid,
.price-grid,
.service-info-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.metal-card,
.step-card,
.info-panel,
.price-card,
.contact-form,
.contact-details article {
  border: 1px solid rgba(240, 236, 228, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.metal-card:hover,
.step-card:hover,
.info-panel:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 123, 66, 0.6);
  box-shadow: 0 24px 58px rgba(189, 123, 66, 0.12);
}

.feature-card {
  min-height: 280px;
  padding: 26px;
}

.icon {
  width: 62px;
  height: 62px;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  background: rgba(189, 123, 66, 0.1);
  position: relative;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: var(--copper);
}

.pickup-icon::before {
  width: 34px;
  height: 18px;
  left: 12px;
  top: 19px;
  border: 2px solid var(--green-bright);
  background: transparent;
}

.pickup-icon::after {
  width: 42px;
  height: 4px;
  left: 10px;
  bottom: 14px;
}

.pricing-icon::before {
  width: 34px;
  height: 34px;
  left: 14px;
  top: 14px;
  border-radius: 50%;
}

.pricing-icon::after {
  width: 22px;
  height: 3px;
  left: 20px;
  top: 30px;
  background: var(--black);
}

.service-icon::before {
  width: 36px;
  height: 36px;
  left: 13px;
  top: 13px;
  clip-path: polygon(50% 0, 61% 35%, 100% 35%, 68% 56%, 79% 100%, 50% 73%, 21% 100%, 32% 56%, 0 35%, 39% 35%);
}

.experience-icon::before {
  width: 40px;
  height: 8px;
  left: 11px;
  top: 18px;
}

.experience-icon::after {
  width: 28px;
  height: 28px;
  left: 17px;
  bottom: 11px;
  background: transparent;
  border: 3px solid var(--green-bright);
}

.feature-card h3,
.metal-card h3,
.step-card h3 {
  margin-bottom: 12px;
  font-size: 2.15rem;
}

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

.metal-card {
  min-height: 225px;
  padding: 24px;
}

.metal-symbol {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  color: var(--copper);
  font-weight: 900;
  background: rgba(10, 10, 10, 0.42);
}

.cta-band {
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(18, 128, 47, 0.32), rgba(189, 123, 66, 0.18)),
    #0d0f0e;
  border-block: 1px solid var(--line);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner p {
  color: rgba(240, 236, 228, 0.82);
}

.page-hero {
  padding: 126px 0 92px;
  background:
    linear-gradient(135deg, rgba(18, 128, 47, 0.22), transparent 50%),
    linear-gradient(225deg, rgba(189, 123, 66, 0.14), transparent 44%);
}

.service-category {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 36px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.service-category:last-child {
  border-bottom: 1px solid var(--line);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-list span {
  padding: 12px 14px;
  border: 1px solid rgba(240, 236, 228, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 700;
}

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

.step-card,
.info-panel {
  padding: 28px;
}

.step-card span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--copper);
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.6rem;
  line-height: 0.8;
}

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

.info-panel {
  min-height: 230px;
}

.info-panel h2,
.contact-details h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.price-grid {
  grid-template-columns: repeat(5, 1fr);
}

.price-card {
  min-height: 225px;
  padding: 26px;
  border-top: 4px solid var(--copper);
}

.price-card h2 {
  margin-bottom: 42px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.price-card strong {
  display: block;
  color: var(--text);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 5vw, 5.1rem);
  font-weight: 400;
  line-height: 0.9;
}

.price-card span {
  color: var(--copper);
  font-size: 1.55rem;
}

.price-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.quote-action {
  display: grid;
  gap: 12px;
  justify-items: end;
  max-width: 520px;
}

.quote-action .quote-disclaimer {
  margin-top: 0;
  text-align: left;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}

.quote-options {
  display: grid;
  gap: 18px;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-details article,
.whatsapp-quote {
  padding: 28px;
}

.contact-details strong {
  display: block;
  color: var(--copper);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
}

.contact-form input,
.contact-form textarea,
.select-trigger {
  width: 100%;
  border: 1px solid rgba(240, 236, 228, 0.12);
  background: rgba(10, 10, 10, 0.56);
  color: var(--text);
  font: inherit;
  padding: 15px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.custom-select {
  position: relative;
}

.select-trigger {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-right: 48px;
  text-align: left;
  cursor: pointer;
}

.select-trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
  transform: translateY(-62%) rotate(45deg);
  transition: transform 180ms ease;
}

.custom-select.open .select-trigger,
.select-trigger:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(189, 123, 66, 0.14);
}

.custom-select.open .select-trigger::after {
  transform: translateY(-24%) rotate(225deg);
}

.select-options {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  max-height: 290px;
  overflow-y: auto;
  border: 1px solid rgba(189, 123, 66, 0.54);
  background: #0a0a0a;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.48), 0 0 0 3px rgba(189, 123, 66, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.custom-select.open .select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.select-options button {
  width: 100%;
  display: block;
  border: 0;
  border-bottom: 1px solid rgba(240, 236, 228, 0.07);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.94rem;
  line-height: 1.35;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.select-options button:hover,
.select-options button:focus,
.select-options button[aria-selected="true"] {
  background: linear-gradient(90deg, rgba(189, 123, 66, 0.2), rgba(18, 128, 47, 0.12));
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(189, 123, 66, 0.14);
}

.contact-form button {
  margin-top: 8px;
}

.photo-upload {
  display: grid;
  gap: 12px;
}

.photo-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.photo-dropzone {
  min-height: 122px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 22px;
  border: 1px dashed rgba(189, 123, 66, 0.52);
  background:
    linear-gradient(135deg, rgba(18, 128, 47, 0.1), rgba(189, 123, 66, 0.08)),
    rgba(10, 10, 10, 0.56);
  color: var(--text);
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.photo-dropzone span {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.photo-dropzone small {
  color: var(--muted);
  font-size: 0.9rem;
}

.photo-upload.dragging .photo-dropzone,
.photo-dropzone:hover,
.photo-upload input[type="file"]:focus + .photo-dropzone {
  border-color: var(--copper);
  background:
    linear-gradient(135deg, rgba(18, 128, 47, 0.18), rgba(189, 123, 66, 0.14)),
    rgba(10, 10, 10, 0.68);
  box-shadow: 0 0 0 3px rgba(189, 123, 66, 0.14);
}

.photo-upload-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.photo-upload-error {
  min-height: 0;
  color: var(--copper);
  font-size: 0.9rem;
}

.photo-upload-error:empty {
  display: none;
}

.photo-list {
  display: grid;
  gap: 8px;
}

.photo-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(240, 236, 228, 0.09);
  background: rgba(255, 255, 255, 0.025);
}

.photo-item span {
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.photo-item small {
  display: block;
  color: var(--muted);
}

.photo-thumb {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(189, 123, 66, 0.44);
  border-radius: 6px;
  background: rgba(10, 10, 10, 0.72);
  object-fit: cover;
}

.photo-remove {
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: rgba(189, 123, 66, 0.1);
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.photo-remove:hover,
.photo-remove:focus {
  border-color: var(--copper);
  background: rgba(189, 123, 66, 0.18);
  outline: none;
}

.whatsapp-quote {
  border: 1px solid rgba(240, 236, 228, 0.09);
  background:
    linear-gradient(135deg, rgba(18, 128, 47, 0.18), rgba(189, 123, 66, 0.1)),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 360px;
}

.whatsapp-quote h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.whatsapp-quote p:not(.eyebrow) {
  margin-bottom: 20px;
}

.whatsapp-btn {
  width: 100%;
  background: rgba(18, 128, 47, 0.18);
  gap: 10px;
  padding: 0 32px;
  min-height: 58px;
  font-size: 0.95rem;
}

.whatsapp-icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

.map-section {
  padding: 0 0 104px;
}

.map-shell {
  position: relative;
  min-height: 440px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(18, 128, 47, 0.24), rgba(189, 123, 66, 0.18)),
    repeating-linear-gradient(45deg, rgba(240, 236, 228, 0.045) 0 1px, transparent 1px 20px);
  overflow: hidden;
}

.map-shell iframe {
  width: 100%;
  min-height: 440px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.9);
  opacity: 0.58;
}

.map-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 12px 16px;
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #070807;
  /* Extra bottom padding for the fixed ticker bar */
  padding-bottom: 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 28px;
  padding: 54px 0;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: auto;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.48));
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 1.55rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(240, 236, 228, 0.08);
  color: #827b71;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   REVIEWS CAROUSEL
   ========================================== */

.reviews-section {
  padding: 104px 0 80px;
  overflow: hidden;
}

.reviews-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  /* Fade edges */
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: reviews-scroll 36s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 340px;
  padding: 28px;
  border: 1px solid rgba(189, 123, 66, 0.32);
  background: linear-gradient(160deg, rgba(18, 128, 47, 0.06), rgba(189, 123, 66, 0.06)), rgba(16, 18, 17, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 8px 32px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  color: var(--copper);
  font-size: 1.22rem;
  letter-spacing: 2px;
  line-height: 1;
}

.review-card blockquote {
  margin: 0;
  color: rgba(240, 236, 228, 0.88);
  font-size: 0.96rem;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(189, 123, 66, 0.2);
}

.review-card footer strong {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.review-card footer span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ==========================================
   FIXED BOTTOM METAL TICKER
   ========================================== */

.metal-ticker-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(18, 128, 47, 0.22), rgba(189, 123, 66, 0.15)), rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
}

.metal-ticker-fixed .ticker-track {
  /* Inherits animation from .ticker-track */
}

/* ==========================================
   FEATURE CARD GLOW ANIMATION
   ========================================== */

@keyframes card-glow-on {
  0%   { box-shadow: 0 0 0 0 transparent, inset 0 0 0 1px rgba(255, 255, 255, 0.025); border-color: rgba(240, 236, 228, 0.09); }
  20%  { box-shadow: 0 0 55px 14px rgba(189, 123, 66, 0.55), 0 0 0 2px rgba(189, 123, 66, 0.85), inset 0 0 32px rgba(189, 123, 66, 0.18); border-color: rgba(189, 123, 66, 0.95); }
  80%  { box-shadow: 0 0 55px 14px rgba(189, 123, 66, 0.55), 0 0 0 2px rgba(189, 123, 66, 0.85), inset 0 0 32px rgba(189, 123, 66, 0.18); border-color: rgba(189, 123, 66, 0.95); }
  100% { box-shadow: 0 0 0 0 transparent, inset 0 0 0 1px rgba(255, 255, 255, 0.025); border-color: rgba(240, 236, 228, 0.09); }
}

.feature-card.glow-active {
  animation: card-glow-on 2s ease-in-out forwards;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-layout,
  .service-category {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 380px;
  }

  .hero-logo {
    width: min(100%, 560px);
    max-width: 100%;
    transform: translate(0, 0);
  }

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

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

  .price-note,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-action {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .navbar {
    min-height: 62px;
    gap: 10px;
  }

  .brand-name {
    display: none;
  }

  /* Always-visible flat mobile nav — no hamburger, no dropdown */
  .nav-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
    align-items: center;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.78rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .hero-grid {
    padding: 48px 0 62px;
    gap: 32px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3.8rem, 18vw, 5.8rem);
  }

  .hero-subtitle,
  .page-hero p:last-child {
    font-size: 1.04rem;
  }

  .hero-art {
    min-height: 300px;
  }

  .hero-logo {
    width: min(96vw, 390px);
  }

  .metal-frame {
    width: min(90vw, 330px);
  }

  .section,
  .page-hero {
    padding: 72px 0;
  }

  .map-section {
    padding-bottom: 72px;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-grid,
  .metal-grid,
  .steps-grid,
  .price-grid,
  .service-info-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .metal-card,
  .step-card,
  .info-panel,
  .price-card,
  .contact-details article,
  .whatsapp-quote {
    padding: 22px;
  }

  .price-card {
    min-height: 188px;
  }

  .ticker-track span {
    padding: 14px 16px;
    font-size: 1.18rem;
  }

  .photo-upload-meta,
  .photo-item {
    align-items: flex-start;
  }

  .photo-upload-meta {
    flex-direction: column;
    gap: 4px;
  }

  .btn {
    width: 100%;
  }
}

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

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

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