@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');
:root {
  --bg: #ffffff;
  --soft: #f9fafb;
  --soft2: #f3f4f6;
  --text: #111827;
  --text2: #374151;
  --muted: #6b7280;
  --light: #9ca3af;
  --accent: #c5a059;
  --accent-hover: #b08d48;
  --stroke: rgba(0,0,0,.08);
  --stroke2: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --radius: 12px;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

/* ─── CONTAINER ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--stroke2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--accent); background: var(--soft); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-md { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 14px 40px; font-size: 16px; }

/* ─── HEADER ─── */
.fa-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke2);
}

.fa-header-inner {
  max-width: 1540px;
  height: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fa-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}

.fa-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: #101722;
}

.fa-brand::after {
  content: "";
  display: block;
  width: 90%;
  height: 1.2px;
  background: #b8954e;
  margin-top: 6px;
}

.fa-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.fa-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s;
}

.fa-nav-link:hover,
.fa-nav-link.active {
  color: var(--accent);
}

.fa-nav-link-soon {
  opacity: .75;
  cursor: default;
}

.nav-soon-pill {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  background: rgba(197,160,89,.14);
  color: var(--accent);
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 5px;
  vertical-align: middle;
}

.fa-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.fa-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

/* Mobile menu */
.fa-mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: #fff;
  border-top: 1px solid var(--stroke2);
  padding: 24px 32px;
  flex-direction: column;
  gap: 24px;
}
.fa-mobile-menu.open { display: flex; }
.fa-mobile-nav { display: flex; flex-direction: column; gap: 16px; }
.fa-mobile-nav a { font-size: 18px; font-weight: 600; color: var(--text); }
.fa-mobile-actions { display: flex; flex-direction: column; gap: 10px; }
.fa-mobile-actions .btn { justify-content: center; padding: 12px; }

/* ─── MAIN ─── */
.fa-main { padding-top: 72px; }

/* ─── HERO ─── */
.hero {
  padding: 0;
  background: #fff;
}

.hero-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 72px 32px 86px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 420px;
  align-items: center;
  gap: 64px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 680px;
  text-align: left;
}

.hero-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 32px;
  text-align: left;
}

/* Search bar */
.search-bar {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 560px;
  background: #fff;
  border: 1.5px solid var(--stroke2);
  border-radius: 999px;
  padding: 5px 5px 5px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.075);
  margin-bottom: 16px;
}

.search-icon {
  color: var(--muted);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 12px;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: transparent;
  min-width: 0;
}

.search-input::placeholder {
  color: var(--light);
}

.search-btn {
  border-radius: 999px !important;
  flex-shrink: 0;
}

/* Tag chips */
.tag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 28px;
}

.tag-chip {
  padding: 7px 15px;
  border-radius: 999px;
  border: 1.5px solid var(--stroke2);
  background: var(--soft);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}

.tag-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff;
}

.hero-cta {
  margin-top: 0;
}

/* Hero visual */
.hero-image {
  width: 100%;
  height: 390px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(197,160,89,.22), transparent 30%),
    linear-gradient(135deg, #f8f4eb 0%, #ebe3d4 100%);
  border: 1px solid rgba(197,160,89,.22);
  box-shadow: 0 24px 70px rgba(17,24,39,.12);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.72) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.72) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .45;
}

.hero-image::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 28px;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}

.hero-image-inner {
  position: absolute;
  left: 44px;
  right: 76px;
  top: 64px;
  bottom: 64px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(17,24,39,.86), rgba(17,24,39,.58));
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}

.hero-image-inner::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 34px;
  width: 62%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  box-shadow:
    0 34px 0 rgba(255,255,255,.24),
    0 68px 0 rgba(255,255,255,.16);
}

.hero-image-inner::after {
  content: "FA";
  position: absolute;
  right: -42px;
  bottom: -24px;
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -.08em;
  color: rgba(255,255,255,.55);
}

/* ─── NAV CARDS ─── */
.nav-cards-section {
  padding: 0 0 20px;
  background: #fff;
}
.nav-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.nav-cards-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: 0 auto;
}
.nav-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 32px 28px;
  border: 1px solid var(--stroke2);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: all .25s;
  cursor: pointer;
}
.nav-card:hover {
  box-shadow: 0 12px 40px rgba(197,160,89,.18);
  border-color: rgba(197,160,89,.5);
  transform: translateY(-4px);
}

.nav-card-soon {
  cursor: default;
}

.nav-card-soon:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border-color: var(--stroke2);
  transform: none;
}

.nav-card-soon-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(197,160,89,.12);
  border: 1px solid rgba(197,160,89,.22);
  padding: 5px 10px;
  border-radius: 999px;
  line-height: 1;
}

.nav-card-cta-disabled {
  color: var(--muted);
}

.nav-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .25s;
  background: linear-gradient(135deg, rgba(197,160,89,.06) 0%, rgba(197,160,89,.0) 100%);
  pointer-events: none;
}
.nav-card:hover .nav-card-bg { opacity: 1; }
.nav-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--soft2);
  border: 1px solid var(--stroke2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all .25s;
  position: relative;
}
.nav-card:hover .nav-card-icon {
  background: rgba(197,160,89,.12);
  border-color: rgba(197,160,89,.3);
  transform: scale(1.05);
}
.nav-card-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  transition: color .2s;
  letter-spacing: -.02em;
}
.nav-card:hover .nav-card-body h3 { color: var(--accent); }
.nav-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.nav-card-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .2s, transform .2s;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid transparent;
}
.nav-card:hover .nav-card-cta {
  opacity: 1;
  transform: translateX(0);
  border-top-color: rgba(197,160,89,.15);
}

/* ─── VALUE SECTION: Para estudios / Para profesionales ─── */
.value-section {
  padding: 20px 0 64px;
  background: #fff;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 24px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.value-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -80px;
  bottom: -90px;
  border-radius: 999px;
  background: rgba(197,160,89,.12);
}

.value-card-studios {
  background: rgba(197,160,89,.075);
  border: 1px solid rgba(197,160,89,.22);
}

.value-card-pros {
  background: var(--soft);
  border: 1px solid var(--stroke2);
}

.value-card-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(197,160,89,.14);
  border: 1px solid rgba(197,160,89,.24);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card-pros .value-card-icon {
  background: #fff;
  border-color: var(--stroke2);
  color: var(--muted);
}

.value-card-label {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--accent);
}

.value-card-pros .value-card-label {
  color: var(--text);
}

.value-card p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  flex: 1;
  font-size: 16px;
  color: var(--text2);
  line-height: 1.65;
}

.value-card .btn {
  position: relative;
  z-index: 1;
}

