/*
Theme Name: UXDCO
Theme URI: https://uxdco.com/
Author: UXDCO.COM
Author URI: https://uxdco.com/
Description: Editorial dark theme for UXDCO.COM — a live, online UX design training program. Every section of the site ships as a custom Elementor widget, and a one-click importer builds all five pages (Home, Why UX, Programs, Curriculum, Enroll) ready to edit in the builder.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: uxdco
Tags: one-column, custom-menu, custom-logo, editor-style, featured-images, full-width-template, translation-ready
*/

/* ==============================================================
   UXDCO — theme stylesheet
   Ported from the static site's styles.css. Bare element selectors
   that would leak into Elementor's own markup (section, footer) are
   class-scoped instead.
   ============================================================== */

:root {
  --ink: #0E0D0C;
  --ink-2: #16140F;
  --bone: #EDE8DD;
  --bone-dim: #8C887E;
  --clay: #C8754B;
  --clay-deep: #9A4F2C;
  --line: rgba(237, 232, 221, .14);
  --display: "Fraunces", Georgia, serif;
  --body: "Space Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
::selection { background: var(--clay); color: var(--ink); }

/* ---- utilities ---- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px); }
.mono { font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--bone-dim); }
.clay { color: var(--clay); }
.uxdco-section { padding: clamp(70px, 9vw, 130px) 0; }
.uxdco-section--line { border-top: 1px solid var(--line); }
.uxdco-section--center { text-align: center; }
.uxdco-section--tint { background: var(--ink-2); border-block: 1px solid var(--line); }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ---- grain overlay ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- nav ----
   Scoped to .site-nav so the footer <nav> and the home strip <nav>
   are NOT affected by the fixed top-bar positioning. */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14, 13, 12, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
body.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-nav { top: 46px; } }
.nav-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 72px);
}
.brand {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  z-index: 102;
}
.brand b { font-style: italic; font-weight: 400; color: var(--clay); }
.brand img { max-height: 44px; width: auto; }
.nav-links { display: flex; gap: 30px; }
.nav-links ul { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--clay); }
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a { color: var(--clay); }

/* burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 102;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bone);
  transition: transform .35s ease, opacity .25s ease;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 720px) {
  .site-nav { height: 72px; z-index: 9999; }
  .nav-in { padding: 16px 20px; height: 72px; }
  .burger { display: flex; position: relative; z-index: 10001; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: #0E0D0C;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: auto;
    padding: 40px 24px 60px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 10000;
    gap: 0;
  }
  .nav-links ul { flex-direction: column; gap: 0; width: 100%; }
  .nav-links li { width: 100%; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    width: 100%;
    display: block;
    padding: 18px 0;
    font-family: var(--display);
    font-size: clamp(2rem, 8vw, 3rem);
    border-bottom: 1px solid var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links { transition: none; }
  .burger span { transition: none; }
}

/* ---- section scaffold ---- */
.sec-head { display: flex; align-items: baseline; gap: 24px; margin-bottom: 60px; }
.sec-idx {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--clay-deep);
  line-height: .8;
  opacity: .65;
}
.sec-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 0;
}

/* ---- page hero (inner pages) ---- */
.page-hero {
  padding: 170px 0 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
}
.page-hero .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--clay);
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: -.03em;
  margin: 0;
}
.page-hero h1 em { font-style: italic; color: var(--clay); font-weight: 400; }
.page-hero .lede {
  margin: 28px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  max-width: 50ch;
  color: #cfcabf;
}

/* ---- marquee ---- */
.marquee {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
}
.marquee-track { display: inline-block; animation: slide 38s linear infinite; }
.marquee span {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--bone-dim);
  padding: 0 26px;
}
.marquee span b { color: var(--clay); font-style: normal; font-weight: 400; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---- hero (home) ---- */
.hero {
  position: relative;
  padding: 170px 0 90px;
  border-bottom: 1px solid var(--line);
}
.hero-eyebrow { display: flex; gap: 18px; align-items: center; margin-bottom: 34px; }
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); }
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.9rem, 9vw, 8.2rem);
  line-height: .92;
  letter-spacing: -.03em;
  margin: 0;
}
.hero h1 em { font-style: italic; color: var(--clay); font-weight: 400; }
.hero h1 .indent { display: block; padding-left: clamp(0px, 18vw, 300px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 50px;
  margin-top: 56px;
  align-items: end;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: 34px; } }
.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  max-width: 46ch;
  color: #cfcabf;
  margin: 0;
}
.hero-meta { border-left: 1px solid var(--line); padding-left: 26px; }
.hero-meta ul { list-style: none; margin: 0; padding: 0; }
.hero-meta li {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--bone-dim);
  padding: 7px 0;
  border-bottom: 1px dotted var(--line);
}
.hero-meta li::before { content: "›  "; color: var(--clay); }

