/* =========================================================
   DM Enterprises — Premium Bird Netting Website
   ========================================================= */
:root {
  --gold: #c5a26b;
  --gold-light: #e4c58a;
  --gold-soft: #d4b483;
  --gold-dark: #8f7344;
  --black: #0b0a09;
  --charcoal: #141210;
  --ink: #1c1915;
  --cream: #f7f2ea;
  --ivory: #fbf8f3;
  --sand: #efe6d6;
  --text: #2c2822;
  --muted: #6d665c;
  --line: rgba(197, 162, 107, 0.28);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(12, 10, 8, 0.12);
  --radius: 18px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --num: "Roboto", "Lato", "Courier New", monospace;
  --display: "Playfair Display", Georgia, serif;
  --body: "Inter", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html.nav-lock,
html.nav-lock body {
  overflow: hidden;
}

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
}

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

main img {
  cursor: zoom-in;
}

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

ul {
  list-style: none;
}

button,
.btn {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.num {
  font-family: var(--num);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 16px;
  z-index: 10000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}

.site-header .nav-wrap {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1002;
}

.brand img {
  height: 58px;
  width: 58px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--gold);
  background: #000;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.82;
}

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

.nav a,
.nav-drop > button {
  color: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}

.nav a:hover,
.nav a.active,
.nav-drop > button:hover,
.nav-drop > button.active {
  color: var(--gold-light);
  background: rgba(197, 162, 107, 0.12);
}

.nav-drop {
  position: relative;
}

.nav-drop > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-drop .caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}

.drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: #161411;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s var(--ease);
  box-shadow: var(--shadow);
}

.nav-drop:hover .drop-menu,
.nav-drop:focus-within .drop-menu,
.nav-drop.open .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drop-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: #f3ead8 !important;
  font-size: 0.88rem;
}

.drop-menu a:hover {
  background: rgba(197, 162, 107, 0.16);
  color: var(--gold-light) !important;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Transparent over hero, solid after scroll — light gold/white text always */
body.has-hero .site-header {
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.72), rgba(8, 7, 6, 0.08));
  color: #f7f1e6;
}

body.has-hero .site-header.scrolled,
body:not(.has-hero) .site-header {
  background: rgba(12, 11, 10, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
  color: #f7f1e6;
  border-bottom: 1px solid var(--line);
}

body.has-hero .site-header .brand-text,
body:not(.has-hero) .site-header .brand-text,
.site-header .nav a,
.site-header .nav-drop > button,
.site-header .nav-toggle {
  color: #f7f1e6;
}

.site-header.scrolled .brand-text strong,
body:not(.has-hero) .brand-text strong {
  color: var(--gold-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s,
    color 0.25s, border-color 0.25s;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #16110a;
  box-shadow: 0 10px 24px rgba(197, 162, 107, 0.32);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(197, 162, 107, 0.42);
}

.btn-ghost {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: rgba(197, 162, 107, 0.08);
}

.btn-ghost:hover {
  background: var(--gold);
  color: #16110a;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  color: #fff;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  background-color: #0b0a09;
  overflow: hidden;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide.active img {
  animation: kenburns 14s ease-out forwards;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.55) 0%, rgba(8, 7, 6, 0.42) 45%, rgba(8, 7, 6, 0.78) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(8, 7, 6, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 18px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.page-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  line-height: 1.12;
  max-width: 900px;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.hero p.lead {
  margin: 22px auto 0;
  max-width: 640px;
  color: #efe6d4;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: 0.3s;
}

.hero-dots button.active {
  background: var(--gold);
  width: 28px;
  border-radius: 999px;
}

.spark-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px var(--gold-light);
  animation: spark-float linear infinite;
}

@keyframes spark-float {
  0% {
    transform: translateY(20px) scale(0.4);
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-110vh) scale(1);
    opacity: 0;
  }
}

.float-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: orb 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes orb {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -40px);
  }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--charcoal);
  color: var(--cream);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  text-align: center;
  padding: 8px;
}

.trust-item .n {
  font-family: var(--num);
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 700;
  display: block;
}

.trust-item p {
  color: #cfc4b2;
  font-size: 0.88rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 92px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head h2,
.block-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  color: var(--ink);
  line-height: 1.2;
}

.gold-line {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto;
}

.section-head p {
  color: var(--muted);
}

.section.alt {
  background: var(--cream);
}

.section.dark {
  background: var(--charcoal);
  color: var(--cream);
}

.section.dark .section-head h2,
.section.dark .block-title {
  color: #fff;
}

.section.dark .section-head p {
  color: #c9bfb0;
}

/* ---------- Cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(197, 162, 107, 0.16);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(12, 10, 8, 0.16);
}

.card-media {
  background: #fff;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  line-height: 0;
}

.card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
}

.card-body {
  padding: 22px 22px 26px;
}

.card-body h3 {
  font-family: var(--display);
  font-size: 1.28rem;
  margin-bottom: 8px;
}

.card-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-body .more {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- About split ---------- */
.about-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 10px 0 16px;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