/* ─── SECTION BASE ─── */
.section { padding: 64px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.section-head h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.section-head p { font-size: 14px; color: var(--muted); }

/* ─── FEATURED OPPORTUNITIES ─── */
.featured-opportunities {
  background: #f9fafb;
  border-top: 1px solid var(--stroke2);
  border-bottom: 1px solid var(--stroke2);
}

.featured-head {
  align-items: flex-end;
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 40px;
  align-items: start;
}

.featured-jobs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.featured-sidebar {
  background: #fff;
  border: 1px solid var(--stroke2);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 96px;
}

.sidebar-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--stroke2);
}

.sidebar-chip {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1.5px solid var(--stroke2);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  transition: all .15s;
}

.sidebar-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.sidebar-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.filter-group {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--stroke2);
}

.filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-group h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text);
  margin-bottom: 14px;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  padding: 3px 0;
  transition: color .15s;
}

.filter-item:hover {
  color: var(--accent);
}

.filter-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  accent-color: var(--accent);
  cursor: pointer;
}

.featured-job-card {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: #fff;
  border: 1px solid #e8e3da;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(20, 20, 20, .035);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.featured-job-card:hover {
  transform: translateY(-2px);
  border-color: rgba(197,160,89,.55);
  box-shadow: 0 16px 40px rgba(20, 20, 20, .075);
}

.featured-job-logo {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 18px;
  background: linear-gradient(145deg, #111111, #2a2a2a);
  color: #d2a14a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 24px;
  letter-spacing: .03em;
}

.featured-job-content {
  flex: 1;
  min-width: 0;
}

.featured-job-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.featured-job-header h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: #171717;
  letter-spacing: -.02em;
}

.featured-job-company {
  margin: 0;
  font-size: 15px;
  color: #6f6a63;
}

.featured-job-company span {
  margin: 0 8px;
  color: #b4aaa0;
}

.featured-job-date {
  white-space: nowrap;
  font-size: 14px;
  color: #7c756c;
}

.featured-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.featured-job-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  background: #f5f1ea;
  border-radius: 999px;
  font-size: 14px;
  color: #3c3935;
}

.featured-job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid #f0ece5;
}

.featured-job-note {
  font-size: 14px;
  color: #8a837a;
}

.featured-job-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.featured-job-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  background: #b8862f;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.featured-job-save {
  font-size: 14px;
  color: #9a7329;
}

.jobs-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
}

.jobs-empty h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text);
}

@media (max-width: 1024px) {
  .featured-layout {
    grid-template-columns: 1fr;
  }

  .featured-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .featured-job-card {
    padding: 22px;
    gap: 16px;
  }

  .featured-job-logo {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 20px;
    border-radius: 15px;
  }

  .featured-job-header {
    flex-direction: column;
    gap: 8px;
  }

  .featured-job-header h3 {
    font-size: 21px;
  }

  .featured-job-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-job-actions {
    width: 100%;
    justify-content: space-between;
  }

  .featured-job-button {
    flex: 1;
  }
}

/* ─── BENEFITS ─── */
.benefits-section { background: #fff; }
.benefits-head {
  text-align: center;
  margin-bottom: 40px;
}
.benefits-head h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.benefits-head p { font-size: 16px; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.6; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 20px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid transparent;
  transition: all .25s;
}
.benefit-card:hover {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  border-color: var(--stroke2);
}
.benefit-card:hover .btn-outline { border-color: var(--accent); color: var(--accent); }
.benefit-logo {
  width: 60px; height: 60px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  margin-bottom: 6px;
}
.benefit-card h4 { font-size: 16px; font-weight: 700; }
.benefit-card p { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.benefit-card .btn { margin-top: auto; }

/* ─── FOOTER ─── */
.fa-footer {
  border-top: 1px solid var(--stroke2);
  background: #fff;
  padding: 56px 0 32px;
}
.fa-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.fa-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.fa-footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.fa-footer-free {
  color: var(--text);
}

.fa-footer-arch {
  color: var(--accent);
}
.fa-footer-brand p { font-size: 14px; color: var(--muted); }
.fa-footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.fa-footer-links a { font-size: 14px; color: var(--muted); transition: color .15s; }
.fa-footer-links a:hover { color: var(--accent); }
.fa-footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all .2s;
}
.social-btn:hover { background: var(--accent); color: #fff; }
.fa-footer-bottom {
  border-top: 1px solid var(--stroke2);
  padding-top: 24px;
}
.fa-footer-bottom p { font-size: 12px; color: var(--light); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav-cards-grid { grid-template-columns: 1fr; }
  .jobs-sidebar { display: none; }
  .jobs-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .fa-nav { display: none; }
  .fa-header-actions { display: none; }
  .fa-mobile-toggle { display: block; }
  .benefits-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 16px; }
  .fa-footer-top { flex-direction: column; }
}

/* ─── PAGE HEADER ─── */
.page-header {
  background: #fff;
  border-bottom: 1px solid var(--stroke2);
  padding: 48px 0 32px;
}
.page-header h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.page-search {
  max-width: 520px;
}
.page-search-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid var(--stroke2);
  border-radius: 10px;
  padding: 10px 16px;
}
.page-search-inner svg { color: var(--muted); flex-shrink: 0; }
.page-search-inner input {
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  width: 100%;
  background: transparent;
}
.page-search-inner input::placeholder { color: var(--light); }

/* ─── JOBS PAGE ─── */
.jobs-page { padding: 40px 0 80px; background: var(--soft); }
.jobs-page-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.jobs-page-list { flex: 1; }
.jobs-page-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--muted);
}
.sort-select {
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  outline: none;
}

/* Job row */
.job-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--stroke2);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
  margin-bottom: 12px;
}

.job-row:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(197,160,89,.35);
}
.job-row:hover h3 { color: var(--accent); }
.job-row:hover .btn-outline {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.job-row-logo {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--soft2);
  border: 1px solid var(--stroke2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
}
.job-row-body { flex: 1; min-width: 0; }
.job-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.job-row-top h3 {
  font-size: 16px;
  font-weight: 700;
  transition: color .15s;
}
.job-type-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--soft2);
  color: var(--muted);
  flex-shrink: 0;
}
.job-row-company { font-size: 14px; font-weight: 600; color: var(--text2); margin-bottom: 8px; }
.job-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}
.job-row-meta span { display: flex; align-items: center; gap: 4px; }
.job-row-action { flex-shrink: 0; }

.jobs-load-more { text-align: center; margin-top: 24px; }
.jobs-empty { text-align: center; padding: 60px 0; color: var(--muted); }
.jobs-empty h3 { font-size: 20px; margin-bottom: 8px; color: var(--text); }

/* ─── JOB DETAIL ─── */
.job-detail-page { padding: 40px 0 80px; background: var(--soft); min-height: 70vh; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 28px;
  transition: color .15s;
}
.back-link:hover { color: var(--accent); }

.job-detail-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.job-detail-main { flex: 1; min-width: 0; }
.job-detail-sidebar { width: 300px; flex-shrink: 0; display: flex; flex-direction: column; gap: 16px; }