@media (max-width: 720px) { .hero { padding-top: 130px; } }

/* ---- home nav strip ---- */
.home-nav-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--line);
  margin-top: 60px;
}
@media (max-width: 640px) { .home-nav-strip { grid-template-columns: 1fr 1fr; } }
.home-nav-strip a {
  padding: 30px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .3s;
}
.home-nav-strip a:last-child { border-right: 0; }
.home-nav-strip a:hover { background: rgba(200, 117, 75, .06); }
.home-nav-strip .hn-label {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.home-nav-strip .hn-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -.01em;
}
.home-nav-strip .hn-arrow { font-family: var(--mono); font-size: .8rem; color: var(--clay); margin-top: auto; }

/* ---- section heading (standalone) ---- */
.glance-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  letter-spacing: -.02em;
  line-height: 1;
  margin: 0 0 40px;
}

/* ---- why ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
}
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; gap: 46px; } }
.why-copy p { font-size: 1.15rem; font-weight: 300; margin: 0 0 22px; max-width: 42ch; }
.skills { list-style: none; margin: 0; padding: 0; }
.skills li {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  font-weight: 300;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .35s ease, color .35s ease;
}
.skills li:hover { padding-left: 18px; color: var(--clay); }
.skills li span {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--bone-dim);
  vertical-align: super;
  margin-right: 14px;
}
.industries { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 10px; }
.industries .tag {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 40px;
  color: var(--bone-dim);
}
.industries .tag:hover { border-color: var(--clay); color: var(--clay); }

/* ---- stat strip ---- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 640px) { .stat-strip { grid-template-columns: 1fr; } }
.stat {
  padding: clamp(28px, 4vw, 50px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--clay);
  letter-spacing: -.03em;
  line-height: 1;
}
.stat-label {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-top: 10px;
}

/* ---- programs / pricing ---- */
.prog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 860px) { .prog { grid-template-columns: 1fr; } }
.card {
  background: var(--ink-2);
  padding: clamp(30px, 4vw, 56px);
  position: relative;
  display: flex;
  flex-direction: column;
}
.card.feature { background: linear-gradient(180deg, rgba(200, 117, 75, .07), transparent); }
.card-tag {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 22px;
}
.card .card-name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 18px;
}
.card .card-name em { font-style: italic; color: var(--clay); }
.card .blurb { color: #c2bdb3; font-size: .98rem; margin: 0 0 30px; max-width: 38ch; }
.specs { list-style: none; margin: 0 0 30px; padding: 0; }
.specs li {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .05em;
  padding: 11px 0;
  border-bottom: 1px dotted var(--line);
  color: var(--bone-dim);
}
.specs li b { color: var(--bone); font-weight: 500; }
.price {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 300;
  margin-top: auto;
  letter-spacing: -.02em;
}
.price small {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--bone-dim);
  display: block;
  text-transform: uppercase;
}
.btn {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--clay);
  color: var(--clay);
  padding: 15px 26px;
  border-radius: 2px;
  align-self: flex-start;
  transition: .3s;
  background: transparent;
  cursor: pointer;
}
.btn:hover { background: var(--clay); color: var(--ink); }
.btn .arr { transition: transform .3s; }
.btn:hover .arr { transform: translateX(5px); }
.btn-center { align-self: center; margin: 0 auto; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---- compare table ---- */
.compare-wrap { overflow-x: auto; margin-top: 60px; }
.compare {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .05em;
}
.compare th, .compare td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.compare th {
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  border-bottom: 2px solid var(--clay-deep);
}
.compare caption { text-align: left; margin-bottom: 14px; }
.compare td:first-child { color: var(--bone-dim); }
.compare td b { color: var(--bone); font-weight: 500; }
.compare tr:hover td { background: rgba(200, 117, 75, .04); }
.check { color: var(--clay); }
.dash { color: var(--bone-dim); opacity: .4; }

/* ---- curriculum ---- */
.modlist { border-top: 1px solid var(--line); }
.mod {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: baseline;
  transition: .3s;
}
.mod:hover { background: linear-gradient(90deg, rgba(200, 117, 75, .06), transparent); }
.mod-num { font-family: var(--mono); font-size: .8rem; color: var(--clay); }
.mod-name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  letter-spacing: -.01em;
  line-height: 1.05;
  margin: 0;
}
.mod-toggle { font-family: var(--mono); font-size: 1.3rem; color: var(--bone-dim); transition: transform .3s; }
.mod.open .mod-toggle { transform: rotate(45deg); color: var(--clay); }
.mod-body {
  grid-column: 2 / 4;
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, padding .45s ease;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
}
.mod.open .mod-body { max-height: 420px; padding-top: 20px; }
.mod-body span {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--bone-dim);
  width: 50%;
  padding: 5px 0;
}
.mod-body span::before { content: "— "; color: var(--clay); }
@media (max-width: 600px) {
  .mod { grid-template-columns: 44px 1fr auto; gap: 14px; }
  .mod-body span { width: 100%; }
}

