@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

:root {
  --ink: #141619;
  --muted: #5b6470;
  --line: #d9e0e5;
  --paper: #f7f8f6;
  --white: #ffffff;
  --gold: #c99a34;
  --gold-dark: #946b1f;
  --teal: #0b6f75;
  --teal-dark: #06484d;
  --brick: #8c3f2f;
  --charcoal: #20252a;
  --shadow: 0 22px 60px rgba(20, 22, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 224, 229, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.hero-actions,
.contact-grid,
.commerce-tags,
.area-list {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
  min-width: 235px;
}

.brand-mark,
.gold-elephant {
  display: inline-grid;
  place-items: center;
  color: var(--gold);
}

.brand-mark {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 154, 52, 0.35);
  border-radius: 8px;
  background: #17191d url("assets/laxgen-header-logo.jpeg") center / contain no-repeat;
}

.brand-mark svg,
.gold-elephant svg {
  display: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Cinzel, "Playfair Display", Georgia, serif;
  font-size: 0.86rem;
  font-weight: 800;
}

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

.main-nav {
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a,
.header-cta {
  text-decoration: none;
}

.main-nav a {
  color: #34404a;
}

.header-cta {
  padding: 10px 15px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  color: var(--teal-dark);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(20px, 6vw, 78px) 70px;
  color: var(--white);
}

.hero-home h1 {
  max-width: 680px;
}

.page-hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 78px) 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 12, 14, 0.84), rgba(10, 12, 14, 0.46)),
    url("assets/commerce-hero-4k.png") center / cover;
}

.page-hero-content {
  max-width: 820px;
}

.page-hero-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

.notary-hero {
  background:
    linear-gradient(90deg, rgba(4, 72, 77, 0.9), rgba(10, 12, 14, 0.34)),
    url("assets/notary-hero-4k.png") center / cover;
}

.commerce-page-hero {
  background:
    linear-gradient(90deg, rgba(20, 22, 25, 0.86), rgba(148, 107, 31, 0.3)),
    url("assets/commerce-hero-4k.png") center / cover;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 12, 14, 0.82), rgba(10, 12, 14, 0.48) 48%, rgba(10, 12, 14, 0.18)),
    linear-gradient(0deg, rgba(10, 12, 14, 0.6), transparent 42%);
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Cinzel, "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 6.4vw, 5.45rem);
  max-width: 760px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 500;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 7px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--gold);
  color: #17130a;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.button-dark {
  background: var(--teal-dark);
  color: var(--white);
}

.text-link {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.section-dark .text-link {
  color: var(--gold);
}

.choice-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.choice-band-feature {
  border-top: 5px solid var(--gold);
}

.business-card {
  min-height: 190px;
  padding: clamp(24px, 4vw, 46px);
  text-decoration: none;
  border-right: 1px solid var(--line);
}

.business-card span,
.business-card small,
.business-card strong {
  display: block;
}

.business-card span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.business-card strong {
  margin: 12px 0;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.business-card small {
  color: var(--muted);
  font-size: 1rem;
}

.notary-card {
  border-top: 5px solid var(--teal);
}

.commerce-card {
  border-top: 5px solid var(--gold);
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 6vw, 78px);
}

.section-light {
  background: var(--white);
}

.section-muted {
  background: #eef2f1;
}

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

.section-accent {
  background: linear-gradient(135deg, #0b6f75, #263f42);
  color: var(--white);
}

.section-contact {
  background: #f2efe8;
}

.policy-page {
  padding-top: 86px;
}

.policy-content {
  max-width: 920px;
}

.policy-content h2 {
  margin-top: 30px;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
}

.policy-content p {
  color: var(--muted);
}

.section-booking {
  background:
    linear-gradient(135deg, rgba(11, 111, 117, 0.08), rgba(201, 154, 52, 0.12)),
    var(--white);
}

.section-pricing {
  background: #f2efe8;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.notary-layout,
.commerce-shell,
.service-area,
.maps-note,
.info-layout,
.contact-grid,
.booking-page-layout,
.payment-grid {
  display: grid;
  gap: 28px;
}

.notary-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: start;
}

.booking-page-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: start;
}

.service-panel,
.booking-box,
.info-block,
.contact-grid article,
.calendar-panel,
.payment-card,
.payment-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(20, 22, 25, 0.08);
}