.job-detail-card {
  background: #fff;
  border: 1px solid var(--stroke2);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.job-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.job-detail-logo {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--soft2);
  border: 1px solid var(--stroke2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
}
.job-detail-title { flex: 1; }
.job-detail-title h1 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 4px; }
.job-detail-title p { font-size: 14px; color: var(--muted); }

.job-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--stroke2);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.job-detail-divider { border: none; border-top: 1px solid var(--stroke2); margin: 24px 0; }
.job-detail-description h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.job-detail-description p { font-size: 15px; line-height: 1.7; color: var(--text2); }

/* Sidebar cards */
.job-apply-card, .job-studio-card {
  background: #fff;
  border: 1px solid var(--stroke2);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.job-apply-card .btn {
  width: 100%;
  padding: 12px 16px;
  font-weight: 800;
}
.job-apply-card h4, .job-studio-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.job-apply-card p, .job-studio-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.job-studio-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 10px;
}
.job-studio-logo {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--soft2);
  border: 1px solid var(--stroke2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
}
.job-studio-info strong { font-size: 15px; font-weight: 700; }
.job-studio-info p { font-size: 13px; color: var(--muted); margin: 2px 0 0; }
.job-studio-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

@media (max-width: 900px) {
  .job-detail-layout { flex-direction: column; }
  .job-detail-sidebar { width: 100%; }
  .jobs-page-layout { flex-direction: column; }
  .jobs-sidebar { width: 100%; }
}

/* ─── STUDIOS LIST ─── */
.studios-page { padding: 40px 0 80px; background: var(--soft); }

.studios-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--stroke2);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  cursor: pointer;
  transition: all .15s;
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.studios-meta { margin-bottom: 20px; font-size: 14px; color: var(--muted); }

.studios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .studios-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .studios-grid { grid-template-columns: 1fr; } }

.studio-card {
  background: #fff;
  border: 1px solid var(--stroke2);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.studio-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(197,160,89,.35);
  transform: translateY(-2px);
}
.studio-card:hover h3 { color: var(--accent); }

.studio-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.studio-card-logo {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--soft2);
  border: 1px solid var(--stroke2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
}
.studio-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  padding: 4px 8px;
  border-radius: 999px;
}
.studio-card h3 { font-size: 16px; font-weight: 700; transition: color .15s; }
.studio-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
}
.studio-card-desc { font-size: 13px; color: var(--text2); line-height: 1.5; flex: 1; }
.studio-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--stroke2);
}
.studio-specialty-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(197,160,89,.1);
  padding: 4px 10px;
  border-radius: 999px;
}
.studio-jobs-count { font-size: 12px; color: var(--muted); font-weight: 500; }
.studios-empty { grid-column: 1/-1; text-align: center; padding: 60px 0; color: var(--muted); }
.studios-empty h3 { font-size: 20px; color: var(--text); margin-bottom: 8px; }

/* ─── STUDIO DETAIL ─── */
.studio-detail-page { padding: 40px 0 80px; background: var(--soft); min-height: 70vh; }

.studio-hero {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--stroke2);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.studio-hero-logo {
  width: 80px; height: 80px;
  border-radius: 16px;
  background: var(--soft2);
  border: 1px solid var(--stroke2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
}
.studio-hero-info { flex: 1; }
.studio-hero-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.studio-hero-name-row h1 { font-size: 28px; font-weight: 800; letter-spacing: -.02em; }
.studio-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.studio-hero-meta span { display: flex; align-items: center; gap: 6px; }
.studio-hero-links { display: flex; gap: 10px; flex-wrap: wrap; }

.studio-detail-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.studio-detail-main { flex: 1; min-width: 0; }
.studio-detail-sidebar { width: 280px; flex-shrink: 0; display: flex; flex-direction: column; gap: 16px; }

.studio-section {
  background: #fff;
  border: 1px solid var(--stroke2);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.studio-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: var(--soft2);
  padding: 3px 9px;
  border-radius: 999px;
}
.studio-description p { font-size: 15px; line-height: 1.75; color: var(--text2); }

.studio-jobs-list { display: flex; flex-direction: column; gap: 10px; }
.studio-job-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--stroke2);
  border-radius: 10px;
  transition: all .15s;
}
.studio-job-row:hover { border-color: rgba(197,160,89,.4); background: rgba(197,160,89,.03); }
.studio-job-row:hover h4 { color: var(--accent); }
.studio-job-info h4 { font-size: 15px; font-weight: 700; transition: color .15s; margin-bottom: 4px; }
.studio-job-meta { display: flex; gap: 12px; font-size: 13px; color: var(--muted); }

.studio-info-card, .studio-contact-card {
  background: #fff;
  border: 1px solid var(--stroke2);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.studio-info-card h4, .studio-contact-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.studio-info-list { display: flex; flex-direction: column; gap: 12px; }
.studio-info-item { display: flex; justify-content: space-between; font-size: 14px; align-items: center; }
.info-label { color: var(--muted); font-weight: 500; }
.studio-contact-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }

@media (max-width: 900px) {
  .studio-detail-layout { flex-direction: column; }
  .studio-detail-sidebar { width: 100%; }
  .studio-hero { flex-direction: column; }
}

@media (max-width: 900px) {
  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;
  }
}

/* Sidebar premium - Oportunidades destacadas */

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

.featured-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.featured-sidebar-card,
.featured-resources-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,.045);
}

.featured-sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.featured-filter-group {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.featured-filter-group:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.featured-filter-group h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 9px;
}

.featured-filter-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.featured-filter-options button {
  min-height: 32px;
  padding: 0 9px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .15s ease;
}

.featured-filter-options button:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(197, 160, 89, .07);
}

.featured-resources-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.featured-resource-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
  color: inherit;
}

.featured-resource-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.featured-resource-item strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.featured-resource-item span {
  display: block;
  font-size: 10.5px;
  line-height: 1.3;
  color: var(--muted);
}

.featured-resource-item > span:last-child {
  color: var(--accent);
  font-size: 14px;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .featured-layout {
    grid-template-columns: 1fr;
  }

  .featured-sidebar {
    order: 2;
  }
}

/* ─── HERO ARCHITECTURAL FINAL ─── */

.hero-arch {
  position: relative;
  min-height: 620px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.88) 31%,
      rgba(255,255,255,.38) 58%,
      rgba(255,255,255,.04) 100%
    ),
    url("../img/hero-architecture-bg.a00b12117169.png") center center / cover no-repeat;
  overflow: hidden;
  border-bottom: 1px solid var(--stroke2);
}

.hero-arch::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.65), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-arch::after {
  content: "";
  position: absolute;
  right: 9%;
  top: 72px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(197,160,89,.42);
  border-radius: 50%;
  opacity: .65;
  pointer-events: none;
}

.hero-arch-inner {
  position: relative;
  z-index: 2;
  max-width: 1540px;
  min-height: 620px;
  margin: 0 auto;
  padding: 64px 48px 64px;
  display: flex;
  align-items: flex-start;
}

.hero-arch-content {
  width: min(100%, 720px);
}