/* ---- capstone ---- */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 860px) { .cap-grid { grid-template-columns: 1fr; gap: 40px; } }
.cap-steps { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.cap-steps li {
  counter-increment: step;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  align-items: baseline;
}
.cap-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-style: normal;
  font-size: .72rem;
  color: var(--clay);
}
.cap-note {
  border: 1px solid var(--line);
  padding: 34px;
  border-radius: 3px;
  background: rgba(200, 117, 75, .04);
}
.cap-note p { font-size: 1.1rem; font-weight: 300; color: #cfcabf; margin: 0; }
.cap-note .mono { margin-bottom: 16px; display: block; }

/* ---- tools strip ---- */
.tools { display: flex; flex-wrap: wrap; gap: 0; }
.tools .t {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  padding: 0 26px;
  border-right: 1px solid var(--line);
  color: var(--bone-dim);
  transition: color .3s;
}
.tools .t:hover { color: var(--clay); }
.tools .t:first-child { padding-left: 0; }

/* ---- cta ---- */
.cta-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .95;
  letter-spacing: -.03em;
  margin: 0 0 30px;
}
.cta-title em { font-style: italic; color: var(--clay); }
.cta-lede { max-width: 46ch; margin: 0 auto 40px; color: #c2bdb3; font-size: 1.05rem; font-weight: 300; }
.seats {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 34px;
}

/* ---- enroll form ---- */
.enroll-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
}
@media (max-width: 860px) { .enroll-grid { grid-template-columns: 1fr; } }
.form-wrap { display: flex; flex-direction: column; gap: 20px; }
.form-note { font-size: .62rem; color: var(--bone-dim); margin: 0 0 -6px; }
.form-note .req { color: var(--clay); }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.form-field label .req { color: var(--clay); font-style: normal; margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  font-family: var(--body);
  font-size: .95rem;
  padding: 14px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color .3s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--clay); }
.form-field select option { background: var(--ink-2); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--bone-dim); opacity: .5; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn-full { align-self: stretch; justify-content: center; width: 100%; }
.form-status { font-size: .66rem; margin-top: 8px; }
.form-status.is-error,
.form-status.is-done { color: var(--clay); }
.enroll-aside { display: flex; flex-direction: column; gap: 30px; }
.aside-box {
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 3px;
}
.aside-box.feature { background: linear-gradient(180deg, rgba(200, 117, 75, .07), transparent); }
.aside-box .aside-name {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.3rem;
  margin: 0 0 14px;
}
.aside-box .aside-name em { font-style: italic; color: var(--clay); }
.aside-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 18px 0 0; padding: 0; }
.aside-box li {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .05em;
  color: var(--bone-dim);
  display: flex;
  gap: 10px;
}
.aside-box li::before { content: "→"; color: var(--clay); flex-shrink: 0; }
.aside-price {
  font-family: var(--display);
  font-weight: 300;
  font-size: 2.8rem;
  color: var(--clay);
  letter-spacing: -.02em;
  margin-top: 10px;
}
.aside-price small {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--bone-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
  margin-bottom: 6px;
}

/* ---- faq ---- */
.faq { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: -.01em;
  margin: 0;
}
.faq-q .fq-icon {
  font-family: var(--mono);
  font-size: 1.2rem;
  color: var(--bone-dim);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .fq-icon { transform: rotate(45deg); color: var(--clay); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: 1rem;
  font-weight: 300;
  color: #c2bdb3;
}
.faq-item.open .faq-a { max-height: 320px; padding-top: 16px; }

/* ---- about / instructor ---- */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
@media (max-width: 720px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-photo {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(200, 117, 75, .14), var(--ink-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 3.2rem;
  color: var(--clay-deep);
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-bio .name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0 0 8px;
}
.about-bio .name em { font-style: italic; color: var(--clay); }
.about-bio .role {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 24px;
  display: block;
}
.about-bio p {
  font-size: 1.1rem;
  font-weight: 300;
  color: #cfcabf;
  margin: 0 0 18px;
  max-width: 56ch;
}
.about-credentials {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-credentials .tag {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 40px;
  color: var(--bone-dim);
}
.about-contact {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
@media (max-width: 600px) { .about-contact { grid-template-columns: 1fr; } }
.about-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--bone);
  transition: color .3s;
  font-size: .95rem;
  font-weight: 300;
}
.about-link:hover { color: var(--clay); }
.about-link .mono {
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--clay);
  text-transform: uppercase;
}

/* ---- widget wrappers ---- */
.cta-block { text-align: center; }
.cta-title--large { font-size: clamp(2.4rem, 7vw, 5.5rem); }
.cta-mono { font-weight: 400; margin: 0 0 16px; }
.btn-holder .btn { margin-top: 0; }
.tools-eyebrow { display: block; margin-bottom: 24px; }
.page-hero h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: -.03em;
  margin: 0;
}
.page-hero h2 em { font-style: italic; color: var(--clay); font-weight: 400; }

/* ---- editor / generic page content ---- */
.entry-content { max-width: 72ch; font-size: 1.05rem; }
.entry-content > * + * { margin-top: 22px; }
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-top: 46px;
}
.entry-content h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.entry-content h3 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); }
.entry-content a { color: var(--clay); border-bottom: 1px solid rgba(200, 117, 75, .4); }
.entry-content ul, .entry-content ol { padding-left: 22px; }
.entry-content blockquote {
  border-left: 2px solid var(--clay);
  padding-left: 22px;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
}
.entry-content pre { padding: 20px; overflow-x: auto; border: 1px solid var(--line); background: var(--ink-2); font-family: var(--mono); }
.post-meta {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-top: 22px;
}

