:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: #0d0d0d;
  --surface-2: #151515;
  --text: #f7f2ea;
  --muted: #aaa49c;
  --line: rgba(255, 255, 255, .14);
  --gold: #c8a46a;
  --gold-2: #8b6a3e;
  --ease: cubic-bezier(.2, .8, .2, 1);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(200, 164, 106, .12), transparent 30rem),
    linear-gradient(180deg, #050505, #0a0a0a 52%, #050505);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

body.ready {
  opacity: 1;
  transform: translateY(0);
}

body.leaving {
  opacity: 0;
  transform: translateY(8px);
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(5, 5, 5, .64);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(22px);
}

.brand {
  flex: 0 0 auto;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  line-height: 1.1;
}

.brand span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .32em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
  color: rgba(247, 242, 234, .78);
  font-size: 13px;
  white-space: nowrap;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: var(--text);
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .25s var(--ease);
}

.menu-open .menu-toggle::before { transform: translateY(3px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-3px) rotate(-45deg); }

main { overflow: hidden; }

.hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 130px clamp(20px, 6vw, 90px) clamp(42px, 7vw, 92px);
  isolation: isolate;
}

.page-hero {
  min-height: 74svh;
}

.hero-media,
.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04) brightness(.68);
  transform: scale(1.015);
}

.page-hero::before {
  content: "";
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: saturate(.9) brightness(.72);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .38), transparent 42%, #050505),
    linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .18));
}

.hero-copy,
.page-copy {
  position: relative;
  z-index: 2;
  width: min(840px, 100%);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1,
.page-title {
  margin: 0;
  font-size: clamp(48px, 8vw, 126px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 560;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 520;
  line-height: 1.12;
}

p {
  line-height: 1.65;
}

.lead,
.hero-copy p:not(.eyebrow) {
  width: min(720px, 100%);
  margin: 28px 0 0;
  color: rgba(247, 242, 234, .76);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  backdrop-filter: blur(14px);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.button.primary {
  border-color: transparent;
  color: #090909;
  background: linear-gradient(135deg, #f3d9a3, #b68b4f);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .1);
}

.section {
  padding: clamp(70px, 9vw, 132px) clamp(20px, 6vw, 90px);
}

.section.tight {
  padding-top: clamp(42px, 6vw, 78px);
}

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

.section-head p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

.section-head.wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
}

.section-head.wide p {
  max-width: 760px;
}

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

.card,
.metric,
.testimonial,
.contact-card,
.form-card,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .072), rgba(255, 255, 255, .024));
}

.card {
  min-height: 286px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card .num {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.card p,
.testimonial p,
.contact-card p,
.form-card p,
.text-block p,
details p,
.image-copy p,
.seo-card p,
.advantage p,
.seo-prose p {
  margin: 14px 0 0;
  color: var(--muted);
}

.seo-card {
  min-height: 100%;
}

.seo-card h3 {
  font-size: clamp(21px, 2vw, 30px);
}

.seo-card a,
.card a,
.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  color: var(--gold);
}

.advantage-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.advantage,
.seo-card,
.content-nav,
.seo-prose {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018));
}

.advantage {
  min-height: 190px;
  padding: 24px;
}

.advantage strong {
  display: block;
  color: var(--gold);
  font-weight: 540;
}

.seo-card {
  padding: clamp(22px, 3vw, 32px);
}

.content-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px;
}

.content-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(247, 242, 234, .82);
  background: rgba(255, 255, 255, .04);
}

.seo-prose {
  width: min(1120px, 100%);
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 58px);
}

.seo-prose + .seo-prose {
  margin-top: 18px;
}

.seo-prose h2,
.seo-prose h3 {
  max-width: 860px;
}