.hero-arch-content h1 {
  font-family: "Cormorant Garamond", serif;
  max-width: 720px;
  margin: 0 0 28px;
  font-size: clamp(52px, 5vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: var(--text);
}

.hero-arch-content h1 span {
  display: block;
  color: var(--accent);
}

.hero-arch-content p {
  max-width: 610px;
  margin: 0 0 34px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text2);
}

.hero-arch-search {
  width: min(100%, 670px);
  height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px 6px 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(229,231,235,.9);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(17,24,39,.10);
  backdrop-filter: blur(8px);
}

.hero-arch-search-icon {
  display: flex;
  align-items: center;
  color: var(--muted);
  flex-shrink: 0;
}

.hero-arch-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
}

.hero-arch-search input::placeholder {
  color: #7b8493;
}

.hero-arch-search-btn {
  min-width: 108px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  border: none;
  cursor: pointer;
}

.hero-arch-search-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.hero-arch-chips {
  width: min(100%, 760px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 34px;
}

.hero-arch-chips a {
  height: 34px;
  padding: 0 19px;
  border: 1px solid rgba(229,231,235,.9);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--text2);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(17,24,39,.045);
  cursor: pointer;
  transition: all .15s ease;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-arch-chips a:hover {
  border-color: rgba(197,160,89,.45);
  color: var(--accent);
  background: #fff;
}

.hero-arch-cta {
  width: 190px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(197,160,89,.22);
  transition: background .2s ease, transform .2s ease;
}

.hero-arch-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.hero-arch-cta span {
  font-size: 28px;
  line-height: 1;
}

/* Trust cards below hero */

.hero-trust-section {
  position: relative;
  z-index: 3;
  margin-top: -42px;
  padding: 0 0 56px;
  background: #fff;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.hero-trust-card {
  min-height: 108px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 26px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--stroke2);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(17,24,39,.08);
  backdrop-filter: blur(10px);
}

.hero-trust-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 999px;
  background: rgba(197,160,89,.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-trust-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.hero-trust-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

/* Responsive hero */

@media (max-width: 1100px) {
  .hero-arch {
    min-height: 580px;
    background-position: center right;
    background-size: cover;
  }

  .hero-arch-inner {
    min-height: 580px;
  }

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

@media (max-width: 768px) {
 .hero-arch {
  position: relative;
  min-height: 680px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.88) 32%,
      rgba(255,255,255,.32) 62%,
      rgba(255,255,255,.04) 100%
    ),
    url("../img/hero-architecture-bg.a00b12117169.png") center center / cover no-repeat;
  overflow: hidden;
  border-bottom: 1px solid var(--stroke2);
}

 .hero-arch-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  min-height: 680px;
  margin: 0 auto;
  padding: 82px 32px 78px;
  display: flex;
  align-items: flex-start;
}

  .hero-arch-content h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  .hero-arch-content p {
    font-size: 16px;
  }

  .hero-arch-search {
    height: auto;
    min-height: 58px;
    padding: 6px 6px 6px 18px;
  }

  .hero-arch-search-btn {
    min-width: 92px;
    height: 46px;
    font-size: 13px;
  }

  .hero-arch-chips {
    gap: 8px;
  }

  .hero-arch-chips a {
    height: 32px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-arch-cta {
    width: 170px;
    height: 56px;
    font-size: 15px;
  }

  .hero-trust-section {
    margin-top: -28px;
  }

  .hero-trust-grid {
    grid-template-columns: 1fr;
  }
}

.job-detail-extra {
  margin-top: 28px;
  display: grid;
  gap: 24px;
}

.job-detail-section {
  padding-top: 22px;
  border-top: 1px solid #e5e7eb;
}

.job-detail-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.job-detail-section ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.job-detail-section li {
  color: #475569;
  line-height: 1.65;
  font-size: 15px;
}

.fa-footer-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.fa-header .fa-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
  transform: translateY(2px);
}

.fa-header .fa-brand-name {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 35px !important;
  font-weight: 500 !important;
  letter-spacing: 0.018em;
  line-height: 0.9;
  color: #101722;
}

.fa-header .fa-brand::after {
  content: "";
  display: block;
  width: 72%;
  height: 1px;
  background: #b8954e;
  margin-top: 4px;
}
/* ═══════════════════════════════════════════
   BOTTOM NAV + MOBILE REDESIGN
   ─────────────────────────────────────────── */

/* ─── Bottom nav: oculto en desktop ─── */
.fa-bottom-nav {
  display: none;
}

