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

:root {
  --sand: #f5f0e8;
  --sand-dark: #e4d7c4;
  --sand-soft: #f8f4ee;
  --cream: #faf7f2;
  --white: #ffffff;
  --ink: #191510;
  --ink-soft: #352d25;
  --ink-muted: #6f6150;
  --ink-subtle: #968674;
  --dune: #c4a97a;
  --dune-deep: #8c6e3f;
  --water: #2b5f75;
  --water-deep: #18323d;
  --line: rgba(25, 21, 16, 0.1);
  --line-strong: rgba(25, 21, 16, 0.16);
  --shadow-soft: 0 24px 70px rgba(35, 28, 19, 0.08);
  --shadow-card: 0 18px 44px rgba(35, 28, 19, 0.06);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(196, 169, 122, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(43, 95, 117, 0.08), transparent 28%);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: inherit;
}

.page-shell {
  overflow: clip;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-soft {
  background: var(--sand-soft);
}

.dark-section {
  background: var(--ink);
  color: var(--cream);
}

.dark-section .section-title,
.dark-section .section-copy,
.dark-section .section-lead,
.dark-section .feature-card p,
.dark-section .role-card-copy,
.dark-section .faq-copy,
.dark-section .article-copy {
  color: inherit;
}

.section-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 760px;
}

.section-intro.spread {
  max-width: none;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dune-deep);
}

.section-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--dune);
}

.dark-section .section-eyebrow {
  color: var(--dune);
}

.dark-section .section-eyebrow::before {
  background: var(--dune);
}

.section-title,
.hero-title,
.article-title,
.card-title,
.role-title,
.faq-title,
.form-title {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.14;
  text-wrap: balance;
}

.section-title,
.article-title {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
}

.section-title em,
.hero-title em,
.article-title em,
.form-title em {
  font-style: italic;
  color: var(--dune-deep);
}

.section-copy,
.section-lead,
.card-copy,
.article-copy,
.form-copy,
.role-card-copy,
.faq-copy,
.footer-lead {
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.dark-section .section-title,
.dark-section .card-title {
  color: var(--cream);
}

.dark-section .section-title em,
.dark-section .hero-title em {
  color: var(--dune);
}

.split-hero {
  padding: 7.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.2rem);
  color: var(--ink);
  margin: 1.1rem 0 1.4rem;
}

.hero-sub {
  max-width: 520px;
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.stat-card {
  min-width: 140px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(196, 169, 122, 0.24);
  border-radius: var(--radius-md);
}

.stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--ink);
}

.stat-label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-subtle);
}

.hero-media,
.media-panel,
.article-card,
.feature-card,
.service-card,
.talent-card,
.role-card,
.form-panel,
.info-panel,
.culture-card,
.testimonial-card,
.faq-item,
.story-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(196, 169, 122, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-media {
  overflow: hidden;
  min-height: 620px;
}

.hero-media-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-soft);
  padding: 2rem;
}

.hero-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.hero-illustration-wrap {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.media-panel {
  position: relative;
  overflow: hidden;
}

.media-stack {
  display: grid;
  gap: 1rem;
}

.media-note {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(250, 247, 242, 0.8);
}

.placeholder-media {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 300px;
  padding: 1.5rem;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(43, 95, 117, 0.95), rgba(24, 50, 61, 0.95) 48%, rgba(140, 110, 63, 0.82)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
}

.placeholder-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.15), transparent 32%);
}

.placeholder-media span {
  position: relative;
  z-index: 1;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.7;
}

.placeholder-tall {
  min-height: 440px;
}

.placeholder-square {
  min-height: 360px;
}

.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 50px;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.btn-primary,
.nav-cta {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary:hover,
.nav-cta:hover {
  background: var(--ink-soft);
  box-shadow: 0 16px 35px rgba(25, 21, 16, 0.16);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(25, 21, 16, 0.16);
}

.btn-secondary:hover {
  border-color: var(--dune);
  color: var(--dune-deep);
}

.dark-section .btn-secondary {
  color: var(--cream);
  border-color: rgba(250, 247, 242, 0.24);
}

.dark-section .btn-secondary:hover {
  color: var(--cream);
  border-color: rgba(196, 169, 122, 0.56);
  background: rgba(255, 255, 255, 0.06);
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.68;
  cursor: not-allowed;
  transform: none;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196, 169, 122, 0.22);
}

