/* RitzRec2Rec Stylesheet - Plesk Obsidian 18.0.80 Production Build */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #020b17;
  color: #f1f5f9;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================================================= */
/* Top Authority Bar                                                         */
/* ========================================================================= */
.top-bar {
  background: #020b17;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  font-size: 0.8rem;
  color: #cbd5e1;
  padding: 8px 0;
  position: relative;
  z-index: 101;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-phone, .top-email {
  color: #deb97a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.top-phone:hover, .top-email:hover {
  color: #ffffff;
}

.divider {
  color: #475569;
}

/* ========================================================================= */
/* Header & Navigation                                                       */
/* ========================================================================= */
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(4, 23, 45, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.8);
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  height: 48px;
  width: auto;
  max-width: 140px;
}

.logo-wrapper svg {
  height: 46px;
  width: auto;
  max-width: 100%;
  display: block;
}

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

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #c9a96e;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.linkedin-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(10, 102, 194, 0.15);
  border: 1px solid rgba(10, 102, 194, 0.4);
  color: #38bdf8;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.linkedin-nav-btn:hover {
  background: #0a66c2;
  color: #ffffff;
  border-color: #0a66c2;
}

.nav-icon {
  width: 15px;
  height: 15px;
}

/* ========================================================================= */
/* Buttons & Badges                                                          */
/* ========================================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  background: #c9a96e;
  color: #04172d;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(201, 169, 110, 0.25);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: #deb97a;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 169, 110, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  color: #e2e8f0;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #334155;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: rgba(30, 41, 59, 0.9);
  color: #ffffff;
  border-color: #475569;
  transform: translateY(-2px);
}

.btn-gold-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  background: transparent;
  color: #deb97a;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(201, 169, 110, 0.35);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-gold-glow:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: #c9a96e;
  color: #ffffff;
  transform: translateY(-2px);
}

.gold-gradient-text {
  background: linear-gradient(90deg, #deb97a 0%, #f7e0b5 50%, #c9a96e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.section {
  padding: 96px 0;
}

.dark-bg {
  background: #031122;
}

.section-title-wrap {
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: #deb97a;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.section-title-wrap h2 {
  font-size: 2.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.section-desc {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========================================================================= */
/* Hero Section                                                              */
/* ========================================================================= */
.hero-section {
  padding: 110px 0 90px;
  background: linear-gradient(180deg, #020b17 0%, #04172d 50%, #061e3b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(51, 65, 85, 0.8);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: rgba(201, 169, 110, 0.12);
  filter: blur(140px);
  border-radius: 50%;
  pointer-events: none;
}

.badge-heritage {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 9999px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.35);
  color: #deb97a;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-icon {
  color: #c9a96e;
}

.hero-eyebrow {
  color: #c9a96e;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  line-height: 1.14;
  color: #ffffff;
  max-width: 960px;
  margin: 0 auto 24px;
  letter-spacing: -0.02em;
  text-transform: none;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

/* ========================================================================= */
/* Recent 3 Jobs Section                                                     */
/* ========================================================================= */
.recent-jobs-section {
  padding: 80px 0 90px;
  background: #031122;
  border-bottom: 1px solid rgba(51, 65, 85, 0.8);
  position: relative;
}

.recent-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 36px;
  margin-bottom: 40px;
}

.recent-job-card {
  background: rgba(6, 30, 59, 0.9);
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-col: column;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.recent-job-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.6);
  box-shadow: 0 20px 35px rgba(201, 169, 110, 0.1);
  background: #072447;
}

.recent-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.recent-sector-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #04172d;
  border: 1px solid #334155;
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 600;
}

.recent-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 9999px;
  background: rgba(6, 78, 59, 0.7);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.recent-card-title {
  font-size: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 14px;
}

.recent-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.recent-meta-loc {
  color: #cbd5e1;
}

.recent-meta-sal {
  color: #deb97a;
  font-weight: 600;
}

.recent-card-desc {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.recent-card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.all-vacancies-header-wrap {
  text-align: center;
  margin: 36px 0 36px;
}

.all-vacancies-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: #081b33;
  border: 2px solid rgba(201, 169, 110, 0.7);
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 169, 110, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.all-vacancies-header-btn:hover {
  background: #0c2444;
  border-color: #deb97a;
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(201, 169, 110, 0.25);
}

.all-vacancies-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.all-vacancies-header-btn:hover .all-vacancies-title {
  color: #deb97a;
}

.all-vacancies-arrow {
  color: #deb97a;
  font-size: 1.3rem;
  transition: transform 0.25s ease;
}

.all-vacancies-header-btn:hover .all-vacancies-arrow {
  transform: translateX(4px);
}

.all-vacancies-sub {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 10px;
}

.recent-banner-confidential {
  background: #04172d;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 18px;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* ========================================================================= */
/* Audience Pathways Section                                                 */
/* ========================================================================= */
.audience-section {
  background: #020b17;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.audience-card {
  background: #06182e;
  border: 1px solid #1e293b;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.audience-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
}

.audience-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: #deb97a;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.audience-header h2 {
  font-size: 1.8rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.audience-header p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.audience-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.audience-checklist li {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-icon {
  color: #deb97a;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ========================================================================= */
/* How We Work Section                                                       */
/* ========================================================================= */
.three-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.pillar-card {
  background: rgba(8, 27, 51, 0.9);
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.pillar-card:hover {
  border-color: rgba(201, 169, 110, 0.5);
  transform: translateY(-3px);
}

.pillar-num {
  font-size: 1.8rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #deb97a;
  margin-bottom: 16px;
}

.pillar-card h3 {
  font-size: 1.35rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.pillar-card p {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ========================================================================= */
/* Why Ritz & Sectors Section                                                */
/* ========================================================================= */
.heritage-block {
  background: #081b33;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 24px;
  padding: 44px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 900px) {
  .heritage-block {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

.heritage-left h3 {
  font-size: 1.9rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.heritage-left p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.heritage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.heritage-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  background: #04172d;
  border: 1px solid #1e293b;
  color: #deb97a;
  font-size: 0.82rem;
  font-weight: 600;
}

.heritage-right-card {
  background: #04172d;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}

.hubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.hub-card {
  background: #081b33;
  border: 1px solid #1e293b;
  border-radius: 18px;
  padding: 28px;
  transition: all 0.3s ease;
}

.hub-card:hover {
  border-color: rgba(201, 169, 110, 0.5);
}

.hub-card h4 {
  font-size: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.hub-card address {
  font-style: normal;
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.hub-phone {
  color: #deb97a;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.sector-card {
  background: #06182e;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.sector-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-3px);
}

.sector-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.sector-card h3 {
  font-size: 1.15rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.sector-card p {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.55;
}

/* ========================================================================= */
/* Contact Section                                                           */
/* ========================================================================= */
.contact-section {
  background: #020b17;
  padding: 96px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}

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

.contact-info-panel h2 {
  font-size: 2.2rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.contact-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-card-item {
  background: #081b33;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: all 0.2s ease;
}

.contact-card-item:hover {
  border-color: rgba(201, 169, 110, 0.5);
}

.contact-form-box {
  background: #06182e;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  background: #04172d;
  border: 1px solid #334155;
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

/* ========================================================================= */
/* Footer                                                                    */
/* ========================================================================= */
footer {
  background: #020813;
  border-top: 1px solid #1e293b;
  padding: 70px 0 30px;
  color: #94a3b8;
  font-size: 0.88rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

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

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #deb97a;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}