@media (max-width: 768px) {

  /* ── Ocultar hamburger, mostrar bottom nav ── */
  .fa-mobile-toggle { display: none !important; }
  .fa-mobile-menu { display: none !important; }

  /* ── Header más compacto en mobile ── */
  .fa-header { height: 56px; }
  .fa-header-inner { padding: 0 20px; }
  .fa-main { padding-top: 56px; padding-bottom: 72px; }

  /* Footer padding para no quedar tapado por el nav ── */
  .fa-footer { padding-bottom: 88px; }

  /* ── Bottom nav ── */
  .fa-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: #fff;
    border-top: 1px solid rgba(197,160,89,.18);
    z-index: 200;
    align-items: center;
    justify-content: space-around;
    padding: 0 8px 10px; /* 10px para home indicator de iPhone */
  }

  .fa-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    color: #C8BFAD;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    position: relative;
    padding-top: 6px;
    transition: color .15s;
  }

  .fa-bottom-nav-item svg {
    stroke: currentColor;
    transition: stroke .15s;
  }

  .fa-bottom-nav-item.active {
    color: var(--accent);
  }

  /* Punto indicador sobre el ícono activo */
  .fa-bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
  }

  /* ── Hero mobile: opción A, fondo piedra cálida ── */
  .hero-arch {
    min-height: auto;
    background:
      linear-gradient(
        160deg,
        rgba(237,224,200,.96) 0%,
        rgba(237,224,200,.90) 45%,
        rgba(237,224,200,.78) 100%
      ),
      url("../img/hero-architecture-bg.a00b12117169.png") center center / cover no-repeat;
  }

  .hero-arch-inner {
    min-height: auto;
    padding: 36px 20px 32px;
  }

  .hero-arch-content h1 {
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }

  .hero-arch-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #5a5248;
  }

  .hero-arch-search {
    height: 52px;
    padding: 5px 5px 5px 16px;
    gap: 8px;
    border-radius: 12px;       /* menos pill en mobile */
  }

  .hero-arch-search-btn {
    min-width: 82px;
    height: 42px;
    font-size: 13px;
    border-radius: 9px;
  }

  .hero-arch-chips {
    gap: 7px;
    margin: 18px 0 20px;
  }

  .hero-arch-chips button {
    height: 30px;
    padding: 0 13px;
    font-size: 11px;
  }

  /* Ocultar el CTA "Explorar →" en mobile (lo reemplaza el bottom nav) */
  .hero-arch-cta { display: none; }

  /* ── Nav cards: compactas en mobile ── */
  .nav-cards-section { padding: 0 0 8px; }

  .nav-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .nav-card {
    flex-direction: row;
    align-items: center;
    padding: 18px 20px;
    gap: 16px;
    border-radius: 14px;
  }

  .nav-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex-shrink: 0;
    border-radius: 12px;
  }

  .nav-card-body {
    flex: 1;
    min-width: 0;
  }

  .nav-card-body h3 {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .nav-card-body p {
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* La flecha siempre visible en mobile (no hover) */
  .nav-card-cta {
    opacity: 1;
    transform: none;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    font-size: 12px;
    flex-shrink: 0;
  }

  .nav-card-soon-badge {
    top: 12px;
    right: 12px;
    font-size: 10px;
    padding: 3px 8px;
  }

  /* ── Value cards (Para estudios / Para profesionales) ── */
  .value-grid { grid-template-columns: 1fr; gap: 12px; }
  .value-card { min-height: auto; padding: 24px; }

  /* ── Section headers ── */
  .section { padding: 40px 0; }
  .section-head h2 { font-size: 22px; }

  /* ── Benefits: 2 col en mobile ── */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .benefit-card { padding: 20px 14px; }
  .benefits-head h2 { font-size: 22px; }

}

/* ═══════════════════════════════════════
   MOBILE FIXES v2
   ─────────────────────────────────────── */
@media (max-width: 768px) {

  .value-section { display: none !important; }

  .hero-arch-content h1 {
    font-size: 44px !important;
    line-height: 1.04 !important;
  }

  .hero-arch-content > p { display: none; }

  .nav-card-body p { display: none !important; }
  .nav-card-body h3 { color: var(--text) !important; }
  .nav-card:hover .nav-card-body h3 { color: var(--text) !important; }

  .jobs-sidebar { display: none !important; }
  .jobs-page-layout { grid-template-columns: 1fr !important; }
  .jobs-search-header { padding: 24px 0 20px !important; }
  .jobs-search-header-inner { grid-template-columns: 1fr !important; }
  .jobs-search-header h1 { font-size: 30px !important; }
  .jobs-search-header p { font-size: 14px !important; }

  .job-card-pro {
    grid-template-columns: 52px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 18px !important;
  }

  .job-card-logo {
    width: 52px !important;
    height: 52px !important;
    font-size: 17px !important;
    border-radius: 14px !important;
  }

  .job-card-header h3 { font-size: 19px !important; }
  .job-card-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .job-card-actions {
    width: 100% !important;
    justify-content: space-between !important;
  }
  .job-card-button { flex: 1 !important; }
  .jobs-page { padding-bottom: 88px !important; }

}

/* =========================
   Programa de Fundadores
========================= */

.founders-section {
  padding: 56px 24px;
  background: #ffffff;
}

.founders-shell {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 52px 64px 48px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 14%, rgba(196, 159, 89, 0.10), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.founders-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.founders-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #bf9850;
}

.founders-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: #0f172a;
}

.founders-lead {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: #4b5563;
}

.founders-text {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: #4b5563;
}

.founders-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.founder-card {
  min-height: 132px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.055);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.founder-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 159, 89, 0.32);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.085);
}

.founder-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 159, 89, 0.24);
  border-radius: 50%;
  background: rgba(196, 159, 89, 0.08);
  color: #bf9850;
}

.founder-icon span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #bf9850;
}

.founder-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: -0.025em;
  color: #111827;
}

.founder-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #5b6472;
}

.founders-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
}

.founders-btn-primary,
.founders-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.founders-btn-primary {
  gap: 18px;
  min-width: 250px;
  background: #c49f59;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(196, 159, 89, 0.24);
}

.founders-btn-primary:hover {
  transform: translateY(-2px);
  background: #b88f43;
  box-shadow: 0 16px 34px rgba(196, 159, 89, 0.30);
}

.founders-btn-primary span {
  font-size: 24px;
  line-height: 1;
}

.founders-btn-secondary {
  min-width: 170px;
  border: 1px solid rgba(17, 24, 39, 0.11);
  background: rgba(255, 255, 255, 0.78);
  color: #111827;
}

.founders-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 159, 89, 0.30);
  background: #ffffff;
}

/* Decorative background */
.founders-bg-art {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 55%;
  pointer-events: none;
  opacity: 0.72;
}

.founders-circle {
  position: absolute;
  top: 34px;
  right: 96px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(196, 159, 89, 0.45);
  border-radius: 50%;
}

.founders-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 159, 89, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 159, 89, 0.16) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 82%, transparent 100%);
}

.founders-block {
  position: absolute;
  bottom: 0;
  background: rgba(236, 230, 217, 0.85);
  border: 1px solid rgba(196, 159, 89, 0.08);
}

.block-one {
  right: 140px;
  width: 220px;
  height: 96px;
}

.block-two {
  right: 0;
  width: 170px;
  height: 170px;
}

/* Responsive */
@media (max-width: 1100px) {
  .founders-shell {
    padding: 56px 36px;
  }

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

  .founders-bg-art {
    width: 60%;
    opacity: 0.38;
  }
}

@media (max-width: 700px) {
  .founders-section {
    padding: 56px 16px;
  }

  .founders-shell {
    padding: 42px 22px;
    border-radius: 22px;
  }

  .founders-title {
    font-size: 46px;
  }

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

  .founders-text {
    font-size: 15.5px;
  }

  .founders-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .founders-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .founders-btn-primary,
  .founders-btn-secondary {
    width: 100%;
  }

  .founders-bg-art {
    display: none;
  }
}

/* =========================
   Página Programa de Fundadores
========================= */

.founders-page-hero {
  padding: 112px 24px 88px;
  background:
    radial-gradient(circle at 84% 18%, rgba(196, 159, 89, 0.10), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.founders-page-container {
  max-width: 1180px;
  margin: 0 auto;
}

.founders-page-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #bf9850;
}

.founders-page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.founders-page-lead {
  max-width: 760px;
  margin: 30px 0 0;
  font-size: 19px;
  line-height: 1.75;
  color: #4b5563;
}

.founders-page-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
}

.founders-page-primary,
.founders-page-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.founders-page-primary {
  gap: 16px;
  min-width: 230px;
  background: #c49f59;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(196, 159, 89, 0.24);
}

.founders-page-primary:hover {
  transform: translateY(-2px);
  background: #b88f43;
  box-shadow: 0 16px 34px rgba(196, 159, 89, 0.30);
}

.founders-page-primary span {
  font-size: 23px;
  line-height: 1;
}

.founders-page-secondary {
  min-width: 180px;
  border: 1px solid rgba(17, 24, 39, 0.11);
  background: rgba(255, 255, 255, 0.78);
  color: #111827;
}

.founders-page-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 159, 89, 0.30);
  background: #ffffff;
}

.founders-page-section {
  padding: 88px 24px;
  background: #ffffff;
}

.founders-page-alt {
  background: #fbfaf7;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.founders-page-header {
  max-width: 780px;
  margin-bottom: 42px;
}