.service-panel,
.booking-box,
.info-block,
.contact-grid article,
.calendar-panel,
.payment-card,
.payment-note {
  padding: clamp(22px, 3vw, 32px);
}

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

.service-grid article {
  padding: 18px;
  border-left: 4px solid var(--teal);
  background: #f6fbfa;
}

.service-grid p,
.info-block p,
.contact-grid p,
.maps-steps p,
.maps-steps li {
  color: var(--muted);
}

.booking-box {
  position: sticky;
  top: 88px;
}

form {
  display: grid;
  gap: 14px;
}

.hidden-field {
  display: none !important;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: #34404a;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8d2d8;
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

select {
  min-height: 58px;
  padding-right: 46px;
  color: #111418 !important;
  background-color: #ffffff !important;
  line-height: 1.25;
  text-overflow: ellipsis;
}

option {
  color: #111418;
  background: #ffffff;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 700;
}

.calendar-card {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #f7fbfb;
}

.calendar-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  background: var(--teal-dark);
  color: var(--white);
}

.calendar-top span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.calendar-grid span,
.calendar-grid button {
  min-height: 52px;
  border: 0;
  background: var(--white);
  font: inherit;
  font-weight: 800;
}

.calendar-grid span {
  display: grid;
  place-items: center;
  min-height: 36px;
  color: var(--muted);
  font-size: 0.78rem;
}

.calendar-grid button {
  cursor: pointer;
}

.calendar-grid .selected-day {
  background: var(--gold);
  color: #17130a;
}

.time-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
}

.time-chips span {
  padding: 9px 11px;
  border-radius: 6px;
  background: #eef2f1;
  color: var(--teal-dark);
  font-weight: 800;
}

.pay-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 800;
}