.seo-prose h2 {
  margin-top: 46px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.seo-prose h2:first-child {
  margin-top: 0;
}

.seo-prose h3 {
  margin-top: 30px;
  font-size: clamp(22px, 2.5vw, 32px);
}

.seo-prose p,
.seo-prose li {
  max-width: 860px;
  line-height: 1.78;
}

.seo-prose ul,
.seo-prose ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.seo-prose a {
  color: var(--gold);
}

.article-list {
  display: grid;
  gap: 16px;
  max-width: 980px;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-links a {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(247, 242, 234, .82);
  background: rgba(255, 255, 255, .035);
}

.split,
.image-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.image-copy.reverse .photo {
  order: 2;
}

.photo {
  position: relative;
  z-index: 0;
  min-width: 0;
  min-height: 480px;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.photo.wide {
  aspect-ratio: 16 / 10;
  min-height: 420px;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
}

.text-block {
  position: relative;
  z-index: 1;
  min-width: 0;
}

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

.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
}

.gallery-item.wide {
  grid-column: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
  transition: transform .75s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: rgba(247, 242, 234, .88);
  text-shadow: 0 12px 28px rgba(0, 0, 0, .8);
}

.gallery + .link-grid,
.gallery + .seo-prose,
.gallery + .form-card {
  margin-top: 36px;
}

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

.step {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.step strong {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
}

.step p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.metric {
  padding: 24px;
}

.metric strong {
  display: block;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 520;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}

details[open] summary::after {
  content: "-";
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
  align-items: start;
}

.contact-card,
.form-card,
.testimonial {
  padding: clamp(22px, 4vw, 38px);
}

.contact-card + .contact-card {
  margin-top: 18px;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(247, 242, 234, .7);
  font-size: 12px;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, .24);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(200, 164, 106, .72);
  background: rgba(0, 0, 0, .38);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.status {
  min-height: 20px;
  color: var(--gold);
  font-size: 13px;
}

.site-footer {
  padding: 36px clamp(20px, 6vw, 90px);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .nav {
    gap: 14px;
    font-size: 12px;
  }
}

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

  .nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 84px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(8, 8, 8, .95);
    border: 1px solid var(--line);
    border-radius: 8px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }

  .menu-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a { padding: 16px; }

  .section-head,
  .split,
  .image-copy,
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .image-copy.reverse .photo {
    order: 0;
  }

  .grid,
  .advantage-grid,
  .link-grid,
  .metrics,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .site-header { height: 66px; }
  .hero, .page-hero { padding-top: 106px; }
  h1, .page-title { font-size: clamp(44px, 14vw, 72px); }

  .grid,
  .advantage-grid,
  .link-grid,
  .metrics,
  .steps,
  form {
    grid-template-columns: 1fr;
  }

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

  .photo,
  .photo.wide {
    min-height: 360px;
  }

  .gallery-item,
  .gallery-item.wide {
    min-height: 360px;
  }

  .site-footer {
    display: grid;
  }
}

/* Always-visible call and hero lead form */
.header-phone,
.footer-phone,
.floating-phone,
.hero-lead-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.header-phone {
  position: relative;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: #090909;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: .02em;
  background: linear-gradient(135deg, #f5dca8, #b68b4f);
  box-shadow: 0 0 28px rgba(200, 164, 106, .22);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  animation: phonePulse 3.2s ease-in-out infinite;
}

.header-phone::before,
.floating-phone::before,
.footer-phone::before,
.hero-lead-phone::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(200, 164, 106, .18);
}

.header-phone:hover,
.floating-phone:hover,
.footer-phone:hover,
.hero-lead-phone:hover {
  transform: translateY(-2px);
}

.hero,
.page-hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 420px);
  gap: clamp(26px, 5vw, 76px);
}

.hero-lead {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  width: min(420px, 100%);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(247, 242, 234, .18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, .78), rgba(8, 8, 8, .58)),
    radial-gradient(circle at 12% 0%, rgba(200, 164, 106, .18), transparent 17rem);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .36);
  backdrop-filter: blur(24px);
}

.hero-lead[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
}

.hero-lead[data-reveal="video-end"].is-visible,
body.ready .page-hero .hero-lead[data-reveal="stagger"] {
  pointer-events: auto;
  animation: heroLeadPanelIn 1.05s var(--ease) forwards;
}

.hero-lead-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-lead-title {
  display: block;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 560;
  line-height: 1.08;
}

