/* Centric Dental Arts — brand stylesheet
   Pairs with Tailwind CDN. Custom tokens, type, animations, components. */

:root {
  --navy: #0B2545;
  --navy-700: #13325e;
  --navy-100: #e3eaf3;
  --teal: #3FA9B8;
  --teal-600: #2f8a97;
  --teal-50: #ecf6f8;
  --gold: #C9A961;
  --gold-700: #a98a44;
  --gray-warm: #6B7280;
  --gray-soft: #9ca3af;
  --ivory: #FAFAF7;
  --ink: #1a1f2e;
  --line: #e7e3da;
  --shadow-soft: 0 8px 30px rgba(11, 37, 69, 0.08);
  --shadow-deep: 0 20px 60px rgba(11, 37, 69, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-display {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* — Skip link — */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--navy);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 6px;
  z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

/* — Top nav — */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(11, 37, 69, 0.05);
}
.nav-link {
  color: var(--navy);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem .25rem;
  position: relative;
  transition: color .2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-link:hover { color: var(--teal-600); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--teal-600); }

/* — Buttons — */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-deep);
}
.btn-accent {
  background: var(--teal);
  color: #fff;
}
.btn-accent:hover { background: var(--teal-600); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-700); transform: translateY(-1px); }
.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light {
  border-color: rgba(255,255,255,.6);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-ghost { color: var(--navy); padding: .5rem 1rem; }
.btn-ghost:hover { color: var(--teal-600); }
.btn-sm { padding: .55rem 1.1rem; font-size: .875rem; }
.btn-lg { padding: 1rem 1.85rem; font-size: 1.025rem; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* — Trust bar — */
.trust-bar {
  background: var(--navy);
  color: #e9eef6;
  font-size: .82rem;
  letter-spacing: .04em;
}
.trust-bar .dot { color: var(--gold); margin: 0 .75rem; }

/* — Section helpers — */
.section { padding: 5.5rem 0; }
@media (max-width: 768px) { .section { padding: 3.5rem 0; } }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-600);
  font-weight: 600;
}
.divider-gold {
  width: 56px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 1rem 0 1.5rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.lead {
  font-size: 1.1rem;
  color: var(--gray-warm);
  line-height: 1.65;
  max-width: 60ch;
}

/* — Hero — */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(11,37,69,.92) 0%, rgba(11,37,69,.68) 45%, rgba(11,37,69,.35) 100%);
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.hero .accent { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,.88);
  max-width: 38rem;
  line-height: 1.6;
}
.hero-mini {
  min-height: 42vh;
}

/* — Cards — */
.card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-color: transparent;
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* — Floating CTA — */
.floating-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  box-shadow: 0 12px 30px rgba(11, 37, 69, 0.25);
  transform: translateY(0);
  transition: transform .35s ease, opacity .35s ease;
}
.floating-cta.hidden-cta { transform: translateY(120%); opacity: 0; pointer-events: none; }
@media (max-width: 640px) {
  .floating-cta { right: 1rem; bottom: 1rem; padding: .75rem 1.1rem; font-size: .9rem; }
}

/* — Footer — */
.site-footer {
  background: var(--navy);
  color: #cfd6e2;
  padding: 4rem 0 1.25rem;
}
.site-footer h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer a { color: #cfd6e2; transition: color .2s ease; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem;
  padding-top: 1.25rem;
  font-size: .8rem;
  color: #8e98ad;
}

/* — Forms — */
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
  letter-spacing: .01em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(63, 169, 184, 0.15);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-error {
  color: #c0392b;
  font-size: .8rem;
  margin-top: .35rem;
  display: none;
}
.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid {
  border-color: #c0392b;
}
.is-invalid + .form-error { display: block; }

.hipaa-note {
  background: var(--teal-50);
  border-left: 3px solid var(--teal);
  padding: .85rem 1rem;
  font-size: .85rem;
  color: #2c5860;
  border-radius: 6px;
}

/* — Animations — */
.fade-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  .card:hover { transform: none; }
}

