:root {
  --ink: #101418;
  --muted: #5f6a72;
  --line: #d9dee2;
  --surface: #ffffff;
  --surface-soft: #f4f6f7;
  --navy: #15243a;
  --teal: #0e6b68;
  --gold: #c79b4b;
  --gold-dark: #9a7130;
  --shadow: 0 24px 70px rgba(16, 20, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 16px;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(9, 14, 20, 0.74);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand,
.nav-cta,
.button,
.intro-item,
.contact-methods a {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: linear-gradient(145deg, var(--gold), #e7c274);
  color: #1b160b;
  font-weight: 800;
  font-size: 13px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

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

.nav-links a {
  border-radius: 7px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-links a.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-cta {
  gap: 8px;
  min-height: 40px;
  border-radius: 7px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.nav-cta svg,
.button svg,
.intro-item svg,
.service-card svg,
.contact-methods svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.88) 0%, rgba(7, 10, 14, 0.58) 42%, rgba(7, 10, 14, 0.25) 100%),
    linear-gradient(0deg, rgba(7, 10, 14, 0.64) 0%, rgba(7, 10, 14, 0) 42%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1040px, calc(100% - 32px));
  min-height: 760px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding-top: 100px;
}

.hero-content {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.95;
  font-weight: 800;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 7px;
  padding: 0 18px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), #edca79);
  color: #171207;
  box-shadow: 0 18px 44px rgba(199, 155, 75, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.intro-band {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.intro-item {
  gap: 12px;
  min-height: 108px;
  padding: 24px;
  border-right: 1px solid var(--line);
  font-weight: 800;
}

.intro-item:last-child {
  border-right: 0;
}

.intro-item svg {
  color: var(--teal);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.compact {
  display: block;
  max-width: 720px;
  margin-bottom: 28px;
}

.services-section .section-heading {
  display: block;
  width: min(820px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.services-section .section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.services-section .section-heading .eyebrow::before,
.services-section .section-heading .eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(199, 155, 75, 0.58);
}

.services-section .section-heading h2 {
  max-width: 760px;
  margin: 0 auto;
}

.services-section .section-heading p:not(.eyebrow) {
  max-width: 690px;
  margin: 20px auto 0;
  font-size: 17px;
}

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

.service-card,
.process-step,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-card {
  min-height: 266px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 107, 104, 0.35);
  box-shadow: 0 18px 48px rgba(16, 20, 24, 0.1);
}

.service-card svg {
  width: 32px;
  height: 32px;
  color: var(--teal);
}

.service-card h3,
.process-step h3 {
  margin: 20px 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.service-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-card-wide {
  grid-column: span 3;
  min-height: 0;
  display: grid;
  grid-template-columns: auto 0.34fr 1fr;
  align-items: center;
  gap: 22px;
}

.service-card-wide h3 {
  margin: 0;
}

.home-about-section {
  padding-top: 0;
}

.home-about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.78fr);
  gap: 44px;
  align-items: center;
  border: 1px solid rgba(14, 107, 104, 0.16);
  border-radius: 8px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(244, 246, 247, 0.94), rgba(255, 255, 255, 0.98)),
    #fff;
}

.home-about-panel h2,
.page-hero h1,
.about-cta h2,
.join-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.home-about-panel p:not(.eyebrow),
.narrative-copy p,
.join-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--teal);
  font-weight: 800;
}

.text-link svg {
  width: 18px;
  height: 18px;
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  padding: 28px;
  background: var(--surface-soft);
}

.process-step span {
  display: block;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 40px;
  border-radius: 8px;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(21, 36, 58, 0.96), rgba(14, 107, 104, 0.9)),
    var(--navy);
  color: #fff;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-methods a {
  gap: 10px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 107, 104, 0.12);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 172px 0 86px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.92), rgba(7, 10, 14, 0.7)),
    url("assets/vip-istanbul-hero.png") center / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 840px;
  color: #fff;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.page-hero-compact {
  padding-bottom: 72px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 42px;
}

.stat-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stat-card {
  padding: 28px;
}

.stat-card strong {
  display: block;
  color: var(--teal);
  font-size: 42px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

.about-split {
  padding-top: 42px;
}

.mission-grid,
.philosophy-grid,
.career-list {
  display: grid;
  gap: 16px;
}

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

.philosophy-grid,
.career-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  min-height: 240px;
  padding: 28px;
}

.info-card svg {
  width: 32px;
  height: 32px;
  color: var(--teal);
}

.info-card h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.24;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.narrative-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.narrative-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.86fr);
  gap: 50px;
}

.narrative-layout h2,
.career-layout h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.narrative-copy {
  display: grid;
  gap: 18px;
}

.about-cta {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 30px;
  align-items: center;
  border-radius: 8px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(21, 36, 58, 0.98), rgba(14, 107, 104, 0.92)),
    var(--navy);
  color: #fff;
}

.about-cta h2 {
  color: #fff;
}

.about-cta .hero-actions {
  margin: 0;
  justify-content: flex-end;
}

.join-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: var(--surface-soft);
}

.join-panel p {
  max-width: 760px;
  margin-top: 16px;
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.career-contact {
  margin-top: 0;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 42px 0 28px;
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.3fr);
  gap: 56px;
  align-items: start;
}

.footer-brand .brand {
  color: var(--navy);
}

.footer-brand .brand small {
  color: var(--muted);
}

.footer-brand p {
  max-width: 430px;
  margin: 18px 0 0;
  line-height: 1.7;
}

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

.footer-columns h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 14px;
}

.footer-columns a,
.footer-columns span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.footer-columns a:hover {
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .intro-band,
  .services-grid,
  .process-list,
  .contact-section,
  .about-stats,
  .philosophy-grid,
  .career-list,
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card-wide {
    grid-column: span 2;
    grid-template-columns: auto 1fr;
  }

  .service-card-wide p {
    grid-column: span 2;
  }

  .home-about-panel,
  .mission-grid,
  .narrative-layout,
  .about-cta,
  .join-panel,
  .career-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .about-cta .hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .brand strong {
    font-size: 14px;
  }

  .hero,
  .hero-grid {
    min-height: 710px;
  }

  .hero-grid {
    width: calc(100% - 28px);
    padding-top: 74px;
  }

  .hero-content {
    text-align: left;
  }

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

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .intro-band {
    grid-template-columns: 1fr;
    margin-top: 0;
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .intro-item {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 66px 0;
  }

  .services-grid,
  .process-list,
  .contact-section,
  .about-stats,
  .mission-grid,
  .philosophy-grid,
  .career-list,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-step {
    min-height: 0;
  }

  .service-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .service-card-wide p {
    grid-column: auto;
  }

  .contact-section {
    width: 100%;
    margin-bottom: 48px;
    border-radius: 0;
    padding: 32px 16px;
  }

  .contact-methods a {
    width: 100%;
  }

  .home-about-panel,
  .about-cta,
  .join-panel {
    padding: 26px;
  }

  .page-hero {
    padding: 128px 0 58px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .stat-card,
  .info-card {
    min-height: 0;
  }

  .site-footer {
    width: calc(100% - 32px);
  }

  .footer-bottom {
    flex-direction: column;
  }
}