.nav-inner {
  width: min(1180px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(196, 169, 122, 0.35);
  box-shadow: 0 10px 28px rgba(35, 28, 19, 0.08);
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.logo-text span {
  color: var(--dune-deep);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu-compact {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(196, 169, 122, 0.45);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
  gap: 0.24rem;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-link {
  position: relative;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--dune);
  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: var(--ink);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.editorial-grid,
.services-grid,
.story-grid,
.talent-grid,
.feature-grid,
.offers-grid,
.testimonials-grid,
.culture-grid {
  display: grid;
  gap: 1.35rem;
}

.services-grid,
.feature-grid,
.offers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.talent-grid,
.testimonials-grid,
.culture-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.feature-card,
.story-card,
.talent-card,
.testimonial-card {
  overflow: hidden;
}

.card-body,
.service-card-body,
.feature-card-body,
.talent-card-body,
.testimonial-card-body,
.story-card-body {
  padding: 1.6rem;
}

.card-label,
.service-label,
.role-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dune-deep);
}

.card-title,
.service-card h3,
.story-card h3,
.talent-card h3,
.testimonial-card h3 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.service-card h3,
.story-card h3,
.talent-card h3,
.testimonial-card h3 {
  font-size: 1.5rem;
}

.talent-card p,
.testimonial-meta {
  color: var(--ink-subtle);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Talent images: force a perfect square and cover crop */
.talent-card .placeholder-media {
  aspect-ratio: 1 / 1;
  min-height: auto; /* allow aspect-ratio to control height */
  padding: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent; /* keep card background visible */
}

.talent-card .talent-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.talent-card-body .talent-bio {
  margin-top: 0.6rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.talent-card-body .talent-age {
  margin-top: 0.35rem;
  color: var(--ink-subtle);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: none;
}

.story-card ul,
.article-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.story-card li,
.article-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-muted);
}

.story-card li::before,
.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--dune);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(196, 169, 122, 0.45);
}

.testimonial-quote {
  font-style: italic;
}

.testimonial-stars {
  margin-top: 1rem;
  color: var(--dune-deep);
  letter-spacing: 0.18em;
}

.dark-panel {
  background: var(--ink);
  color: var(--cream);
  border-color: rgba(196, 169, 122, 0.16);
}

.dark-panel .card-title,
.dark-panel h3,
.dark-panel p,
.dark-panel li,
.dark-panel .testimonial-meta {
  color: inherit;
}

.dark-panel .card-label,
.dark-panel .section-eyebrow,
.dark-panel .role-kicker {
  color: var(--dune);
}

.feature-card-body {
  padding: 2rem 1.6rem;
}

.feature-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 169, 122, 0.4);
  font-size: 0.86rem;
  color: var(--dune);
}

.roles-list {
  display: grid;
  gap: 1rem;
}

.role-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.6rem 1.8rem;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.role-card:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 169, 122, 0.5);
  box-shadow: var(--shadow-soft);
}

.role-card.featured {
  border: 1.5px solid rgba(196, 169, 122, 0.65);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  background: rgba(196, 169, 122, 0.18);
  color: var(--dune-deep);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-title {
  font-size: 1.8rem;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.role-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.role-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(25, 21, 16, 0.04);
  color: var(--ink-muted);
  font-size: 0.74rem;
}

.role-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--dune);
}

.role-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(25, 21, 16, 0.1);
  color: var(--ink-muted);
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.check-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(196, 169, 122, 0.18);
}

.check-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(196, 169, 122, 0.18);
  color: var(--dune-deep);
  font-size: 0.88rem;
}

.culture-strip {
  padding: 0 0 6rem;
}

.culture-grid {
  gap: 0.9rem;
}

.culture-card {
  overflow: hidden;
}

.culture-caption {
  padding: 1rem 1.2rem 1.2rem;
  color: var(--ink-muted);
  font-size: 0.85rem;
}

.perks-layout,
.contact-layout,
.faq-layout,
.article-grid {
  display: grid;
  gap: 2rem;
}

.perks-layout,
.faq-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.info-panel,
.form-panel {
  padding: 2rem;
}

.perks-list {
  display: grid;
  gap: 0.8rem;
}

.perk-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(25, 21, 16, 0.08);
}

.perk-row:first-child {
  border-top: 1px solid rgba(25, 21, 16, 0.08);
}

.perk-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--dune-deep);
}

