:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --surface: #101010;
  --surface-strong: #171411;
  --text: #f1eee8;
  --muted: #b8b3ad;
  --muted-2: #827d76;
  --rule: rgba(241, 238, 232, 0.26);
  --rule-strong: rgba(241, 238, 232, 0.42);
  --accent: #e64032;
  --accent-dark: #a92820;
  --header-h: 82px;
  --outer: clamp(20px, 4.6vw, 72px);
  --display: "Arial Narrow", "Roboto Condensed", Impact, system-ui, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 86% 14%, rgba(230, 64, 50, 0.11), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #090807 45%, #050505 100%);
  color: var(--text);
  font-family: var(--body);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("/cagri-karakas-pt/assets/patterns/grit-grid.svg"), url("/cagri-karakas-pt/assets/patterns/imagen-texture.webp");
  background-size: 420px 420px, cover;
  background-position: center, center;
  opacity: 0.34;
  pointer-events: none;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--outer);
  background: rgba(5, 5, 5, 0.84);
  border-bottom: 1px solid rgba(241, 238, 232, 0.09);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.brand span,
.footer-brand span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--text);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  position: relative;
  padding: 30px 0 26px;
  color: var(--text);
  white-space: nowrap;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--accent);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 180ms ease;
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: relative;
}

.menu-toggle span::before {
  top: -8px;
}

.menu-toggle span::after {
  top: 6px;
}

body.nav-open .menu-toggle span {
  background: transparent;
}

body.nav-open .menu-toggle span::before {
  transform: translateY(8px) rotate(45deg);
  background: var(--text);
}

body.nav-open .menu-toggle span::after {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--text);
}

.top-cta {
  min-width: max-content;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid var(--rule-strong);
  background: rgba(5, 5, 5, 0.34);
  color: var(--text);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn::after {
  content: "→";
  margin-left: 18px;
  font-family: var(--body);
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms ease;
}

.btn:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn:hover::after {
  transform: translateX(6px);
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent) 0%, #ef4d3f 45%, #b62c22 100%);
  color: #fff;
  box-shadow: 0 20px 60px rgba(230, 64, 50, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 24px 78px rgba(230, 64, 50, 0.28);
}

.btn-small {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 15px;
}

.site-main {
  overflow: hidden;
}

.hero,
.page-grid,
.section,
.footer-inner {
  padding-left: var(--outer);
  padding-right: var(--outer);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
  border-bottom: 1px solid var(--rule);
}

.hero::after,
.photo-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.38) 52%, rgba(5, 5, 5, 0.76)),
    radial-gradient(circle at 72% 50%, transparent 0, rgba(5, 5, 5, 0.56) 54%, #050505 100%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 760px;
  padding: clamp(40px, 6vw, 82px) 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.display-title,
.brand-title,
.section-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 950;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.01em;
}

.brand-title {
  font-size: clamp(62px, 6vw, 92px);
  max-width: 550px;
}

.display-title {
  font-size: clamp(62px, 9vw, 142px);
}

.section-title {
  font-size: clamp(38px, 5.5vw, 92px);
}

.metal-text {
  color: var(--text);
  background:
    linear-gradient(180deg, #fff 0%, #8e8b86 100%),
    url("/cagri-karakas-pt/assets/patterns/imagen-texture.webp");
  background-blend-mode: screen;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
}

.red-text {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

.accent-line {
  width: 110px;
  height: 4px;
  margin: 22px 0 28px;
  background: var(--accent);
}

.lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
}

.hero-line {
  margin: 26px 0 10px;
  max-width: 660px;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 0.98;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.12);
}

.hero-home .hero-media img {
  object-position: center 32%;
}

.media-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.26), transparent 30%, rgba(5, 5, 5, 0.22)),
    linear-gradient(0deg, #050505 0%, transparent 32%, transparent 72%, #050505 100%);
  pointer-events: none;
}

.proof-strip,
.footer-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(5, 5, 5, 0.68);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  padding: 22px var(--outer);
  border-right: 1px solid var(--rule);
}

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