.checks {
  margin: 18px 0 24px;
}

.checks li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: rotate(-45deg);
}

.media-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  line-height: 0;
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
}

.media-frame video {
  cursor: pointer;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.badge-float {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(12, 10, 8, 0.88);
  color: var(--gold-light);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

.badge-float strong {
  font-family: var(--num);
  display: block;
  font-size: 1.4rem;
  color: #fff;
}

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

.step {
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px;
  border: 1px solid rgba(197, 162, 107, 0.18);
  box-shadow: var(--shadow);
}

.step .sn {
  font-family: var(--num);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
}

.step h3 {
  font-family: var(--display);
  margin: 8px 0 8px;
}

.step p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Gallery mosaic ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 0;
  line-height: 0;
  border: 1px solid rgba(197, 162, 107, 0.14);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-row button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.86rem;
}

.filter-row button.active,
.filter-row button:hover {
  background: var(--ink);
  color: var(--gold-light);
  border-color: var(--ink);
}

/* ---------- CTA ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1612, #0b0a09 50%, #231c14);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.cta-band p {
  color: #d9cbb4;
  margin: 12px auto 26px;
  max-width: 560px;
}

.cta-band .num {
  color: var(--gold-light);
  font-size: 1.35rem;
  display: inline-block;
  margin-bottom: 10px;
}

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.55), rgba(10, 9, 8, 0.7));
}

.page-hero .inner {
  position: relative;
  z-index: 3;
  padding: 120px 20px 70px;
}

.page-hero p {
  color: #eadfcd;
  margin-top: 12px;
}

/* ---------- Why / features ---------- */
.feature {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(197, 162, 107, 0.16);
}

.icon-box {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: grid;
  place-items: center;
  color: #16110a;
  font-family: var(--num);
  font-weight: 700;
}

.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.feature p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Contact cards ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(197, 162, 107, 0.16);
  text-align: center;
}

.contact-card h3 {
  font-family: var(--display);
  margin: 10px 0;
}

.contact-card .big-num {
  font-family: var(--num);
  font-size: 1.6rem;
  color: var(--gold-dark);
  font-weight: 700;
  display: block;
  margin: 8px 0 18px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0b0a09;
  color: #d8cdb8;
  padding: 64px 0 20px;
  border-top: 1px solid var(--line);
}

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

.site-footer h4 {
  color: var(--gold-light);
  font-family: var(--display);
  margin-bottom: 14px;
  font-size: 1.1rem;
}

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

.site-footer p,
.site-footer li {
  font-size: 0.92rem;
  margin: 7px 0;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--gold);
}

.copy {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(197, 162, 107, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

.copy a {
  color: var(--gold-light);
}

/* ---------- Floating buttons ---------- */
.float-stack {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  will-change: transform;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  pointer-events: auto;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.float-btn:hover {
  transform: scale(1.08);
}

.float-call {
  background: linear-gradient(135deg, #2f6fed, #1a4fd8);
}

.float-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 6, 0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close:hover {
  background: var(--gold);
  color: #111;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.8s var(--ease) forwards;
}

.reveal.d1 {
  animation-delay: 0.1s;
}
.reveal.d2 {
  animation-delay: 0.2s;
}
.reveal.d3 {
  animation-delay: 0.3s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.08), transparent 70%);
  animation: shine 4s infinite;
}

@keyframes shine {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.list-gold {
  columns: 2;
  gap: 22px;
}

.list-gold li {
  break-inside: avoid;
  padding: 8px 0 8px 22px;
  position: relative;
}

.list-gold li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 12px;
}

.prose h2,
.prose h3 {
  font-family: var(--display);
  margin: 8px 0 12px;
}

.prose p {
  color: var(--muted);
  margin-bottom: 14px;
}

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  .grid-3,
  .steps,
  .trust-grid,
  .gallery-grid,
  .footer-grid,
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: rgba(10, 9, 8, 0.98);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 100px 28px 40px;
    gap: 6px;
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s var(--ease), visibility 0.35s;
    z-index: 1001;
  }

  .nav.open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav a,
  .nav-drop > button {
    width: 100%;
    text-align: left;
    padding: 14px 8px;
    font-size: 1.08rem;
    border-radius: 8px;
    color: #f7f1e6 !important;
  }

  .drop-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 0 8px 12px;
  }

  .nav-drop.open .drop-menu {
    display: block;
  }

  .hero h1 {
    font-size: 2.15rem;
  }
}

@media (max-width: 640px) {
  .grid-3,
  .steps,
  .trust-grid,
  .gallery-grid,
  .footer-grid,
  .contact-cards,
  .list-gold {
    grid-template-columns: 1fr;
    columns: 1;
  }

  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .section {
    padding: 64px 0;
  }

  .brand-text span {
    display: none;
  }

  .copy {
    flex-direction: column;
    text-align: center;
  }

  .float-stack {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 9999;
  }

  .float-btn {
    width: 52px;
    height: 52px;
  }
}
