:root {
  --ink: #f4efe6;
  --navy: #060a12;
  --gold: #d7b46a;
  --soft-gold: #f3dfad;
  --paper: #080d16;
  --muted: #a9acb5;
  --line: rgba(215, 180, 106, 0.18);
  --white: #ffffff;
  --content: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 180, 106, 0.13), transparent 32%),
    linear-gradient(180deg, #080d16, #0b111c 46%, #070a10);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(8, 13, 22, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #070a10;
  background: linear-gradient(135deg, #f7e7b8, #d7b46a 46%, #8d6a2f);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

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

.brand small {
  color: rgba(244, 239, 230, 0.64);
  font-size: 11px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(244, 239, 230, 0.64);
  font-size: 14px;
  font-weight: 700;
}

.header-action,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease);
}

.header-action,
.button.primary {
  color: #070a10;
  background: linear-gradient(135deg, #f7e7b8, #d7b46a 46%, #8d6a2f);
}

.button.ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.button:hover,
.header-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(11, 17, 28, 0.18);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(120px, 14vw, 170px) clamp(20px, 5vw, 70px) clamp(58px, 8vw, 90px);
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 10, 18, 0.92), rgba(6, 10, 18, 0.48)),
    linear-gradient(135deg, rgba(215, 180, 106, 0.18), rgba(6, 10, 18, 0)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=82") center / cover;
  filter: saturate(0.68) contrast(1.08) sepia(0.18);
}

.hero-inner {
  position: relative;
  width: min(840px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 98px);
}

h2 {
  font-size: clamp(34px, 4.6vw, 62px);
}

h3 {
  font-size: 22px;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 28px clamp(20px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: rgba(244, 239, 230, 0.64);
}

.section {
  padding: clamp(76px, 10vw, 124px) clamp(20px, 5vw, 70px);
}

.two-column,
.consult-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 500px) minmax(280px, 620px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
}

.two-column > :first-child,
.consult-section > :first-child,
.contact-section > :first-child {
  grid-column: 2;
}

.two-column > :last-child,
.consult-section > :last-child,
.contact-section > :last-child {
  grid-column: 3;
}

.section-heading,
.practice-grid,
.case-grid,
.resources-grid {
  width: min(var(--content), 100%);
  margin-inline: auto;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 40px;
}

.section-copy,
.consult-section p {
  color: rgba(244, 239, 230, 0.64);
  font-size: 18px;
}

.practice-section,
.resources-section {
  background: white;
}

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

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

.practice-card,
.case-card,
.resource-card,
.consult-form,
.contact-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 65px rgba(11, 17, 28, 0.08);
}

.practice-card,
.resource-card {
  min-height: 260px;
  padding: 28px;
}

.practice-card span,
.resource-card span,
.case-label {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.practice-card p,
.case-card p,
.resource-card p {
  color: rgba(244, 239, 230, 0.64);
}

.case-card {
  padding: 32px;
}

.consult-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(201, 164, 93, 0.18), transparent 30%),
    linear-gradient(135deg, #101a2b, #0b111c);
  color: white;
}

.consult-section h2,
.consult-section p {
  color: white;
}

.consult-section p {
  color: rgba(255, 255, 255, 0.72);
}

.consult-form {
  display: grid;
  gap: 15px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: white;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--soft-gold);
  font-weight: 800;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.contact-panel a {
  padding: 16px 18px;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 44px clamp(20px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
}

.site-footer strong {
  color: white;
}

.site-footer p {
  max-width: 420px;
  margin: 10px 0 0;
}

.mobile-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-action {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: 77px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    padding: 10px;
    background: rgba(247, 244, 238, 0.95);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 65px rgba(11, 17, 28, 0.16);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .two-column,
  .consult-section,
  .contact-section,
  .practice-grid,
  .case-grid,
  .resources-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .two-column > :first-child,
  .consult-section > :first-child,
  .contact-section > :first-child,
  .two-column > :last-child,
  .consult-section > :last-child,
  .contact-section > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 74px;
  }

  .hero {
    min-height: 78vh;
    padding: 104px 16px 36px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  h2 {
    font-size: clamp(31px, 10vw, 44px);
  }

  .section {
    padding: 58px 16px;
  }

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

  .trust-strip div,
  .practice-card,
  .case-card,
  .resource-card,
  .consult-form,
  .contact-panel {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
    padding: 38px 16px 34px;
  }

  .mobile-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    background: rgba(247, 244, 238, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    box-shadow: 0 18px 48px rgba(11, 17, 28, 0.24);
    backdrop-filter: blur(20px);
  }

  .mobile-bar a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: var(--gold);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
  }
}


/* Premium dark refinement */
body,
input,
select,
textarea,
button {
  font-family: Georgia, "Times New Roman", serif;
}

.site-header {
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.site-nav,
.brand small,
.eyebrow,
.button,
.header-action,
input,
select,
textarea,
.mobile-bar a {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 13, 22, 0), rgba(8, 13, 22, 0.72));
  content: "";
}

.hero-inner {
  z-index: 1;
}

.trust-strip,
.practice-section,
.resources-section {
  background: rgba(10, 16, 27, 0.82);
  border-block: 1px solid var(--line);
}

.trust-strip div {
  border-color: var(--line);
}

.proof-item strong {
  display: block;
  color: var(--soft-gold);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.credibility-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 20px;
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}

.credibility-panel,
.credibility-stats div,
.practice-card,
.case-card,
.resource-card,
.consult-form,
.contact-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(215, 180, 106, 0.2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.credibility-panel {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
}

.credibility-panel blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
}

.quote-meta {
  margin-top: 28px;
  display: grid;
  gap: 4px;
}

.quote-meta span,
.credibility-stats span {
  color: var(--muted);
}

.credibility-stats {
  display: grid;
  gap: 14px;
}

.credibility-stats div {
  padding: 24px;
  border-radius: 8px;
}

.credibility-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--soft-gold);
}

.practice-card,
.case-card,
.resource-card {
  color: var(--ink);
}

.consult-section {
  border-block: 1px solid rgba(215, 180, 106, 0.18);
}

.concierge-steps {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.concierge-steps span,
.form-header,
.concierge-slots button {
  border: 1px solid rgba(215, 180, 106, 0.24);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.concierge-steps span {
  width: fit-content;
  padding: 10px 14px;
  color: var(--soft-gold);
  font-weight: 800;
}

.form-header {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 8px;
}

.form-header span {
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-header strong {
  color: white;
  font-size: 24px;
}

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

.concierge-slots button {
  min-height: 44px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.concierge-slots button.is-selected {
  color: #070a10;
  background: linear-gradient(135deg, #f7e7b8, #d7b46a 46%, #8d6a2f);
}

input,
select,
textarea {
  color: #080d16;
  background: rgba(255, 255, 255, 0.92);
}

.contact-panel a {
  color: #080d16;
  background: linear-gradient(135deg, #ffffff, #eadbb8);
}

@media (max-width: 1100px) {
  .credibility-section {
    grid-template-columns: 1fr;
  }

  .site-nav {
    background: rgba(8, 13, 22, 0.96);
  }

  .nav-toggle span {
    background: var(--ink);
  }
}

@media (max-width: 560px) {
  .credibility-section {
    width: auto;
    margin-inline: 16px;
  }

  .concierge-slots {
    grid-template-columns: 1fr;
  }
}