.icon-box {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.icon-box svg,
.inline-icon {
  width: 24px;
  height: 24px;
}

.proof-item h2,
.proof-item h3,
.route-card h2,
.package-card h3,
.feature h3,
.mini-title {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-item p,
.route-card p,
.feature p,
.faq p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.route-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--rule);
}

.route-card {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 38px var(--outer);
  border-right: 1px solid var(--rule);
  overflow: hidden;
}

.route-card:last-child {
  border-right: 0;
}

.route-card img {
  width: 220px;
  height: 180px;
  object-fit: cover;
  border: 1px solid rgba(241, 238, 232, 0.16);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  line-height: 1.4;
}

.check {
  color: var(--accent);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--text);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  margin-left: 12px;
  color: var(--accent);
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(6px);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  padding-top: clamp(44px, 6vw, 84px);
  padding-bottom: clamp(44px, 6vw, 84px);
  border-bottom: 1px solid var(--rule);
}

.page-grid.reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.photo-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.photo-stage img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.12);
}

.panel {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.82), rgba(5, 5, 5, 0.62));
}

.split-programs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.program-option {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: end;
  padding: clamp(28px, 4vw, 56px);
  border-right: 1px solid var(--rule);
  overflow: hidden;
}

.program-option:last-child {
  border-right: 0;
}

.program-option img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  filter: saturate(0.92) contrast(1.1);
}

.program-option::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.38) 58%, rgba(5, 5, 5, 0.84));
}

.program-option > div {
  position: relative;
  z-index: 1;
  max-width: 470px;
}

.comparison-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 28px var(--outer);
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  text-align: center;
}

.comparison-footer strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding-top: clamp(60px, 8vw, 112px);
  padding-bottom: clamp(60px, 8vw, 112px);
  border-bottom: 1px solid var(--rule);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.process-grid,
.audience-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.process-item,
.audience-item,
.faq {
  min-height: 150px;
  padding: 26px;
  background: rgba(5, 5, 5, 0.88);
}

.process-item .icon-box,
.audience-item .icon-box {
  margin-bottom: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.package-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(23, 20, 17, 0.76), rgba(5, 5, 5, 0.94));
}

.package-card.featured {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(230, 64, 50, 0.5), 0 24px 70px rgba(0, 0, 0, 0.32);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin: 24px 0 18px;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.price small {
  color: var(--text);
  font-size: 0.46em;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 1px;
  margin-top: 38px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.feature {
  padding: 30px;
  background: rgba(5, 5, 5, 0.9);
}

.application-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: stretch;
}

.application-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--text);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--rule-strong);
  background: rgba(5, 5, 5, 0.74);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 0;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.program-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px solid var(--rule-strong);
  color: var(--text);
  cursor: pointer;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice input {
  position: absolute;
  opacity: 0;
}

.choice:has(input:checked) {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(230, 64, 50, 0.32);
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  background: #050505;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 36px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

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

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

@media (max-width: 1180px) {
  .site-nav,
  .top-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px var(--outer) 28px;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--rule);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(241, 238, 232, 0.08);
  }

  .site-nav a::after {
    bottom: 10px;
  }
}

@media (max-width: 980px) {
  .hero,
  .page-grid,
  .page-grid.reverse,
  .application-grid,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 520px;
    order: -1;
    margin-inline: calc(var(--outer) * -1);
  }

  .hero-copy {
    padding-top: 10px;
  }

  .route-strip,
  .split-programs,
  .proof-strip,
  .footer-strip,
  .process-grid,
  .audience-grid,
  .faq-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .route-card,
  .proof-item,
  .program-option {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

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

  .photo-stage {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 72px;
    --outer: 18px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

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

  .brand span {
    display: none;
  }

  .brand-title {
    font-size: clamp(62px, 21vw, 96px);
  }

  .display-title {
    font-size: clamp(50px, 17vw, 82px);
  }

  .hero-line {
    font-size: clamp(34px, 12vw, 52px);
  }

  .actions,
  .program-choice {
    grid-template-columns: 1fr;
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

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

  .route-card img {
    width: 100%;
    height: 220px;
  }

  .hero-media,
  .photo-stage {
    min-height: 430px;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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