.founders-page-header span {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #bf9850;
}

.founders-page-header h2,
.founders-page-two-cols h2,
.founders-apply-box h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: #0f172a;
}

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

.founders-page-card {
  padding: 28px 26px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.055);
}

.founders-page-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  border: 1px solid rgba(196, 159, 89, 0.25);
  background: rgba(196, 159, 89, 0.07);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  color: #bf9850;
}

.founders-page-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #111827;
}

.founders-page-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #5b6472;
}

.founders-page-two-cols {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.founders-page-list p {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
}

.founders-page-list ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.founders-page-list li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
}

.founders-page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c49f59;
}

.founders-apply-box {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 12%, rgba(196, 159, 89, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.founders-apply-box p {
  max-width: 700px;
  margin: 24px auto 34px;
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
}

@media (max-width: 1000px) {
  .founders-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founders-page-two-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 700px) {
  .founders-page-hero {
    padding: 72px 18px 64px;
  }

  .founders-page-section {
    padding: 64px 18px;
  }

  .founders-page-hero h1 {
    font-size: 48px;
  }

  .founders-page-lead {
    font-size: 16.5px;
  }

  .founders-page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .founders-page-primary,
  .founders-page-secondary {
    width: 100%;
  }

  .founders-page-grid {
    grid-template-columns: 1fr;
  }

  .founders-apply-box {
    padding: 38px 22px;
    text-align: left;
  }
}

/* =========================
   Ajustes finales Home
========================= */

/* Títulos de secciones en estilo premium */
.featured-opportunities .section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: #0f172a;
}

.featured-opportunities .section-head p {
  font-size: 15px;
  color: #6b7280;
}

/* Ocultar sección vieja de beneficios por ahora */
.benefits-section {
  display: none;
}

/* =========================
   Footer brand refinement
========================= */

.fa-footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  width: fit-content;
  margin-bottom: 8px;
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.fa-footer-logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 78%;
  height: 1px;
  background: #b8954e;
}

.fa-footer-free {
  color: #101722;
  font-weight: 500;
}

.fa-footer-arch {
  color: #101722;
  font-weight: 500;
}

.fa-footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* JOB APPLY PAGE */

.job-apply-page {
  padding: 70px 0 90px;
  background: #f6f7f8;
  min-height: calc(100vh - 90px);
}

.job-apply-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--text2);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.job-apply-back:hover {
  color: var(--accent);
}

.job-apply-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.job-apply-info,
.job-apply-form {
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.job-apply-info {
  padding: 34px;
}

.job-apply-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job-apply-info h1 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.job-apply-info p {
  margin: 0;
  color: var(--text2);
  font-size: 16px;
  line-height: 1.7;
}

.job-apply-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.job-apply-tags span {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f5f1e9;
  color: var(--text2);
  font-size: 14px;
  font-weight: 800;
}

.job-apply-form {
  padding: 34px;
}

.job-apply-form .form-group {
  margin-bottom: 18px;
}

.job-apply-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.job-apply-form input,
.job-apply-form textarea {
  width: 100%;
  border: 1px solid rgba(209, 213, 219, 0.95);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.job-apply-form textarea {
  resize: vertical;
  min-height: 130px;
}

.job-apply-form input:focus,
.job-apply-form textarea:focus {
  border-color: rgba(197, 160, 89, 0.65);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.12);
}

.job-apply-form ul.errorlist {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  color: #b42318;
  font-size: 13px;
  font-weight: 700;
}

.job-apply-submit {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(197, 160, 89, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.job-apply-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* JOB APPLY SUCCESS */

.job-apply-success {
  padding: 90px 0;
  background: #f6f7f8;
  min-height: calc(100vh - 90px);
}

.job-apply-success-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.job-apply-success-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #f5f1e9;
  color: var(--accent);
  font-size: 26px;
  font-weight: 900;
}

.job-apply-success-card h1 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 36px;
  letter-spacing: -0.04em;
}

.job-apply-success-card p {
  margin: 0 auto 28px;
  max-width: 460px;
  color: var(--text2);
  font-size: 16px;
  line-height: 1.7;
}

.job-apply-success-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .job-apply-layout {
    grid-template-columns: 1fr;
  }

  .job-apply-info h1 {
    font-size: 32px;
  }
}

/* LOGIN PAGE */

.login-page {
  min-height: calc(100vh - 90px);
  padding: 90px 0;
  background: #f6f7f8;
}

.login-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.login-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-card h1 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.login-card p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--text2);
  font-size: 16px;
  line-height: 1.7;
}

.login-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .login-page {
    padding: 60px 0;
  }

  .login-card {
    padding: 34px 24px;
  }

  .login-card h1 {
    font-size: 34px;
  }
}

.login-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--text2);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.login-secondary-btn:hover {
  background: #f5f1e9;
  color: var(--accent);
}

.login-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.login-primary-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* STUDIOS LIST HERO */

.studios-page-header {
  padding: 72px 0 52px;
  background: #f8f7f4;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.studios-page-header .studios-hero-copy {
  max-width: 760px;
  margin-bottom: 30px;
}

.studios-page-header .studios-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studios-page-header .studios-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.studios-page-header .studios-hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.studios-page-header .studios-hero-copy p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--text2);
  font-size: 18px;
  line-height: 1.7;
}

/* STUDIO CONTACT PAGE */

.studio-contact-page {
  padding: 70px 0 90px;
  background: #f6f7f8;
  min-height: calc(100vh - 90px);
}

.studio-contact-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--text2);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.studio-contact-back:hover {
  color: var(--accent);
}

.studio-contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.studio-contact-info,
.studio-contact-form {
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.studio-contact-info {
  padding: 34px;
}

.studio-contact-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studio-contact-info h1 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.studio-contact-info p {
  margin: 0;
  color: var(--text2);
  font-size: 16px;
  line-height: 1.7;
}

.studio-contact-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(229, 231, 235, 0.95);
}

.studio-contact-logo {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #f3f4f6;
  color: var(--text2);
  font-size: 14px;
  font-weight: 900;
}

.studio-contact-summary strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
}

.studio-contact-summary span {
  display: block;
  margin-top: 3px;
  color: var(--text2);
  font-size: 14px;
}

.studio-contact-form {
  padding: 34px;
}

.studio-contact-form .form-group {
  margin-bottom: 18px;
}

.studio-contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.studio-contact-form input,
.studio-contact-form select,
.studio-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(209, 213, 219, 0.95);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.studio-contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.studio-contact-form input:focus,
.studio-contact-form select:focus,
.studio-contact-form textarea:focus {
  border-color: rgba(197, 160, 89, 0.65);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.12);
}

.studio-contact-form ul.errorlist {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  color: #b42318;
  font-size: 13px;
  font-weight: 700;
}