/* ---- post / archive list ---- */
.postlist { border-top: 1px solid var(--line); }
.postlist .mod { cursor: default; grid-template-columns: 130px 1fr auto; }
@media (max-width: 600px) {
  .postlist .mod { grid-template-columns: 1fr auto; gap: 8px 14px; }
  .postlist .mod-num { grid-column: 1 / -1; }
}
.uxdco-pagination {
  margin-top: 50px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .12em;
}
.uxdco-pagination .page-numbers {
  border: 1px solid var(--line);
  padding: 10px 15px;
  color: var(--bone-dim);
}
.uxdco-pagination .page-numbers.current,
.uxdco-pagination .page-numbers:hover { border-color: var(--clay); color: var(--clay); }

/* ---- search form ---- */
.search-form { display: flex; gap: 10px; margin-top: 28px; max-width: 480px; }
.search-form input[type="search"] {
  flex: 1;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  font-family: var(--body);
  padding: 13px 16px;
  border-radius: 2px;
  outline: none;
}
.search-form input[type="search"]:focus { border-color: var(--clay); }
.search-form button { margin-top: 0; }

/* ---- footer ---- */
.site-footer { border-top: 1px solid var(--line); padding: 50px 0 40px; }
.foot-in {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: baseline;
}
.foot-in .brand { font-size: 1.6rem; }
.foot-in .mono { margin: 12px 0 0; }
.foot-cols { display: flex; gap: 50px; flex-wrap: wrap; }
.foot-cols ul { list-style: none; margin: 0; padding: 0; }
.foot-cols a {
  display: block;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding: 4px 0;
}
.foot-cols a:hover { color: var(--clay); }
.foot-legal { margin-top: 34px; }

/* ---- floating action buttons ---- */
.fab {
  position: fixed;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  border: 0;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none;
}
.fab svg { width: 28px; height: 28px; fill: #fff; flex-shrink: 0; }
.fab-wa {
  bottom: 24px;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  animation: wa-float 3s ease-in-out infinite;
}
.fab-wa:hover {
  animation: none;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 10px 32px rgba(37,211,102,.65);
}
.fab-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.5); opacity: 0;  }
}
.fab-top {
  bottom: 96px;
  background: var(--clay);
  box-shadow: 0 4px 18px rgba(200,117,75,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .3s ease, box-shadow .3s ease;
}
.fab-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(200,117,75,.55);
}
.fab-top.visible { opacity: 1; pointer-events: auto; }

@media (max-width: 600px) {
  .fab { right: 16px; width: 50px; height: 50px; }
  .fab svg { width: 24px; height: 24px; }
  .fab-wa { bottom: 20px; }
  .fab-top { bottom: 86px; }
}

/* ---- reveal animation ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ==============================================================
   Elementor interop
   ============================================================== */

/* Elementor wraps widgets; make sure nothing clips the full-bleed sections. */
.uxdco-page .elementor-section,
.uxdco-page .elementor-container,
.uxdco-page .elementor-column,
.uxdco-page .elementor-widget-wrap { max-width: none; }
.uxdco-page .elementor-widget-wrap { padding: 0 !important; }

/* Elementor's editor helpers must not inherit the italic display font. */
.elementor-editor-active .elementor-add-section-drag-title,
.elementor-editor-active .elementor-first-add,
.elementor-editor-active .elementor-add-new-section { font-family: var(--body); }

/* Inside the editor the fixed nav would cover the first section. */
.elementor-editor-active .site-nav { position: absolute; }

/* Plain Elementor content (widgets other than the theme's) still reads right. */
.uxdco-elementor-plain { padding-top: 96px; }