.service-area,
.maps-note {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.area-list,
.commerce-tags {
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span,
.commerce-tags span {
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 800;
}

.area-list span {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.commerce-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.elephant-lockup {
  display: flex;
  gap: 22px;
  align-items: center;
}

.gold-elephant {
  flex: 0 0 auto;
  width: clamp(86px, 13vw, 150px);
  height: clamp(86px, 13vw, 150px);
  border: 1px solid rgba(201, 154, 52, 0.45);
  border-radius: 8px;
  background: #111418 url("assets/laxgen-elephant-logo.jpeg") center / cover;
  box-shadow: var(--shadow);
}

.commerce-copy {
  font-size: 1.1rem;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 100vh;
  padding: 132px clamp(20px, 6vw, 78px) 70px;
  background:
    linear-gradient(135deg, rgba(17, 20, 24, 0.94), rgba(58, 42, 14, 0.88)),
    url("assets/commerce-hero-4k.png") center / cover;
  color: var(--white);
}

.profile-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.58;
}

.hero-pillar-card {
  max-width: 760px;
  margin: 0 0 18px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(201, 154, 52, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(17, 20, 24, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(201, 154, 52, 0.16),
    0 18px 44px rgba(0, 0, 0, 0.14);
}

.origin-badge {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-pillars article {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(201, 154, 52, 0.2);
  border-radius: 7px;
  background: rgba(7, 10, 13, 0.58);
  display: grid;
  align-items: center;
}

.hero-pillars span {
  display: block;
  margin-bottom: 12px;
  color: rgba(201, 154, 52, 0.8);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-pillars strong {
  display: block;
  color: var(--gold);
  font-family: Cinzel, "Playfair Display", Georgia, serif;
  font-size: clamp(0.92rem, 1.4vw, 1.12rem);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 0 18px rgba(201, 154, 52, 0.22);
}

.market-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin: 0 0 18px;
}

.market-chips span {
  padding: 8px 11px;
  border: 1px solid rgba(201, 154, 52, 0.38);
  border-radius: 999px;
  background: rgba(17, 20, 24, 0.72);
  color: rgba(255, 255, 255, 0.9);
  font-family: "DM Sans", Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.profile-logo {
  display: block;
  width: min(520px, 100%);
  margin: 0 0 24px;
  border: 1px solid rgba(201, 154, 52, 0.45);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.award-line {
  display: inline-block;
  margin: 2px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(201, 154, 52, 0.42);
  border-radius: 6px;
  background: rgba(201, 154, 52, 0.12);
  color: var(--gold) !important;
  font-family: Cinzel, "Playfair Display", Georgia, serif;
  font-weight: 800;
  line-height: 1.35;
}

.trade-animation {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 10px;
  align-items: center;
  width: min(560px, 100%);
  min-height: 76px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(201, 154, 52, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 52%, rgba(201, 154, 52, 0.25), transparent 24%),
    radial-gradient(circle at 78% 42%, rgba(11, 111, 117, 0.25), transparent 26%),
    rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.trade-animation::before {
  content: "";
  position: absolute;
  inset: 50% 24px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 154, 52, 0.85), transparent);
}

.trade-animation span {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(201, 154, 52, 0.9);
  animation: tradeMove 4.8s linear infinite;
}

.trade-animation span:nth-child(2) {
  animation-delay: 1.6s;
}

.trade-animation span:nth-child(3) {
  animation-delay: 3.2s;
}

.trade-animation strong {
  position: relative;
  z-index: 1;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(17, 20, 24, 0.72);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
}

@keyframes tradeMove {
  from {
    left: 22px;
    transform: translateY(-50%);
    opacity: 0;
  }

  12%,
  86% {
    opacity: 1;
  }

  to {
    left: calc(100% - 32px);
    transform: translateY(-50%);
    opacity: 0;
  }
}

.profile-poster {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(201, 154, 52, 0.55);
  border-radius: 8px;
  background: #111418;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.profile-poster img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.signature-band {
  padding: clamp(36px, 6vw, 70px) clamp(20px, 6vw, 78px);
  background: #0e131b;
}

.signature-band img {
  display: block;
  width: min(1120px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(201, 154, 52, 0.42);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

.profile-copy {
  max-width: 760px;
}

.profile-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.profile-card {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(201, 154, 52, 0.45);
  border-radius: 8px;
  background: #111418;
  box-shadow: var(--shadow);
}

.profile-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.profile-link,
.stacked-link {
  display: inline-block;
  margin-top: 14px;
}

.award {
  color: var(--gold);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  font-family: Cinzel, "Playfair Display", Georgia, serif;
}

.award-sub {
  display: inline-block;
  color: rgba(201, 154, 52, 0.78);
  font-size: 0.82em;
  font-family: "DM Sans", Inter, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.commerce-tags {
  margin: 24px 0 28px;
}

.commerce-tags span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.info-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.partner-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  color: #34404a;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(20, 22, 25, 0.07);
}

.company-focus .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

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

.focus-grid article {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(201, 154, 52, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.focus-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.focus-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-strip span {
  padding: 12px 14px;
  border: 1px solid rgba(201, 154, 52, 0.28);
  border-radius: 6px;
  background: var(--white);
  color: #1f2429;
  font-weight: 800;
}

.category-strip span:nth-child(8),
.category-strip span:nth-child(9) {
  background: #111418;
  color: var(--gold);
  box-shadow: 0 12px 28px rgba(20, 22, 25, 0.12);
}

.category-note {
  max-width: 980px;
  margin: 22px 0 0;
  padding: 18px 20px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(20, 22, 25, 0.07);
}

.notary-separation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.notary-separation div {
  max-width: 760px;
}

.notary-separation p:not(.eyebrow) {
  color: var(--muted);
}

.assistant-section {
  border-top: 1px solid var(--line);
}

.assistant-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfb;
  box-shadow: 0 12px 32px rgba(20, 22, 25, 0.08);
}

.chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  min-width: 92px;
  min-height: 54px;
  border: 1px solid rgba(201, 154, 52, 0.65);
  border-radius: 999px;
  background: #111418;
  color: var(--gold);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.agent-panel {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 39;
  width: min(380px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid rgba(201, 154, 52, 0.36);
  border-radius: 8px;
  background: #111418;
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.agent-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.agent-panel h2 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.agent-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.agent-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.mini-agent-form {
  display: grid;
  gap: 10px;
}

.mini-agent-form input,
.mini-agent-form select,
.mini-agent-form textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.94);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.price-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(20, 22, 25, 0.08);
}

.price-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.price-card p {
  color: var(--muted);
}

.featured-price {
  border-color: rgba(201, 154, 52, 0.6);
  box-shadow: 0 16px 42px rgba(201, 154, 52, 0.18);
}

.pricing-note {
  margin-top: 22px;
  padding: clamp(20px, 3vw, 28px);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
}

.pricing-note .text-link {
  display: inline-block;
  margin-left: 8px;
}

.payment-card {
  position: relative;
}

.payment-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-card.recommended {
  border-color: rgba(11, 111, 117, 0.55);
  box-shadow: 0 16px 42px rgba(11, 111, 117, 0.16);
}

.payment-note {
  margin-top: 24px;
  border-left: 5px solid var(--teal);
  box-shadow: none;
}

.inquiry-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfb;
}

.wide,
.inquiry-form .button,
.inquiry-form .form-status {
  grid-column: 1 / -1;
}

.maps-note {
  max-width: 1120px;
}

.maps-steps {
  background: var(--white);
  border-left: 5px solid var(--brick);
  padding: clamp(22px, 3vw, 34px);
}

.maps-steps ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.maps-steps li + li {
  margin-top: 10px;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.contact-grid article {
  box-shadow: none;
}

.contact-grid a {
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  padding: 26px clamp(20px, 6vw, 78px);
  background: #111418;
  color: rgba(255, 255, 255, 0.74);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

.laxgen-home {
  background: #050608;
}

.premium-header {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.98), rgba(17, 20, 24, 0.96)),
    rgba(5, 6, 8, 0.98);
  border-bottom-color: rgba(201, 154, 52, 0.62);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.premium-brand {
  min-width: 310px;
}

.premium-logo-mark {
  width: 62px;
  height: 62px;
  background: #08090b url("assets/laxgen-premium-elephant-logo.png") center / cover no-repeat;
  border-color: rgba(201, 154, 52, 0.75);
  box-shadow: 0 16px 42px rgba(20, 22, 25, 0.22);
}

.premium-cta {
  border-color: var(--gold);
  color: #111418;
  background: linear-gradient(135deg, #f4d278, #c99a34);
}

.premium-header .brand strong,
.premium-header .main-nav a {
  color: #f7e4a9;
}

.premium-header .brand small {
  color: rgba(255, 255, 255, 0.74);
}

.premium-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: #050608;
}

.premium-hero-bg,
.premium-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.premium-hero-bg {
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.premium-hero-shade {
  background:
    radial-gradient(circle at 82% 12%, rgba(201, 154, 52, 0.23), transparent 24%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.93), rgba(5, 6, 8, 0.68) 45%, rgba(5, 6, 8, 0.24)),
    linear-gradient(0deg, rgba(5, 6, 8, 0.78), transparent 44%);
}

.premium-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.55fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: 100vh;
  padding: 178px clamp(20px, 6vw, 78px) 72px;
}

.premium-hero-copy h1 {
  max-width: 900px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.premium-hero-copy h1 span {
  color: var(--gold);
}

.premium-award {
  max-width: 760px;
  margin: 26px 0 0;
  padding: 18px 22px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(201, 154, 52, 0.14);
  color: #f7d985;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(201, 154, 52, 0.16);
}

.premium-logo-card {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(201, 154, 52, 0.5);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(8px);
}

.premium-logo-card img {
  display: block;
  width: 100%;
  max-height: min(430px, 56vh);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(201, 154, 52, 0.42);
}

.premium-logo-card strong,
.premium-logo-card span {
  display: block;
  text-align: center;
}

.premium-logo-card strong {
  margin-top: 16px;
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
}

.premium-logo-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.premium-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(201, 154, 52, 0.34);
  border-bottom: 1px solid rgba(201, 154, 52, 0.2);
  background: #0b0d10;
  color: var(--white);
}

.premium-strip article {
  min-height: 230px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid rgba(201, 154, 52, 0.18);
}

.premium-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.premium-strip strong {
  display: block;
  margin-bottom: 12px;
  color: #f4d278;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.premium-strip p {
  color: rgba(255, 255, 255, 0.72);
}

.premium-section {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 6vw, 78px);
}

.dark-map-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(201, 154, 52, 0.18), transparent 28%),
    linear-gradient(135deg, #090b0f, #161d27 58%, #090805);
  color: var(--white);
}

.premium-two-col,
.premium-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.premium-two-col p:not(.eyebrow),
.dark-map-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.premium-image-frame {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(201, 154, 52, 0.46);
  border-radius: 8px;
  background: #0b0d10;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.premium-image-frame img {
  display: block;
  width: 100%;
  border-radius: 6px;
}

.light-premium {
  background:
    linear-gradient(135deg, rgba(201, 154, 52, 0.08), rgba(11, 111, 117, 0.05)),
    #f5f1e8;
}

.premium-product-layout {
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 0.95fr);
}

.light-frame {
  background: #fffaf0;
}

.premium-chips span {
  background: #111418;
  color: #f5d476;
  border-color: rgba(201, 154, 52, 0.46);
}

.compact-hero-grid {
  grid-template-columns: minmax(0, 0.9fr);
}

.product-hero {
  min-height: 78vh;
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.product-toolbar button {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(201, 154, 52, 0.46);
  border-radius: 999px;
  background: #111418;
  color: #f5d476;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.product-toolbar button.is-active {
  background: var(--gold);
  color: #111418;
}

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

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: 22px;
  align-items: start;
}

.product-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 52, 0.34);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 18px 44px rgba(20, 22, 25, 0.1);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card > div {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.product-card span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.25rem;
}

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

.product-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.product-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(201, 154, 52, 0.18);
}

.product-card dt,
.product-card dd {
  margin: 0;
  font-size: 0.9rem;
}

.product-card dt {
  color: var(--muted);
  font-weight: 800;
}

.product-card dd {
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.cert-line {
  color: var(--gold-dark) !important;
  font-weight: 800;
}

.text-button {
  justify-self: start;
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.shop-cart {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(201, 154, 52, 0.4);
  border-radius: 8px;
  background: #111418;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(20, 22, 25, 0.18);
}

.shop-cart h2 {
  font-size: 1.75rem;
}

.shop-cart p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-items article {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(201, 154, 52, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.cart-items strong,
.cart-items span {
  display: block;
}

.cart-items strong {
  color: #f5d476;
  font-size: 0.92rem;
}

.cart-items span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.qty-controls {
  display: grid;
  grid-template-columns: 30px 30px 30px;
  gap: 4px;
  align-items: center;
}

.qty-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201, 154, 52, 0.4);
  border-radius: 6px;
  background: rgba(201, 154, 52, 0.12);
  color: #f5d476;
  cursor: pointer;
}

.qty-controls span {
  text-align: center;
  font-weight: 900;
}

.cart-actions {
  display: grid;
  gap: 10px;
}

.inquiry-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(201, 154, 52, 0.2), transparent 24%),
    #101418;
  color: var(--white);
}

.premium-inquiry {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(201, 154, 52, 0.42);
}

.notary-note {
  padding: 16px 18px;
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .choice-band,
  .notary-layout,
  .commerce-shell,
  .profile-layout,
  .profile-hero,
  .premium-hero-grid,
  .premium-strip,
  .premium-two-col,
  .premium-product-layout,
  .shop-layout,
  .product-grid,
  .focus-grid,
  .service-area,
  .maps-note,
  .info-layout,
  .partner-list,
  .booking-page-layout,
  .payment-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .booking-box {
    position: static;
  }
}

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

  .brand {
    min-width: 0;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }

  .premium-brand {
    min-width: 0;
  }

  .premium-hero-grid {
    padding-top: 190px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 190px;
  }

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

  .choice-band,
  .service-grid,
  .inquiry-form,
  .premium-inquiry,
  .assistant-form,
  .contact-grid,
  .form-row,
  .hero-pillars {
    grid-template-columns: 1fr;
  }

  .business-card {
    min-height: 0;
  }

  .elephant-lockup {
    align-items: flex-start;
    flex-direction: column;
  }

  .notary-separation {
    align-items: flex-start;
    flex-direction: column;
  }
}