.studio-contact-submit {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(197, 160, 89, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.studio-contact-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* STUDIO CONTACT SUCCESS */

.studio-contact-success {
  padding: 90px 0;
  background: #f6f7f8;
  min-height: calc(100vh - 90px);
}

.studio-contact-success-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.studio-contact-success-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #f5f1e9;
  color: var(--accent);
  font-size: 26px;
  font-weight: 900;
}

.studio-contact-success-card h1 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 36px;
  letter-spacing: -0.04em;
}

.studio-contact-success-card p {
  margin: 0 auto 28px;
  max-width: 460px;
  color: var(--text2);
  font-size: 16px;
  line-height: 1.7;
}

.studio-contact-success-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .studio-contact-layout {
    grid-template-columns: 1fr;
  }

  .studio-contact-info h1 {
    font-size: 32px;
  }
}

/* STUDIO DETAIL — TYPO UPDATED */

.studio-hero h1 {
  margin: 0;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.studio-section h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.studio-info-card h4,
.studio-contact-card h4 {
  margin: 0 0 18px;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.section-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  margin-left: 8px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f2f4f7;
  color: var(--text2);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  vertical-align: middle;
}

.studio-description,
.studio-info-item,
.studio-contact-card p,
.studio-job-meta {
  font-family: 'Inter', sans-serif;
}

/* STUDIO SIDEBAR JOBS BUTTON */

.studio-sidebar-jobs-btn {
  width: 100%;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid rgba(197, 160, 89, 0.45);
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.10);
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.studio-sidebar-jobs-btn:hover {
  background: rgba(197, 160, 89, 0.16);
  border-color: rgba(197, 160, 89, 0.7);
  transform: translateY(-1px);
}

/* JOB DETAIL — CLEAN PRODUCT STYLE FINAL */

.job-detail-page {
  padding: 40px 0 80px;
  background: var(--soft);
  min-height: 70vh;
}

.job-detail-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.job-detail-main {
  flex: 1;
  min-width: 0;
}

.job-detail-sidebar {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-detail-card {
  background: #fff;
  border: 1px solid var(--stroke2);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.job-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.job-detail-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--soft2);
  border: 1px solid var(--stroke2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
}

.job-detail-title {
  flex: 1;
  min-width: 0;
}

.job-detail-title h1 {
  margin: 0 0 6px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 850;
}

.job-detail-title p {
  margin: 0;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.job-detail-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
  font-family: 'Inter', sans-serif;
}

.job-detail-location-text {
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 750;
}

.detail-tag {
  height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid var(--stroke2);
  border-radius: 999px;
  background: #fafafa;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.job-type-badge {
  font-family: 'Inter', sans-serif;
}

.job-detail-divider {
  border: none;
  border-top: 1px solid var(--stroke2);
  margin: 24px 0;
}

.job-detail-description {
  margin: 0;
  padding: 0;
}

.job-detail-description h3,
.job-detail-section h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 850;
}

.job-detail-description p {
  margin: 0;
  color: var(--text2);
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
}

.job-detail-extra {
  display: grid;
  gap: 24px;
  margin-top: 26px;
}

.job-detail-section {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--stroke2);
}

.job-detail-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.job-detail-section li {
  margin: 0;
  color: var(--text2);
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
}

.job-apply-card,
.job-studio-card {
  background: #fff;
  border: 1px solid var(--stroke2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.job-apply-card h4,
.job-studio-card h4 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 850;
}

.job-apply-card p,
.job-studio-card p,
.job-studio-desc {
  margin: 0;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.job-studio-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 12px;
}

.job-studio-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--soft2);
  border: 1px solid var(--stroke2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
}

.job-studio-info strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.job-studio-info p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.job-apply-card .btn,
.job-studio-card .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 900px) {
  .job-detail-layout {
    flex-direction: column;
  }

  .job-detail-sidebar {
    width: 100%;
  }
}

/* JOB DETAIL — BRAND TYPO REFINED */

.job-detail-title h1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(34px, 3.4vw, 46px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.04em !important;
  font-weight: 600 !important;
}

.job-detail-description h3,
.job-detail-section h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 22px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}

.job-apply-card h4,
.job-studio-card h4 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 28px !important;
  line-height: 1 !important;
  letter-spacing: -0.03em !important;
  font-weight: 600 !important;
}

.job-detail-description p,
.job-detail-section li,
.job-detail-title p,
.job-apply-card p,
.job-studio-card p,
.detail-tag {
  font-family: 'Inter', sans-serif !important;
}

.founders-application-form {
  margin-top: 40px;
  text-align: left;
}

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

.founders-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.founders-form-field-full {
  grid-column: 1 / -1;
}

.founders-form-field label {
  color: #10182a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.founders-form-field label span {
  color: #c99842;
}

.founders-form-field input,
.founders-form-field textarea,
.founders-form-field select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(16, 24, 42, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #10182a;
  font: inherit;
  font-size: 15px;
  padding: 14px 15px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.founders-form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.founders-form-field input::placeholder,
.founders-form-field textarea::placeholder {
  color: rgba(16, 24, 42, 0.48);
}

.founders-form-field input:focus,
.founders-form-field textarea:focus,
.founders-form-field select:focus {
  border-color: #c99842;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(201, 152, 66, 0.12);
}

.founders-form-field small {
  color: rgba(16, 24, 42, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.founders-field-error,
.founders-form-errors {
  color: #a12626;
  font-size: 13px;
}

.founders-form-errors {
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(161, 38, 38, 0.2);
  border-radius: 10px;
  background: rgba(161, 38, 38, 0.06);
}

.founders-form-submit {
  margin: 30px auto 0;
  border: 0;
  cursor: pointer;
}

@media (max-width: 760px) {
  .founders-form-grid {
    grid-template-columns: 1fr;
  }

  .founders-form-field-full {
    grid-column: auto;
  }
}

.founders-success {
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  background: #ffffff;
}

.founders-success-card {
  width: min(720px, 100%);
  padding: 72px 64px;
  border: 1px solid rgba(16, 24, 42, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 160, 87, 0.12),
      transparent 42%
    ),
    #fffefb;
  box-shadow: 0 24px 70px rgba(16, 24, 42, 0.08);
  text-align: center;
}

.founders-success-eyebrow {
  display: block;
  margin-bottom: 20px;
  color: #c99842;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.founders-success-card h1 {
  margin: 0;
  color: #10182a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 66px);
  font-weight: 400;
  line-height: 1.05;
}

.founders-success-card p {
  max-width: 570px;
  margin: 28px auto 34px;
  color: rgba(16, 24, 42, 0.75);
  font-size: 17px;
  line-height: 1.8;
}

.founders-success-card .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  background: #c99842;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(201, 152, 66, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.founders-success-card .btn-primary:hover {
  transform: translateY(-2px);
  background: #b98936;
  box-shadow: 0 18px 36px rgba(201, 152, 66, 0.28);
}

@media (max-width: 640px) {
  .founders-success {
    padding: 48px 18px;
  }

  .founders-success-card {
    padding: 52px 24px;
    border-radius: 22px;
  }

  .founders-success-card p {
    font-size: 16px;
  }
}

.login-form {
  width: 100%;
  max-width: 430px;
  margin: 34px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.login-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-field label {
  color: #10182a;
  font-size: 14px;
  font-weight: 600;
}

.login-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid rgba(16, 24, 42, 0.16);
  border-radius: 12px;
  background: #ffffff;
  color: #10182a;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.login-field input::placeholder {
  color: rgba(16, 24, 42, 0.45);
}

.login-field input:focus {
  border-color: #c99842;
  box-shadow: 0 0 0 4px rgba(201, 152, 66, 0.12);
}

.login-form .login-primary-btn {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
}

.login-divider {
  width: 100%;
  max-width: 430px;
  margin: 28px auto 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(16, 24, 42, 0.58);
  font-size: 13px;
}

.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(16, 24, 42, 0.12);
}

