:root {
  --bg: #111312;
  --bg-deep: #0d0f0e;
  --surface: #181b19;
  --surface-strong: #20241f;
  --ink: #f4efe4;
  --muted: #beb8aa;
  --gold: #d6a95a;
  --green: #2f6f5e;
  --rust: #a94732;
  --line: rgba(214, 169, 90, 0.28);
  --soft-line: rgba(244, 239, 228, 0.12);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.material-symbols-outlined {
  font-size: 20px;
  line-height: 1;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.esotech-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  color: var(--ink);
  background: rgba(17, 19, 18, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.esotech-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.esotech-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.esotech-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #111312;
  background: linear-gradient(135deg, var(--gold), var(--rust));
  font-weight: 600;
}

.esotech-word {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.05;
}

.esotech-word strong {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.esotech-word span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.esotech-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.esotech-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.esotech-links a:hover,
.esotech-links a[aria-current="page"] {
  color: var(--ink);
}

.esotech-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: #111312 !important;
  background: var(--gold);
  white-space: nowrap;
}

.drawer-toggle,
.drawer-close {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(244, 239, 228, 0.04);
  cursor: pointer;
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: none;
  background: rgba(0, 0, 0, 0.56);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 102;
  width: min(360px, 86vw);
  height: 100dvh;
  padding: 18px;
  color: var(--ink);
  background: #121513;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.drawer-open .drawer-scrim {
  display: block;
}

.drawer-open .mobile-drawer {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--soft-line);
}

.drawer-links {
  display: grid;
  gap: 8px;
  padding-top: 20px;
}

.drawer-links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 10px;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.drawer-links a:hover,
.drawer-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(214, 169, 90, 0.1);
}

.drawer-links .drawer-cta {
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  border: 1px solid var(--gold);
  color: #111312;
  background: var(--gold);
}

.drawer-links .drawer-cta-soft {
  color: var(--ink);
  background: transparent;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #111312;
  background: var(--gold);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(17, 19, 18, 0.18);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

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

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 18, 0.96) 0%, rgba(17, 19, 18, 0.74) 48%, rgba(17, 19, 18, 0.22) 100%),
    linear-gradient(0deg, rgba(17, 19, 18, 0.9) 0%, rgba(17, 19, 18, 0.05) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(740px, 100%);
  padding: 82px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

strong {
  font-weight: 600;
}

.hero h1 {
  font-size: 52px;
  line-height: 1;
  font-weight: 600;
}

.hero-lead {
  max-width: 650px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.hero-copy {
  max-width: 650px;
  margin: 16px 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 720px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-row div {
  padding: 16px;
  background: rgba(17, 19, 18, 0.78);
}

.proof-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 19px;
  font-weight: 600;
}

.proof-row span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: var(--surface);
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section h2 {
  font-size: 34px;
  line-height: 1.12;
  font-weight: 600;
}

.section-copy {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.grid-3,
.grid-2,
.pricing-grid {
  display: grid;
  gap: 20px;
}

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

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

.feature-card,
.price-card,
.contact-card {
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--surface-strong);
}

.feature-card {
  padding: 24px;
}

.feature-card .material-symbols-outlined {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 30px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
}

.service-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.service-list .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 18px;
  margin-top: 2px;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  color: inherit;
  text-decoration: none;
}

.price-card.highlight {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(47, 111, 94, 0.3), var(--surface-strong));
}

.badge {
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #111312;
  background: var(--gold);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 26px;
  line-height: 1.15;
}

.price-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.price {
  margin: 22px 0 18px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 600;
}

.price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cta-band {
  padding: 52px 0;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(47, 111, 94, 0.56), rgba(169, 71, 50, 0.34)), var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-inner h2 {
  font-size: 30px;
  line-height: 1.15;
}

.cta-inner p {
  max-width: 620px;
  margin-top: 10px;
  color: var(--ink);
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  align-items: stretch;
}

.contact-card {
  padding: 26px;
}

.contact-card h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  line-height: 1.65;
}

.contact-card a {
  display: block;
  margin-top: 8px;
  text-decoration: none;
}

.esotech-footer {
  width: 100%;
  color: var(--ink);
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 28px;
  padding: 44px 0;
}

.footer-grid h2 {
  font-size: 25px;
  line-height: 1.18;
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-grid p {
  max-width: 580px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-grid a {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-grid a:hover,
.footer-phone {
  color: var(--gold) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 920px) {
  .esotech-links {
    display: none;
  }

  .drawer-toggle,
  .drawer-close {
    display: grid;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .proof-row,
  .grid-3,
  .grid-2,
  .pricing-grid,
  .media-split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 64px 0;
  }

  .section h2 {
    font-size: 29px;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
  }

  .esotech-nav {
    min-height: 66px;
  }

  .esotech-word strong {
    font-size: 15px;
  }

  .esotech-word span {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero,
  .page-hero {
    min-height: 62svh;
  }

  .hero-content {
    padding: 58px 0 54px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .proof-row div,
  .feature-card,
  .price-card,
  .contact-card {
    padding: 20px;
  }

  .price {
    font-size: 26px;
  }
}
