:root {
  --ink: #151619;
  --muted: #666a70;
  --paper: #ffffff;
  --soft: #f6f3ee;
  --gold: #a78d5e;
  --gold-light: #e4c990;
  --charcoal: #24262a;
  --line: rgba(21, 22, 25, .12);
  --shadow: 0 24px 70px rgba(19, 17, 14, .18);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Poppins, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: #fff;
  color: #000;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  min-height: 100svh;
  color: #fff;
  background: #101114;
}

.site-header.inner-header {
  min-height: 0;
  background: transparent;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 76px);
  width: 100%;
  padding: 18px clamp(16px, 3vw, 48px);
  background: rgba(14, 15, 18, .26);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: background .25s ease, padding .25s ease, transform .28s ease;
}

.navbar.is-scrolled {
  padding-block: 10px;
  background: rgba(16, 17, 19, .92);
}

.navbar.is-hidden {
  transform: translateY(calc(-100% - 2px));
}

.brand img {
  width: min(320px, 31vw);
}

.nav-instagram {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(228, 201, 144, .58);
  border-radius: 50%;
  color: var(--gold-light);
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 239, 181, .22), rgba(167, 141, 94, .08) 44%, rgba(255, 255, 255, 0) 68%),
    rgba(255, 255, 255, .03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 12px 28px rgba(0, 0, 0, .18);
  transition: color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease;
}

.nav-instagram svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.nav-instagram:hover,
.nav-instagram:focus-visible {
  color: #fff;
  border-color: rgba(247, 228, 175, .9);
  background: rgba(167, 141, 94, .18);
  transform: translateY(-1px);
}

.nav-instagram-mobile {
  display: none;
}

.nav-contact {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, .8);
}

.nav-contact a:first-child {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}

.menu-toggle {
  display: none;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 2.4vw, 38px);
  padding-top: 0;
  font-weight: 800;
}

.nav-links a,
.nav-item > a {
  position: relative;
  z-index: 2;
}

.nav-links a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold-light);
  transition: right .2s ease;
}