.hero-lead-text {
  margin: 12px 0 0;
  color: rgba(247, 242, 234, .7);
  font-size: 14px;
  line-height: 1.55;
}

.hero-lead form {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.hero-lead label {
  gap: 6px;
}

.hero-lead input,
.hero-lead select {
  min-height: 46px;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(0, 0, 0, .34);
}

.hero-lead .button {
  width: 100%;
  margin-top: 2px;
}

.hero-lead .status {
  margin: 0;
}

.hero-lead-phone {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  border: 1px solid rgba(200, 164, 106, .28);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(200, 164, 106, .08);
  font-size: 13px;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.hero-step {
  opacity: 0;
  transform: translateY(14px);
}

.hero-lead.is-visible .hero-step,
body.ready .page-hero .hero-lead[data-reveal="stagger"] .hero-step {
  animation: heroLeadStepIn .72s var(--ease) forwards;
  animation-delay: calc(.35s + (var(--i, 1) * .5s));
}

.floating-phone {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 32;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(200, 164, 106, .36);
  border-radius: 999px;
  color: #0a0a0a;
  background: linear-gradient(135deg, #f5dca8, #b68b4f);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .42), 0 0 38px rgba(200, 164, 106, .18);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.floating-phone span {
  color: rgba(10, 10, 10, .72);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.floating-phone strong {
  font-size: 14px;
  font-weight: 680;
}

.footer-phone {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(200, 164, 106, .32);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(200, 164, 106, .06);
  transition: transform .25s var(--ease), background .25s var(--ease);
}

@keyframes heroLeadPanelIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroLeadStepIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes phonePulse {
  0%, 100% { box-shadow: 0 0 24px rgba(200, 164, 106, .16); }
  50% { box-shadow: 0 0 36px rgba(200, 164, 106, .38); }
}

@media (max-width: 1220px) {
  .site-header { gap: 14px; padding-inline: clamp(16px, 3vw, 44px); }
  .nav { gap: 10px; font-size: 12px; }
  .header-phone { min-height: 36px; padding-inline: 12px; font-size: 12px; }
}

@media (max-width: 920px) {
  .header-phone {
    margin-left: auto;
    order: 2;
  }

  .menu-toggle {
    order: 3;
  }

  .hero,
  .page-hero {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-lead {
    justify-self: start;
    width: min(520px, 100%);
  }
}

@media (max-width: 640px) {
  body { padding-bottom: 78px; }
  .site-header { gap: 10px; }
  .brand { letter-spacing: .12em; font-size: 12px; }
  .brand span { display: none; }
  .header-phone { min-height: 34px; padding-inline: 10px; font-size: 11px; }
  .hero-lead { padding: 18px; }
  .floating-phone {
    left: 14px;
    right: 14px;
    bottom: 12px;
    width: auto;
  }
}

@media (max-width: 390px) {
  .header-phone { font-size: 10px; padding-inline: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .header-phone,
  .hero-lead,
  .hero-step,
  .floating-phone {
    animation: none !important;
    transition: none !important;
  }
  .hero-lead[data-reveal],
  .hero-step {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }
}

.hero .hero-copy {
  grid-column: 1 / -1;
}

.hero .hero-lead[data-reveal="video-end"] {
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  bottom: clamp(42px, 7vw, 92px);
}

@media (max-width: 920px) {
  .hero .hero-copy {
    grid-column: auto;
  }
  .hero .hero-lead[data-reveal="video-end"] {
    position: relative;
    right: auto;
    bottom: auto;
  }
}

/* Sticky phone: desktop side CTA + mobile bottom CTA */
.floating-phone {
  top: 50%;
  right: clamp(16px, 2.4vw, 32px);
  bottom: auto;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: flex-start;
  min-width: 178px;
  min-height: 66px;
  padding: 13px 18px 13px 20px;
  border-radius: 18px 0 0 18px;
  color: #0a0a0a;
}

.floating-phone::before {
  position: absolute;
  left: -13px;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border: 1px solid rgba(200, 164, 106, .46);
  background:
    radial-gradient(circle at 50% 50%, #0a0a0a 0 4px, transparent 5px),
    linear-gradient(135deg, #f5dca8, #b68b4f);
  box-shadow: 0 0 0 8px rgba(200, 164, 106, .12), 0 14px 34px rgba(0, 0, 0, .32);
}

.floating-phone:hover {
  transform: translateY(-50%) translateX(-4px);
  box-shadow: 0 22px 64px rgba(0, 0, 0, .48), 0 0 44px rgba(200, 164, 106, .28);
}

.floating-phone span {
  font-size: 10px;
  line-height: 1;
}

.floating-phone strong {
  font-size: 15px;
  line-height: 1.15;
}

@media (max-width: 920px) {
  .floating-phone {
    left: max(14px, env(safe-area-inset-left));
    right: max(14px, env(safe-area-inset-right));
    top: auto;
    bottom: max(14px, env(safe-area-inset-bottom));
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 999px;
  }

  .floating-phone::before {
    position: static;
    width: 9px;
    height: 9px;
    transform: none;
    border: 0;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(10, 10, 10, .12);
  }

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

  .floating-phone span {
    font-size: 11px;
  }

  .floating-phone strong {
    font-size: 14px;
  }

  body {
    padding-bottom: 82px;
  }
}

@media (max-width: 430px) {
  .floating-phone {
    min-height: 56px;
  }

  .floating-phone strong {
    font-size: 13px;
  }
}

/* Smart sticky phone CTA: header → side center → footer; mobile mini pulse */
.floating-phone {
  position: fixed;
  z-index: 80;
  overflow: visible;
  display: inline-flex;
  border: 1px solid rgba(200, 164, 106, .42);
  color: #0a0a0a;
  background: linear-gradient(135deg, #f7e2b4 0%, #c49a5b 48%, #a77a3b 100%);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .42), 0 0 38px rgba(200, 164, 106, .22);
  will-change: top, right, bottom, transform, border-radius, min-width, min-height, opacity;
  transition:
    top .72s cubic-bezier(.19, 1, .22, 1),
    right .72s cubic-bezier(.19, 1, .22, 1),
    bottom .72s cubic-bezier(.19, 1, .22, 1),
    transform .72s cubic-bezier(.19, 1, .22, 1),
    border-radius .42s var(--ease),
    min-width .42s var(--ease),
    min-height .42s var(--ease),
    padding .42s var(--ease),
    box-shadow .28s var(--ease);
  animation: smartPhoneGlow 3.4s ease-in-out infinite;
}

.floating-phone::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(200, 164, 106, .48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #0a0a0a 0 4px, transparent 5px),
    linear-gradient(135deg, #f7e2b4, #b88745);
  box-shadow: 0 0 0 8px rgba(200, 164, 106, .12), 0 14px 34px rgba(0, 0, 0, .32);
  transform: translateY(-50%);
  transition: transform .42s var(--ease), left .42s var(--ease), top .42s var(--ease), width .42s var(--ease), height .42s var(--ease);
}

.floating-phone span {
  color: rgba(10, 10, 10, .7);
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.floating-phone strong {
  font-size: 15px;
  line-height: 1.15;
  font-weight: 720;
}

body.phone-at-top .floating-phone {
  top: 17px;
  right: clamp(18px, 5vw, 72px);
  bottom: auto;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  transform: translateY(0) scale(.98);
}

body.phone-at-top .floating-phone::before {
  left: 12px;
  width: 7px;
  height: 7px;
  border: 0;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(10, 10, 10, .12);
}

body.phone-at-top .floating-phone span {
  display: none;
}

body.phone-at-side .floating-phone {
  top: 50%;
  right: clamp(16px, 2.4vw, 32px);
  bottom: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 186px;
  min-height: 70px;
  padding: 13px 18px 13px 22px;
  border-radius: 18px 0 0 18px;
  transform: translateY(-50%);
}

body.phone-at-side .floating-phone:hover {
  transform: translateY(-50%) translateX(-5px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5), 0 0 48px rgba(200, 164, 106, .32);
}

body.phone-at-footer .floating-phone {
  top: auto;
  right: clamp(16px, 5vw, 72px);
  bottom: 28px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 196px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  transform: translateY(0);
}

body.phone-at-footer .floating-phone::before {
  left: 14px;
  width: 8px;
  height: 8px;
  border: 0;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(10, 10, 10, .12);
}

body.phone-at-footer .floating-phone span {
  display: none;
}

@keyframes smartPhoneGlow {
  0%, 100% {
    box-shadow: 0 18px 52px rgba(0, 0, 0, .42), 0 0 28px rgba(200, 164, 106, .16);
  }
  50% {
    box-shadow: 0 20px 58px rgba(0, 0, 0, .46), 0 0 48px rgba(200, 164, 106, .36);
  }
}

@media (max-width: 920px) {
  .floating-phone,
  body.phone-at-top .floating-phone,
  body.phone-at-side .floating-phone,
  body.phone-at-footer .floating-phone {
    left: auto;
    top: auto;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 58px;
    min-width: 58px;
    max-width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transform: none;
    box-shadow: 0 16px 42px rgba(0, 0, 0, .44), 0 0 32px rgba(200, 164, 106, .28);
    animation: mobilePhonePulse 2.2s ease-in-out infinite;
  }

  .floating-phone span,
  .floating-phone strong,
  body.phone-at-top .floating-phone span,
  body.phone-at-top .floating-phone strong,
  body.phone-at-side .floating-phone span,
  body.phone-at-side .floating-phone strong,
  body.phone-at-footer .floating-phone span,
  body.phone-at-footer .floating-phone strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .floating-phone::before,
  body.phone-at-top .floating-phone::before,
  body.phone-at-side .floating-phone::before,
  body.phone-at-footer .floating-phone::before {
    content: "";
    position: absolute;
    inset: -7px;
    width: auto;
    height: auto;
    border: 1px solid rgba(200, 164, 106, .34);
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 0 0 rgba(200, 164, 106, .24);
    transform: none;
    animation: mobilePhoneRing 2.2s ease-out infinite;
  }

  .floating-phone::after {
    content: "☎";
    position: relative;
    z-index: 2;
    color: #0a0a0a;
    font-size: 26px;
    line-height: 1;
    transform: translateY(-1px);
  }

  .floating-phone:hover,
  body.phone-at-side .floating-phone:hover {
    transform: translateY(-2px);
  }

  body {
    padding-bottom: 0;
  }
}

@keyframes mobilePhonePulse {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.07); }
  70% { transform: scale(1); }
}

@keyframes mobilePhoneRing {
  0% {
    opacity: .85;
    transform: scale(.88);
    box-shadow: 0 0 0 0 rgba(200, 164, 106, .22);
  }
  70% {
    opacity: .1;
    transform: scale(1.35);
    box-shadow: 0 0 0 12px rgba(200, 164, 106, 0);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-phone,
  .floating-phone::before {
    animation: none !important;
    transition: none !important;
  }
}

/* FINAL: phone CTA is always sticky and visible */
body.phone-at-top .floating-phone,
body.phone-at-side .floating-phone,
body.phone-at-footer .floating-phone,
.floating-phone {
  position: fixed !important;
  left: auto !important;
  right: clamp(16px, 2.4vw, 32px) !important;
  top: 50% !important;
  bottom: auto !important;
  z-index: 120 !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 5px !important;
  min-width: 188px !important;
  min-height: 72px !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  padding: 14px 18px 14px 22px !important;
  border: 1px solid rgba(200, 164, 106, .46) !important;
  border-radius: 18px 0 0 18px !important;
  color: #0a0a0a !important;
  background: linear-gradient(135deg, #f7e2b4 0%, #c49a5b 48%, #a77a3b 100%) !important;
  box-shadow: 0 20px 58px rgba(0, 0, 0, .46), 0 0 42px rgba(200, 164, 106, .28) !important;
  transform: translateY(-50%) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  will-change: transform !important;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease) !important;
  animation: smartPhoneGlow 3.4s ease-in-out infinite !important;
}

body.phone-at-top .floating-phone:hover,
body.phone-at-side .floating-phone:hover,
body.phone-at-footer .floating-phone:hover,
.floating-phone:hover {
  transform: translateY(-50%) translateX(-5px) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .52), 0 0 52px rgba(200, 164, 106, .38) !important;
}

body.phone-at-top .floating-phone::before,
body.phone-at-side .floating-phone::before,
body.phone-at-footer .floating-phone::before,
.floating-phone::before {
  content: "" !important;
  position: absolute !important;
  left: -13px !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: 26px !important;
  height: 26px !important;
  border: 1px solid rgba(200, 164, 106, .5) !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 50% 50%, #0a0a0a 0 4px, transparent 5px),
    linear-gradient(135deg, #f7e2b4, #b88745) !important;
  box-shadow: 0 0 0 8px rgba(200, 164, 106, .12), 0 14px 34px rgba(0, 0, 0, .32) !important;
  transform: translateY(-50%) !important;
  animation: none !important;
}

body.phone-at-top .floating-phone::after,
body.phone-at-side .floating-phone::after,
body.phone-at-footer .floating-phone::after,
.floating-phone::after {
  content: none !important;
}

body.phone-at-top .floating-phone span,
body.phone-at-side .floating-phone span,
body.phone-at-footer .floating-phone span,
.floating-phone span {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip-path: none !important;
  display: block !important;
  color: rgba(10, 10, 10, .72) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: .12em !important;
  white-space: nowrap !important;
}

body.phone-at-top .floating-phone strong,
body.phone-at-side .floating-phone strong,
body.phone-at-footer .floating-phone strong,
.floating-phone strong {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip-path: none !important;
  display: block !important;
  color: #0a0a0a !important;
  font-size: 15px !important;
  line-height: 1.15 !important;
  font-weight: 720 !important;
  white-space: nowrap !important;
}

@media (max-width: 920px) {
  body.phone-at-top .floating-phone,
  body.phone-at-side .floating-phone,
  body.phone-at-footer .floating-phone,
  .floating-phone {
    left: auto !important;
    right: max(16px, env(safe-area-inset-right)) !important;
    top: auto !important;
    bottom: max(18px, env(safe-area-inset-bottom)) !important;
    width: 56px !important;
    min-width: 56px !important;
    max-width: 56px !important;
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    box-shadow: 0 16px 42px rgba(0, 0, 0, .44), 0 0 34px rgba(200, 164, 106, .34) !important;
    animation: mobilePhonePulse 2.1s ease-in-out infinite !important;
  }

  body.phone-at-top .floating-phone:hover,
  body.phone-at-side .floating-phone:hover,
  body.phone-at-footer .floating-phone:hover,
  .floating-phone:hover {
    transform: translateY(-2px) !important;
  }

  body.phone-at-top .floating-phone span,
  body.phone-at-side .floating-phone span,
  body.phone-at-footer .floating-phone span,
  .floating-phone span,
  body.phone-at-top .floating-phone strong,
  body.phone-at-side .floating-phone strong,
  body.phone-at-footer .floating-phone strong,
  .floating-phone strong {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
  }

  body.phone-at-top .floating-phone::before,
  body.phone-at-side .floating-phone::before,
  body.phone-at-footer .floating-phone::before,
  .floating-phone::before {
    content: "" !important;
    position: absolute !important;
    inset: -7px !important;
    left: -7px !important;
    top: -7px !important;
    right: -7px !important;
    bottom: -7px !important;
    width: auto !important;
    height: auto !important;
    border: 1px solid rgba(200, 164, 106, .34) !important;
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow: 0 0 0 0 rgba(200, 164, 106, .24) !important;
    transform: none !important;
    animation: mobilePhoneRing 2.1s ease-out infinite !important;
  }

  body.phone-at-top .floating-phone::after,
  body.phone-at-side .floating-phone::after,
  body.phone-at-footer .floating-phone::after,
  .floating-phone::after {
    content: "☎" !important;
    position: relative !important;
    z-index: 2 !important;
    color: #0a0a0a !important;
    font-size: 25px !important;
    line-height: 1 !important;
    transform: translateY(-1px) !important;
  }
}