.perk-row h4 {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.perk-row p {
  color: var(--ink-muted);
}

.app-form {
  display: grid;
  gap: 1rem;
}

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

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.88rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(25, 21, 16, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(196, 169, 122, 0.88);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(196, 169, 122, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #978876;
}

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

.req {
  color: var(--dune-deep);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(25, 21, 16, 0.12);
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  color: var(--ink-soft);
}

.radio-label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(25, 21, 16, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.radio-label input:checked + .radio-custom {
  border-color: var(--dune-deep);
}

.radio-label input:checked + .radio-custom::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--dune-deep);
}

.form-helper,
.apply-note,
.legal-note {
  color: var(--ink-subtle);
  font-size: 0.84rem;
  line-height: 1.7;
}

.promise-card {
  padding: 1.1rem 1.2rem;
  margin-top: 1.3rem;
  border-left: 3px solid var(--dune);
  background: rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-md);
}

.form-success,
.form-error {
  margin-top: 1rem;
  padding: 1.6rem;
  border-radius: var(--radius-md);
}

.form-success {
  text-align: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(196, 169, 122, 0.22);
}

.success-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 169, 122, 0.5);
  color: var(--dune-deep);
  font-size: 1.5rem;
}

.form-success h3 {
  font-size: 1.9rem;
  color: var(--ink);
}

.form-error {
  background: rgba(140, 48, 48, 0.06);
  border: 1px solid rgba(140, 48, 48, 0.18);
  color: #8b4747;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 1rem 1.2rem;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.faq-title {
  font-size: 1.35rem;
  line-height: 1.15;
  color: var(--ink);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(25, 21, 16, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  transition: transform 0.2s ease;
}

.faq-answer {
  display: none;
  padding-top: 0.85rem;
  color: var(--ink-muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--dune-deep);
  border-color: rgba(196, 169, 122, 0.48);
}

.article-hero {
  padding: 7.5rem 0 2rem;
}

.article-meta {
  color: var(--ink-subtle);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card {
  padding: 2rem;
}

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

.article-block {
  display: grid;
  gap: 0.9rem;
}

.article-block h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
}

.article-block p,
.article-block li {
  color: var(--ink-muted);
}

.article-block a {
  color: var(--dune-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.article-divider {
  height: 1px;
  background: rgba(25, 21, 16, 0.08);
  margin: 1.5rem 0;
}

.footer {
  padding: 2.5rem 0 3rem;
  background: var(--ink);
  color: rgba(250, 247, 242, 0.72);
}

.footer-shell,
.footer-bar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-shell {
  padding-bottom: 2rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(196, 169, 122, 0.18);
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  margin-top: 0.9rem;
  color: var(--cream);
}

.footer .logo-text {
  color: var(--cream);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 0.8rem 1.6rem;
}

.footer-links a {
  color: rgba(250, 247, 242, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--dune);
}

.footer-meta,
.footer-text {
  color: rgba(250, 247, 242, 0.48);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 1080px) {
  .services-grid,
  .feature-grid,
  .offers-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .story-grid,
  .perks-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .nav-inner {
    min-height: 76px;
    padding: 0.75rem 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .nav-menu,
  .nav-menu-compact {
    display: none;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
    padding: 0.65rem;
    border: 1px solid rgba(196, 169, 122, 0.28);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
  }

  .nav.nav-open .nav-menu,
  .nav.nav-open .nav-menu-compact {
    display: flex;
  }

  .nav-link {
    display: block;
    padding: 0.62rem 0.55rem;
    border-radius: 8px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(196, 169, 122, 0.12);
  }

  .nav-inner > .nav-cta {
    display: none;
    order: 4;
    width: 100%;
    margin-top: 0.45rem;
    text-align: center;
  }

  .nav.nav-open .nav-inner > .nav-cta {
    display: inline-flex;
    justify-content: center;
  }

  .nav-menu .nav-cta,
  .nav-menu-compact .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .footer-shell,
  .footer-bar {
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .split-hero,
  .article-hero {
    padding-top: 8.5rem;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 4.5rem 0;
  }

  .services-grid,
  .feature-grid,
  .offers-grid,
  .talent-grid,
  .testimonials-grid,
  .culture-grid,
  .article-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .role-card {
    grid-template-columns: 1fr;
  }

  .role-arrow {
    display: none;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .logo-text {
    font-size: 0.96rem;
    letter-spacing: 0.12em;
  }

  .article-card,
  .info-panel,
  .form-panel {
    padding: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