.nav-links .nav-instagram::after {
  display: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
  right: 0;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  height: 24px;
  z-index: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 270px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(16, 17, 19, .96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .2s ease, transform .2s ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  line-height: 1.25;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: #fff;
  background: rgba(167, 141, 94, .2);
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 190px 0 96px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center top;
  background-size: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
  transition: opacity 1s ease, transform 5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-1 {
  background-image: url("../../images/hero-deneyimle-ogren.webp");
}

.hero-slide-2 {
  background-image: url("../../images/hero-meb-onayli-egitim.webp");
}

.hero-slide-3 {
  background-image: url("../../images/hero-uygulamali-egitim.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, .76) 0%, rgba(11, 12, 15, .42) 52%, rgba(11, 12, 15, .18) 100%),
    linear-gradient(0deg, rgba(7, 8, 10, .42), rgba(7, 8, 10, .12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1100px);
  margin-inline: auto;
}

.eyebrow,
.section-mark {
  display: inline-block;
  color: var(--gold-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 106px);
  color: #f2dca9;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 62px);
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
}

h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.hero-lead {
  max-width: 980px;
  color: #fff;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.22;
  font-weight: 200;
}

.hero-actions,
.section-copy .btn {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 0;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-outline {
  margin-left: 12px;
  border-color: var(--gold-light);
  color: #fff;
}

.social-rail {
  position: absolute;
  left: 18px;
  bottom: 17vh;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 10vw, 130px) 0;
}

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

.dark-band {
  color: #fff;
  background: var(--charcoal);
}

.intro-grid,
.meb-grid,
.story-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

.image-stack {
  position: relative;
  margin: 0;
}

.image-stack img,
.rounded-media {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack figcaption {
  position: absolute;
  right: -18px;
  top: 24px;
  padding: 22px 18px;
  background: #fff;
  color: #b52b26;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.section-copy p,
.meb p {
  color: var(--muted);
  font-size: 17px;
}

.dark-band p,
.dark-band a {
  color: rgba(255, 255, 255, .82);
}

.text-link,
.course-card a {
  color: var(--gold);
  font-weight: 900;
}

.btn-elegant {
  margin-top: 8px;
  border: 1px solid rgba(167, 141, 94, .46);
  background:
    linear-gradient(135deg, rgba(167, 141, 94, .14), rgba(255, 255, 255, .88)),
    #fff;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(19, 17, 14, .11);
}

.btn-elegant span {
  margin-left: 12px;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease;
}

.btn-elegant:hover,
.btn-elegant:focus-visible {
  border-color: rgba(167, 141, 94, .7);
  background: #222428;
  color: #fff;
  transform: translateY(-2px);
}

.btn-elegant:hover span,
.btn-elegant:focus-visible span {
  transform: translateX(3px);
}

.btn-gold-elegant {
  margin-top: 12px;
  border: 1px solid rgba(228, 201, 144, .9);
  background:
    linear-gradient(135deg, #e4c990 0%, #b99a61 46%, #8f7040 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(143, 112, 64, .28);
}

.btn-gold-elegant span {
  margin-left: 12px;
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease;
}

.btn-gold-elegant:hover,
.btn-gold-elegant:focus-visible {
  border-color: rgba(228, 201, 144, 1);
  background:
    linear-gradient(135deg, #f0dba5 0%, #c7a668 48%, #9a7742 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(143, 112, 64, .34);
}

.btn-gold-elegant:hover span,
.btn-gold-elegant:focus-visible span {
  transform: translateX(3px);
}

.hero-actions .btn-gold-elegant {
  margin-top: 0;
}

.contact-form .btn-gold-elegant {
  width: 100%;
  margin-top: 4px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.feature-images,
.certificate-grid,
.course-list,
.partner-grid,
.contact-cards {
  display: grid;
  gap: 22px;
}

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

.feature-images img {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.benefits article,
.course-card,
.contact-form,
.contact-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}

.stats-grid div {
  padding: 28px 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
}

.stats-grid strong {
  display: block;
  color: var(--gold-light);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 12px;
  font-weight: 800;
}

.stats.dark-band {
  background:
    linear-gradient(rgba(20, 22, 25, .82), rgba(20, 22, 25, .82)),
    url("../../images/bizden-kareler-6.jpg") center / cover;
}

.tall {
  width: min(100%, 460px);
  justify-self: center;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

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

.certificates {
  background:
    linear-gradient(rgba(246, 243, 238, .9), rgba(246, 243, 238, .92)),
    url("../../images/marka-yarat.jpg") center / cover;
}

.certificate-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .13);
}

.course-list {
  gap: 38px;
}

.course-row {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(600px, 1.28fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  padding: clamp(22px, 4vw, 54px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(167, 141, 94, .94), rgba(167, 141, 94, .76)),
    #a78d5e;
  box-shadow: 0 30px 80px rgba(83, 62, 30, .18);
  scroll-margin-top: 110px;
}

.course-row.reverse .course-copy {
  order: 2;
}

.course-row.reverse .course-gallery {
  order: 1;
}

.course-row.reverse {
  grid-template-columns: minmax(600px, 1.28fr) minmax(0, .72fr);
}

.course-copy {
  color: #fff;
}

.course-copy span {
  display: block;
  color: rgba(255, 255, 255, .42);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1;
}

.course-copy h3 {
  position: relative;
  display: inline-block;
  margin: 4px 0 18px;
  color: #fff;
  font-size: 42px;
  line-height: 1.06;
  letter-spacing: 0;
  text-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.course-copy h3::after {
  content: "";
  display: block;
  width: min(190px, 100%);
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, #f7e4af, #caa455 58%, rgba(255, 255, 255, 0));
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(247, 228, 175, .22);
}

.course-copy p {
  color: rgba(255, 255, 255, .9);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(255, 255, 255, .94);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #222428;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
}

.course-copy .btn-primary {
  border-color: rgba(228, 201, 144, .62);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(228, 201, 144, .28) 0%, rgba(167, 141, 94, .18) 42%, rgba(7, 7, 9, 0) 72%),
    linear-gradient(135deg, #08090b 0%, #191a1d 48%, #765d32 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.course-copy .btn-primary span {
  margin-left: 8px;
  font-size: 18px;
  line-height: 1;
}

.course-copy .btn-primary:hover,
.course-copy .btn-primary:focus-visible {
  border-color: rgba(240, 219, 165, .88);
  background:
    linear-gradient(135deg, rgba(240, 219, 165, .36) 0%, rgba(185, 154, 97, .24) 45%, rgba(7, 7, 9, 0) 74%),
    linear-gradient(135deg, #0c0d10 0%, #1e2024 44%, #967542 100%);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.course-row .course-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  min-height: 560px;
}

.course-row .course-gallery img {
  width: 100%;
  aspect-ratio: 11 / 18;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, .84);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
  transition: transform .25s ease, z-index .25s ease;
}

.course-row .course-gallery img:nth-child(1) {
  transform: translateX(40px) scale(.94);
}

.course-row .course-gallery img:nth-child(2) {
  position: relative;
  z-index: 2;
  transform: scale(1.12);
}

.course-row .course-gallery img:nth-child(3) {
  transform: translateX(-40px) scale(.94);
}

.course-row .course-gallery img:hover,
.course-row .course-gallery img:focus-visible {
  z-index: 3;
  transform: scale(1.18);
}

.course-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(167, 141, 94, .08), rgba(255, 255, 255, 0)),
    #fff;
}

.course-card span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.course-card h3 {
  margin-top: 14px;
  color: var(--ink);
}

.course-card p {
  color: var(--muted);
}

.course-card a {
  margin-top: auto;
}

.manifesto {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.manifesto-video,
.manifesto > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.18);
}

.manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36, 38, 42, .82), rgba(36, 38, 42, .52)),
    rgba(13, 13, 15, .42);
}

.manifesto-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 980px);
  padding: clamp(44px, 6vw, 72px) 16px;
}

.manifesto-content h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 400;
}

.manifesto-content h3 {
  margin-top: 8px;
  color: #fff;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 900;
  line-height: 1.35;
}

.manifesto-content p {
  font-size: 19px;
  max-width: 960px;
  margin-inline: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.manifesto-content img:not(.gold-line) {
  margin: 28px auto 0;
}

.gold-line {
  width: min(640px, 86%);
  margin: 18px auto 30px;
}

.gallery {
  background: #f0f2f5;
}

.gallery .section-heading {
  margin-bottom: 34px;
}

.gallery .section-heading h2 {
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
}

.gallery .section-heading h2 em {
  color: var(--gold);
  font-style: normal;
}

.gallery .section-heading h3 {
  color: #202226;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(20px, 1.7vw, 25px);
  text-transform: uppercase;
}

.gallery-justified {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(300px, 31vw, 500px);
  gap: 2px;
  max-width: 1260px;
  margin-inline: auto;
}

.gallery-justified figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  background: #111;
}

.gallery-justified .gallery-wide {
  grid-column: span 3;
}

.gallery-justified img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .32s ease, filter .32s ease;
}