/* — Toast — */
.toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-deep);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: 380px;
  transform: translateX(120%);
  transition: transform .4s cubic-bezier(.2,.9,.3,1.2);
}
.toast.show { transform: translateX(0); }
.toast.error { border-left-color: #c0392b; }
.toast .toast-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* — Modal — */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 37, 69, 0.55);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  box-shadow: var(--shadow-deep);
  animation: modalIn .3s cubic-bezier(.2,.9,.3,1.1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.96) translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* — Mobile menu — */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 60;
  padding: 5rem 2rem 2rem;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.5,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu a:hover { color: var(--gold); }
.menu-toggle {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: relative;
  z-index: 70;
  color: var(--navy);
}
.mobile-menu.open ~ * .menu-toggle,
.menu-toggle.is-open { color: #fff; }

/* — Logo — */
.logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--navy);
}
.logo-img {
  height: 46px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .logo-img { height: 38px; }
}
.footer-logo-img {
  height: 54px;
  width: auto;
  display: block;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.04em;
  box-shadow: 0 4px 12px rgba(63, 169, 184, .25);
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--navy);
  font-weight: 500;
}
.logo-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--teal-600);
  font-weight: 600;
  margin-top: .25rem;
}

/* — Gallery — */
.masonry { column-count: 3; column-gap: 1rem; }
.masonry > * { break-inside: avoid; margin-bottom: 1rem; }
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }
.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  display: block;
}
.gallery-tile img {
  width: 100%;
  display: block;
  transition: transform .6s ease;
}
.gallery-tile:hover img { transform: scale(1.05); }
.gallery-tile .tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,37,69,.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: #fff;
}
.gallery-tile:hover .tile-overlay { opacity: 1; }
.tile-overlay h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; line-height: 1.2; }
.tile-overlay p { font-size: .8rem; color: rgba(255,255,255,.85); }

.filter-chip {
  padding: .55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-weight: 500;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s ease;
}
.filter-chip:hover { border-color: var(--teal); color: var(--teal-600); }
.filter-chip.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* — Timeline — */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: .55rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal) 0%, var(--gold) 100%);
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: .35rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--teal);
  box-shadow: 0 0 0 4px var(--ivory);
}
.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 600;
}

/* — Process steps — */
.process-step {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}