.login-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(16, 24, 42, 0.14);
  border-radius: 12px;
  background: #ffffff;
  color: #10182a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.login-secondary-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 152, 66, 0.55);
  background: #fffdf8;
}

.login-messages {
  width: 100%;
  max-width: 430px;
  margin: 24px auto 0;
}

.login-message {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  text-align: left;
}

.login-message-error {
  border: 1px solid rgba(161, 38, 38, 0.2);
  background: rgba(161, 38, 38, 0.06);
  color: #a12626;
}

@media (max-width: 640px) {
  .login-form,
  .login-divider,
  .login-messages {
    max-width: 100%;
  }
}

.studio-dashboard {
  padding: 64px 24px 80px;
  background: #f8f8f6;
}

.studio-dashboard .container {
  max-width: 1180px;
  margin: 0 auto;
}

.studio-dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.studio-dashboard-eyebrow,
.studio-dashboard-card-label {
  display: block;
  margin-bottom: 10px;
  color: #c99842;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-dashboard-header h1 {
  margin: 0;
  color: #10182a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.05;
}

.studio-dashboard-header p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(16, 24, 42, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.studio-dashboard-logout {
  flex-shrink: 0;
  padding: 12px 18px;
  border: 1px solid rgba(16, 24, 42, 0.14);
  border-radius: 10px;
  background: #ffffff;
  color: #10182a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.studio-dashboard-card {
  padding: 28px;
  border: 1px solid rgba(16, 24, 42, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(16, 24, 42, 0.05);
}

.studio-dashboard-card h2 {
  margin: 0;
  color: #10182a;
  font-size: 24px;
}

.studio-dashboard-card p {
  min-height: 76px;
  margin: 14px 0 22px;
  color: rgba(16, 24, 42, 0.68);
  font-size: 15px;
  line-height: 1.6;
}

.studio-dashboard-primary,
.studio-dashboard-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.studio-dashboard-primary {
  background: #c99842;
  color: #ffffff;
}

.studio-dashboard-secondary {
  border: 1px solid rgba(16, 24, 42, 0.14);
  background: #ffffff;
  color: #10182a;
}

.studio-dashboard-jobs {
  margin-top: 36px;
  padding: 32px;
  border: 1px solid rgba(16, 24, 42, 0.1);
  border-radius: 22px;
  background: #ffffff;
}

.studio-dashboard-section-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.studio-dashboard-section-header h2 {
  margin: 0;
  color: #10182a;
  font-size: 30px;
}

.studio-dashboard-job-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.studio-dashboard-job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(16, 24, 42, 0.08);
}

.studio-dashboard-job:first-child {
  border-top: 0;
}

.studio-dashboard-job h3 {
  margin: 0 0 6px;
  color: #10182a;
  font-size: 18px;
}

.studio-dashboard-job p {
  margin: 0;
  color: rgba(16, 24, 42, 0.62);
  font-size: 14px;
}

.studio-dashboard-job a {
  flex-shrink: 0;
  color: #10182a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.studio-dashboard-empty {
  padding: 34px;
  border: 1px dashed rgba(16, 24, 42, 0.18);
  border-radius: 16px;
  text-align: center;
}

@media (max-width: 900px) {
  .studio-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .studio-dashboard-header {
    flex-direction: column;
  }

  .studio-dashboard-card p {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .studio-dashboard {
    padding: 40px 16px 64px;
  }

  .studio-dashboard-jobs {
    padding: 22px 18px;
  }

  .studio-dashboard-job {
    align-items: flex-start;
    flex-direction: column;
  }
}

.job-create-page {
  padding: 72px 24px 88px;
  background: #f8f8f6;
}

.job-create-page .container {
  max-width: 980px;
  margin: 0 auto;
}

.job-create-card {
  padding: 52px;
  border: 1px solid rgba(16, 24, 42, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 152, 66, 0.1),
      transparent 34%
    ),
    #ffffff;
  box-shadow: 0 20px 60px rgba(16, 24, 42, 0.07);
}

.job-create-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #c99842;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.job-create-card h1 {
  margin: 0;
  color: #10182a;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 6vw, 64px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.job-create-card > p {
  max-width: 680px;
  margin: 20px 0 36px;
  color: rgba(16, 24, 42, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.job-create-form {
  margin-top: 32px;
}

.job-create-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.job-create-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-create-field-full {
  grid-column: 1 / -1;
}

.job-create-field label {
  color: #10182a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.job-create-field label span {
  color: #c99842;
}

.job-create-field input,
.job-create-field textarea,
.job-create-field select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(16, 24, 42, 0.15);
  border-radius: 12px;
  background: #ffffff;
  color: #10182a;
  font: inherit;
  font-size: 15px;
  padding: 14px 15px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.job-create-field textarea {
  min-height: 180px;
  resize: vertical;
}

.job-create-field input::placeholder,
.job-create-field textarea::placeholder {
  color: rgba(16, 24, 42, 0.45);
}

.job-create-field input:focus,
.job-create-field textarea:focus,
.job-create-field select:focus {
  border-color: #c99842;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(201, 152, 66, 0.12);
}

.job-create-field-error,
.job-create-errors {
  color: #a12626;
  font-size: 13px;
}

.job-create-errors {
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(161, 38, 38, 0.2);
  border-radius: 10px;
  background: rgba(161, 38, 38, 0.06);
}

.job-create-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
}

.job-create-actions .studio-dashboard-primary,
.job-create-actions .studio-dashboard-secondary {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 11px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.job-create-actions .studio-dashboard-secondary {
  border: 1px solid rgba(16, 24, 42, 0.14);
}

@media (max-width: 760px) {
  .job-create-page {
    padding: 48px 16px 72px;
  }

  .job-create-card {
    padding: 34px 22px;
    border-radius: 20px;
  }

  .job-create-grid {
    grid-template-columns: 1fr;
  }

  .job-create-field-full {
    grid-column: auto;
  }

  .job-create-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .job-create-actions .studio-dashboard-primary,
  .job-create-actions .studio-dashboard-secondary {
    width: 100%;
  }
}