.gallery-justified figure:hover img,
.gallery-justified figure:focus-within img {
  transform: scale(1.2);
  filter: saturate(1.1) contrast(1.04);
}

.partner-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 26px;
}

.partner-grid img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  padding: 8px;
  filter: grayscale(1);
}

.contact {
  background: linear-gradient(135deg, #24262a 0%, #191a1d 100%);
}

.contact-cards {
  grid-template-columns: 1fr;
  margin-top: 28px;
}

.contact-cards article {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
}

.contact-form {
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d7d2c8;
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin-bottom: 14px;
  color: #3e6848;
  font-weight: 800;
}

.form-status.is-error {
  color: #9f2f2b;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.success-modal[hidden] {
  display: none;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 9, 11, .74);
  backdrop-filter: blur(7px);
  cursor: pointer;
}

.success-modal__panel {
  position: relative;
  width: min(100%, 430px);
  padding: 38px 34px 32px;
  border: 1px solid rgba(228, 201, 144, .42);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(246, 243, 238, .96)),
    #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
  text-align: center;
}

.success-modal__panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(167, 141, 94, .24);
  border-radius: 12px;
  pointer-events: none;
}

.success-modal__mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #161719, #3a2d1b);
  color: var(--gold-light);
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(167, 141, 94, .28);
}

.success-modal h2 {
  position: relative;
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
  color: var(--ink);
}

.success-modal p {
  position: relative;
  margin: 0 auto 24px;
  max-width: 32ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.success-modal__button {
  position: relative;
  min-width: 160px;
  justify-content: center;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.footer {
  padding: 76px 0 28px;
  color: rgba(255, 255, 255, .82);
  background: #26282b;
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  align-items: start;
}

.footer-logo {
  width: min(320px, 100%);
  margin-bottom: 22px;
}

.footer nav {
  display: grid;
  gap: 10px;
}

.footer h2 {
  font-family: inherit;
  font-size: 16px;
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-phone {
  display: block;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
}

.footer-contact address {
  margin-top: 8px;
  font-style: normal;
  line-height: 1.65;
  color: rgba(255, 255, 255, .72);
}

.footer-contact address strong {
  display: block;
  color: #fff;
}

.footer-social {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.footer-social strong {
  color: #fff;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .82);
  overflow-wrap: anywhere;
}

.footer-instagram svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke: var(--gold-light);
}

.footer-instagram:hover,
.footer-instagram:focus-visible {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 14px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(228, 201, 144, .45);
  text-underline-offset: 4px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold-light);
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(37, 211, 102, .32);
}

.whatsapp svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: currentColor;
}

.policy-main {
  overflow: hidden;
  background: #f7f5f1;
}

.policy-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 180px 0 96px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(8, 9, 11, .92), rgba(8, 9, 11, .72) 54%, rgba(83, 62, 30, .56)),
    url("../../images/hero-deneyimle-ogren.webp") center / cover;
}