/* — Portal — */
.portal-shell { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 80px); }
@media (max-width: 900px) { .portal-shell { grid-template-columns: 1fr; } }
.portal-sidebar {
  background: var(--navy);
  color: #cfd6e2;
  padding: 2rem 1.25rem;
}
.portal-sidebar a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  border-radius: 8px;
  color: #cfd6e2;
  margin-bottom: .25rem;
  font-size: .92rem;
  font-weight: 500;
  transition: all .2s ease;
  cursor: pointer;
}
.portal-sidebar a:hover { background: rgba(255,255,255,.06); color: #fff; }
.portal-sidebar a.active { background: var(--teal); color: #fff; }
.portal-main { padding: 2.5rem; }
@media (max-width: 640px) { .portal-main { padding: 1.5rem; } }

.status-pill {
  display: inline-flex;
  padding: .35rem .75rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.status-received { background: #fef3c7; color: #92400e; }
.status-design { background: #dbeafe; color: #1e40af; }
.status-production { background: #ede9fe; color: #5b21b6; }
.status-finishing { background: #fef9c3; color: #854d0e; }
.status-shipped { background: #d1fae5; color: #065f46; }
.status-paid { background: #d1fae5; color: #065f46; }
.status-due { background: #fee2e2; color: #991b1b; }

.dropzone {
  border: 2px dashed var(--line);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  background: var(--ivory);
  transition: all .25s ease;
  cursor: pointer;
}
.dropzone.drag { border-color: var(--teal); background: var(--teal-50); }
.file-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--teal-50);
  color: var(--navy);
  padding: .4rem .75rem;
  border-radius: 999px;
  font-size: .85rem;
  margin: .25rem .35rem .25rem 0;
}
.file-chip button {
  background: none;
  border: none;
  color: var(--gray-warm);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.file-chip button:hover { color: #c0392b; }

/* — Stripe-like inputs — */
.stripe-input {
  border: 1.5px solid #e6e9f0;
  padding: .85rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  width: 100%;
  font-family: 'Inter', monospace;
  transition: all .15s ease;
}
.stripe-input:focus {
  outline: none;
  border-color: #635bff;
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.12);
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: #d1fae5;
  color: #065f46;
  padding: .3rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
}

/* — Accordion — */
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 500;
}
.accordion-trigger .arrow {
  transition: transform .25s ease;
  color: var(--teal);
}
.accordion-trigger[aria-expanded="true"] .arrow { transform: rotate(45deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.accordion-content > div { padding: 0 0 1.5rem; color: var(--gray-warm); line-height: 1.7; }

/* — Quote — */
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: .8;
  color: var(--gold);
  font-style: italic;
}

/* — Comparison table — */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.compare-table th, .compare-table td {
  padding: 1.15rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.compare-table th {
  background: var(--navy);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
}
.compare-table td:first-child { font-weight: 500; color: var(--navy); }
.compare-table .check { color: #16a34a; }
.compare-table .x { color: #9ca3af; }

/* — Utility — */
.text-navy { color: var(--navy); }
.text-teal { color: var(--teal-600); }
.text-gold { color: var(--gold); }
.text-warm { color: var(--gray-warm); }
.bg-ivory { background: var(--ivory); }
.bg-navy { background: var(--navy); }
.bg-teal-soft { background: var(--teal-50); }
.bg-cream { background: #f4ede0; }
.border-line { border-color: var(--line); }

.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-deep { box-shadow: var(--shadow-deep); }

.rule-vert {
  width: 1px;
  background: var(--line);
  align-self: stretch;
}

/* — Hide scrollbar in mobile menu — */
.mobile-menu::-webkit-scrollbar { display: none; }

/* — Photo placeholders (until real Centric lab photography is supplied) — */
.photo-ph {
  position: relative;
  width: 100%;
  min-height: 100%;
  background:
    radial-gradient(circle at 18% 22%, rgba(63,169,184,.22) 0%, transparent 55%),
    radial-gradient(circle at 82% 78%, rgba(201,169,97,.18) 0%, transparent 55%),
    linear-gradient(135deg, #0B2545 0%, #13325e 55%, #1d4870 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.75rem;
  border-radius: inherit;
  overflow: hidden;
  isolation: isolate;
}
.photo-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(255,255,255,.04) 95%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,.04) 95%);
  background-size: 28px 28px;
  z-index: 0;
  opacity: .6;
}
.photo-ph > * { position: relative; z-index: 1; }
.photo-ph .ph-icon {
  width: 54px; height: 54px;
  border: 1px solid rgba(201,169,97,.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.1rem;
  background: rgba(11,37,69,.35);
}
.photo-ph .ph-label {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .6rem;
}
.photo-ph .ph-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.4;
  color: rgba(255,255,255,.92);
  max-width: 32ch;
  font-style: italic;
}
.photo-ph.ph-sm .ph-caption { font-size: .95rem; }
.photo-ph.ph-hero {
  border-radius: 0;
  min-height: 100%;
}
.photo-ph.ph-hero .ph-caption {
  font-size: 1.4rem;
  max-width: 38ch;
  color: rgba(255,255,255,.6);
}
.photo-ph.ph-hero .ph-icon { width: 64px; height: 64px; }

.gallery-tile .photo-ph { aspect-ratio: 4 / 5; }
.gallery-tile:hover .photo-ph { transform: none; }

/* For hero backgrounds (no img tag, uses background-image) */
.hero-bg.ph-bg {
  background:
    radial-gradient(circle at 15% 30%, rgba(63,169,184,.35) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(201,169,97,.25) 0%, transparent 55%),
    linear-gradient(135deg, #0B2545 0%, #13325e 50%, #1d4870 100%) !important;
}
.hero-bg.ph-bg::after { display: none; }
.hero.hero-bg-replaced h1 { text-shadow: 0 4px 30px rgba(0,0,0,.4); }