.policy-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(247, 245, 241, 0), #f7f5f1);
}

.policy-hero .container {
  position: relative;
  z-index: 1;
}

.policy-hero h1 {
  max-width: 780px;
  margin: 12px 0 18px;
  color: var(--gold-light);
}

.policy-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .86);
  font-size: 22px;
  font-weight: 700;
}

.policy-shell {
  padding: 0 0 110px;
}

.policy-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 72px);
  margin-top: -74px;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(167, 141, 94, .32);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(247, 245, 241, .94)),
    #fff;
  box-shadow: var(--shadow);
}

.policy-note {
  align-self: start;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(167, 141, 94, .95), rgba(167, 141, 94, .74)),
    #a78d5e;
  color: #fff;
}

.policy-note strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.policy-note p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
}

.policy-content {
  display: grid;
  gap: 22px;
}

.policy-content article {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(167, 141, 94, .25);
}

.policy-content article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-content h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 17px;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

@media (max-width: 980px) {
  .navbar {
    grid-template-columns: auto 1fr auto;
    justify-content: stretch;
    gap: 12px;
  }

  .brand img {
    width: min(360px, calc(100vw - 112px));
  }

  .nav-contact {
    display: none;
  }

  .nav-instagram-desktop {
    display: none;
  }

  .nav-instagram-mobile {
    display: inline-grid;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    inset: 84px 0 auto;
    display: none;
    grid-column: auto;
    padding: 24px;
    background: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .nav-links.is-open {
    display: grid;
    gap: 18px;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: auto;
    margin-top: 10px;
    padding: 6px 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

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

  .nav-item:hover .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    display: grid;
    transform: none;
  }

  .intro-grid,
  .meb-grid,
  .story-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .meb-grid > .rounded-media {
    order: -1;
  }

  .feature-images,
  .certificate-grid,
  .stats-grid,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-row,
  .course-row.reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .course-row .course-gallery {
    align-items: start;
    min-height: 0;
  }

  .course-row .course-gallery img:nth-child(1) {
    transform: translateX(24px) scale(.88);
  }

  .course-row .course-gallery img:nth-child(2) {
    transform: scale(1.08);
  }

  .course-row .course-gallery img:nth-child(3) {
    transform: translateX(-24px) scale(.88);
  }

  .policy-panel {
    grid-template-columns: 1fr;
  }

  .course-row.reverse .course-copy,
  .course-row.reverse .course-gallery {
    order: initial;
  }

  .gallery-justified {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 330px;
  }

  .gallery-justified .gallery-wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 12px 16px;
  }

  .brand img {
    width: min(360px, calc(100vw - 104px));
  }

  .hero {
    padding-top: 132px;
  }

  .policy-hero {
    min-height: 460px;
    padding: 150px 0 78px;
  }

  .policy-hero p {
    font-size: 19px;
  }

  .policy-panel {
    margin-top: -48px;
    padding: 24px 18px;
  }

  .policy-note {
    padding: 22px;
  }

  .policy-note strong {
    font-size: 30px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 22px;
  }

  .btn {
    width: 100%;
  }

  .btn-outline {
    margin: 12px 0 0;
  }

  .social-rail {
    display: none;
  }

  .feature-images,
  .benefits {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stats-grid div {
    padding: 22px 10px;
  }

  .stats-grid strong {
    font-size: 36px;
  }

  .stats-grid span {
    font-size: 14px;
  }

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

  .partner-grid img {
    max-height: 118px;
    padding: 10px;
  }

  .course-row {
    padding: 24px 18px 28px;
    gap: 16px;
  }

  .course-copy span {
    font-size: 28px;
  }

  .course-copy h3 {
    margin-bottom: 20px;
    font-size: 34px;
  }

  .course-copy h3::after {
    width: 150px;
    margin-top: 12px;
  }

  .course-row .course-gallery {
    min-height: 0;
    margin-top: 4px;
  }

  .course-row .course-gallery img {
    border-width: 3px;
  }

  .course-row .course-gallery img:nth-child(1) {
    transform: translateX(18px) scale(.84);
  }

  .course-row .course-gallery img:nth-child(2) {
    transform: scale(1.02);
  }

  .course-row .course-gallery img:nth-child(3) {
    transform: translateX(-18px) scale(.84);
  }

  .gallery {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .gallery-justified {
    grid-auto-rows: auto;
    gap: 2px;
  }

  .gallery-justified figure {
    aspect-ratio: 1 / 1;
  }

  .gallery-justified .gallery-wide {
    grid-column: auto;
  }

  .image-stack figcaption {
    right: 12px;
  }

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